1
0

chore(sdk): update OpenAPI spec and generated types

This commit is contained in:
abouolia
2026-05-17 21:06:55 +00:00
committed by github-actions[bot]
parent 7f3fbdc57d
commit a2cf7e23f0
2 changed files with 15 additions and 4 deletions
+11 -2
View File
@@ -13036,7 +13036,16 @@
"post": {
"operationId": "BankingPlaidWebhooksController_webhooks",
"summary": "Listen to Plaid webhooks",
"parameters": [],
"parameters": [
{
"name": "plaid-verification",
"required": true,
"in": "header",
"schema": {
"type": "string"
}
}
],
"requestBody": {
"required": true,
"content": {
@@ -13048,7 +13057,7 @@
}
},
"responses": {
"201": {
"200": {
"description": ""
}
},
+4 -2
View File
@@ -21707,7 +21707,9 @@ export interface operations {
BankingPlaidWebhooksController_webhooks: {
parameters: {
query?: never;
header?: never;
header: {
"plaid-verification": string;
};
path?: never;
cookie?: never;
};
@@ -21717,7 +21719,7 @@ export interface operations {
};
};
responses: {
201: {
200: {
headers: {
[name: string]: unknown;
};