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
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -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
20 changes: 15 additions & 5 deletions src/resources/dns/records.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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;

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down