@capawesome/cli 4.6.0 → 4.7.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/commands/apps/builds/create.js +145 -128
  3. package/dist/commands/apps/bundles/create.js +4 -2
  4. package/dist/commands/apps/bundles/delete.js +2 -3
  5. package/dist/commands/apps/bundles/update.js +2 -3
  6. package/dist/commands/apps/certificates/create.js +3 -19
  7. package/dist/commands/apps/certificates/delete.js +28 -5
  8. package/dist/commands/apps/certificates/get.js +28 -5
  9. package/dist/commands/apps/certificates/update.js +3 -1
  10. package/dist/commands/apps/deployments/create.js +5 -77
  11. package/dist/commands/apps/devices/forcechannel.js +9 -7
  12. package/dist/commands/apps/devices/unforcechannel.js +9 -7
  13. package/dist/commands/apps/link.js +34 -0
  14. package/dist/commands/apps/link.test.js +94 -0
  15. package/dist/commands/apps/liveupdates/bundle.js +12 -2
  16. package/dist/commands/apps/liveupdates/create.js +293 -0
  17. package/dist/commands/apps/liveupdates/create.test.js +300 -0
  18. package/dist/commands/apps/liveupdates/generate-manifest.js +17 -1
  19. package/dist/commands/apps/liveupdates/generate-manifest.test.js +21 -1
  20. package/dist/commands/apps/liveupdates/register.js +10 -15
  21. package/dist/commands/apps/liveupdates/upload.js +25 -16
  22. package/dist/commands/apps/transfer.js +47 -0
  23. package/dist/commands/apps/transfer.test.js +123 -0
  24. package/dist/commands/apps/unlink.js +35 -0
  25. package/dist/commands/apps/unlink.test.js +99 -0
  26. package/dist/commands/manifests/generate.js +1 -1
  27. package/dist/index.js +4 -0
  28. package/dist/services/app-build-sources.js +120 -0
  29. package/dist/services/app-certificates.js +0 -1
  30. package/dist/services/app-devices.js +8 -0
  31. package/dist/services/apps.js +25 -0
  32. package/dist/services/authorization-service.js +5 -1
  33. package/dist/services/jobs.js +13 -0
  34. package/dist/types/app-build-source.js +1 -0
  35. package/dist/types/index.js +1 -0
  36. package/dist/utils/custom-properties.js +22 -0
  37. package/dist/utils/file.js +12 -1
  38. package/dist/utils/git.js +91 -0
  39. package/dist/utils/git.test.js +130 -0
  40. package/dist/utils/job.js +77 -0
  41. package/dist/utils/prompt.js +1 -1
  42. package/dist/utils/zip.js +19 -2
  43. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [4.7.0](https://github.com/capawesome-team/cli/compare/v4.6.0...v4.7.0) (2026-04-04)
6
+
7
+
8
+ ### Features
9
+
10
+ * **apps:builds:create:** support ad hoc environment variables ([#134](https://github.com/capawesome-team/cli/issues/134)) ([80c962a](https://github.com/capawesome-team/cli/commit/80c962abbc7548d32a7c0782860632117817d62b))
11
+ * **apps:certificates:** add `--type` option to `get` and `delete` commands ([#135](https://github.com/capawesome-team/cli/issues/135)) ([b9bdc51](https://github.com/capawesome-team/cli/commit/b9bdc5190a7a19b82589876cc798a30a83a4c5f2))
12
+ * **apps:certificates:** deprecate `--type` option ([#130](https://github.com/capawesome-team/cli/issues/130)) ([c53b766](https://github.com/capawesome-team/cli/commit/c53b76697189e40c9b96f8ad679e058775c23cd9))
13
+ * **apps:devices:** support multiple `--device-id` flags for `forcechannel` and `unforcechannel` ([#132](https://github.com/capawesome-team/cli/issues/132)) ([f61b812](https://github.com/capawesome-team/cli/commit/f61b8126d862eb44c1c1989692e823fdb95b0635))
14
+ * **apps:liveupdates:** add `apps:liveupdates:create` command ([#133](https://github.com/capawesome-team/cli/issues/133)) ([244c0b0](https://github.com/capawesome-team/cli/commit/244c0b0f785548083c555453c63941584135bc17))
15
+ * **apps:liveupdates:** add source map detection and warning ([f90427c](https://github.com/capawesome-team/cli/commit/f90427c0f1d9a691f609f481c4b098c51f6adb1f))
16
+ * **apps:liveupdates:** support multiple `--channel` options in `create` command ([#140](https://github.com/capawesome-team/cli/issues/140)) ([12df3ca](https://github.com/capawesome-team/cli/commit/12df3ca100cb53196064ca18c3f5970b7326b1a2))
17
+ * **apps:** add `--path` and `--url` options ([#131](https://github.com/capawesome-team/cli/issues/131)) ([8ae803e](https://github.com/capawesome-team/cli/commit/8ae803e38b74634be3eb32333aca072f722c1bf4))
18
+ * **apps:** add `apps:link` and `apps:unlink` commands ([#141](https://github.com/capawesome-team/cli/issues/141)) ([e37e2fe](https://github.com/capawesome-team/cli/commit/e37e2fe8c8d80845e92379a7f859564f78725052))
19
+ * **apps:** add `apps:transfer` command ([#142](https://github.com/capawesome-team/cli/issues/142)) ([b6f6b57](https://github.com/capawesome-team/cli/commit/b6f6b57943075ac3ab04d52a9a2d62deda85482e))
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * **apps:liveupdates:** improve error message for invalid private keys ([#138](https://github.com/capawesome-team/cli/issues/138)) ([7752df3](https://github.com/capawesome-team/cli/commit/7752df3fc94f61555d07f7e2e9488d51fca0ae9b))
25
+ * **apps:liveupdates:** skip symlinks and validate directory path in live update commands ([#139](https://github.com/capawesome-team/cli/issues/139)) ([e1ad835](https://github.com/capawesome-team/cli/commit/e1ad83592ea0e6fdf21ea888f39b5dce66a63e29))
26
+ * **login:** trim authorization token to prevent invalid header characters ([#137](https://github.com/capawesome-team/cli/issues/137)) ([d49d410](https://github.com/capawesome-team/cli/commit/d49d4104c4392d32bfc0fb351e5837a74e02b6b3))
27
+ * **utils:** use error instead of warn for canceled build status ([ef3ab54](https://github.com/capawesome-team/cli/commit/ef3ab540416553f71047a0400a6af4e28da32568))
28
+
5
29
  ## [4.6.0](https://github.com/capawesome-team/cli/compare/v4.5.0...v4.6.0) (2026-03-18)
6
30
 
7
31
 
@@ -1,12 +1,14 @@
1
1
  import { DEFAULT_CONSOLE_BASE_URL } from '../../../config/consts.js';
2
+ import appBuildSourcesService from '../../../services/app-build-sources.js';
2
3
  import appBuildsService from '../../../services/app-builds.js';
3
4
  import appCertificatesService from '../../../services/app-certificates.js';
4
5
  import appEnvironmentsService from '../../../services/app-environments.js';
5
- import { unescapeAnsi } from '../../../utils/ansi.js';
6
+ import { parseKeyValuePairs } from '../../../utils/app-environments.js';
6
7
  import { withAuth } from '../../../utils/auth.js';
7
8
  import { isInteractive } from '../../../utils/environment.js';
9
+ import { waitForJobCompletion } from '../../../utils/job.js';
8
10
  import { prompt, promptAppSelection, promptOrganizationSelection } from '../../../utils/prompt.js';
9
- import { wait } from '../../../utils/wait.js';
11
+ import zip from '../../../utils/zip.js';
10
12
  import { defineCommand, defineOptions } from '@robingenz/zli';
11
13
  import consola from 'consola';
12
14
  import fs from 'fs/promises';
@@ -15,7 +17,7 @@ import { z } from 'zod';
15
17
  const IOS_BUILD_TYPES = ['simulator', 'development', 'ad-hoc', 'app-store', 'enterprise'];
16
18
  const ANDROID_BUILD_TYPES = ['debug', 'release'];
17
19
  export default defineCommand({
18
- description: 'Create a new app build.',
20
+ description: 'Create a new app build on Capawesome Cloud Runners.',
19
21
  options: defineOptions(z.object({
20
22
  aab: z
21
23
  .union([z.boolean(), z.string()])
@@ -45,6 +47,7 @@ export default defineCommand({
45
47
  .optional()
46
48
  .describe('Download the generated IPA file (iOS only). Optionally provide a file path.'),
47
49
  json: z.boolean().optional().describe('Output in JSON format.'),
50
+ path: z.string().optional().describe('Path to local source files to upload.'),
48
51
  platform: z
49
52
  .enum(['ios', 'android', 'web'], {
50
53
  message: 'Platform must be either `ios`, `android`, or `web`.',
@@ -57,10 +60,19 @@ export default defineCommand({
57
60
  })
58
61
  .optional()
59
62
  .describe('The build stack to use for the build process.'),
63
+ url: z.string().optional().describe('URL to a zip file to use as build source.'),
60
64
  type: z
61
65
  .string()
62
66
  .optional()
63
67
  .describe('The type of build. For iOS, supported values are `simulator`, `development`, `ad-hoc`, `app-store`, and `enterprise`. For Android, supported values are `debug` and `release`. For Web, no type is required.'),
68
+ variable: z
69
+ .array(z.string())
70
+ .optional()
71
+ .describe('Ad hoc environment variable in key=value format. Can be specified multiple times.'),
72
+ variableFile: z
73
+ .string()
74
+ .optional()
75
+ .describe('Path to a file containing ad hoc environment variables in .env format.'),
64
76
  zip: z
65
77
  .union([z.boolean(), z.string()])
66
78
  .optional()
@@ -68,7 +80,7 @@ export default defineCommand({
68
80
  yes: z.boolean().optional().describe('Skip confirmation prompts.'),
69
81
  }), { y: 'yes' }),
70
82
  action: withAuth(async (options) => {
71
- let { appId, platform, type, gitRef, environment, certificate, json, stack } = options;
83
+ let { appId, platform, type, gitRef, environment, certificate, json, stack, path: sourcePath, url } = options;
72
84
  // Validate that detached flag cannot be used with artifact flags
73
85
  if (options.detached && (options.apk || options.aab || options.ipa || options.zip)) {
74
86
  consola.error('The --detached flag cannot be used with --apk, --aab, --ipa, or --zip flags.');
@@ -84,6 +96,39 @@ export default defineCommand({
84
96
  consola.error('The --channel and --destination flags cannot be used together.');
85
97
  process.exit(1);
86
98
  }
99
+ // Validate that path, url, and gitRef cannot be used together
100
+ if (sourcePath && gitRef) {
101
+ consola.error('The --path and --git-ref flags cannot be used together.');
102
+ process.exit(1);
103
+ }
104
+ if (url && gitRef) {
105
+ consola.error('The --url and --git-ref flags cannot be used together.');
106
+ process.exit(1);
107
+ }
108
+ if (url && sourcePath) {
109
+ consola.error('The --url and --path flags cannot be used together.');
110
+ process.exit(1);
111
+ }
112
+ // Validate url if provided
113
+ if (url) {
114
+ consola.warn('The --url option is experimental and may change in the future.');
115
+ }
116
+ // Validate path if provided
117
+ if (sourcePath) {
118
+ consola.warn('The --path option is experimental and may change in the future.');
119
+ const resolvedPath = path.resolve(sourcePath);
120
+ const stat = await fs.stat(resolvedPath).catch(() => null);
121
+ if (!stat || !stat.isDirectory()) {
122
+ consola.error('The --path must point to an existing directory.');
123
+ process.exit(1);
124
+ }
125
+ const packageJsonPath = path.join(resolvedPath, 'package.json');
126
+ const packageJsonStat = await fs.stat(packageJsonPath).catch(() => null);
127
+ if (!packageJsonStat || !packageJsonStat.isFile()) {
128
+ consola.error('The directory specified by --path must contain a package.json file.');
129
+ process.exit(1);
130
+ }
131
+ }
87
132
  // Prompt for app ID if not provided
88
133
  if (!appId) {
89
134
  if (!isInteractive()) {
@@ -113,10 +158,10 @@ export default defineCommand({
113
158
  process.exit(1);
114
159
  }
115
160
  }
116
- // Prompt for git ref if not provided
117
- if (!gitRef) {
161
+ // Prompt for git ref if not provided and no path or url specified
162
+ if (!sourcePath && !url && !gitRef) {
118
163
  if (!isInteractive()) {
119
- consola.error('You must provide a git ref when running in non-interactive environment.');
164
+ consola.error('You must provide a git ref, path, or url when running in non-interactive environment.');
120
165
  process.exit(1);
121
166
  }
122
167
  gitRef = await prompt('Enter the Git reference (branch, tag, or commit SHA):', {
@@ -197,9 +242,48 @@ export default defineCommand({
197
242
  }
198
243
  }
199
244
  }
245
+ // Parse ad hoc environment variables from inline and file
246
+ const variablesMap = new Map();
247
+ if (options.variableFile) {
248
+ const fileContent = await fs.readFile(options.variableFile, 'utf-8');
249
+ const fileVariables = parseKeyValuePairs(fileContent);
250
+ fileVariables.forEach((v) => variablesMap.set(v.key, v.value));
251
+ }
252
+ if (options.variable) {
253
+ const inlineVariables = parseKeyValuePairs(options.variable.join('\n'));
254
+ inlineVariables.forEach((v) => variablesMap.set(v.key, v.value));
255
+ }
256
+ const adHocEnvironmentVariables = variablesMap.size > 0 ? Object.fromEntries(variablesMap) : undefined;
257
+ // Create build source from URL if provided
258
+ let appBuildSourceId;
259
+ if (url) {
260
+ consola.start('Creating build source from URL...');
261
+ const appBuildSource = await appBuildSourcesService.createFromUrl({ appId, fileUrl: url });
262
+ appBuildSourceId = appBuildSource.id;
263
+ consola.success('Build source created successfully.');
264
+ }
265
+ // Upload source files if path is provided
266
+ if (sourcePath) {
267
+ const resolvedPath = path.resolve(sourcePath);
268
+ consola.start('Zipping source files...');
269
+ const buffer = await zip.zipFolderWithGitignore(resolvedPath);
270
+ consola.start('Uploading source files...');
271
+ const appBuildSource = await appBuildSourcesService.createFromFile({
272
+ appId,
273
+ fileSizeInBytes: buffer.byteLength,
274
+ buffer,
275
+ name: 'source.zip',
276
+ }, (currentPart, totalParts) => {
277
+ consola.start(`Uploading source files (${currentPart}/${totalParts})...`);
278
+ });
279
+ appBuildSourceId = appBuildSource.id;
280
+ consola.success('Source files uploaded successfully.');
281
+ }
200
282
  // Create the app build
201
283
  consola.start('Creating build...');
202
284
  const response = await appBuildsService.create({
285
+ adHocEnvironmentVariables,
286
+ appBuildSourceId,
203
287
  appCertificateName: certificate,
204
288
  appEnvironmentName: environment,
205
289
  appId,
@@ -215,127 +299,60 @@ export default defineCommand({
215
299
  // Wait for build job to complete by default, unless --detached flag is set
216
300
  const shouldWait = !options.detached;
217
301
  if (shouldWait) {
218
- let lastPrintedLogNumber = 0;
219
- let isWaitingForStart = true;
220
- // Poll build status until completion
221
- while (true) {
222
- try {
223
- const build = await appBuildsService.findOne({
224
- appId,
225
- appBuildId: response.id,
226
- relations: 'appBuildArtifacts,job,job.jobLogs',
227
- });
228
- if (!build.job) {
229
- await wait(3000);
230
- continue;
231
- }
232
- const jobStatus = build.job.status;
233
- // Show spinner while queued or pending
234
- if (jobStatus === 'queued' || jobStatus === 'pending') {
235
- if (isWaitingForStart) {
236
- consola.start(`Waiting for build to start (status: ${jobStatus})...`);
237
- }
238
- await wait(3000);
239
- continue;
240
- }
241
- // Stop spinner when job moves to in_progress
242
- if (isWaitingForStart && jobStatus === 'in_progress') {
243
- isWaitingForStart = false;
244
- consola.success('Build started...');
245
- }
246
- // Print new logs
247
- if (build.job.jobLogs && build.job.jobLogs.length > 0) {
248
- const newLogs = build.job.jobLogs
249
- .filter((log) => log.number > lastPrintedLogNumber)
250
- .sort((a, b) => a.number - b.number);
251
- for (const log of newLogs) {
252
- console.log(unescapeAnsi(log.payload));
253
- lastPrintedLogNumber = log.number;
254
- }
255
- }
256
- // Handle terminal states
257
- if (jobStatus === 'succeeded' ||
258
- jobStatus === 'failed' ||
259
- jobStatus === 'canceled' ||
260
- jobStatus === 'rejected' ||
261
- jobStatus === 'timed_out') {
262
- console.log(); // New line for better readability
263
- if (jobStatus === 'succeeded') {
264
- consola.info(`Build ID: ${response.id}`);
265
- consola.info(`Build Number: ${response.numberAsString}`);
266
- consola.info(`Build URL: ${DEFAULT_CONSOLE_BASE_URL}/apps/${appId}/builds/${response.id}`);
267
- consola.success('Build completed successfully.');
268
- console.log(); // New line for better readability
269
- // Download artifacts if flags are set
270
- if (options.apk && platform === 'android') {
271
- await handleArtifactDownload({
272
- appId,
273
- buildId: response.id,
274
- buildArtifacts: build.appBuildArtifacts,
275
- artifactType: 'apk',
276
- filePath: typeof options.apk === 'string' ? options.apk : undefined,
277
- });
278
- }
279
- if (options.aab && platform === 'android') {
280
- await handleArtifactDownload({
281
- appId,
282
- buildId: response.id,
283
- buildArtifacts: build.appBuildArtifacts,
284
- artifactType: 'aab',
285
- filePath: typeof options.aab === 'string' ? options.aab : undefined,
286
- });
287
- }
288
- if (options.ipa && platform === 'ios') {
289
- await handleArtifactDownload({
290
- appId,
291
- buildId: response.id,
292
- buildArtifacts: build.appBuildArtifacts,
293
- artifactType: 'ipa',
294
- filePath: typeof options.ipa === 'string' ? options.ipa : undefined,
295
- });
296
- }
297
- if (options.zip && platform === 'web') {
298
- await handleArtifactDownload({
299
- appId,
300
- buildId: response.id,
301
- buildArtifacts: build.appBuildArtifacts,
302
- artifactType: 'zip',
303
- filePath: typeof options.zip === 'string' ? options.zip : undefined,
304
- });
305
- }
306
- // Output JSON if json flag is set
307
- if (json) {
308
- console.log(JSON.stringify({
309
- id: response.id,
310
- numberAsString: response.numberAsString,
311
- }, null, 2));
312
- }
313
- break;
314
- }
315
- else if (jobStatus === 'failed') {
316
- consola.error('Build failed.');
317
- process.exit(1);
318
- }
319
- else if (jobStatus === 'canceled') {
320
- consola.warn('Build was canceled.');
321
- process.exit(1);
322
- }
323
- else if (jobStatus === 'rejected') {
324
- consola.error('Build was rejected.');
325
- process.exit(1);
326
- }
327
- else if (jobStatus === 'timed_out') {
328
- consola.error('Build timed out.');
329
- process.exit(1);
330
- }
331
- }
332
- // Wait before next poll (3 seconds)
333
- await wait(3000);
334
- }
335
- catch (error) {
336
- consola.error('Error polling build status:', error);
337
- process.exit(1);
338
- }
302
+ await waitForJobCompletion({ jobId: response.jobId });
303
+ const appBuild = await appBuildsService.findOne({
304
+ appId,
305
+ appBuildId: response.id,
306
+ relations: 'appBuildArtifacts',
307
+ });
308
+ consola.info(`Build ID: ${response.id}`);
309
+ consola.info(`Build Number: ${response.numberAsString}`);
310
+ consola.info(`Build URL: ${DEFAULT_CONSOLE_BASE_URL}/apps/${appId}/builds/${response.id}`);
311
+ consola.success('Build completed successfully.');
312
+ console.log();
313
+ // Download artifacts if flags are set
314
+ if (options.apk && platform === 'android') {
315
+ await handleArtifactDownload({
316
+ appId,
317
+ buildId: response.id,
318
+ buildArtifacts: appBuild.appBuildArtifacts,
319
+ artifactType: 'apk',
320
+ filePath: typeof options.apk === 'string' ? options.apk : undefined,
321
+ });
322
+ }
323
+ if (options.aab && platform === 'android') {
324
+ await handleArtifactDownload({
325
+ appId,
326
+ buildId: response.id,
327
+ buildArtifacts: appBuild.appBuildArtifacts,
328
+ artifactType: 'aab',
329
+ filePath: typeof options.aab === 'string' ? options.aab : undefined,
330
+ });
331
+ }
332
+ if (options.ipa && platform === 'ios') {
333
+ await handleArtifactDownload({
334
+ appId,
335
+ buildId: response.id,
336
+ buildArtifacts: appBuild.appBuildArtifacts,
337
+ artifactType: 'ipa',
338
+ filePath: typeof options.ipa === 'string' ? options.ipa : undefined,
339
+ });
340
+ }
341
+ if (options.zip && platform === 'web') {
342
+ await handleArtifactDownload({
343
+ appId,
344
+ buildId: response.id,
345
+ buildArtifacts: appBuild.appBuildArtifacts,
346
+ artifactType: 'zip',
347
+ filePath: typeof options.zip === 'string' ? options.zip : undefined,
348
+ });
349
+ }
350
+ // Output JSON if json flag is set
351
+ if (json) {
352
+ console.log(JSON.stringify({
353
+ id: response.id,
354
+ numberAsString: response.numberAsString,
355
+ }, null, 2));
339
356
  }
340
357
  }
341
358
  else {
@@ -2,7 +2,7 @@ import { defineCommand, defineOptions } from '@robingenz/zli';
2
2
  import consola from 'consola';
3
3
  import { z } from 'zod';
4
4
  export default defineCommand({
5
- description: 'Create a new app bundle.',
5
+ description: 'Create a new app bundle. Deprecated, use the `apps:liveupdates` commands instead.',
6
6
  options: defineOptions(z.object({
7
7
  androidMax: z.coerce
8
8
  .string()
@@ -38,6 +38,7 @@ export default defineCommand({
38
38
  commitSha: z.string().optional().describe('The commit sha related to the bundle.'),
39
39
  customProperty: z
40
40
  .array(z.string().min(1).max(100))
41
+ .max(10)
41
42
  .optional()
42
43
  .describe('A custom property to assign to the bundle. Must be in the format `key=value`. Can be specified multiple times.'),
43
44
  expiresInDays: z.coerce
@@ -83,7 +84,8 @@ export default defineCommand({
83
84
  action: async (options, args) => {
84
85
  consola.warn('The `apps:bundles:create` command has been deprecated.');
85
86
  consola.info('Please use one of the following commands instead:');
86
- consola.info(' - `apps:liveupdates:upload` to upload a bundle to Capawesome Cloud');
87
+ consola.info(' - `apps:liveupdates:create` to build and deploy using Capawesome Cloud Runners');
88
+ consola.info(' - `apps:liveupdates:upload` to upload a locally built bundle to Capawesome Cloud');
87
89
  consola.info(' - `apps:liveupdates:register` to register a self-hosted bundle URL');
88
90
  process.exit(1);
89
91
  },
@@ -2,14 +2,13 @@ import { defineCommand, defineOptions } from '@robingenz/zli';
2
2
  import consola from 'consola';
3
3
  import { z } from 'zod';
4
4
  export default defineCommand({
5
- description: 'Delete an app bundle.',
5
+ description: 'Delete an app bundle. Deprecated.',
6
6
  options: defineOptions(z.object({
7
7
  appId: z.string().optional().describe('ID of the app.'),
8
8
  bundleId: z.string().optional().describe('ID of the bundle.'),
9
9
  })),
10
10
  action: async (options, args) => {
11
- consola.warn('The `apps:bundles:delete` command has been deprecated and will be removed in future versions.');
12
- consola.info('Please refer to the official documentation for alternative approaches.');
11
+ consola.warn('The `apps:bundles:delete` command has been deprecated. Please use the `apps:liveupdates` commands instead.');
13
12
  process.exit(1);
14
13
  },
15
14
  });
@@ -2,7 +2,7 @@ import { defineCommand, defineOptions } from '@robingenz/zli';
2
2
  import consola from 'consola';
3
3
  import { z } from 'zod';
4
4
  export default defineCommand({
5
- description: 'Update an app bundle.',
5
+ description: 'Update an app bundle. Deprecated.',
6
6
  options: defineOptions(z.object({
7
7
  androidMax: z
8
8
  .string()
@@ -40,8 +40,7 @@ export default defineCommand({
40
40
  .describe('The exact iOS bundle version (`CFBundleVersion`) that the bundle should not support.'),
41
41
  })),
42
42
  action: async (options, args) => {
43
- consola.warn('The `apps:bundles:update` command has been deprecated and will be removed in future versions.');
44
- consola.info('Please refer to the official documentation for alternative approaches.');
43
+ consola.warn('The `apps:bundles:update` command has been deprecated. Please use the `apps:liveupdates` commands instead.');
45
44
  process.exit(1);
46
45
  },
47
46
  });
@@ -74,24 +74,9 @@ export default defineCommand({
74
74
  process.exit(1);
75
75
  }
76
76
  }
77
- // 4. Select certificate type
78
- if (!type) {
79
- if (!isInteractive()) {
80
- consola.error('You must provide the certificate type when running in non-interactive environment.');
81
- process.exit(1);
82
- }
83
- // @ts-ignore wait till https://github.com/unjs/consola/pull/280 is merged
84
- type = await prompt('Select the certificate type:', {
85
- type: 'select',
86
- options: [
87
- { label: 'Development', value: 'development' },
88
- { label: 'Production', value: 'production' },
89
- ],
90
- });
91
- if (!type) {
92
- consola.error('You must select a certificate type.');
93
- process.exit(1);
94
- }
77
+ // 4. Warn if deprecated --type option is used
78
+ if (type) {
79
+ consola.warn('The --type option is deprecated and will be removed in a future version. The certificate type is now detected automatically.');
95
80
  }
96
81
  // 5. Enter certificate file path
97
82
  if (!file) {
@@ -167,7 +152,6 @@ export default defineCommand({
167
152
  fileName,
168
153
  name,
169
154
  platform: platform,
170
- type: type,
171
155
  password,
172
156
  keyAlias,
173
157
  keyPassword,
@@ -15,10 +15,14 @@ export default defineCommand({
15
15
  .enum(['android', 'ios', 'web'])
16
16
  .optional()
17
17
  .describe('Platform of the certificate (android, ios, web).'),
18
+ type: z
19
+ .enum(['development', 'production'])
20
+ .optional()
21
+ .describe('Type of the certificate (development, production).'),
18
22
  yes: z.boolean().optional().describe('Skip confirmation prompt.'),
19
23
  }), { y: 'yes' }),
20
24
  action: withAuth(async (options, args) => {
21
- let { appId, certificateId, name, platform } = options;
25
+ let { appId, certificateId, name, platform, type } = options;
22
26
  if (!appId) {
23
27
  if (!isInteractive()) {
24
28
  consola.error('You must provide an app ID when running in non-interactive environment.');
@@ -29,10 +33,19 @@ export default defineCommand({
29
33
  }
30
34
  if (!certificateId) {
31
35
  if (name && platform) {
32
- const certificates = await appCertificatesService.findAll({ appId, name, platform });
36
+ const certificates = await appCertificatesService.findAll({ appId, name, platform, type });
33
37
  const firstCertificate = certificates[0];
34
38
  if (!firstCertificate) {
35
- consola.error(`No certificate found with name '${name}' and platform '${platform}'.`);
39
+ if (type) {
40
+ consola.error(`No certificate found with name '${name}', platform '${platform}', and type '${type}'.`);
41
+ }
42
+ else {
43
+ consola.error(`No certificate found with name '${name}' and platform '${platform}'.`);
44
+ }
45
+ process.exit(1);
46
+ }
47
+ if (certificates.length > 1 && !type) {
48
+ consola.error(`Multiple certificates found with name '${name}' and platform '${platform}'. Please specify --type or --certificate-id to disambiguate.`);
36
49
  process.exit(1);
37
50
  }
38
51
  certificateId = firstCertificate.id;
@@ -49,9 +62,19 @@ export default defineCommand({
49
62
  ],
50
63
  });
51
64
  }
52
- const certificates = await appCertificatesService.findAll({ appId, platform });
65
+ if (!type) {
66
+ // @ts-ignore wait till https://github.com/unjs/consola/pull/280 is merged
67
+ type = await prompt('Select the type:', {
68
+ type: 'select',
69
+ options: [
70
+ { label: 'Development', value: 'development' },
71
+ { label: 'Production', value: 'production' },
72
+ ],
73
+ });
74
+ }
75
+ const certificates = await appCertificatesService.findAll({ appId, name, platform, type });
53
76
  if (!certificates.length) {
54
- consola.error('No certificates found for this app. Create one first.');
77
+ consola.error(`No certificates found with platform '${platform}' and type '${type}'. Create one first.`);
55
78
  process.exit(1);
56
79
  }
57
80
  // @ts-ignore wait till https://github.com/unjs/consola/pull/280 is merged
@@ -16,9 +16,13 @@ export default defineCommand({
16
16
  .enum(['android', 'ios', 'web'])
17
17
  .optional()
18
18
  .describe('Platform of the certificate (android, ios, web).'),
19
+ type: z
20
+ .enum(['development', 'production'])
21
+ .optional()
22
+ .describe('Type of the certificate (development, production).'),
19
23
  })),
20
24
  action: withAuth(async (options, args) => {
21
- let { appId, certificateId, name, platform } = options;
25
+ let { appId, certificateId, name, platform, type } = options;
22
26
  if (!appId) {
23
27
  if (!isInteractive()) {
24
28
  consola.error('You must provide an app ID when running in non-interactive environment.');
@@ -29,10 +33,19 @@ export default defineCommand({
29
33
  }
30
34
  if (!certificateId) {
31
35
  if (name && platform) {
32
- const certificates = await appCertificatesService.findAll({ appId, name, platform });
36
+ const certificates = await appCertificatesService.findAll({ appId, name, platform, type });
33
37
  const firstCertificate = certificates[0];
34
38
  if (!firstCertificate) {
35
- consola.error(`No certificate found with name '${name}' and platform '${platform}'.`);
39
+ if (type) {
40
+ consola.error(`No certificate found with name '${name}', platform '${platform}', and type '${type}'.`);
41
+ }
42
+ else {
43
+ consola.error(`No certificate found with name '${name}' and platform '${platform}'.`);
44
+ }
45
+ process.exit(1);
46
+ }
47
+ if (certificates.length > 1 && !type) {
48
+ consola.error(`Multiple certificates found with name '${name}' and platform '${platform}'. Please specify --type or --certificate-id to disambiguate.`);
36
49
  process.exit(1);
37
50
  }
38
51
  certificateId = firstCertificate.id;
@@ -49,9 +62,19 @@ export default defineCommand({
49
62
  ],
50
63
  });
51
64
  }
52
- const certificates = await appCertificatesService.findAll({ appId, platform });
65
+ if (!type) {
66
+ // @ts-ignore wait till https://github.com/unjs/consola/pull/280 is merged
67
+ type = await prompt('Select the type:', {
68
+ type: 'select',
69
+ options: [
70
+ { label: 'Development', value: 'development' },
71
+ { label: 'Production', value: 'production' },
72
+ ],
73
+ });
74
+ }
75
+ const certificates = await appCertificatesService.findAll({ appId, name, platform, type });
53
76
  if (!certificates.length) {
54
- consola.error('No certificates found for this app. Create one first.');
77
+ consola.error(`No certificates found with platform '${platform}' and type '${type}'. Create one first.`);
55
78
  process.exit(1);
56
79
  }
57
80
  // @ts-ignore wait till https://github.com/unjs/consola/pull/280 is merged
@@ -36,11 +36,13 @@ export default defineCommand({
36
36
  }
37
37
  certificateId = await prompt('Enter the certificate ID:', { type: 'text' });
38
38
  }
39
+ if (type) {
40
+ consola.warn('The --type option is deprecated and will be removed in a future version. The certificate type is now detected automatically.');
41
+ }
39
42
  await appCertificatesService.update({
40
43
  appId,
41
44
  certificateId,
42
45
  name,
43
- type,
44
46
  password,
45
47
  keyAlias,
46
48
  keyPassword,