@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
|
@@ -306,6 +306,7 @@ export type Database = {
|
|
|
306
306
|
block_provider_infra_requests: boolean;
|
|
307
307
|
channel_device_count: number;
|
|
308
308
|
created_at: string | null;
|
|
309
|
+
created_from_onboarding: boolean;
|
|
309
310
|
default_upload_channel: string;
|
|
310
311
|
existing_app: boolean;
|
|
311
312
|
expose_metadata: boolean;
|
|
@@ -318,6 +319,7 @@ export type Database = {
|
|
|
318
319
|
rollout_paused_version_names: string[];
|
|
319
320
|
name: string | null;
|
|
320
321
|
need_onboarding: boolean;
|
|
322
|
+
onboarding_completed_at: string | null;
|
|
321
323
|
owner_org: string;
|
|
322
324
|
retention: number;
|
|
323
325
|
stats_refresh_requested_at: string | null;
|
|
@@ -336,6 +338,7 @@ export type Database = {
|
|
|
336
338
|
block_provider_infra_requests?: boolean;
|
|
337
339
|
channel_device_count?: number;
|
|
338
340
|
created_at?: string | null;
|
|
341
|
+
created_from_onboarding?: boolean;
|
|
339
342
|
default_upload_channel?: string;
|
|
340
343
|
existing_app?: boolean;
|
|
341
344
|
expose_metadata?: boolean;
|
|
@@ -348,6 +351,7 @@ export type Database = {
|
|
|
348
351
|
rollout_paused_version_names?: string[];
|
|
349
352
|
name?: string | null;
|
|
350
353
|
need_onboarding?: boolean;
|
|
354
|
+
onboarding_completed_at?: string | null;
|
|
351
355
|
owner_org: string;
|
|
352
356
|
retention?: number;
|
|
353
357
|
stats_refresh_requested_at?: string | null;
|
|
@@ -366,6 +370,7 @@ export type Database = {
|
|
|
366
370
|
block_provider_infra_requests?: boolean;
|
|
367
371
|
channel_device_count?: number;
|
|
368
372
|
created_at?: string | null;
|
|
373
|
+
created_from_onboarding?: boolean;
|
|
369
374
|
default_upload_channel?: string;
|
|
370
375
|
existing_app?: boolean;
|
|
371
376
|
expose_metadata?: boolean;
|
|
@@ -378,6 +383,7 @@ export type Database = {
|
|
|
378
383
|
rollout_paused_version_names?: string[];
|
|
379
384
|
name?: string | null;
|
|
380
385
|
need_onboarding?: boolean;
|
|
386
|
+
onboarding_completed_at?: string | null;
|
|
381
387
|
owner_org?: string;
|
|
382
388
|
retention?: number;
|
|
383
389
|
stats_refresh_requested_at?: string | null;
|
|
@@ -1504,6 +1510,9 @@ export type Database = {
|
|
|
1504
1510
|
global_stats: {
|
|
1505
1511
|
Row: {
|
|
1506
1512
|
apps: number;
|
|
1513
|
+
apps_created: number;
|
|
1514
|
+
apps_with_cli_onboarding_builds_24h: number;
|
|
1515
|
+
apps_with_manual_builds_24h: number;
|
|
1507
1516
|
apps_active: number | null;
|
|
1508
1517
|
average_ltv: number;
|
|
1509
1518
|
build_avg_seconds_day_android: number;
|
|
@@ -1592,6 +1601,9 @@ export type Database = {
|
|
|
1592
1601
|
};
|
|
1593
1602
|
Insert: {
|
|
1594
1603
|
apps: number;
|
|
1604
|
+
apps_created?: number;
|
|
1605
|
+
apps_with_cli_onboarding_builds_24h?: number;
|
|
1606
|
+
apps_with_manual_builds_24h?: number;
|
|
1595
1607
|
apps_active?: number | null;
|
|
1596
1608
|
average_ltv?: number;
|
|
1597
1609
|
build_avg_seconds_day_android?: number;
|
|
@@ -1680,6 +1692,9 @@ export type Database = {
|
|
|
1680
1692
|
};
|
|
1681
1693
|
Update: {
|
|
1682
1694
|
apps?: number;
|
|
1695
|
+
apps_created?: number;
|
|
1696
|
+
apps_with_cli_onboarding_builds_24h?: number;
|
|
1697
|
+
apps_with_manual_builds_24h?: number;
|
|
1683
1698
|
apps_active?: number | null;
|
|
1684
1699
|
average_ltv?: number;
|
|
1685
1700
|
build_avg_seconds_day_android?: number;
|
|
@@ -3787,6 +3802,7 @@ export type Database = {
|
|
|
3787
3802
|
build_timeout_updated_at: string;
|
|
3788
3803
|
channel_device_count: number;
|
|
3789
3804
|
created_at: string | null;
|
|
3805
|
+
created_from_onboarding: boolean;
|
|
3790
3806
|
default_upload_channel: string;
|
|
3791
3807
|
existing_app: boolean;
|
|
3792
3808
|
expose_metadata: boolean;
|
|
@@ -3797,6 +3813,7 @@ export type Database = {
|
|
|
3797
3813
|
manifest_bundle_count: number;
|
|
3798
3814
|
name: string | null;
|
|
3799
3815
|
need_onboarding: boolean;
|
|
3816
|
+
onboarding_completed_at: string | null;
|
|
3800
3817
|
owner_org: string;
|
|
3801
3818
|
retention: number;
|
|
3802
3819
|
stats_refresh_requested_at: string | null;
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -414,6 +414,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
414
414
|
block_provider_infra_requests: boolean;
|
|
415
415
|
channel_device_count: number;
|
|
416
416
|
created_at: string | null;
|
|
417
|
+
created_from_onboarding: boolean;
|
|
417
418
|
default_upload_channel: string;
|
|
418
419
|
existing_app: boolean;
|
|
419
420
|
expose_metadata: boolean;
|
|
@@ -426,6 +427,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
426
427
|
rollout_paused_version_names: string[];
|
|
427
428
|
name: string | null;
|
|
428
429
|
need_onboarding: boolean;
|
|
430
|
+
onboarding_completed_at: string | null;
|
|
429
431
|
owner_org: string;
|
|
430
432
|
retention: number;
|
|
431
433
|
stats_refresh_requested_at: string | null;
|
|
@@ -444,6 +446,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
444
446
|
block_provider_infra_requests?: boolean;
|
|
445
447
|
channel_device_count?: number;
|
|
446
448
|
created_at?: string | null;
|
|
449
|
+
created_from_onboarding?: boolean;
|
|
447
450
|
default_upload_channel?: string;
|
|
448
451
|
existing_app?: boolean;
|
|
449
452
|
expose_metadata?: boolean;
|
|
@@ -456,6 +459,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
456
459
|
rollout_paused_version_names?: string[];
|
|
457
460
|
name?: string | null;
|
|
458
461
|
need_onboarding?: boolean;
|
|
462
|
+
onboarding_completed_at?: string | null;
|
|
459
463
|
owner_org: string;
|
|
460
464
|
retention?: number;
|
|
461
465
|
stats_refresh_requested_at?: string | null;
|
|
@@ -474,6 +478,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
474
478
|
block_provider_infra_requests?: boolean;
|
|
475
479
|
channel_device_count?: number;
|
|
476
480
|
created_at?: string | null;
|
|
481
|
+
created_from_onboarding?: boolean;
|
|
477
482
|
default_upload_channel?: string;
|
|
478
483
|
existing_app?: boolean;
|
|
479
484
|
expose_metadata?: boolean;
|
|
@@ -486,6 +491,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
486
491
|
rollout_paused_version_names?: string[];
|
|
487
492
|
name?: string | null;
|
|
488
493
|
need_onboarding?: boolean;
|
|
494
|
+
onboarding_completed_at?: string | null;
|
|
489
495
|
owner_org?: string;
|
|
490
496
|
retention?: number;
|
|
491
497
|
stats_refresh_requested_at?: string | null;
|
|
@@ -1573,6 +1579,9 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1573
1579
|
global_stats: {
|
|
1574
1580
|
Row: {
|
|
1575
1581
|
apps: number;
|
|
1582
|
+
apps_created: number;
|
|
1583
|
+
apps_with_cli_onboarding_builds_24h: number;
|
|
1584
|
+
apps_with_manual_builds_24h: number;
|
|
1576
1585
|
apps_active: number | null;
|
|
1577
1586
|
average_ltv: number;
|
|
1578
1587
|
build_avg_seconds_day_android: number;
|
|
@@ -1661,6 +1670,9 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1661
1670
|
};
|
|
1662
1671
|
Insert: {
|
|
1663
1672
|
apps: number;
|
|
1673
|
+
apps_created?: number;
|
|
1674
|
+
apps_with_cli_onboarding_builds_24h?: number;
|
|
1675
|
+
apps_with_manual_builds_24h?: number;
|
|
1664
1676
|
apps_active?: number | null;
|
|
1665
1677
|
average_ltv?: number;
|
|
1666
1678
|
build_avg_seconds_day_android?: number;
|
|
@@ -1749,6 +1761,9 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1749
1761
|
};
|
|
1750
1762
|
Update: {
|
|
1751
1763
|
apps?: number;
|
|
1764
|
+
apps_created?: number;
|
|
1765
|
+
apps_with_cli_onboarding_builds_24h?: number;
|
|
1766
|
+
apps_with_manual_builds_24h?: number;
|
|
1752
1767
|
apps_active?: number | null;
|
|
1753
1768
|
average_ltv?: number;
|
|
1754
1769
|
build_avg_seconds_day_android?: number;
|
|
@@ -3787,6 +3802,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
3787
3802
|
build_timeout_updated_at: string;
|
|
3788
3803
|
channel_device_count: number;
|
|
3789
3804
|
created_at: string | null;
|
|
3805
|
+
created_from_onboarding: boolean;
|
|
3790
3806
|
default_upload_channel: string;
|
|
3791
3807
|
existing_app: boolean;
|
|
3792
3808
|
expose_metadata: boolean;
|
|
@@ -3797,6 +3813,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
3797
3813
|
manifest_bundle_count: number;
|
|
3798
3814
|
name: string | null;
|
|
3799
3815
|
need_onboarding: boolean;
|
|
3816
|
+
onboarding_completed_at: string | null;
|
|
3800
3817
|
owner_org: string;
|
|
3801
3818
|
retention: number;
|
|
3802
3819
|
stats_refresh_requested_at: string | null;
|