@vrplatform/api 1.2.33-stage.777 → 1.2.33-stage.781

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.
@@ -409,6 +409,23 @@ export interface paths {
409
409
  patch: operations["initTeam"];
410
410
  trace?: never;
411
411
  };
412
+ "/teams/books-closing": {
413
+ parameters: {
414
+ query?: never;
415
+ header?: never;
416
+ path?: never;
417
+ cookie?: never;
418
+ };
419
+ get?: never;
420
+ /** @description Update team books closing date */
421
+ put: operations["updateTeamBooksClosing"];
422
+ post?: never;
423
+ delete?: never;
424
+ options?: never;
425
+ head?: never;
426
+ patch?: never;
427
+ trace?: never;
428
+ };
412
429
  "/teams/{id}/generate-demo-data": {
413
430
  parameters: {
414
431
  query?: never;
@@ -1352,6 +1369,23 @@ export interface paths {
1352
1369
  patch?: never;
1353
1370
  trace?: never;
1354
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
+ };
1355
1389
  "/file-storage-link": {
1356
1390
  parameters: {
1357
1391
  query?: never;
@@ -7834,6 +7868,7 @@ export interface operations {
7834
7868
  };
7835
7869
  }[];
7836
7870
  isGeneralLedger?: boolean | null;
7871
+ booksClosedAt?: string | null;
7837
7872
  logo?: string | null;
7838
7873
  statementStartAt?: string | null;
7839
7874
  members?: {
@@ -7945,6 +7980,7 @@ export interface operations {
7945
7980
  trialUntil?: string | null;
7946
7981
  cancelledAt?: string | null;
7947
7982
  isOnboarding?: boolean | null;
7983
+ booksClosedAt?: string | null;
7948
7984
  logo?: string | null;
7949
7985
  statementStartAt?: string | null;
7950
7986
  partnerId?: string | null;
@@ -8041,6 +8077,7 @@ export interface operations {
8041
8077
  };
8042
8078
  }[];
8043
8079
  isGeneralLedger?: boolean | null;
8080
+ booksClosedAt?: string | null;
8044
8081
  logo?: string | null;
8045
8082
  statementStartAt?: string | null;
8046
8083
  members?: {
@@ -8260,6 +8297,7 @@ export interface operations {
8260
8297
  };
8261
8298
  }[];
8262
8299
  isGeneralLedger?: boolean | null;
8300
+ booksClosedAt?: string | null;
8263
8301
  logo?: string | null;
8264
8302
  statementStartAt?: string | null;
8265
8303
  members?: {
@@ -8379,6 +8417,7 @@ export interface operations {
8379
8417
  trialUntil?: string | null;
8380
8418
  cancelledAt?: string | null;
8381
8419
  isOnboarding?: boolean | null;
8420
+ booksClosedAt?: string | null;
8382
8421
  logo?: string | null;
8383
8422
  statementStartAt?: string | null;
8384
8423
  generalLedger: {
@@ -8468,6 +8507,7 @@ export interface operations {
8468
8507
  };
8469
8508
  }[];
8470
8509
  isGeneralLedger?: boolean | null;
8510
+ booksClosedAt?: string | null;
8471
8511
  logo?: string | null;
8472
8512
  statementStartAt?: string | null;
8473
8513
  members?: {
@@ -8611,6 +8651,7 @@ export interface operations {
8611
8651
  };
8612
8652
  }[];
8613
8653
  isGeneralLedger?: boolean | null;
8654
+ booksClosedAt?: string | null;
8614
8655
  logo?: string | null;
8615
8656
  statementStartAt?: string | null;
8616
8657
  members?: {
@@ -8670,6 +8711,81 @@ export interface operations {
8670
8711
  };
8671
8712
  };
8672
8713
  };
8714
+ updateTeamBooksClosing: {
8715
+ parameters: {
8716
+ query?: never;
8717
+ header?: {
8718
+ "X-Team-Id"?: string;
8719
+ };
8720
+ path?: never;
8721
+ cookie?: never;
8722
+ };
8723
+ requestBody: {
8724
+ content: {
8725
+ "application/json": {
8726
+ booksClosedAt: string | null;
8727
+ };
8728
+ };
8729
+ };
8730
+ responses: {
8731
+ /** @description Successful response */
8732
+ 200: {
8733
+ headers: {
8734
+ [name: string]: unknown;
8735
+ };
8736
+ content: {
8737
+ "application/json": {
8738
+ booksClosedAt: string | null;
8739
+ };
8740
+ };
8741
+ };
8742
+ /** @description Invalid input data */
8743
+ 400: {
8744
+ headers: {
8745
+ [name: string]: unknown;
8746
+ };
8747
+ content: {
8748
+ "application/json": components["schemas"]["error.BAD_REQUEST"];
8749
+ };
8750
+ };
8751
+ /** @description Authorization not provided */
8752
+ 401: {
8753
+ headers: {
8754
+ [name: string]: unknown;
8755
+ };
8756
+ content: {
8757
+ "application/json": components["schemas"]["error.UNAUTHORIZED"];
8758
+ };
8759
+ };
8760
+ /** @description Insufficient access */
8761
+ 403: {
8762
+ headers: {
8763
+ [name: string]: unknown;
8764
+ };
8765
+ content: {
8766
+ "application/json": components["schemas"]["error.FORBIDDEN"];
8767
+ };
8768
+ };
8769
+ /** @description Not found */
8770
+ 404: {
8771
+ headers: {
8772
+ [name: string]: unknown;
8773
+ };
8774
+ content: {
8775
+ "application/json": components["schemas"]["error.NOT_FOUND"];
8776
+ };
8777
+ };
8778
+ /** @description Internal server error */
8779
+ 500: {
8780
+ headers: {
8781
+ [name: string]: unknown;
8782
+ };
8783
+ content: {
8784
+ "application/json": components["schemas"]["error.INTERNAL_SERVER_ERROR"];
8785
+ };
8786
+ };
8787
+ };
8788
+ };
8673
8789
  generateTeamData: {
8674
8790
  parameters: {
8675
8791
  query?: never;
@@ -22281,6 +22397,87 @@ export interface operations {
22281
22397
  };
22282
22398
  };
22283
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
+ };
22284
22481
  getFileStorageLink: {
22285
22482
  parameters: {
22286
22483
  query?: {