diff --git a/.stats.yml b/.stats.yml index b882f703b7..93ab63188b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 1348 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-60eaec2f4029582531bbb45c66bb499e91203845eeeb3d507ae7ed5675a6bbe6.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-c5cb74975efe9667b51432b86c1468bc759577818f1ccf6058493344f433cb23.yml diff --git a/src/resources/accounts/accounts.ts b/src/resources/accounts/accounts.ts index 1fba55106f..8974ebff8f 100644 --- a/src/resources/accounts/accounts.ts +++ b/src/resources/accounts/accounts.ts @@ -86,6 +86,11 @@ export namespace Account { * Account settings */ export interface Settings { + /** + * Sets an abuse contact email to notify for abuse reports. + */ + abuse_contact_email?: string; + /** * Specifies the default nameservers to be used for new zones added to this * account. @@ -144,6 +149,11 @@ export namespace AccountUpdateParams { * Account settings */ export interface Settings { + /** + * Sets an abuse contact email to notify for abuse reports. + */ + abuse_contact_email?: string; + /** * Specifies the default nameservers to be used for new zones added to this * account. diff --git a/tests/api-resources/accounts/accounts.test.ts b/tests/api-resources/accounts/accounts.test.ts index edee6ae3e9..26d6e9497c 100644 --- a/tests/api-resources/accounts/accounts.test.ts +++ b/tests/api-resources/accounts/accounts.test.ts @@ -26,6 +26,7 @@ describe('resource accounts', () => { account_id: {}, name: 'Demo Account', settings: { + abuse_contact_email: 'string', default_nameservers: 'cloudflare.standard', enforce_twofactor: true, use_account_custom_ns_by_default: true,