Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ yarn-error.log
*.pub
Makefile
.vscode/*
.github/copilot-instructions.md
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
[<img src="https://devin.ai/assets/deepwiki-badge.png" alt="Ask questions about auth0-deploy-cli on DeepWiki" height="20"/>](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.

Expand Down
12 changes: 10 additions & 2 deletions src/tools/auth0/handlers/customDomains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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 }),
Expand Down Expand Up @@ -114,7 +123,6 @@ export default class CustomDomainsHadnler extends DefaultAPIHandler {
}

const changes = await this.calcChanges(assets);

await super.processChanges(assets, changes);
}
}