@capgo/cli 8.31.0 → 8.31.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.
@@ -21,6 +21,9 @@ export declare const ALERT_UPLOAD_SIZE_BYTES: number;
21
21
  export declare const MAX_UPLOAD_LENGTH_BYTES: number;
22
22
  export declare const MAX_CHUNK_SIZE_BYTES: number;
23
23
  export declare const TUS_UPLOAD_RETRY_DELAYS: number[];
24
+ export declare const MAX_MANIFEST_ENTRIES = 10000;
25
+ /** User-facing error when a delta/manifest upload exceeds MAX_MANIFEST_ENTRIES. */
26
+ export declare function deltaManifestTooLargeMessage(fileCount: number): string;
24
27
  export declare const PACKNAME = "package.json";
25
28
  export type ArrayElement<ArrayType extends readonly unknown[]> = ArrayType extends readonly (infer ElementType)[] ? ElementType : never;
26
29
  export type Organization = ArrayElement<Database['public']['Functions']['get_orgs_v7']['Returns']>;
@@ -382,9 +385,7 @@ export declare function createSupabaseClient(apikey: string, supaHost?: string,
382
385
  };
383
386
  Update: {
384
387
  app_id?: string;
385
- checksum? /**
386
- * Parser for description
387
- */: string;
388
+ checksum?: string;
388
389
  created_at?: string | null;
389
390
  id?: number;
390
391
  owner_org?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
3
  "type": "module",
4
- "version": "8.31.0",
4
+ "version": "8.31.1",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -71,7 +71,7 @@ Use this skill for OTA update workflows in Capgo Cloud.
71
71
  - `--zip`
72
72
  - `--tus`
73
73
  - `--tus-chunk-size <tusChunkSize>`
74
- - `--delta`
74
+ - `--delta` (refuses over 10,000 files — delta tracks each file; use `--no-delta` for a full zip, or reduce build files)
75
75
  - `--delta-only`
76
76
  - `--no-delta`
77
77
  - `--encrypted-checksum <encryptedChecksum>`