@capgo/cli 8.42.3 → 8.42.4
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 +547 -547
- package/dist/package.json +1 -1
- package/dist/src/posthog.d.ts +2 -0
- package/dist/src/sdk.js +227 -227
- package/dist/src/utils.d.ts +16 -6
- package/package.json +1 -1
package/dist/src/utils.d.ts
CHANGED
|
@@ -499,9 +499,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
499
499
|
app_id: string;
|
|
500
500
|
build_timeout_seconds?: number;
|
|
501
501
|
build_timeout_updated_at?: string;
|
|
502
|
-
block_provider_infra_requests
|
|
503
|
-
/** Tag Type */
|
|
504
|
-
? /** Tag Type */: boolean;
|
|
502
|
+
block_provider_infra_requests?: boolean;
|
|
505
503
|
channel_device_count?: number;
|
|
506
504
|
created_at?: string | null;
|
|
507
505
|
created_from_onboarding?: boolean;
|
|
@@ -1214,7 +1212,9 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1214
1212
|
run_on_dow?: number | null;
|
|
1215
1213
|
second_interval?: number | null;
|
|
1216
1214
|
target?: string;
|
|
1217
|
-
task_type
|
|
1215
|
+
task_type
|
|
1216
|
+
/** Capgo cloud files worker; ignored when resolving to self-host /functions/v1 */
|
|
1217
|
+
? /** Capgo cloud files worker; ignored when resolving to self-host /functions/v1 */: Database["public"]["Enums"]["cron_task_type"];
|
|
1218
1218
|
updated_at?: string;
|
|
1219
1219
|
};
|
|
1220
1220
|
Relationships: [];
|
|
@@ -2760,7 +2760,11 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
2760
2760
|
churn_reason?: string | null;
|
|
2761
2761
|
created_at?: string;
|
|
2762
2762
|
customer_country?: string | null;
|
|
2763
|
-
customer_id
|
|
2763
|
+
customer_id
|
|
2764
|
+
/**
|
|
2765
|
+
* Read directory recursively and return full paths for all files
|
|
2766
|
+
*/
|
|
2767
|
+
?: string;
|
|
2764
2768
|
id?: number;
|
|
2765
2769
|
is_good_plan?: boolean | null;
|
|
2766
2770
|
last_stripe_event_at?: string | null;
|
|
@@ -3287,7 +3291,11 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
3287
3291
|
delivery_version?: string;
|
|
3288
3292
|
duration_ms?: number | null;
|
|
3289
3293
|
event_type: string;
|
|
3290
|
-
id
|
|
3294
|
+
id
|
|
3295
|
+
/**
|
|
3296
|
+
* Simple compatibility check (backward compatible)
|
|
3297
|
+
*/
|
|
3298
|
+
?: string;
|
|
3291
3299
|
max_attempts?: number;
|
|
3292
3300
|
next_retry_at?: string | null;
|
|
3293
3301
|
org_id: string;
|
|
@@ -5946,4 +5954,6 @@ interface PromptAndSyncOptions {
|
|
|
5946
5954
|
validateIosUpdater?: boolean;
|
|
5947
5955
|
packageJsonPath?: string;
|
|
5948
5956
|
}
|
|
5957
|
+
export type IosUpdaterSyncValidation = ReturnType<typeof validateIosUpdaterSync>;
|
|
5958
|
+
export declare function throwIfIosUpdaterSyncInvalid(syncValidation: IosUpdaterSyncValidation, platformRunner: string, onFailure?: () => void): void;
|
|
5949
5959
|
export declare function promptAndSyncCapacitor(isInit?: boolean, orgId?: string, apikey?: string, options?: PromptAndSyncOptions): Promise<void>;
|