@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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.2.33-stage.780",
6
+ "version": "1.2.33-stage.783",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1370,6 +1370,23 @@ export interface paths {
1370
1370
  patch?: never;
1371
1371
  trace?: never;
1372
1372
  };
1373
+ "/plaid/health": {
1374
+ parameters: {
1375
+ query?: never;
1376
+ header?: never;
1377
+ path?: never;
1378
+ cookie?: never;
1379
+ };
1380
+ /** @description Check Plaid health using an existing connection */
1381
+ get: operations["plaidHealth"];
1382
+ put?: never;
1383
+ post?: never;
1384
+ delete?: never;
1385
+ options?: never;
1386
+ head?: never;
1387
+ patch?: never;
1388
+ trace?: never;
1389
+ };
1373
1390
  "/file-storage-link": {
1374
1391
  parameters: {
1375
1392
  query?: never;
@@ -22381,6 +22398,87 @@ export interface operations {
22381
22398
  };
22382
22399
  };
22383
22400
  };
22401
+ plaidHealth: {
22402
+ parameters: {
22403
+ query: {
22404
+ connectionId: string;
22405
+ };
22406
+ header?: {
22407
+ "X-Team-Id"?: string;
22408
+ };
22409
+ path?: never;
22410
+ cookie?: never;
22411
+ };
22412
+ requestBody?: never;
22413
+ responses: {
22414
+ /** @description Successful response */
22415
+ 200: {
22416
+ headers: {
22417
+ [name: string]: unknown;
22418
+ };
22419
+ content: {
22420
+ "application/json": {
22421
+ institution: {
22422
+ country_codes: string[];
22423
+ institution_id: string;
22424
+ routing_numbers?: string[];
22425
+ name: string;
22426
+ products: string[];
22427
+ logo: string | null;
22428
+ url: string | null;
22429
+ status?: unknown;
22430
+ };
22431
+ request_id?: string;
22432
+ };
22433
+ };
22434
+ };
22435
+ /** @description Invalid input data */
22436
+ 400: {
22437
+ headers: {
22438
+ [name: string]: unknown;
22439
+ };
22440
+ content: {
22441
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
22442
+ };
22443
+ };
22444
+ /** @description Authorization not provided */
22445
+ 401: {
22446
+ headers: {
22447
+ [name: string]: unknown;
22448
+ };
22449
+ content: {
22450
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
22451
+ };
22452
+ };
22453
+ /** @description Insufficient access */
22454
+ 403: {
22455
+ headers: {
22456
+ [name: string]: unknown;
22457
+ };
22458
+ content: {
22459
+ "application/json": components["schemas"]["error.FORBIDDEN"];
22460
+ };
22461
+ };
22462
+ /** @description Not found */
22463
+ 404: {
22464
+ headers: {
22465
+ [name: string]: unknown;
22466
+ };
22467
+ content: {
22468
+ "application/json": components["schemas"]["error.NOT_FOUND"];
22469
+ };
22470
+ };
22471
+ /** @description Internal server error */
22472
+ 500: {
22473
+ headers: {
22474
+ [name: string]: unknown;
22475
+ };
22476
+ content: {
22477
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
22478
+ };
22479
+ };
22480
+ };
22481
+ };
22384
22482
  getFileStorageLink: {
22385
22483
  parameters: {
22386
22484
  query?: {