@capgo/cli 8.17.2 → 8.18.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 +546 -546
- package/dist/package.json +1 -1
- package/dist/src/api/channels.d.ts +4 -0
- package/dist/src/app/list.d.ts +2 -0
- package/dist/src/build/platform-paths.d.ts +7 -0
- package/dist/src/sdk.js +245 -245
- package/dist/src/types/supabase.types.d.ts +4 -0
- package/dist/src/utils.d.ts +6 -0
- package/package.json +1 -1
|
@@ -303,6 +303,7 @@ export type Database = {
|
|
|
303
303
|
app_id: string;
|
|
304
304
|
build_timeout_seconds: number;
|
|
305
305
|
build_timeout_updated_at: string;
|
|
306
|
+
block_provider_infra_requests: boolean;
|
|
306
307
|
channel_device_count: number;
|
|
307
308
|
created_at: string | null;
|
|
308
309
|
default_upload_channel: string;
|
|
@@ -330,6 +331,7 @@ export type Database = {
|
|
|
330
331
|
app_id: string;
|
|
331
332
|
build_timeout_seconds?: number;
|
|
332
333
|
build_timeout_updated_at?: string;
|
|
334
|
+
block_provider_infra_requests?: boolean;
|
|
333
335
|
channel_device_count?: number;
|
|
334
336
|
created_at?: string | null;
|
|
335
337
|
default_upload_channel?: string;
|
|
@@ -357,6 +359,7 @@ export type Database = {
|
|
|
357
359
|
app_id?: string;
|
|
358
360
|
build_timeout_seconds?: number;
|
|
359
361
|
build_timeout_updated_at?: string;
|
|
362
|
+
block_provider_infra_requests?: boolean;
|
|
360
363
|
channel_device_count?: number;
|
|
361
364
|
created_at?: string | null;
|
|
362
365
|
default_upload_channel?: string;
|
|
@@ -4011,6 +4014,7 @@ export type Database = {
|
|
|
4011
4014
|
app_id: string;
|
|
4012
4015
|
build_timeout_seconds: number;
|
|
4013
4016
|
build_timeout_updated_at: string;
|
|
4017
|
+
block_provider_infra_requests: boolean;
|
|
4014
4018
|
channel_device_count: number;
|
|
4015
4019
|
created_at: string;
|
|
4016
4020
|
default_upload_channel: string;
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export declare const defaultHost = "https://capgo.app";
|
|
|
14
14
|
export declare const defaultFileHost = "https://files.capgo.app";
|
|
15
15
|
export declare const defaultApiHost = "https://api.capgo.app";
|
|
16
16
|
export declare const defaultHostWeb = "https://console.capgo.app";
|
|
17
|
+
/** Build a console web-app URL (settings, builds, connect, etc.). */
|
|
18
|
+
export declare function consoleWebUrl(path?: string): string;
|
|
17
19
|
export declare const UPLOAD_TIMEOUT = 120000;
|
|
18
20
|
export declare const ALERT_UPLOAD_SIZE_BYTES: number;
|
|
19
21
|
export declare const MAX_UPLOAD_LENGTH_BYTES: number;
|
|
@@ -409,6 +411,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
409
411
|
app_id: string;
|
|
410
412
|
build_timeout_seconds: number;
|
|
411
413
|
build_timeout_updated_at: string;
|
|
414
|
+
block_provider_infra_requests: boolean;
|
|
412
415
|
channel_device_count: number;
|
|
413
416
|
created_at: string | null;
|
|
414
417
|
default_upload_channel: string;
|
|
@@ -436,6 +439,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
436
439
|
app_id: string;
|
|
437
440
|
build_timeout_seconds?: number;
|
|
438
441
|
build_timeout_updated_at?: string;
|
|
442
|
+
block_provider_infra_requests?: boolean;
|
|
439
443
|
channel_device_count?: number;
|
|
440
444
|
created_at?: string | null;
|
|
441
445
|
default_upload_channel?: string;
|
|
@@ -463,6 +467,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
463
467
|
app_id?: string;
|
|
464
468
|
build_timeout_seconds?: number;
|
|
465
469
|
build_timeout_updated_at?: string;
|
|
470
|
+
block_provider_infra_requests?: boolean;
|
|
466
471
|
channel_device_count?: number;
|
|
467
472
|
created_at?: string | null;
|
|
468
473
|
default_upload_channel?: string;
|
|
@@ -4010,6 +4015,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
4010
4015
|
app_id: string;
|
|
4011
4016
|
build_timeout_seconds: number;
|
|
4012
4017
|
build_timeout_updated_at: string;
|
|
4018
|
+
block_provider_infra_requests: boolean;
|
|
4013
4019
|
channel_device_count: number;
|
|
4014
4020
|
created_at: string;
|
|
4015
4021
|
default_upload_channel: string;
|