@algolia/wizard 0.38.0-rc.131.266 → 0.38.0-rc.131.267

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 (2) hide show
  1. package/dist/main.js +3 -3
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -3330,7 +3330,7 @@ async function runAnalysis(mode, extraInstructions = []) {
3330
3330
  // package.json
3331
3331
  var package_default = {
3332
3332
  name: "@algolia/wizard",
3333
- version: "0.38.0-rc.131.266",
3333
+ version: "0.38.0-rc.131.267",
3334
3334
  description: "Magically implement Algolia functionality in your codebase",
3335
3335
  type: "module",
3336
3336
  engines: {
@@ -5617,7 +5617,7 @@ function readValue(raw) {
5617
5617
 
5618
5618
  // src/lib/algoliaAppPicker.ts
5619
5619
  function blockReasonFor(app) {
5620
- return app.status !== "active" ? "Inactive" : "Missing permissions";
5620
+ return app.status !== "active" ? "Paused" : "Missing permissions";
5621
5621
  }
5622
5622
  function secondaryFor(app) {
5623
5623
  if (!canSelectApplication(app)) {
@@ -5647,7 +5647,7 @@ async function promptForApplication(leadIn = []) {
5647
5647
  }
5648
5648
  if (!unordered.some(canSelectApplication)) {
5649
5649
  throw new Error(
5650
- "None of the applications on this Algolia account are usable \u2014 each is either inactive or missing key-management access. Activate one, or grant it the `keys` ACL, then restart the wizard."
5650
+ "None of the applications on this Algolia account are usable \u2014 each is either paused or missing key-management access. Activate one, or grant it the `keys` ACL, then restart the wizard."
5651
5651
  );
5652
5652
  }
5653
5653
  const apps = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@algolia/wizard",
3
- "version": "0.38.0-rc.131.266",
3
+ "version": "0.38.0-rc.131.267",
4
4
  "description": "Magically implement Algolia functionality in your codebase",
5
5
  "type": "module",
6
6
  "engines": {