CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface AppVersion

    Version release milestone of the application.

    const version: AppVersion = {
    id: 'ver_01',
    appId: 'app_abc',
    label: '2.1.0',
    position: 1,
    released: true,
    releasedAt: '2026-08-15T12:00:00.000Z',
    description: 'Major performance and UI refresh release',
    createdAt: '2026-08-01T00:00:00.000Z',
    updatedAt: '2026-08-15T12:00:00.000Z',
    };
    interface AppVersion {
        appId: string;
        createdAt: string;
        description?: string | null;
        id: string;
        label: string;
        position: number;
        released: boolean;
        releasedAt?: string | null;
        updatedAt: string;
    }
    Index
    appId: string

    Application ID that owns this milestone.

    createdAt: string

    ISO 8601 creation timestamp.

    description?: string | null

    Optional release summary notes or description.

    id: string

    Unique version ID.

    label: string

    Version release tag or label (e.g., "2.1.0", "v3.0-beta").

    position: number

    Sorting order position index.

    released: boolean

    Whether this version has been officially shipped.

    releasedAt?: string | null

    ISO 8601 timestamp when this version was published, if released.

    updatedAt: string

    ISO 8601 last update timestamp.