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