auth0-deploy-cli 8.10.0 → 8.11.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/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.11.0] - 2025-07-15
11
+
12
+ ### Added
13
+
14
+ - Add support for multiple custom domains in `customDomains`. [#1113]
15
+
10
16
  ## [8.10.0] - 2025-07-01
11
17
 
12
18
  ### Added
@@ -1366,12 +1372,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1366
1372
  [#1103]: https://github.com/auth0/auth0-deploy-cli/issues/1103
1367
1373
  [#1104]: https://github.com/auth0/auth0-deploy-cli/issues/1104
1368
1374
  [#1109]: https://github.com/auth0/auth0-deploy-cli/issues/1109
1375
+ [#1113]: https://github.com/auth0/auth0-deploy-cli/issues/1113
1369
1376
  [#1115]: https://github.com/auth0/auth0-deploy-cli/issues/1115
1370
1377
  [#1116]: https://github.com/auth0/auth0-deploy-cli/issues/1116
1371
1378
  [#1121]: https://github.com/auth0/auth0-deploy-cli/issues/1121
1372
1379
  [#1123]: https://github.com/auth0/auth0-deploy-cli/issues/1123
1373
1380
  [#1124]: https://github.com/auth0/auth0-deploy-cli/issues/1124
1374
- [Unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v8.10.0...HEAD
1381
+ [Unreleased]: https://github.com/auth0/auth0-deploy-cli/compare/v8.11.0...HEAD
1382
+ [8.11.0]: https://github.com/auth0/auth0-deploy-cli/compare/v8.10.0...v8.11.0
1375
1383
  [8.10.0]: https://github.com/auth0/auth0-deploy-cli/compare/v8.9.0...v8.10.0
1376
1384
  [8.9.0]: https://github.com/auth0/auth0-deploy-cli/compare/v8.8.3...v8.9.0
1377
1385
  [8.8.3]: https://github.com/auth0/auth0-deploy-cli/compare/v8.8.2...v8.8.3
package/README.md CHANGED
@@ -9,7 +9,7 @@ The Auth0 Deploy CLI is a tool that helps you manage your Auth0 tenant configura
9
9
 
10
10
  **Supported resource types:** actions, branding, client grants, clients (applications), connections, custom domains, email templates, emails, grants, guardian, hook secrets, log streams, organizations, pages, prompts, resource servers (APIs), roles, tenant settings, themes, forms, flows, self-service profiles, network ACLs.
11
11
 
12
- 🎢 [Highlights](#highlights) • 📚 [Documentation](#documentation) • 🚀 [Getting Started](#getting-started) • 💬 [Feedback](#feedback)
12
+ 🎢 [Highlights](#highlights) • 📚 [Documentation](#documentation) • 🚀 [Getting Started](#getting-started) • 📝 [Feedback](#feedback) • 💬 [Discussions](https://github.com/auth0/auth0-deploy-cli/discussions)
13
13
 
14
14
  ---
15
15
 
@@ -30,6 +30,22 @@ export declare const schema: {
30
30
  verification: {
31
31
  type: string;
32
32
  };
33
+ tls_policy: {
34
+ type: string;
35
+ description: string;
36
+ defaultValue: string;
37
+ };
38
+ domain_metadata: {
39
+ type: string;
40
+ description: string;
41
+ defaultValue: undefined;
42
+ maxProperties: number;
43
+ };
44
+ verification_method: {
45
+ type: string;
46
+ description: string;
47
+ defaultValue: string;
48
+ };
33
49
  };
34
50
  required: string[];
35
51
  };
@@ -47,9 +47,13 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
47
47
  step((generator = generator.apply(thisArg, _arguments || [])).next());
48
48
  });
49
49
  };
50
+ var __importDefault = (this && this.__importDefault) || function (mod) {
51
+ return (mod && mod.__esModule) ? mod : { "default": mod };
52
+ };
50
53
  Object.defineProperty(exports, "__esModule", { value: true });
51
54
  exports.schema = void 0;
52
55
  const default_1 = __importStar(require("./default"));
56
+ const logger_1 = __importDefault(require("../../../logger"));
53
57
  exports.schema = {
54
58
  type: 'array',
55
59
  items: {
@@ -66,14 +70,39 @@ exports.schema = {
66
70
  status: { type: 'string', enum: ['pending_verification', 'ready', 'disabled', 'pending'] },
67
71
  type: { type: 'string', enum: ['auth0_managed_certs', 'self_managed_certs'] },
68
72
  verification: { type: 'object' },
73
+ tls_policy: {
74
+ type: 'string',
75
+ description: 'Custom domain TLS policy. Must be `recommended`, includes TLS 1.2.',
76
+ defaultValue: 'recommended',
77
+ },
78
+ domain_metadata: {
79
+ type: 'object',
80
+ description: 'Domain metadata associated with the custom domain.',
81
+ defaultValue: undefined,
82
+ maxProperties: 10,
83
+ },
84
+ verification_method: {
85
+ type: 'string',
86
+ description: 'Custom domain verification method. Must be `txt`.',
87
+ defaultValue: 'txt',
88
+ },
69
89
  },
70
90
  required: ['domain', 'type'],
71
91
  },
72
92
  };
73
93
  class CustomDomainsHadnler extends default_1.default {
74
94
  constructor(config) {
75
- super(Object.assign(Object.assign({}, config), { type: 'customDomains', id: 'custom_domain_id', identifiers: ['domain'], stripCreateFields: ['status', 'primary', 'verification'], functions: {
95
+ super(Object.assign(Object.assign({}, config), { type: 'customDomains', id: 'custom_domain_id', identifiers: ['custom_domain_id', 'domain'], stripCreateFields: ['status', 'primary', 'verification', 'certificate'], stripUpdateFields: [
96
+ 'status',
97
+ 'primary',
98
+ 'verification',
99
+ 'type',
100
+ 'domain',
101
+ 'verification_method',
102
+ 'certificate',
103
+ ], functions: {
76
104
  delete: (args) => this.client.customDomains.delete({ id: args.custom_domain_id }),
105
+ update: (args, data) => this.client.customDomains.update({ id: args.custom_domain_id }, data),
77
106
  } }));
78
107
  }
79
108
  objString(item) {
@@ -107,20 +136,14 @@ class CustomDomainsHadnler extends default_1.default {
107
136
  const { customDomains } = assets;
108
137
  if (!customDomains)
109
138
  return;
110
- const changes = yield this.calcChanges(assets).then((changes) => {
111
- const changesWithoutUpdates = Object.assign(Object.assign({}, changes), { create: changes.create.map((customDomainToCreate) => {
112
- const newCustomDomain = Object.assign({}, customDomainToCreate);
113
- if (customDomainToCreate.custom_client_ip_header === null) {
114
- delete newCustomDomain.custom_client_ip_header;
115
- }
116
- return newCustomDomain;
117
- }), delete: changes.del.map((deleteToMake) => {
118
- const deleteWithSDKCompatibleID = Object.assign(Object.assign({}, deleteToMake), { id: deleteToMake.custom_domain_id });
119
- delete deleteWithSDKCompatibleID['custom_domain_id'];
120
- return deleteWithSDKCompatibleID;
121
- }), update: [] });
122
- return changesWithoutUpdates;
123
- });
139
+ // Deprecation warnings for custom domains
140
+ if (customDomains.some((customDomain) => customDomain.primary != null)) {
141
+ logger_1.default.warn('The "primary" field is deprecated and may be removed in future versions for "customDomains"');
142
+ }
143
+ if (customDomains.some((customDomain) => 'verification_method' in customDomain)) {
144
+ logger_1.default.warn('The "verification_method" field is deprecated and may be removed in future versions for "customDomains"');
145
+ }
146
+ const changes = yield this.calcChanges(assets);
124
147
  yield _super.processChanges.call(this, assets, changes);
125
148
  });
126
149
  }
@@ -1 +1 @@
1
- {"version":3,"file":"customDomains.js","sourceRoot":"","sources":["../../../../src/tools/auth0/handlers/customDomains.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"customDomains.js","sourceRoot":"","sources":["../../../../src/tools/auth0/handlers/customDomains.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auth0-deploy-cli",
3
- "version": "8.10.0",
3
+ "version": "8.11.0",
4
4
  "description": "A command line tool for deploying updates to your Auth0 tenant",
5
5
  "main": "lib/index.js",
6
6
  "bin": {