@capgo/cli 7.107.0 → 7.108.1

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.
@@ -702,7 +702,7 @@ export type Database = {
702
702
  public: boolean;
703
703
  rbac_id: string;
704
704
  updated_at: string;
705
- version: number;
705
+ version: number | null;
706
706
  };
707
707
  Insert: {
708
708
  allow_dev?: boolean;
@@ -724,7 +724,7 @@ export type Database = {
724
724
  public?: boolean;
725
725
  rbac_id?: string;
726
726
  updated_at?: string;
727
- version: number;
727
+ version?: number | null;
728
728
  };
729
729
  Update: {
730
730
  allow_dev?: boolean;
@@ -746,7 +746,7 @@ export type Database = {
746
746
  public?: boolean;
747
747
  rbac_id?: string;
748
748
  updated_at?: string;
749
- version?: number;
749
+ version?: number | null;
750
750
  };
751
751
  Relationships: [
752
752
  {
@@ -3001,7 +3001,7 @@ export type Database = {
3001
3001
  Args: {
3002
3002
  appid: string;
3003
3003
  };
3004
- Returns: number;
3004
+ Returns: number | null;
3005
3005
  };
3006
3006
  cleanup_expired_apikeys: {
3007
3007
  Args: never;
@@ -805,7 +805,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
805
805
  public: boolean;
806
806
  rbac_id: string;
807
807
  updated_at: string;
808
- version: number;
808
+ version: number | null;
809
809
  };
810
810
  Insert: {
811
811
  allow_dev?: boolean;
@@ -827,7 +827,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
827
827
  public?: boolean;
828
828
  rbac_id?: string;
829
829
  updated_at?: string;
830
- version: number;
830
+ version?: number | null;
831
831
  };
832
832
  Update: {
833
833
  allow_dev?: boolean;
@@ -849,7 +849,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
849
849
  public?: boolean;
850
850
  rbac_id?: string;
851
851
  updated_at?: string;
852
- version?: number;
852
+ version?: number | null;
853
853
  };
854
854
  Relationships: [{
855
855
  foreignKeyName: "channels_app_id_fkey";
@@ -3030,7 +3030,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
3030
3030
  Args: {
3031
3031
  appid: string;
3032
3032
  };
3033
- Returns: number;
3033
+ Returns: number | null;
3034
3034
  };
3035
3035
  cleanup_expired_apikeys: {
3036
3036
  Args: never;
@@ -5332,7 +5332,7 @@ export declare function updateOrCreateChannel(supabase: SupabaseClient<Database>
5332
5332
  public: boolean;
5333
5333
  rbac_id: string;
5334
5334
  updated_at: string;
5335
- version: number;
5335
+ version: number | null;
5336
5336
  }>>;
5337
5337
  export declare function sendEvent(capgkey: string, payload: TrackOptions & {
5338
5338
  notifyConsole?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
3
  "type": "module",
4
- "version": "7.107.0",
4
+ "version": "7.108.1",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -75,6 +75,7 @@
75
75
  "test:checksum": "bun test/test-checksum-algorithm.mjs",
76
76
  "test:build-needed": "bun test/test-build-needed.mjs",
77
77
  "test:ci-prompts": "bun test/test-ci-prompts.mjs",
78
+ "test:ci-secrets": "bun test/test-ci-secrets.mjs",
78
79
  "test:posthog-exception": "bun test/test-posthog-exception.mjs",
79
80
  "test:onboarding-recovery": "bun test/test-onboarding-recovery.mjs",
80
81
  "test:onboarding-run-targets": "bun test/test-onboarding-run-targets.mjs",
@@ -91,7 +92,7 @@
91
92
  "test:macos-signing": "bun test/test-macos-signing.mjs",
92
93
  "test:apple-api-import-helpers": "bun test/test-apple-api-import-helpers.mjs",
93
94
  "test:manifest-path-encoding": "bun test/test-manifest-path-encoding.mjs",
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 && bun run test:ai-log-capture && bun run test:ai-analyze-flow && bun run test:ai-render-markdown",
95
+ "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:ci-secrets && 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 && bun run test:ai-log-capture && bun run test:ai-analyze-flow && bun run test:ai-render-markdown",
95
96
  "test:build-platform-selection": "bun test/test-build-platform-selection.mjs",
96
97
  "test:ai-log-capture": "bun test/test-ai-log-capture.mjs",
97
98
  "test:ai-analyze-flow": "bun test/test-ai-analyze-flow.mjs",