Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#1478)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and Stainless Bot committed Aug 30, 2024
1 parent 7fcb0f2 commit 3dd1ed9
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 1312
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-cf8b5a6a07ac68f0c7c5701d1f6f78132871b96e4e6d2b6daf6cebc4be46aa29.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-63b28447958a12cc6f7df7d398921a6914cc4fd62cb2acbffa2ad3de481c3e03.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

0 comments on commit 3dd1ed9

Please sign in to comment.