@capgo/cli 8.26.0 → 8.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/index.js +320 -320
- package/dist/package.json +1 -1
- package/dist/src/api/channels.d.ts +17 -0
- package/dist/src/app/list.d.ts +4 -0
- package/dist/src/build/credentials-command.d.ts +1 -0
- package/dist/src/schemas/build.d.ts +2 -0
- package/dist/src/sdk.js +231 -231
- package/dist/src/types/supabase.types.d.ts +17 -0
- package/dist/src/utils.d.ts +17 -0
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -356,6 +356,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
356
356
|
block_provider_infra_requests: boolean;
|
|
357
357
|
channel_device_count: number;
|
|
358
358
|
created_at: string | null;
|
|
359
|
+
created_from_onboarding: boolean;
|
|
359
360
|
default_upload_channel: string;
|
|
360
361
|
existing_app: boolean;
|
|
361
362
|
expose_metadata: boolean;
|
|
@@ -368,6 +369,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
368
369
|
rollout_paused_version_names: string[];
|
|
369
370
|
name: string | null;
|
|
370
371
|
need_onboarding: boolean;
|
|
372
|
+
onboarding_completed_at: string | null;
|
|
371
373
|
owner_org: string;
|
|
372
374
|
retention: number;
|
|
373
375
|
stats_refresh_requested_at: string | null;
|
|
@@ -386,6 +388,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
386
388
|
block_provider_infra_requests?: boolean;
|
|
387
389
|
channel_device_count?: number;
|
|
388
390
|
created_at?: string | null;
|
|
391
|
+
created_from_onboarding?: boolean;
|
|
389
392
|
default_upload_channel?: string;
|
|
390
393
|
existing_app?: boolean;
|
|
391
394
|
expose_metadata?: boolean;
|
|
@@ -398,6 +401,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
398
401
|
rollout_paused_version_names?: string[];
|
|
399
402
|
name?: string | null;
|
|
400
403
|
need_onboarding?: boolean;
|
|
404
|
+
onboarding_completed_at?: string | null;
|
|
401
405
|
owner_org: string;
|
|
402
406
|
retention?: number;
|
|
403
407
|
stats_refresh_requested_at?: string | null;
|
|
@@ -416,6 +420,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
416
420
|
block_provider_infra_requests?: boolean;
|
|
417
421
|
channel_device_count?: number;
|
|
418
422
|
created_at?: string | null;
|
|
423
|
+
created_from_onboarding?: boolean;
|
|
419
424
|
default_upload_channel?: string;
|
|
420
425
|
existing_app?: boolean;
|
|
421
426
|
expose_metadata?: boolean;
|
|
@@ -428,6 +433,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
428
433
|
rollout_paused_version_names?: string[];
|
|
429
434
|
name?: string | null;
|
|
430
435
|
need_onboarding?: boolean;
|
|
436
|
+
onboarding_completed_at?: string | null;
|
|
431
437
|
owner_org?: string;
|
|
432
438
|
retention?: number;
|
|
433
439
|
stats_refresh_requested_at?: string | null;
|
|
@@ -1515,6 +1521,9 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
1515
1521
|
global_stats: {
|
|
1516
1522
|
Row: {
|
|
1517
1523
|
apps: number;
|
|
1524
|
+
apps_created: number;
|
|
1525
|
+
apps_with_cli_onboarding_builds_24h: number;
|
|
1526
|
+
apps_with_manual_builds_24h: number;
|
|
1518
1527
|
apps_active: number | null;
|
|
1519
1528
|
average_ltv: number;
|
|
1520
1529
|
build_avg_seconds_day_android: number;
|
|
@@ -1603,6 +1612,9 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
1603
1612
|
};
|
|
1604
1613
|
Insert: {
|
|
1605
1614
|
apps: number;
|
|
1615
|
+
apps_created?: number;
|
|
1616
|
+
apps_with_cli_onboarding_builds_24h?: number;
|
|
1617
|
+
apps_with_manual_builds_24h?: number;
|
|
1606
1618
|
apps_active?: number | null;
|
|
1607
1619
|
average_ltv?: number;
|
|
1608
1620
|
build_avg_seconds_day_android?: number;
|
|
@@ -1691,6 +1703,9 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
1691
1703
|
};
|
|
1692
1704
|
Update: {
|
|
1693
1705
|
apps?: number;
|
|
1706
|
+
apps_created?: number;
|
|
1707
|
+
apps_with_cli_onboarding_builds_24h?: number;
|
|
1708
|
+
apps_with_manual_builds_24h?: number;
|
|
1694
1709
|
apps_active?: number | null;
|
|
1695
1710
|
average_ltv?: number;
|
|
1696
1711
|
build_avg_seconds_day_android?: number;
|
|
@@ -3729,6 +3744,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
3729
3744
|
build_timeout_updated_at: string;
|
|
3730
3745
|
channel_device_count: number;
|
|
3731
3746
|
created_at: string | null;
|
|
3747
|
+
created_from_onboarding: boolean;
|
|
3732
3748
|
default_upload_channel: string;
|
|
3733
3749
|
existing_app: boolean;
|
|
3734
3750
|
expose_metadata: boolean;
|
|
@@ -3739,6 +3755,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
3739
3755
|
manifest_bundle_count: number;
|
|
3740
3756
|
name: string | null;
|
|
3741
3757
|
need_onboarding: boolean;
|
|
3758
|
+
onboarding_completed_at: string | null;
|
|
3742
3759
|
owner_org: string;
|
|
3743
3760
|
retention: number;
|
|
3744
3761
|
stats_refresh_requested_at: string | null;
|
package/dist/src/app/list.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare function listAppInternal(options: OptionsBase, silent?: boolean):
|
|
|
9
9
|
block_provider_infra_requests: boolean;
|
|
10
10
|
channel_device_count: number;
|
|
11
11
|
created_at: string | null;
|
|
12
|
+
created_from_onboarding: boolean;
|
|
12
13
|
default_upload_channel: string;
|
|
13
14
|
existing_app: boolean;
|
|
14
15
|
expose_metadata: boolean;
|
|
@@ -21,6 +22,7 @@ export declare function listAppInternal(options: OptionsBase, silent?: boolean):
|
|
|
21
22
|
rollout_paused_version_names: string[];
|
|
22
23
|
name: string | null;
|
|
23
24
|
need_onboarding: boolean;
|
|
25
|
+
onboarding_completed_at: string | null;
|
|
24
26
|
owner_org: string;
|
|
25
27
|
retention: number;
|
|
26
28
|
stats_refresh_requested_at: string | null;
|
|
@@ -39,6 +41,7 @@ export declare function listApp(options: OptionsBase): Promise<{
|
|
|
39
41
|
block_provider_infra_requests: boolean;
|
|
40
42
|
channel_device_count: number;
|
|
41
43
|
created_at: string | null;
|
|
44
|
+
created_from_onboarding: boolean;
|
|
42
45
|
default_upload_channel: string;
|
|
43
46
|
existing_app: boolean;
|
|
44
47
|
expose_metadata: boolean;
|
|
@@ -51,6 +54,7 @@ export declare function listApp(options: OptionsBase): Promise<{
|
|
|
51
54
|
rollout_paused_version_names: string[];
|
|
52
55
|
name: string | null;
|
|
53
56
|
need_onboarding: boolean;
|
|
57
|
+
onboarding_completed_at: string | null;
|
|
54
58
|
owner_org: string;
|
|
55
59
|
retention: number;
|
|
56
60
|
stats_refresh_requested_at: string | null;
|
|
@@ -70,6 +70,7 @@ export declare const buildRequestOptionsSchema: z.ZodObject<{
|
|
|
70
70
|
outputRetention: z.ZodOptional<z.ZodString>;
|
|
71
71
|
outputRecord: z.ZodOptional<z.ZodString>;
|
|
72
72
|
skipBuildNumberBump: z.ZodOptional<z.ZodBoolean>;
|
|
73
|
+
skipMarketingVersionBump: z.ZodOptional<z.ZodBoolean>;
|
|
73
74
|
syncIosVersion: z.ZodOptional<z.ZodBoolean>;
|
|
74
75
|
playstoreUpload: z.ZodOptional<z.ZodBoolean>;
|
|
75
76
|
submitToStoreReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -143,6 +144,7 @@ export declare const buildOptionsPayloadSchema: z.ZodObject<{
|
|
|
143
144
|
outputUploadEnabled: z.ZodBoolean;
|
|
144
145
|
outputRetentionSeconds: z.ZodNumber;
|
|
145
146
|
skipBuildNumberBump: z.ZodBoolean;
|
|
147
|
+
skipMarketingVersionBump: z.ZodBoolean;
|
|
146
148
|
submitToStoreReview: z.ZodBoolean;
|
|
147
149
|
storeReleaseName: z.ZodOptional<z.ZodString>;
|
|
148
150
|
storeReleaseNotes: z.ZodOptional<z.ZodString>;
|