@vrplatform/api 1.2.33-stage.780 → 1.2.33-stage.783
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1369,6 +1369,23 @@ export interface paths {
|
|
|
1369
1369
|
patch?: never;
|
|
1370
1370
|
trace?: never;
|
|
1371
1371
|
};
|
|
1372
|
+
"/plaid/health": {
|
|
1373
|
+
parameters: {
|
|
1374
|
+
query?: never;
|
|
1375
|
+
header?: never;
|
|
1376
|
+
path?: never;
|
|
1377
|
+
cookie?: never;
|
|
1378
|
+
};
|
|
1379
|
+
/** @description Check Plaid health using an existing connection */
|
|
1380
|
+
get: operations["plaidHealth"];
|
|
1381
|
+
put?: never;
|
|
1382
|
+
post?: never;
|
|
1383
|
+
delete?: never;
|
|
1384
|
+
options?: never;
|
|
1385
|
+
head?: never;
|
|
1386
|
+
patch?: never;
|
|
1387
|
+
trace?: never;
|
|
1388
|
+
};
|
|
1372
1389
|
"/file-storage-link": {
|
|
1373
1390
|
parameters: {
|
|
1374
1391
|
query?: never;
|
|
@@ -22380,6 +22397,87 @@ export interface operations {
|
|
|
22380
22397
|
};
|
|
22381
22398
|
};
|
|
22382
22399
|
};
|
|
22400
|
+
plaidHealth: {
|
|
22401
|
+
parameters: {
|
|
22402
|
+
query: {
|
|
22403
|
+
connectionId: string;
|
|
22404
|
+
};
|
|
22405
|
+
header?: {
|
|
22406
|
+
"X-Team-Id"?: string;
|
|
22407
|
+
};
|
|
22408
|
+
path?: never;
|
|
22409
|
+
cookie?: never;
|
|
22410
|
+
};
|
|
22411
|
+
requestBody?: never;
|
|
22412
|
+
responses: {
|
|
22413
|
+
/** @description Successful response */
|
|
22414
|
+
200: {
|
|
22415
|
+
headers: {
|
|
22416
|
+
[name: string]: unknown;
|
|
22417
|
+
};
|
|
22418
|
+
content: {
|
|
22419
|
+
"application/json": {
|
|
22420
|
+
institution: {
|
|
22421
|
+
country_codes: string[];
|
|
22422
|
+
institution_id: string;
|
|
22423
|
+
routing_numbers?: string[];
|
|
22424
|
+
name: string;
|
|
22425
|
+
products: string[];
|
|
22426
|
+
logo: string | null;
|
|
22427
|
+
url: string | null;
|
|
22428
|
+
status?: unknown;
|
|
22429
|
+
};
|
|
22430
|
+
request_id?: string;
|
|
22431
|
+
};
|
|
22432
|
+
};
|
|
22433
|
+
};
|
|
22434
|
+
/** @description Invalid input data */
|
|
22435
|
+
400: {
|
|
22436
|
+
headers: {
|
|
22437
|
+
[name: string]: unknown;
|
|
22438
|
+
};
|
|
22439
|
+
content: {
|
|
22440
|
+
"application/json": components["schemas"]["error.BAD_REQUEST"];
|
|
22441
|
+
};
|
|
22442
|
+
};
|
|
22443
|
+
/** @description Authorization not provided */
|
|
22444
|
+
401: {
|
|
22445
|
+
headers: {
|
|
22446
|
+
[name: string]: unknown;
|
|
22447
|
+
};
|
|
22448
|
+
content: {
|
|
22449
|
+
"application/json": components["schemas"]["error.UNAUTHORIZED"];
|
|
22450
|
+
};
|
|
22451
|
+
};
|
|
22452
|
+
/** @description Insufficient access */
|
|
22453
|
+
403: {
|
|
22454
|
+
headers: {
|
|
22455
|
+
[name: string]: unknown;
|
|
22456
|
+
};
|
|
22457
|
+
content: {
|
|
22458
|
+
"application/json": components["schemas"]["error.FORBIDDEN"];
|
|
22459
|
+
};
|
|
22460
|
+
};
|
|
22461
|
+
/** @description Not found */
|
|
22462
|
+
404: {
|
|
22463
|
+
headers: {
|
|
22464
|
+
[name: string]: unknown;
|
|
22465
|
+
};
|
|
22466
|
+
content: {
|
|
22467
|
+
"application/json": components["schemas"]["error.NOT_FOUND"];
|
|
22468
|
+
};
|
|
22469
|
+
};
|
|
22470
|
+
/** @description Internal server error */
|
|
22471
|
+
500: {
|
|
22472
|
+
headers: {
|
|
22473
|
+
[name: string]: unknown;
|
|
22474
|
+
};
|
|
22475
|
+
content: {
|
|
22476
|
+
"application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
|
|
22477
|
+
};
|
|
22478
|
+
};
|
|
22479
|
+
};
|
|
22480
|
+
};
|
|
22383
22481
|
getFileStorageLink: {
|
|
22384
22482
|
parameters: {
|
|
22385
22483
|
query?: {
|