@capgo/cli 7.100.7 → 7.101.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 +445 -443
- package/dist/keychain-export.swift +351 -0
- package/dist/package.json +4 -2
- package/dist/src/api/channels.d.ts +3 -3
- package/dist/src/build/mobileprovision-parser.d.ts +27 -0
- package/dist/src/build/onboarding/apple-api.d.ts +50 -15
- package/dist/src/build/onboarding/macos-signing.d.ts +159 -0
- package/dist/src/build/onboarding/progress.d.ts +4 -0
- package/dist/src/build/onboarding/types.d.ts +23 -1
- package/dist/src/sdk.js +178 -178
- package/dist/src/types/supabase.types.d.ts +3 -3
- package/dist/src/utils.d.ts +3 -3
- package/package.json +4 -2
|
@@ -2748,7 +2748,7 @@ export type Database = {
|
|
|
2748
2748
|
webhooks: {
|
|
2749
2749
|
Row: {
|
|
2750
2750
|
created_at: string;
|
|
2751
|
-
created_by: string
|
|
2751
|
+
created_by: string;
|
|
2752
2752
|
enabled: boolean;
|
|
2753
2753
|
events: string[];
|
|
2754
2754
|
id: string;
|
|
@@ -2760,7 +2760,7 @@ export type Database = {
|
|
|
2760
2760
|
};
|
|
2761
2761
|
Insert: {
|
|
2762
2762
|
created_at?: string;
|
|
2763
|
-
created_by
|
|
2763
|
+
created_by: string;
|
|
2764
2764
|
enabled?: boolean;
|
|
2765
2765
|
events: string[];
|
|
2766
2766
|
id?: string;
|
|
@@ -2772,7 +2772,7 @@ export type Database = {
|
|
|
2772
2772
|
};
|
|
2773
2773
|
Update: {
|
|
2774
2774
|
created_at?: string;
|
|
2775
|
-
created_by?: string
|
|
2775
|
+
created_by?: string;
|
|
2776
2776
|
enabled?: boolean;
|
|
2777
2777
|
events?: string[];
|
|
2778
2778
|
id?: string;
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -2782,7 +2782,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
2782
2782
|
webhooks: {
|
|
2783
2783
|
Row: {
|
|
2784
2784
|
created_at: string;
|
|
2785
|
-
created_by: string
|
|
2785
|
+
created_by: string;
|
|
2786
2786
|
enabled: boolean;
|
|
2787
2787
|
events: string[];
|
|
2788
2788
|
id: string;
|
|
@@ -2794,7 +2794,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
2794
2794
|
};
|
|
2795
2795
|
Insert: {
|
|
2796
2796
|
created_at?: string;
|
|
2797
|
-
created_by
|
|
2797
|
+
created_by: string;
|
|
2798
2798
|
enabled?: boolean;
|
|
2799
2799
|
events: string[];
|
|
2800
2800
|
id?: string;
|
|
@@ -2806,7 +2806,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
|
|
|
2806
2806
|
};
|
|
2807
2807
|
Update: {
|
|
2808
2808
|
created_at?: string;
|
|
2809
|
-
created_by?: string
|
|
2809
|
+
created_by?: string;
|
|
2810
2810
|
enabled?: boolean;
|
|
2811
2811
|
events?: string[];
|
|
2812
2812
|
id?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.101.0",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -88,8 +88,10 @@
|
|
|
88
88
|
"test:version-detection:setup": "./test/fixtures/setup-test-projects.sh",
|
|
89
89
|
"test:platform-paths": "bun test/test-platform-paths.mjs",
|
|
90
90
|
"test:payload-split": "bun test/test-payload-split.mjs",
|
|
91
|
+
"test:macos-signing": "bun test/test-macos-signing.mjs",
|
|
92
|
+
"test:apple-api-import-helpers": "bun test/test-apple-api-import-helpers.mjs",
|
|
91
93
|
"test:manifest-path-encoding": "bun test/test-manifest-path-encoding.mjs",
|
|
92
|
-
"test": "bun run build && bun run test:version-detection:setup && bun run test:bundle && bun run test:functional && bun run test:semver && bun run test:version-edge-cases && bun run test:regex && bun run test:upload && bun run test:credentials && bun run test:credentials-validation && bun run test:build-zip-filter && bun run test:checksum && bun run test:build-needed && bun run test:ci-prompts && bun run test:posthog-exception && bun run test:build-platform-selection && bun run test:onboarding-recovery && bun run test:onboarding-run-targets && bun run test:run-device-command && bun run test:init-app-conflict && bun run test:init-guardrails && bun run test:prompt-preferences && bun run test:esm-sdk && bun run test:mcp && bun run test:version-detection && bun run test:platform-paths && bun run test:payload-split && bun run test:manifest-path-encoding",
|
|
94
|
+
"test": "bun run build && bun run test:version-detection:setup && bun run test:bundle && bun run test:functional && bun run test:semver && bun run test:version-edge-cases && bun run test:regex && bun run test:upload && bun run test:credentials && bun run test:credentials-validation && bun run test:build-zip-filter && bun run test:checksum && bun run test:build-needed && bun run test:ci-prompts && bun run test:posthog-exception && bun run test:build-platform-selection && bun run test:onboarding-recovery && bun run test:onboarding-run-targets && bun run test:run-device-command && bun run test:init-app-conflict && bun run test:init-guardrails && bun run test:prompt-preferences && bun run test:esm-sdk && bun run test:mcp && bun run test:version-detection && bun run test:platform-paths && bun run test:payload-split && bun run test:manifest-path-encoding && bun run test:macos-signing && bun run test:apple-api-import-helpers",
|
|
93
95
|
"test:build-platform-selection": "bun test/test-build-platform-selection.mjs"
|
|
94
96
|
},
|
|
95
97
|
"dependencies": {
|