@capgo/cli 7.86.0 → 7.87.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 +324 -324
- package/dist/package.json +1 -1
- package/dist/src/api/app.d.ts +3 -0
- package/dist/src/api/channels.d.ts +24 -0
- package/dist/src/app/list.d.ts +8 -0
- package/dist/src/sdk.js +168 -168
- package/dist/src/types/supabase.types.d.ts +12 -0
- package/dist/src/utils.d.ts +22 -5
- package/package.json +1 -1
|
@@ -233,15 +233,19 @@ export type Database = {
|
|
|
233
233
|
};
|
|
234
234
|
apps: {
|
|
235
235
|
Row: {
|
|
236
|
+
android_store_url: string | null;
|
|
236
237
|
app_id: string;
|
|
237
238
|
channel_device_count: number;
|
|
238
239
|
created_at: string | null;
|
|
239
240
|
default_upload_channel: string;
|
|
241
|
+
existing_app: boolean;
|
|
240
242
|
expose_metadata: boolean;
|
|
241
243
|
icon_url: string;
|
|
242
244
|
id: string | null;
|
|
245
|
+
ios_store_url: string | null;
|
|
243
246
|
last_version: string | null;
|
|
244
247
|
manifest_bundle_count: number;
|
|
248
|
+
need_onboarding: boolean;
|
|
245
249
|
name: string | null;
|
|
246
250
|
owner_org: string;
|
|
247
251
|
retention: number;
|
|
@@ -250,15 +254,19 @@ export type Database = {
|
|
|
250
254
|
user_id: string | null;
|
|
251
255
|
};
|
|
252
256
|
Insert: {
|
|
257
|
+
android_store_url?: string | null;
|
|
253
258
|
app_id: string;
|
|
254
259
|
channel_device_count?: number;
|
|
255
260
|
created_at?: string | null;
|
|
256
261
|
default_upload_channel?: string;
|
|
262
|
+
existing_app?: boolean;
|
|
257
263
|
expose_metadata?: boolean;
|
|
258
264
|
icon_url: string;
|
|
259
265
|
id?: string | null;
|
|
266
|
+
ios_store_url?: string | null;
|
|
260
267
|
last_version?: string | null;
|
|
261
268
|
manifest_bundle_count?: number;
|
|
269
|
+
need_onboarding?: boolean;
|
|
262
270
|
name?: string | null;
|
|
263
271
|
owner_org: string;
|
|
264
272
|
retention?: number;
|
|
@@ -267,15 +275,19 @@ export type Database = {
|
|
|
267
275
|
user_id?: string | null;
|
|
268
276
|
};
|
|
269
277
|
Update: {
|
|
278
|
+
android_store_url?: string | null;
|
|
270
279
|
app_id?: string;
|
|
271
280
|
channel_device_count?: number;
|
|
272
281
|
created_at?: string | null;
|
|
273
282
|
default_upload_channel?: string;
|
|
283
|
+
existing_app?: boolean;
|
|
274
284
|
expose_metadata?: boolean;
|
|
275
285
|
icon_url?: string;
|
|
276
286
|
id?: string | null;
|
|
287
|
+
ios_store_url?: string | null;
|
|
277
288
|
last_version?: string | null;
|
|
278
289
|
manifest_bundle_count?: number;
|
|
290
|
+
need_onboarding?: boolean;
|
|
279
291
|
name?: string | null;
|
|
280
292
|
owner_org?: string;
|
|
281
293
|
retention?: number;
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -350,15 +350,19 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
350
350
|
};
|
|
351
351
|
apps: {
|
|
352
352
|
Row: {
|
|
353
|
+
android_store_url: string | null;
|
|
353
354
|
app_id: string;
|
|
354
355
|
channel_device_count: number;
|
|
355
356
|
created_at: string | null;
|
|
356
357
|
default_upload_channel: string;
|
|
358
|
+
existing_app: boolean;
|
|
357
359
|
expose_metadata: boolean;
|
|
358
360
|
icon_url: string;
|
|
359
361
|
id: string | null;
|
|
362
|
+
ios_store_url: string | null;
|
|
360
363
|
last_version: string | null;
|
|
361
364
|
manifest_bundle_count: number;
|
|
365
|
+
need_onboarding: boolean;
|
|
362
366
|
name: string | null;
|
|
363
367
|
owner_org: string;
|
|
364
368
|
retention: number;
|
|
@@ -367,15 +371,19 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
367
371
|
user_id: string | null;
|
|
368
372
|
};
|
|
369
373
|
Insert: {
|
|
374
|
+
android_store_url?: string | null;
|
|
370
375
|
app_id: string;
|
|
371
376
|
channel_device_count?: number;
|
|
372
377
|
created_at?: string | null;
|
|
373
378
|
default_upload_channel?: string;
|
|
379
|
+
existing_app?: boolean;
|
|
374
380
|
expose_metadata?: boolean;
|
|
375
381
|
icon_url: string;
|
|
376
382
|
id?: string | null;
|
|
383
|
+
ios_store_url?: string | null;
|
|
377
384
|
last_version?: string | null;
|
|
378
385
|
manifest_bundle_count?: number;
|
|
386
|
+
need_onboarding?: boolean;
|
|
379
387
|
name?: string | null;
|
|
380
388
|
owner_org: string;
|
|
381
389
|
retention?: number;
|
|
@@ -384,15 +392,19 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
384
392
|
user_id?: string | null;
|
|
385
393
|
};
|
|
386
394
|
Update: {
|
|
395
|
+
android_store_url?: string | null;
|
|
387
396
|
app_id?: string;
|
|
388
397
|
channel_device_count?: number;
|
|
389
398
|
created_at?: string | null;
|
|
390
399
|
default_upload_channel?: string;
|
|
400
|
+
existing_app?: boolean;
|
|
391
401
|
expose_metadata?: boolean;
|
|
392
402
|
icon_url?: string;
|
|
393
403
|
id?: string | null;
|
|
404
|
+
ios_store_url?: string | null;
|
|
394
405
|
last_version?: string | null;
|
|
395
406
|
manifest_bundle_count?: number;
|
|
407
|
+
need_onboarding?: boolean;
|
|
396
408
|
name?: string | null;
|
|
397
409
|
owner_org?: string;
|
|
398
410
|
retention?: number;
|
|
@@ -1889,9 +1901,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1889
1901
|
credits_estimated: number;
|
|
1890
1902
|
details?: import("./types/supabase.types").Json | null;
|
|
1891
1903
|
id?: string;
|
|
1892
|
-
metric: Database["public"]["Enums"]
|
|
1893
|
-
* Read directory recursively and return full paths for all files
|
|
1894
|
-
*/["credit_metric_type"];
|
|
1904
|
+
metric: Database["public"]["Enums"]["credit_metric_type"];
|
|
1895
1905
|
org_id: string;
|
|
1896
1906
|
overage_amount: number;
|
|
1897
1907
|
};
|
|
@@ -1942,7 +1952,13 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
1942
1952
|
validated_at?: string;
|
|
1943
1953
|
};
|
|
1944
1954
|
Update: {
|
|
1945
|
-
created_at
|
|
1955
|
+
created_at
|
|
1956
|
+
/**
|
|
1957
|
+
* Calculate checksums for iOS and Android native code in a dependency folder.
|
|
1958
|
+
* Includes both native source files and platform configuration files
|
|
1959
|
+
* (podspec, Package.swift, build.gradle) that define platform dependencies.
|
|
1960
|
+
*/
|
|
1961
|
+
?: string;
|
|
1946
1962
|
id?: number;
|
|
1947
1963
|
org_id?: string;
|
|
1948
1964
|
policy_hash?: string;
|
|
@@ -3738,7 +3754,8 @@ export interface IosUpdaterSyncValidationResult {
|
|
|
3738
3754
|
* (no dependency declaration, installed package, or native references). `shouldCheck` is `true`
|
|
3739
3755
|
* as soon as any signal indicates updater should be wired, then both dependency definitions
|
|
3740
3756
|
* (`Podfile` or SPM `Package.swift`) and generated native outputs (`Podfile.lock`,
|
|
3741
|
-
* `
|
|
3757
|
+
* `capacitor.plugins.json`, or `ios/App/App/capacitor.config.json`) must include
|
|
3758
|
+
* updater markers for `valid` to be `true`.
|
|
3742
3759
|
*/
|
|
3743
3760
|
export declare function validateIosUpdaterSync(rootDir?: string, packageJsonPath?: string): IosUpdaterSyncValidationResult;
|
|
3744
3761
|
interface PromptAndSyncOptions {
|