auth0-deploy-cli 8.23.1 → 8.23.2

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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [8.23.2] - 2025-12-18
11
+
12
+ ### Fixed
13
+
14
+ - Fix `customDomains` handler 409 for listing domains. [#1244]
15
+
10
16
  ## [8.23.1] - 2025-12-18
11
17
 
12
18
  ### Fixed
@@ -1577,7 +1583,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1577
1583
  [#1232]: https://github.com/auth0/auth0-deploy-cli/issues/1232
1578
1584
  [#1239]: https://github.com/auth0/auth0-deploy-cli/issues/1239
1579
1585
  [#1240]: https://github.com/auth0/auth0-deploy-cli/issues/1240
1580
- [Unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v8.23.1...HEAD
1586
+ [#1244]: https://github.com/auth0/auth0-deploy-cli/issues/1244
1587
+ [Unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v8.23.2...HEAD
1588
+ [8.23.2]: https://github.com/auth0/auth0-deploy-cli/compare/v8.23.1...v8.23.2
1581
1589
  [8.23.1]: https://github.com/auth0/auth0-deploy-cli/compare/v8.23.0...v8.23.1
1582
1590
  [8.23.0]: https://github.com/auth0/auth0-deploy-cli/compare/v8.22.0...v8.23.0
1583
1591
  [8.22.0]: https://github.com/auth0/auth0-deploy-cli/compare/v8.21.0...v8.22.0
@@ -22,7 +22,6 @@ export declare const schema: {
22
22
  };
23
23
  status: {
24
24
  type: string;
25
- enum: string[];
26
25
  };
27
26
  type: {
28
27
  type: string;
@@ -45,7 +45,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
45
45
  exports.schema = void 0;
46
46
  const default_1 = __importStar(require("./default"));
47
47
  const logger_1 = __importDefault(require("../../../logger"));
48
- const client_1 = require("../client");
49
48
  exports.schema = {
50
49
  type: 'array',
51
50
  items: {
@@ -59,7 +58,7 @@ exports.schema = {
59
58
  },
60
59
  domain: { type: 'string' },
61
60
  primary: { type: 'boolean' },
62
- status: { type: 'string', enum: ['pending_verification', 'ready', 'disabled', 'pending'] },
61
+ status: { type: 'string' },
63
62
  type: { type: 'string', enum: ['auth0_managed_certs', 'self_managed_certs'] },
64
63
  verification: { type: 'object' },
65
64
  tls_policy: {
@@ -121,9 +120,7 @@ class CustomDomainsHadnler extends default_1.default {
121
120
  if (this.existing) {
122
121
  return this.existing;
123
122
  }
124
- const customDomains = await (0, client_1.paginate)(this.client.customDomains.list, {
125
- checkpoint: true,
126
- });
123
+ const customDomains = await this.client.customDomains.list();
127
124
  this.existing = customDomains;
128
125
  return customDomains;
129
126
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auth0-deploy-cli",
3
- "version": "8.23.1",
3
+ "version": "8.23.2",
4
4
  "description": "A command line tool for deploying updates to your Auth0 tenant",
5
5
  "main": "lib/index.js",
6
6
  "bin": {