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: 1330
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-1a58ee8ecad480903336bbfa95b7dc15e4704650e7093f5a72522044c2206717.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-689ae0786ba722134c72df188d2c65de6bf89b317239c5b9320110fc9099eded.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export namespace ConfigurationGetResponse {

export interface ConfigurationGetParams {
/**
* Identifier.
* Identifier
*/
account_id: string;
}
Expand Down
4 changes: 2 additions & 2 deletions src/resources/event-notifications/r2/configuration/queues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export type QueueDeleteResponse = unknown | Array<unknown> | string;

export interface QueueUpdateParams {
/**
* Path param: Identifier.
* Path param: Identifier
*/
account_id: string;

Expand Down Expand Up @@ -85,7 +85,7 @@ export namespace QueueUpdateParams {

export interface QueueDeleteParams {
/**
* Identifier.
* Identifier
*/
account_id: string;
}
Expand Down
8 changes: 4 additions & 4 deletions src/resources/queues/consumers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export type ConsumerGetResponse = Array<Consumer>;

export interface ConsumerCreateParams {
/**
* Path param: Identifier.
* Path param: Identifier
*/
account_id: string;

Expand All @@ -181,7 +181,7 @@ export interface ConsumerCreateParams {

export interface ConsumerUpdateParams {
/**
* Path param: Identifier.
* Path param: Identifier
*/
account_id: string;

Expand All @@ -193,14 +193,14 @@ export interface ConsumerUpdateParams {

export interface ConsumerDeleteParams {
/**
* Identifier.
* Identifier
*/
account_id: string;
}

export interface ConsumerGetParams {
/**
* Identifier.
* Identifier
*/
account_id: string;
}
Expand Down
4 changes: 2 additions & 2 deletions src/resources/queues/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export namespace MessagePullResponse {

export interface MessageAckParams {
/**
* Path param: Identifier.
* Path param: Identifier
*/
account_id: string;

Expand Down Expand Up @@ -113,7 +113,7 @@ export namespace MessageAckParams {

export interface MessagePullParams {
/**
* Path param: Identifier.
* Path param: Identifier
*/
account_id: string;

Expand Down
10 changes: 5 additions & 5 deletions src/resources/queues/queues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export type QueueDeleteResponse = unknown | Array<unknown> | string;

export interface QueueCreateParams {
/**
* Path param: Identifier.
* Path param: Identifier
*/
account_id: string;

Expand All @@ -140,7 +140,7 @@ export interface QueueCreateParams {

export interface QueueUpdateParams {
/**
* Path param: Identifier.
* Path param: Identifier
*/
account_id: string;

Expand All @@ -152,21 +152,21 @@ export interface QueueUpdateParams {

export interface QueueListParams {
/**
* Identifier.
* Identifier
*/
account_id: string;
}

export interface QueueDeleteParams {
/**
* Identifier.
* Identifier
*/
account_id: string;
}

export interface QueueGetParams {
/**
* Identifier.
* Identifier
*/
account_id: string;
}
Expand Down