@capgo/cli 8.33.5 → 8.35.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
3
  "type": "module",
4
- "version": "8.33.5",
4
+ "version": "8.35.0",
5
5
  "description": "A CLI to upload to capgo servers",
6
6
  "author": "Martin martin@capgo.app",
7
7
  "license": "Apache 2.0",
@@ -69,6 +69,7 @@ export declare function findChannel(supabase: SupabaseClient<Database>, appId: s
69
69
  rollout_percentage_bps: number;
70
70
  rollout_version: number | null;
71
71
  rbac_id: string;
72
+ update_package: Database["public"]["Enums"]["channel_update_package"];
72
73
  updated_at: string;
73
74
  version: number | null;
74
75
  }, false>;
@@ -22,6 +22,7 @@ export declare function listAppInternal(options: OptionsBase, silent?: boolean):
22
22
  rollout_paused_version_names: string[];
23
23
  name: string | null;
24
24
  need_onboarding: boolean;
25
+ onboarding: import("../types/supabase.types").Json;
25
26
  onboarding_completed_at: string | null;
26
27
  owner_org: string;
27
28
  retention: number;
@@ -54,6 +55,7 @@ export declare function listApp(options: OptionsBase, silent?: boolean): Promise
54
55
  rollout_paused_version_names: string[];
55
56
  name: string | null;
56
57
  need_onboarding: boolean;
58
+ onboarding: import("../types/supabase.types").Json;
57
59
  onboarding_completed_at: string | null;
58
60
  owner_org: string;
59
61
  retention: number;
@@ -54,6 +54,13 @@ export declare const optionsSetChannelSchema: z.ZodObject<{
54
54
  android: z.ZodOptional<z.ZodBoolean>;
55
55
  selfAssign: z.ZodOptional<z.ZodBoolean>;
56
56
  disableAutoUpdate: z.ZodOptional<z.ZodString>;
57
+ updatePackage: z.ZodOptional<z.ZodEnum<{
58
+ all: "all";
59
+ zip: "zip";
60
+ delta: "delta";
61
+ zip_from_builtin: "zip_from_builtin";
62
+ delta_from_builtin: "delta_from_builtin";
63
+ }>>;
57
64
  dev: z.ZodOptional<z.ZodBoolean>;
58
65
  emulator: z.ZodOptional<z.ZodBoolean>;
59
66
  device: z.ZodOptional<z.ZodBoolean>;
@@ -159,6 +159,13 @@ export declare const updateChannelOptionsBaseSchema: z.ZodObject<{
159
159
  android: z.ZodOptional<z.ZodBoolean>;
160
160
  selfAssign: z.ZodOptional<z.ZodBoolean>;
161
161
  disableAutoUpdate: z.ZodOptional<z.ZodString>;
162
+ updatePackage: z.ZodOptional<z.ZodEnum<{
163
+ all: "all";
164
+ zip: "zip";
165
+ delta: "delta";
166
+ zip_from_builtin: "zip_from_builtin";
167
+ delta_from_builtin: "delta_from_builtin";
168
+ }>>;
162
169
  dev: z.ZodOptional<z.ZodBoolean>;
163
170
  emulator: z.ZodOptional<z.ZodBoolean>;
164
171
  device: z.ZodOptional<z.ZodBoolean>;
@@ -200,6 +207,13 @@ export declare const updateChannelOptionsSchema: z.ZodObject<{
200
207
  android: z.ZodOptional<z.ZodBoolean>;
201
208
  selfAssign: z.ZodOptional<z.ZodBoolean>;
202
209
  disableAutoUpdate: z.ZodOptional<z.ZodString>;
210
+ updatePackage: z.ZodOptional<z.ZodEnum<{
211
+ all: "all";
212
+ zip: "zip";
213
+ delta: "delta";
214
+ zip_from_builtin: "zip_from_builtin";
215
+ delta_from_builtin: "delta_from_builtin";
216
+ }>>;
203
217
  dev: z.ZodOptional<z.ZodBoolean>;
204
218
  emulator: z.ZodOptional<z.ZodBoolean>;
205
219
  device: z.ZodOptional<z.ZodBoolean>;