Skip to content

Commit 715c25f

Browse files
feat: OpenAPI spec update via Stainless API (#60)
1 parent 82a5ce2 commit 715c25f

9 files changed

+328
-314
lines changed

src/cloudflare/resources/waiting_rooms/waiting_rooms.py

+312-306
Large diffs are not rendered by default.

src/cloudflare/types/waiting_room_create_params.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ class WaitingRoomCreateParams(TypedDict, total=False):
206206
207207
An example cURL to a waiting room could be:
208208
209-
curl -X GET "https://example.com/waitingroom" \ -H "Accept: application/json"
209+
curl -X GET "https://example.com/waitingroom" \\
210+
-H "Accept: application/json"
210211
211212
If `json_response_enabled` is **true** and the request hits the waiting room, an
212213
example JSON response when `queueingMethod` is **fifo** and no event is active

src/cloudflare/types/waiting_room_create_response.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ class WaitingRoomCreateResponse(BaseModel):
225225
226226
An example cURL to a waiting room could be:
227227
228-
curl -X GET "https://example.com/waitingroom" \ -H "Accept: application/json"
228+
curl -X GET "https://example.com/waitingroom" \\
229+
-H "Accept: application/json"
229230
230231
If `json_response_enabled` is **true** and the request hits the waiting room, an
231232
example JSON response when `queueingMethod` is **fifo** and no event is active

src/cloudflare/types/waiting_room_edit_params.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,8 @@ class WaitingRoomEditParams(TypedDict, total=False):
209209
210210
An example cURL to a waiting room could be:
211211
212-
curl -X GET "https://example.com/waitingroom" \ -H "Accept: application/json"
212+
curl -X GET "https://example.com/waitingroom" \\
213+
-H "Accept: application/json"
213214
214215
If `json_response_enabled` is **true** and the request hits the waiting room, an
215216
example JSON response when `queueingMethod` is **fifo** and no event is active

src/cloudflare/types/waiting_room_edit_response.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ class WaitingRoomEditResponse(BaseModel):
225225
226226
An example cURL to a waiting room could be:
227227
228-
curl -X GET "https://example.com/waitingroom" \ -H "Accept: application/json"
228+
curl -X GET "https://example.com/waitingroom" \\
229+
-H "Accept: application/json"
229230
230231
If `json_response_enabled` is **true** and the request hits the waiting room, an
231232
example JSON response when `queueingMethod` is **fifo** and no event is active

src/cloudflare/types/waiting_room_get_response.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ class WaitingRoomGetResponse(BaseModel):
225225
226226
An example cURL to a waiting room could be:
227227
228-
curl -X GET "https://example.com/waitingroom" \ -H "Accept: application/json"
228+
curl -X GET "https://example.com/waitingroom" \\
229+
-H "Accept: application/json"
229230
230231
If `json_response_enabled` is **true** and the request hits the waiting room, an
231232
example JSON response when `queueingMethod` is **fifo** and no event is active

src/cloudflare/types/waiting_room_list_response.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,8 @@ class WaitingRoomListResponseItem(BaseModel):
230230
231231
An example cURL to a waiting room could be:
232232
233-
curl -X GET "https://example.com/waitingroom" \ -H "Accept: application/json"
233+
curl -X GET "https://example.com/waitingroom" \\
234+
-H "Accept: application/json"
234235
235236
If `json_response_enabled` is **true** and the request hits the waiting room, an
236237
example JSON response when `queueingMethod` is **fifo** and no event is active

src/cloudflare/types/waiting_room_update_params.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,8 @@ class WaitingRoomUpdateParams(TypedDict, total=False):
209209
210210
An example cURL to a waiting room could be:
211211
212-
curl -X GET "https://example.com/waitingroom" \ -H "Accept: application/json"
212+
curl -X GET "https://example.com/waitingroom" \\
213+
-H "Accept: application/json"
213214
214215
If `json_response_enabled` is **true** and the request hits the waiting room, an
215216
example JSON response when `queueingMethod` is **fifo** and no event is active

src/cloudflare/types/waiting_room_update_response.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ class WaitingRoomUpdateResponse(BaseModel):
225225
226226
An example cURL to a waiting room could be:
227227
228-
curl -X GET "https://example.com/waitingroom" \ -H "Accept: application/json"
228+
curl -X GET "https://example.com/waitingroom" \\
229+
-H "Accept: application/json"
229230
230231
If `json_response_enabled` is **true** and the request hits the waiting room, an
231232
example JSON response when `queueingMethod` is **fifo** and no event is active

0 commit comments

Comments
 (0)