Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenAPI Update #885

Merged
merged 1 commit into from
Jun 25, 2024
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
36 changes: 36 additions & 0 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -93234,6 +93234,14 @@
"format": "unix-time",
"type": "integer"
},
"email_type": {
"description": "Type of email to send to the customer, one of `credit_note` or `none` and the default is `credit_note`.",
"enum": [
"credit_note",
"none"
],
"type": "string"
},
"expand": {
"description": "Specifies which fields in the response should be expanded.",
"items": {
Expand Down Expand Up @@ -93485,6 +93493,20 @@
},
"style": "form"
},
{
"description": "Type of email to send to the customer, one of `credit_note` or `none` and the default is `credit_note`.",
"in": "query",
"name": "email_type",
"required": false,
"schema": {
"enum": [
"credit_note",
"none"
],
"type": "string"
},
"style": "form"
},
{
"description": "Specifies which fields in the response should be expanded.",
"explode": true,
Expand Down Expand Up @@ -93811,6 +93833,20 @@
},
"style": "form"
},
{
"description": "Type of email to send to the customer, one of `credit_note` or `none` and the default is `credit_note`.",
"in": "query",
"name": "email_type",
"required": false,
"schema": {
"enum": [
"credit_note",
"none"
],
"type": "string"
},
"style": "form"
},
{
"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
36 changes: 36 additions & 0 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -69956,6 +69956,14 @@
"format": "unix-time",
"type": "integer"
},
"email_type": {
"description": "Type of email to send to the customer, one of `credit_note` or `none` and the default is `credit_note`.",
"enum": [
"credit_note",
"none"
],
"type": "string"
},
"expand": {
"description": "Specifies which fields in the response should be expanded.",
"items": {
Expand Down Expand Up @@ -70176,6 +70184,20 @@
},
"style": "form"
},
{
"description": "Type of email to send to the customer, one of `credit_note` or `none` and the default is `credit_note`.",
"in": "query",
"name": "email_type",
"required": false,
"schema": {
"enum": [
"credit_note",
"none"
],
"type": "string"
},
"style": "form"
},
{
"description": "Specifies which fields in the response should be expanded.",
"explode": true,
Expand Down Expand Up @@ -70464,6 +70486,20 @@
},
"style": "form"
},
{
"description": "Type of email to send to the customer, one of `credit_note` or `none` and the default is `credit_note`.",
"in": "query",
"name": "email_type",
"required": false,
"schema": {
"enum": [
"credit_note",
"none"
],
"type": "string"
},
"style": "form"
},
{
"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
Loading