Skip to content

Commit 2776982

Browse files
chore(api): update composite API spec
1 parent 1b8e17e commit 2776982

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1894
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-1d690e35246e392197c60dd7b9c3ece69bb0e84a83bdfa349f809de1524a1458.yml
3-
openapi_spec_hash: 15013e32424c98cb7def6b652c61d05e
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-45cc1044f65226c9103ee86d741e6b648e01975f1f6433f30c005a62f5e2895d.yml
3+
openapi_spec_hash: 54339a8f81a58d4e5de5bbc2fa188bdf
44
config_hash: c3197a7cf9595a0f252f8810e74954ef

src/resources/resource-sharing/recipients.ts

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,6 @@ export interface RecipientCreateResponse {
144144
*/
145145
modified: string;
146146

147-
/**
148-
* Share Recipient status message.
149-
*/
150-
status_message: string;
151-
152147
resources?: Array<RecipientCreateResponse.Resource>;
153148
}
154149

@@ -168,6 +163,11 @@ export namespace RecipientCreateResponse {
168163
* Resource Version.
169164
*/
170165
resource_version: number;
166+
167+
/**
168+
* Whether the error is terminal or will be continually retried.
169+
*/
170+
terminal: boolean;
171171
}
172172
}
173173

@@ -197,11 +197,6 @@ export interface RecipientListResponse {
197197
*/
198198
modified: string;
199199

200-
/**
201-
* Share Recipient status message.
202-
*/
203-
status_message: string;
204-
205200
resources?: Array<RecipientListResponse.Resource>;
206201
}
207202

@@ -221,6 +216,11 @@ export namespace RecipientListResponse {
221216
* Resource Version.
222217
*/
223218
resource_version: number;
219+
220+
/**
221+
* Whether the error is terminal or will be continually retried.
222+
*/
223+
terminal: boolean;
224224
}
225225
}
226226

@@ -250,11 +250,6 @@ export interface RecipientDeleteResponse {
250250
*/
251251
modified: string;
252252

253-
/**
254-
* Share Recipient status message.
255-
*/
256-
status_message: string;
257-
258253
resources?: Array<RecipientDeleteResponse.Resource>;
259254
}
260255

@@ -274,6 +269,11 @@ export namespace RecipientDeleteResponse {
274269
* Resource Version.
275270
*/
276271
resource_version: number;
272+
273+
/**
274+
* Whether the error is terminal or will be continually retried.
275+
*/
276+
terminal: boolean;
277277
}
278278
}
279279

@@ -303,11 +303,6 @@ export interface RecipientGetResponse {
303303
*/
304304
modified: string;
305305

306-
/**
307-
* Share Recipient status message.
308-
*/
309-
status_message: string;
310-
311306
resources?: Array<RecipientGetResponse.Resource>;
312307
}
313308

@@ -327,6 +322,11 @@ export namespace RecipientGetResponse {
327322
* Resource Version.
328323
*/
329324
resource_version: number;
325+
326+
/**
327+
* Whether the error is terminal or will be continually retried.
328+
*/
329+
terminal: boolean;
330330
}
331331
}
332332

0 commit comments

Comments
 (0)