@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
package/dist/package.json
CHANGED
|
@@ -319,6 +319,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
319
319
|
app_id: string;
|
|
320
320
|
build_timeout_seconds: number;
|
|
321
321
|
build_timeout_updated_at: string;
|
|
322
|
+
block_provider_infra_requests: boolean;
|
|
322
323
|
channel_device_count: number;
|
|
323
324
|
created_at: string | null;
|
|
324
325
|
default_upload_channel: string;
|
|
@@ -346,6 +347,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
346
347
|
app_id: string;
|
|
347
348
|
build_timeout_seconds?: number;
|
|
348
349
|
build_timeout_updated_at?: string;
|
|
350
|
+
block_provider_infra_requests?: boolean;
|
|
349
351
|
channel_device_count?: number;
|
|
350
352
|
created_at?: string | null;
|
|
351
353
|
default_upload_channel?: string;
|
|
@@ -373,6 +375,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
373
375
|
app_id?: string;
|
|
374
376
|
build_timeout_seconds?: number;
|
|
375
377
|
build_timeout_updated_at?: string;
|
|
378
|
+
block_provider_infra_requests?: boolean;
|
|
376
379
|
channel_device_count?: number;
|
|
377
380
|
created_at?: string | null;
|
|
378
381
|
default_upload_channel?: string;
|
|
@@ -3920,6 +3923,7 @@ export declare function delChannelDevices(supabase: SupabaseClient<Database>, ap
|
|
|
3920
3923
|
app_id: string;
|
|
3921
3924
|
build_timeout_seconds: number;
|
|
3922
3925
|
build_timeout_updated_at: string;
|
|
3926
|
+
block_provider_infra_requests: boolean;
|
|
3923
3927
|
channel_device_count: number;
|
|
3924
3928
|
created_at: string;
|
|
3925
3929
|
default_upload_channel: string;
|
package/dist/src/app/list.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare function listAppInternal(options: OptionsBase, silent?: boolean):
|
|
|
6
6
|
app_id: string;
|
|
7
7
|
build_timeout_seconds: number;
|
|
8
8
|
build_timeout_updated_at: string;
|
|
9
|
+
block_provider_infra_requests: boolean;
|
|
9
10
|
channel_device_count: number;
|
|
10
11
|
created_at: string | null;
|
|
11
12
|
default_upload_channel: string;
|
|
@@ -33,6 +34,7 @@ export declare function listApp(options: OptionsBase): Promise<{
|
|
|
33
34
|
app_id: string;
|
|
34
35
|
build_timeout_seconds: number;
|
|
35
36
|
build_timeout_updated_at: string;
|
|
37
|
+
block_provider_infra_requests: boolean;
|
|
36
38
|
channel_device_count: number;
|
|
37
39
|
created_at: string | null;
|
|
38
40
|
default_upload_channel: string;
|
|
@@ -18,3 +18,10 @@ export declare function normalizeRelPath(input: string): string;
|
|
|
18
18
|
* or when configured as ".".
|
|
19
19
|
*/
|
|
20
20
|
export declare function getPlatformDirFromCapacitorConfig(capConfig: any, platform: 'ios' | 'android'): string;
|
|
21
|
+
/**
|
|
22
|
+
* Normalize Windows path separators inside native dependency path literals.
|
|
23
|
+
* Capacitor CLI on Windows writes backslashes into SPM Package.swift, CocoaPods
|
|
24
|
+
* Podfiles, and Gradle settings — Swift treats `\` as escape sequences and SPM
|
|
25
|
+
* resolution fails on macOS builders.
|
|
26
|
+
*/
|
|
27
|
+
export declare function normalizeNativeDependencyPathsInText(content: string): string;
|