diff --git a/.stats.yml b/.stats.yml index e4ed54aec3..347992465a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 1351 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-540ee61b2362cf59b358b7ba9233f64c333c2311344687d439168580cdc415ac.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-ad56196f5c6264a2c06395a5fc41c7a425dedeeb359b8db37601a4b5683cce5d.yml diff --git a/src/resources/dns/records.ts b/src/resources/dns/records.ts index 74ebd6016d..8ce9b87a32 100644 --- a/src/resources/dns/records.ts +++ b/src/resources/dns/records.ts @@ -1534,7 +1534,9 @@ export type TTLParam = number | 1; export interface TXTRecord { /** - * Text content for the record. + * Text content for the record. The content must consist of quoted "character + * strings" (RFC 1035), each with a length of up to 255 bytes. Strings exceeding + * this allowed maximum length are automatically split. */ content?: string; @@ -1546,7 +1548,9 @@ export interface TXTRecord { export interface TXTRecordParam { /** - * Text content for the record. + * Text content for the record. The content must consist of quoted "character + * strings" (RFC 1035), each with a length of up to 255 bytes. Strings exceeding + * this allowed maximum length are automatically split. */ content?: string; @@ -3034,7 +3038,9 @@ export namespace RecordCreateParams { zone_id: string; /** - * Body param: Text content for the record. + * Body param: Text content for the record. The content must consist of quoted + * "character strings" (RFC 1035), each with a length of up to 255 bytes. Strings + * exceeding this allowed maximum length are automatically split. */ content?: string; @@ -3801,7 +3807,9 @@ export namespace RecordUpdateParams { zone_id: string; /** - * Body param: Text content for the record. + * Body param: Text content for the record. The content must consist of quoted + * "character strings" (RFC 1035), each with a length of up to 255 bytes. Strings + * exceeding this allowed maximum length are automatically split. */ content?: string; @@ -4782,7 +4790,9 @@ export namespace RecordEditParams { zone_id: string; /** - * Body param: Text content for the record. + * Body param: Text content for the record. The content must consist of quoted + * "character strings" (RFC 1035), each with a length of up to 255 bytes. Strings + * exceeding this allowed maximum length are automatically split. */ content?: string;