@vrplatform/api 1.3.1-stage.4125 → 1.3.1-stage.4127

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.3.1-stage.4125",
6
+ "version": "1.3.1-stage.4127",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -3303,6 +3303,23 @@ export interface paths {
3303
3303
  patch?: never;
3304
3304
  trace?: never;
3305
3305
  };
3306
+ "/teams/migrate-vri-to-vrt/statements/listing-mappings": {
3307
+ parameters: {
3308
+ query?: never;
3309
+ header?: never;
3310
+ path?: never;
3311
+ cookie?: never;
3312
+ };
3313
+ /** @description Retrieve required historical VRI statement listing mappings and suggested target listings */
3314
+ get: operations["getTeamsMigrateVriToVrtStatementsListingMappings"];
3315
+ put?: never;
3316
+ post?: never;
3317
+ delete?: never;
3318
+ options?: never;
3319
+ head?: never;
3320
+ patch?: never;
3321
+ trace?: never;
3322
+ };
3306
3323
  "/teams/opening-balances/accounts-payable": {
3307
3324
  parameters: {
3308
3325
  query?: never;
@@ -61056,6 +61073,11 @@ export interface operations {
61056
61073
  /** Format: uuid */
61057
61074
  targetAccountId: string;
61058
61075
  }[];
61076
+ listingMappings?: {
61077
+ /** Format: uuid */
61078
+ sourceListingId: string;
61079
+ targetListingId: string | null;
61080
+ }[];
61059
61081
  };
61060
61082
  };
61061
61083
  };
@@ -61489,6 +61511,177 @@ export interface operations {
61489
61511
  };
61490
61512
  };
61491
61513
  };
61514
+ getTeamsMigrateVriToVrtStatementsListingMappings: {
61515
+ parameters: {
61516
+ query: {
61517
+ sourceTenantId: string;
61518
+ targetTenantId: string;
61519
+ };
61520
+ header?: never;
61521
+ path?: never;
61522
+ cookie?: never;
61523
+ };
61524
+ requestBody?: never;
61525
+ responses: {
61526
+ /** @description Successful response */
61527
+ 200: {
61528
+ headers: {
61529
+ [name: string]: unknown;
61530
+ };
61531
+ content: {
61532
+ "application/json": {
61533
+ effectiveGlStartAt: string;
61534
+ oldListings: {
61535
+ legacyListing: {
61536
+ /** Format: uuid */
61537
+ id: string;
61538
+ name: string | null;
61539
+ uniqueRef: string | null;
61540
+ status: string | null;
61541
+ pmsStatus: string | null;
61542
+ };
61543
+ importedStatementCount: number;
61544
+ suggestedTargetListing: {
61545
+ /** Format: uuid */
61546
+ id: string;
61547
+ name: string | null;
61548
+ uniqueRef: string | null;
61549
+ status: string | null;
61550
+ pmsStatus: string | null;
61551
+ } | null;
61552
+ currentTargetListing: {
61553
+ /** Format: uuid */
61554
+ id: string;
61555
+ name: string | null;
61556
+ uniqueRef: string | null;
61557
+ status: string | null;
61558
+ pmsStatus: string | null;
61559
+ } | null;
61560
+ currentMapping: ("targetListing" | "historicalListing") | null;
61561
+ }[];
61562
+ newListings: {
61563
+ /** Format: uuid */
61564
+ id: string;
61565
+ name: string | null;
61566
+ uniqueRef: string | null;
61567
+ status: string | null;
61568
+ pmsStatus: string | null;
61569
+ }[];
61570
+ };
61571
+ };
61572
+ };
61573
+ /** @description Bad request */
61574
+ 400: {
61575
+ headers: {
61576
+ [name: string]: unknown;
61577
+ };
61578
+ content: {
61579
+ "application/json": {
61580
+ code: string;
61581
+ message: string;
61582
+ links?: {
61583
+ docs: string;
61584
+ schema: string;
61585
+ };
61586
+ issues?: {
61587
+ message: string;
61588
+ path?: (string | number)[];
61589
+ schema?: string;
61590
+ }[];
61591
+ context?: unknown;
61592
+ };
61593
+ };
61594
+ };
61595
+ /** @description Unauthorized */
61596
+ 401: {
61597
+ headers: {
61598
+ [name: string]: unknown;
61599
+ };
61600
+ content: {
61601
+ "application/json": {
61602
+ code: string;
61603
+ message: string;
61604
+ links?: {
61605
+ docs: string;
61606
+ schema: string;
61607
+ };
61608
+ issues?: {
61609
+ message: string;
61610
+ path?: (string | number)[];
61611
+ schema?: string;
61612
+ }[];
61613
+ context?: unknown;
61614
+ };
61615
+ };
61616
+ };
61617
+ /** @description Forbidden */
61618
+ 403: {
61619
+ headers: {
61620
+ [name: string]: unknown;
61621
+ };
61622
+ content: {
61623
+ "application/json": {
61624
+ code: string;
61625
+ message: string;
61626
+ links?: {
61627
+ docs: string;
61628
+ schema: string;
61629
+ };
61630
+ issues?: {
61631
+ message: string;
61632
+ path?: (string | number)[];
61633
+ schema?: string;
61634
+ }[];
61635
+ context?: unknown;
61636
+ };
61637
+ };
61638
+ };
61639
+ /** @description Not found */
61640
+ 404: {
61641
+ headers: {
61642
+ [name: string]: unknown;
61643
+ };
61644
+ content: {
61645
+ "application/json": {
61646
+ code: string;
61647
+ message: string;
61648
+ links?: {
61649
+ docs: string;
61650
+ schema: string;
61651
+ };
61652
+ issues?: {
61653
+ message: string;
61654
+ path?: (string | number)[];
61655
+ schema?: string;
61656
+ }[];
61657
+ context?: unknown;
61658
+ };
61659
+ };
61660
+ };
61661
+ /** @description Internal server error */
61662
+ 500: {
61663
+ headers: {
61664
+ [name: string]: unknown;
61665
+ };
61666
+ content: {
61667
+ "application/json": {
61668
+ code: string;
61669
+ message: string;
61670
+ links?: {
61671
+ docs: string;
61672
+ schema: string;
61673
+ };
61674
+ issues?: {
61675
+ message: string;
61676
+ path?: (string | number)[];
61677
+ schema?: string;
61678
+ }[];
61679
+ context?: unknown;
61680
+ };
61681
+ };
61682
+ };
61683
+ };
61684
+ };
61492
61685
  getTeamsOpeningBalancesAccountsPayable: {
61493
61686
  parameters: {
61494
61687
  query: {