Skip to content

Commit 9c5a7e1

Browse files
## Typescript SDK Changes Detected: (#169)
* `vercel.projects.uploadProjectClientCert()`: * `request.requestBody.ca` **Changed** **Breaking** ⚠️ * `response.updated` **Added** * `vercel.user.listUserEvents()`: `response.events.[].payload` **Changed** **Breaking** ⚠️ * `vercel.integrations.createIntegrationStoreDirect()`: `response.store` **Changed** **Breaking** ⚠️ * `vercel.integrations.getConfigurationProducts()`: `response.products.[].metadataSchema.properties.{}` **Changed** **Breaking** ⚠️ * `vercel.drains.getDrains()`: **Added** * `vercel.projects.getProjects()`: `response.projects.[]` **Changed** * `vercel.drains.deleteDrain()`: **Added** * `vercel.drains.getDrain()`: **Added** * `vercel.drains.updateDrain()`: **Added** * `vercel.drains.testDrain()`: **Added** * `vercel.projects.updateProjectDataCache()`: `response` **Changed** * `vercel.logDrains.getConfigurableLogDrain()`: **Added** * `vercel.projects.createProject()`: `response` **Changed** * `vercel.projects.updateProject()`: `response` **Changed** * `vercel.drains.createDrain()`: **Added** * `vercel.logDrains.createConfigurableLogDrain()`: **Added** * `vercel.logDrains.getAllLogDrains()`: **Added** * `vercel.domainsRegistrar.transferInDomain()`: `error.[domainalreadyowned]` **Added** * `vercel.logDrains.deleteConfigurableLogDrain()`: **Added** * `vercel.security.get/v1/security/firewall/events()`: * `request.hosts` **Added** Co-authored-by: speakeasybot <[email protected]>
1 parent 2936755 commit 9c5a7e1

File tree

1,157 files changed

+85077
-7084
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,157 files changed

+85077
-7084
lines changed

.speakeasy/gen.lock

Lines changed: 789 additions & 54 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ generation:
2727
generateNewTests: true
2828
skipResponseBodyAssertions: false
2929
typescript:
30-
version: 1.14.0
30+
version: 1.15.0
3131
acceptHeaderEnum: true
3232
additionalDependencies:
3333
dependencies: {}

.speakeasy/tests.arazzo.yaml

Lines changed: 229 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6383,7 +6383,7 @@ workflows:
63836383
"externalResourceId": "\u003cid\u003e",
63846384
"product": {
63856385
"value": {
6386-
"__@BRAND@8646": {}
6386+
"__@BRAND@8558": {}
63876387
}
63886388
},
63896389
"secrets": []
@@ -6485,6 +6485,7 @@ workflows:
64856485
- context: $response.body
64866486
condition: |
64876487
{
6488+
"updated": false,
64886489
"origin": "\u003cvalue\u003e",
64896490
"certId": "\u003cid\u003e"
64906491
}
@@ -6927,3 +6928,230 @@ workflows:
69276928
type: simple
69286929
x-speakeasy-test-group: security
69296930
x-speakeasy-test-rebuild: true
6931+
- workflowId: getConfigurableLogDrain
6932+
steps:
6933+
- stepId: test
6934+
operationId: getConfigurableLogDrain
6935+
parameters:
6936+
- name: id
6937+
in: path
6938+
value: <id>
6939+
- name: teamId
6940+
in: query
6941+
value: team_1a2b3c4d5e6f7g8h9i0j1k2l
6942+
- name: slug
6943+
in: query
6944+
value: my-team-url-slug
6945+
successCriteria:
6946+
- condition: $statusCode == 200
6947+
- condition: $response.header.Content-Type == application/json
6948+
- context: $response.body
6949+
condition: |
6950+
{}
6951+
type: simple
6952+
x-speakeasy-test-group: logDrains
6953+
x-speakeasy-test-rebuild: true
6954+
- workflowId: getAllLogDrains
6955+
steps:
6956+
- stepId: test
6957+
operationId: getAllLogDrains
6958+
parameters:
6959+
- name: includeMetadata
6960+
in: query
6961+
value: false
6962+
- name: teamId
6963+
in: query
6964+
value: team_1a2b3c4d5e6f7g8h9i0j1k2l
6965+
- name: slug
6966+
in: query
6967+
value: my-team-url-slug
6968+
successCriteria:
6969+
- condition: $statusCode == 200
6970+
- condition: $response.header.Content-Type == application/json
6971+
- context: $response.body
6972+
condition: |
6973+
{
6974+
"drains": [
6975+
{
6976+
"id": "\u003cid\u003e",
6977+
"ownerId": "\u003cid\u003e",
6978+
"name": "\u003cvalue\u003e",
6979+
"createdAt": 7495.57,
6980+
"updatedAt": 4759.82,
6981+
"source": {
6982+
"kind": "self-served"
6983+
}
6984+
}
6985+
]
6986+
}
6987+
type: simple
6988+
x-speakeasy-test-group: logDrains
6989+
x-speakeasy-test-rebuild: true
6990+
- workflowId: createConfigurableLogDrain
6991+
steps:
6992+
- stepId: test
6993+
operationId: createConfigurableLogDrain
6994+
parameters:
6995+
- name: teamId
6996+
in: query
6997+
value: team_1a2b3c4d5e6f7g8h9i0j1k2l
6998+
- name: slug
6999+
in: query
7000+
value: my-team-url-slug
7001+
requestBody:
7002+
contentType: application/json
7003+
payload:
7004+
deliveryFormat: json
7005+
sources: []
7006+
url: https://wavy-meander.net
7007+
successCriteria:
7008+
- condition: $statusCode == 200
7009+
- condition: $response.header.Content-Type == application/json
7010+
- context: $response.body
7011+
condition: |
7012+
{}
7013+
type: simple
7014+
x-speakeasy-test-group: logDrains
7015+
x-speakeasy-test-rebuild: true
7016+
- workflowId: createDrain
7017+
steps:
7018+
- stepId: test
7019+
operationId: createDrain
7020+
parameters:
7021+
- name: teamId
7022+
in: query
7023+
value: team_1a2b3c4d5e6f7g8h9i0j1k2l
7024+
- name: slug
7025+
in: query
7026+
value: my-team-url-slug
7027+
successCriteria:
7028+
- condition: $statusCode == 200
7029+
- condition: $response.header.Content-Type == application/json
7030+
- context: $response.body
7031+
condition: |
7032+
{
7033+
"id": "\u003cid\u003e",
7034+
"ownerId": "\u003cid\u003e",
7035+
"name": "\u003cvalue\u003e",
7036+
"createdAt": 3665.73,
7037+
"updatedAt": 3681.88,
7038+
"source": {
7039+
"kind": "self-served"
7040+
}
7041+
}
7042+
type: simple
7043+
x-speakeasy-test-group: drains
7044+
x-speakeasy-test-rebuild: true
7045+
- workflowId: getDrains
7046+
steps:
7047+
- stepId: test
7048+
operationId: getDrains
7049+
parameters:
7050+
- name: includeMetadata
7051+
in: query
7052+
value: false
7053+
- name: teamId
7054+
in: query
7055+
value: team_1a2b3c4d5e6f7g8h9i0j1k2l
7056+
- name: slug
7057+
in: query
7058+
value: my-team-url-slug
7059+
successCriteria:
7060+
- condition: $statusCode == 200
7061+
- condition: $response.header.Content-Type == application/json
7062+
- context: $response.body
7063+
condition: |
7064+
{
7065+
"drains": []
7066+
}
7067+
type: simple
7068+
x-speakeasy-test-group: drains
7069+
x-speakeasy-test-rebuild: true
7070+
- workflowId: getDrain
7071+
steps:
7072+
- stepId: test
7073+
operationId: getDrain
7074+
parameters:
7075+
- name: id
7076+
in: path
7077+
value: <id>
7078+
- name: teamId
7079+
in: query
7080+
value: team_1a2b3c4d5e6f7g8h9i0j1k2l
7081+
- name: slug
7082+
in: query
7083+
value: my-team-url-slug
7084+
successCriteria:
7085+
- condition: $statusCode == 200
7086+
- condition: $response.header.Content-Type == application/json
7087+
- context: $response.body
7088+
condition: |
7089+
{
7090+
"id": "\u003cid\u003e",
7091+
"ownerId": "\u003cid\u003e",
7092+
"name": "\u003cvalue\u003e",
7093+
"createdAt": 1182.63,
7094+
"updatedAt": 7579.11,
7095+
"source": {
7096+
"kind": "integration",
7097+
"integrationId": "\u003cid\u003e",
7098+
"integrationConfigurationId": "\u003cid\u003e"
7099+
}
7100+
}
7101+
type: simple
7102+
x-speakeasy-test-group: drains
7103+
x-speakeasy-test-rebuild: true
7104+
- workflowId: updateDrain
7105+
steps:
7106+
- stepId: test
7107+
operationId: updateDrain
7108+
parameters:
7109+
- name: id
7110+
in: path
7111+
value: <id>
7112+
- name: teamId
7113+
in: query
7114+
value: team_1a2b3c4d5e6f7g8h9i0j1k2l
7115+
- name: slug
7116+
in: query
7117+
value: my-team-url-slug
7118+
successCriteria:
7119+
- condition: $statusCode == 200
7120+
- condition: $response.header.Content-Type == application/json
7121+
- context: $response.body
7122+
condition: |
7123+
{
7124+
"id": "\u003cid\u003e",
7125+
"ownerId": "\u003cid\u003e",
7126+
"name": "\u003cvalue\u003e",
7127+
"createdAt": 7781.81,
7128+
"updatedAt": 8087.89,
7129+
"source": {
7130+
"kind": "integration",
7131+
"integrationId": "\u003cid\u003e",
7132+
"integrationConfigurationId": "\u003cid\u003e"
7133+
}
7134+
}
7135+
type: simple
7136+
x-speakeasy-test-group: drains
7137+
x-speakeasy-test-rebuild: true
7138+
- workflowId: testDrain
7139+
steps:
7140+
- stepId: test
7141+
operationId: testDrain
7142+
parameters:
7143+
- name: teamId
7144+
in: query
7145+
value: team_1a2b3c4d5e6f7g8h9i0j1k2l
7146+
- name: slug
7147+
in: query
7148+
value: my-team-url-slug
7149+
successCriteria:
7150+
- condition: $statusCode == 200
7151+
- condition: $response.header.Content-Type == application/json
7152+
- context: $response.body
7153+
condition: |
7154+
{}
7155+
type: simple
7156+
x-speakeasy-test-group: drains
7157+
x-speakeasy-test-rebuild: true

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.637.0
1+
speakeasyVersion: 1.638.1
22
sources:
33
vercel-OAS:
44
sourceNamespace: vercel-oas
5-
sourceRevisionDigest: sha256:9ea8e3207537c13dc49470e4ad68601be71ffc68002f057e41ec50e3aaf0f0ce
6-
sourceBlobDigest: sha256:231e717291e6b53faa844b6c3f2925140cb1b24d802383d49e654a584e52f7e4
5+
sourceRevisionDigest: sha256:317a55a4e32f35b60ac6f4d607c5ae115a160fa8e1a3d429a85c5aea5204b605
6+
sourceBlobDigest: sha256:4d866dbdc6b91910553b61e04321d3e7dbb11ef2226cdc0e1ef3b1108b085e2f
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1760486883
9+
- speakeasy-sdk-regen-1761005281
1010
- 0.0.1
1111
targets:
1212
vercel:
1313
source: vercel-OAS
1414
sourceNamespace: vercel-oas
15-
sourceRevisionDigest: sha256:9ea8e3207537c13dc49470e4ad68601be71ffc68002f057e41ec50e3aaf0f0ce
16-
sourceBlobDigest: sha256:231e717291e6b53faa844b6c3f2925140cb1b24d802383d49e654a584e52f7e4
15+
sourceRevisionDigest: sha256:317a55a4e32f35b60ac6f4d607c5ae115a160fa8e1a3d429a85c5aea5204b605
16+
sourceBlobDigest: sha256:4d866dbdc6b91910553b61e04321d3e7dbb11ef2226cdc0e1ef3b1108b085e2f
1717
codeSamplesNamespace: vercel-oas-typescript-code-samples
18-
codeSamplesRevisionDigest: sha256:f7fd5fbf750fb6859f5183f53aeb6343ff9df5571b9cc24fbc74cbe2f6961f76
18+
codeSamplesRevisionDigest: sha256:e29237a54a7d1a94245f5a3ade5c4d96d3cef47a73249c8f3c61b26da25559c8
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

0 commit comments

Comments
 (0)