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": { "post": {
"operationId": "BankingPlaidWebhooksController_webhooks", "operationId": "BankingPlaidWebhooksController_webhooks",
"summary": "Listen to Plaid webhooks", "summary": "Listen to Plaid webhooks",
"parameters": [], "parameters": [
{
"name": "plaid-verification",
"required": true,
"in": "header",
"schema": {
"type": "string"
}
}
],
"requestBody": { "requestBody": {
"required": true, "required": true,
"content": { "content": {
@@ -13048,7 +13057,7 @@
} }
}, },
"responses": { "responses": {
"201": { "200": {
"description": "" "description": ""
} }
}, },
+4 -2
View File
@@ -21707,7 +21707,9 @@ export interface operations {
BankingPlaidWebhooksController_webhooks: { BankingPlaidWebhooksController_webhooks: {
parameters: { parameters: {
query?: never; query?: never;
header?: never; header: {
"plaid-verification": string;
};
path?: never; path?: never;
cookie?: never; cookie?: never;
}; };
@@ -21717,7 +21719,7 @@ export interface operations {
}; };
}; };
responses: { responses: {
201: { 200: {
headers: { headers: {
[name: string]: unknown; [name: string]: unknown;
}; };