@capgo/cli 8.33.4 → 8.34.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/dist/index.js +532 -532
- package/dist/package.json +1 -1
- package/dist/src/app/list.d.ts +2 -0
- package/dist/src/build/prescan/checks/android-project.d.ts +1 -0
- package/dist/src/build/prescan/gradle.d.ts +2 -0
- package/dist/src/sdk.js +304 -304
- package/dist/src/types/supabase.types.d.ts +14 -0
- package/dist/src/utils.d.ts +14 -0
- package/package.json +1 -1
|
@@ -322,6 +322,7 @@ export type Database = {
|
|
|
322
322
|
rollout_paused_version_names: string[];
|
|
323
323
|
name: string | null;
|
|
324
324
|
need_onboarding: boolean;
|
|
325
|
+
onboarding: Json;
|
|
325
326
|
onboarding_completed_at: string | null;
|
|
326
327
|
owner_org: string;
|
|
327
328
|
retention: number;
|
|
@@ -354,6 +355,7 @@ export type Database = {
|
|
|
354
355
|
rollout_paused_version_names?: string[];
|
|
355
356
|
name?: string | null;
|
|
356
357
|
need_onboarding?: boolean;
|
|
358
|
+
onboarding?: Json;
|
|
357
359
|
onboarding_completed_at?: string | null;
|
|
358
360
|
owner_org: string;
|
|
359
361
|
retention?: number;
|
|
@@ -386,6 +388,7 @@ export type Database = {
|
|
|
386
388
|
rollout_paused_version_names?: string[];
|
|
387
389
|
name?: string | null;
|
|
388
390
|
need_onboarding?: boolean;
|
|
391
|
+
onboarding?: Json;
|
|
389
392
|
onboarding_completed_at?: string | null;
|
|
390
393
|
owner_org?: string;
|
|
391
394
|
retention?: number;
|
|
@@ -1562,6 +1565,7 @@ export type Database = {
|
|
|
1562
1565
|
paying: number | null;
|
|
1563
1566
|
paying_monthly: number | null;
|
|
1564
1567
|
paying_yearly: number | null;
|
|
1568
|
+
plan_credits: number;
|
|
1565
1569
|
plan_enterprise: number | null;
|
|
1566
1570
|
plan_enterprise_conversion_rate: number;
|
|
1567
1571
|
plan_enterprise_monthly: number;
|
|
@@ -1656,6 +1660,7 @@ export type Database = {
|
|
|
1656
1660
|
paying?: number | null;
|
|
1657
1661
|
paying_monthly?: number | null;
|
|
1658
1662
|
paying_yearly?: number | null;
|
|
1663
|
+
plan_credits?: number;
|
|
1659
1664
|
plan_enterprise?: number | null;
|
|
1660
1665
|
plan_enterprise_conversion_rate?: number;
|
|
1661
1666
|
plan_enterprise_monthly?: number;
|
|
@@ -1750,6 +1755,7 @@ export type Database = {
|
|
|
1750
1755
|
paying?: number | null;
|
|
1751
1756
|
paying_monthly?: number | null;
|
|
1752
1757
|
paying_yearly?: number | null;
|
|
1758
|
+
plan_credits?: number;
|
|
1753
1759
|
plan_enterprise?: number | null;
|
|
1754
1760
|
plan_enterprise_conversion_rate?: number;
|
|
1755
1761
|
plan_enterprise_monthly?: number;
|
|
@@ -3783,6 +3789,7 @@ export type Database = {
|
|
|
3783
3789
|
manifest_bundle_count: number;
|
|
3784
3790
|
name: string | null;
|
|
3785
3791
|
need_onboarding: boolean;
|
|
3792
|
+
onboarding: Json;
|
|
3786
3793
|
onboarding_completed_at: string | null;
|
|
3787
3794
|
owner_org: string;
|
|
3788
3795
|
retention: number;
|
|
@@ -4736,6 +4743,13 @@ export type Database = {
|
|
|
4736
4743
|
};
|
|
4737
4744
|
Returns: string;
|
|
4738
4745
|
};
|
|
4746
|
+
mark_onboarding_feature_started: {
|
|
4747
|
+
Args: {
|
|
4748
|
+
p_app_id: string;
|
|
4749
|
+
p_feature_key: string;
|
|
4750
|
+
};
|
|
4751
|
+
Returns: Json;
|
|
4752
|
+
};
|
|
4739
4753
|
mass_edit_queue_messages_cf_ids: {
|
|
4740
4754
|
Args: {
|
|
4741
4755
|
updates: Database["public"]["CompositeTypes"]["message_update"][];
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -481,6 +481,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
481
481
|
rollout_paused_version_names: string[];
|
|
482
482
|
name: string | null;
|
|
483
483
|
need_onboarding: boolean;
|
|
484
|
+
onboarding: import("./types/supabase.types").Json;
|
|
484
485
|
onboarding_completed_at: string | null;
|
|
485
486
|
owner_org: string;
|
|
486
487
|
retention: number;
|
|
@@ -513,6 +514,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
513
514
|
rollout_paused_version_names?: string[];
|
|
514
515
|
name?: string | null;
|
|
515
516
|
need_onboarding?: boolean;
|
|
517
|
+
onboarding?: import("./types/supabase.types").Json;
|
|
516
518
|
onboarding_completed_at?: string | null;
|
|
517
519
|
owner_org: string;
|
|
518
520
|
retention?: number;
|
|
@@ -545,6 +547,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
545
547
|
rollout_paused_version_names?: string[];
|
|
546
548
|
name?: string | null;
|
|
547
549
|
need_onboarding?: boolean;
|
|
550
|
+
onboarding?: import("./types/supabase.types").Json;
|
|
548
551
|
onboarding_completed_at?: string | null;
|
|
549
552
|
owner_org?: string;
|
|
550
553
|
retention?: number;
|
|
@@ -1682,6 +1685,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1682
1685
|
paying: number | null;
|
|
1683
1686
|
paying_monthly: number | null;
|
|
1684
1687
|
paying_yearly: number | null;
|
|
1688
|
+
plan_credits: number;
|
|
1685
1689
|
plan_enterprise: number | null;
|
|
1686
1690
|
plan_enterprise_conversion_rate: number;
|
|
1687
1691
|
plan_enterprise_monthly: number;
|
|
@@ -1776,6 +1780,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1776
1780
|
paying?: number | null;
|
|
1777
1781
|
paying_monthly?: number | null;
|
|
1778
1782
|
paying_yearly?: number | null;
|
|
1783
|
+
plan_credits?: number;
|
|
1779
1784
|
plan_enterprise?: number | null;
|
|
1780
1785
|
plan_enterprise_conversion_rate?: number;
|
|
1781
1786
|
plan_enterprise_monthly?: number;
|
|
@@ -1870,6 +1875,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1870
1875
|
paying?: number | null;
|
|
1871
1876
|
paying_monthly?: number | null;
|
|
1872
1877
|
paying_yearly?: number | null;
|
|
1878
|
+
plan_credits?: number;
|
|
1873
1879
|
plan_enterprise?: number | null;
|
|
1874
1880
|
plan_enterprise_conversion_rate?: number;
|
|
1875
1881
|
plan_enterprise_monthly?: number;
|
|
@@ -3833,6 +3839,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
3833
3839
|
manifest_bundle_count: number;
|
|
3834
3840
|
name: string | null;
|
|
3835
3841
|
need_onboarding: boolean;
|
|
3842
|
+
onboarding: import("./types/supabase.types").Json;
|
|
3836
3843
|
onboarding_completed_at: string | null;
|
|
3837
3844
|
owner_org: string;
|
|
3838
3845
|
retention: number;
|
|
@@ -4786,6 +4793,13 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
4786
4793
|
};
|
|
4787
4794
|
Returns: string;
|
|
4788
4795
|
};
|
|
4796
|
+
mark_onboarding_feature_started: {
|
|
4797
|
+
Args: {
|
|
4798
|
+
p_app_id: string;
|
|
4799
|
+
p_feature_key: string;
|
|
4800
|
+
};
|
|
4801
|
+
Returns: import("./types/supabase.types").Json;
|
|
4802
|
+
};
|
|
4789
4803
|
mass_edit_queue_messages_cf_ids: {
|
|
4790
4804
|
Args: {
|
|
4791
4805
|
updates: Database["public"]["CompositeTypes"]["message_update"][];
|