diff --git a/.gitignore b/.gitignore index 0d961042e..e155ca9ff 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ yarn-error.log *.pub Makefile .vscode/* +.github/copilot-instructions.md diff --git a/README.md b/README.md index 9b41efbcf..8e3269d67 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ [![CircleCI](https://circleci.com/gh/auth0/auth0-deploy-cli/tree/master.svg?style=svg)](https://circleci.com/gh/auth0/auth0-deploy-cli/tree/master) [![codecov](https://codecov.io/gh/auth0/auth0-deploy-cli/branch/master/graph/badge.svg)](https://codecov.io/gh/auth0/auth0-deploy-cli) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[Ask questions about auth0-deploy-cli on DeepWiki](https://deepwiki.com/auth0/auth0-deploy-cli) The Auth0 Deploy CLI is a tool that helps you manage your Auth0 tenant configuration. It integrates into your development workflows as a standalone CLI or as a node module. diff --git a/src/tools/auth0/handlers/customDomains.ts b/src/tools/auth0/handlers/customDomains.ts index 4e33d27b1..bb6d185ef 100644 --- a/src/tools/auth0/handlers/customDomains.ts +++ b/src/tools/auth0/handlers/customDomains.ts @@ -49,7 +49,14 @@ export default class CustomDomainsHadnler extends DefaultAPIHandler { type: 'customDomains', id: 'custom_domain_id', identifiers: ['custom_domain_id', 'domain'], - stripCreateFields: ['status', 'primary', 'verification', 'certificate'], + stripCreateFields: [ + 'status', + 'primary', + 'verification', + 'certificate', + 'created_at', + 'updated_at', + ], stripUpdateFields: [ 'status', 'primary', @@ -58,6 +65,8 @@ export default class CustomDomainsHadnler extends DefaultAPIHandler { 'domain', 'verification_method', 'certificate', + 'created_at', + 'updated_at', ], functions: { delete: (args) => this.client.customDomains.delete({ id: args.custom_domain_id }), @@ -114,7 +123,6 @@ export default class CustomDomainsHadnler extends DefaultAPIHandler { } const changes = await this.calcChanges(assets); - await super.processChanges(assets, changes); } }