Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(tem): deprecate accept tos on create domain #1892

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions packages/clients/src/api/tem/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export interface Email {
projectId: string
/** Email address of the sender. */
mailFrom: string
/** @deprecated Email address of the recipient. */
/** @deprecated Deprecated. Email address of the recipient. */
rcptTo?: string
/** Email address of the recipient. */
mailRcpt: string
Expand Down Expand Up @@ -296,7 +296,7 @@ export interface Domain {
lastValidAt?: Date
/** Date and time of the domain's deletion. */
revokedAt?: Date
/** @deprecated Error message returned if the last check failed. */
/** @deprecated Deprecated. Error message returned if the last check failed. */
lastError?: string
/** Snippet of the SPF record to register in the DNS zone. */
spfConfig: string
Expand Down Expand Up @@ -445,8 +445,8 @@ export type CreateDomainRequest = {
projectId?: string
/** Fully qualified domain dame. */
domainName: string
/** Accept Scaleway's Terms of Service. */
acceptTos: boolean
/** @deprecated Deprecated. Accept Scaleway's Terms of Service. */
acceptTos?: boolean
/** Activate auto-configuration of the domain's DNS zone. */
autoconfig: boolean
}
Expand Down Expand Up @@ -689,7 +689,7 @@ export type ListEmailsRequest = {
until?: Date
/** (Optional) List emails sent with this sender's email address. */
mailFrom?: string
/** @deprecated List emails sent to this recipient's email address. */
/** @deprecated Deprecated. List emails sent to this recipient's email address. */
mailTo?: string
/** (Optional) List emails sent to this recipient's email address. */
mailRcpt?: string
Expand Down
Loading