@better-update/cli 0.15.0 → 0.15.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.
package/dist/index.mjs CHANGED
@@ -28,7 +28,7 @@ var __require = /* @__PURE__ */ createRequire(import.meta.url);
28
28
 
29
29
  //#endregion
30
30
  //#region package.json
31
- var version = "0.15.0";
31
+ var version = "0.15.1";
32
32
 
33
33
  //#endregion
34
34
  //#region src/lib/interactive-mode.ts
@@ -4053,7 +4053,7 @@ const resolveOneBundleSettled = (api, options) => api.buildCredentials.resolve({
4053
4053
  error: resolveErrorToMissingCredentials(cause, "ios", options.bundleIdentifier)
4054
4054
  });
4055
4055
  }));
4056
- const autoProvisionHint = "Bind an ASC API key to the main app bundle in the dashboard so missing extension bundles can be auto-provisioned, or register them manually.";
4056
+ const autoProvisionHint = "Upload an ASC API key for this Apple team in the dashboard (Credentials → ASC API Keys) so missing extension bundles can be auto-provisioned, or register them manually.";
4057
4057
  const downloadIosCredentials = (api, options) => Effect.gen(function* () {
4058
4058
  const fs = yield* FileSystem.FileSystem;
4059
4059
  if (options.bundleIdentifiers.length === 0) return yield* new MissingCredentialsError({
@@ -4107,7 +4107,7 @@ const maybeAutoProvision = (api, params) => Effect.gen(function* () {
4107
4107
  if (params.missing.length === 0) return [];
4108
4108
  const { ascApiKeyId } = params.mainContext;
4109
4109
  if (ascApiKeyId === null) return yield* new MissingCredentialsError({
4110
- message: `No iOS bundle configuration for extension bundle(s) ${params.missing.map((id) => `"${id}"`).join(", ")}, and the main bundle has no ASC API key bound for auto-provisioning.`,
4110
+ message: `No iOS bundle configuration for extension bundle(s) ${params.missing.map((id) => `"${id}"`).join(", ")}, and no ASC API key is available for this Apple team to auto-provision them.`,
4111
4111
  hint: autoProvisionHint
4112
4112
  });
4113
4113
  yield* Console.log(`Auto-provisioning ${params.missing.length} missing extension profile(s) via Apple ASC...`);