Skip to content

Commit

Permalink
OpenAPI Update (#566)
Browse files Browse the repository at this point in the history
Update OpenAPI for 6d6fd6e24179fae84521a2fd5b45f2df66ea98c7

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] committed Dec 13, 2023
1 parent 11685b4 commit 10288c2
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
37 changes: 37 additions & 0 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -154022,6 +154022,43 @@
},
"style": "form"
},
{
"description": "Only return early fraud warnings that were created during the given date interval.",
"explode": true,
"in": "query",
"name": "created",
"required": false,
"schema": {
"anyOf": [
{
"properties": {
"gt": {
"description": "Minimum value to filter by (exclusive)",
"type": "integer"
},
"gte": {
"description": "Minimum value to filter by (inclusive)",
"type": "integer"
},
"lt": {
"description": "Maximum value to filter by (exclusive)",
"type": "integer"
},
"lte": {
"description": "Maximum value to filter by (inclusive)",
"type": "integer"
}
},
"title": "range_query_specs",
"type": "object"
},
{
"type": "integer"
}
]
},
"style": "deepObject"
},
{
"description": "A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.",
"in": "query",
Expand Down
33 changes: 33 additions & 0 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -111435,6 +111435,39 @@
},
"style": "form"
},
{
"description": "Only return early fraud warnings that were created during the given date interval.",
"explode": true,
"in": "query",
"name": "created",
"required": false,
"schema": {
"anyOf": [
{
"properties": {
"gt": {
"type": "integer"
},
"gte": {
"type": "integer"
},
"lt": {
"type": "integer"
},
"lte": {
"type": "integer"
}
},
"title": "range_query_specs",
"type": "object"
},
{
"type": "integer"
}
]
},
"style": "deepObject"
},
{
"description": "A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.",
"in": "query",
Expand Down

0 comments on commit 10288c2

Please sign in to comment.