Skip to content

Commit ef55b9d

Browse files
authored
feat(tem): add domain autoconfiguring status (#1420)
1 parent 136dbba commit ef55b9d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

packages/clients/src/api/tem/v1alpha1/content.gen.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
import type { DomainStatus, EmailStatus } from './types.gen'
44

55
/** Lists transient statutes of the enum {@link DomainStatus}. */
6-
export const DOMAIN_TRANSIENT_STATUSES: DomainStatus[] = ['pending']
6+
export const DOMAIN_TRANSIENT_STATUSES: DomainStatus[] = [
7+
'pending',
8+
'autoconfiguring',
9+
]
710

811
/** Lists transient statutes of the enum {@link EmailStatus}. */
912
export const EMAIL_TRANSIENT_STATUSES: EmailStatus[] = ['new', 'sending']

packages/clients/src/api/tem/v1alpha1/types.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export type DomainStatus =
2323
| 'locked'
2424
| 'revoked'
2525
| 'pending'
26+
| 'autoconfiguring'
2627

2728
export type EmailFlag =
2829
| 'unknown_flag'

0 commit comments

Comments
 (0)