@vrplatform/api 1.3.1-4108 → 1.3.1-4126

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-4108",
6
+ "version": "1.3.1-4126",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -3285,6 +3285,23 @@ export interface paths {
3285
3285
  patch?: never;
3286
3286
  trace?: never;
3287
3287
  };
3288
+ "/teams/migrate-vri-to-vrt/statements/listing-mappings": {
3289
+ parameters: {
3290
+ query?: never;
3291
+ header?: never;
3292
+ path?: never;
3293
+ cookie?: never;
3294
+ };
3295
+ /** @description Retrieve required historical VRI statement listing mappings and suggested target listings */
3296
+ get: operations["getTeamsMigrateVriToVrtStatementsListingMappings"];
3297
+ put?: never;
3298
+ post?: never;
3299
+ delete?: never;
3300
+ options?: never;
3301
+ head?: never;
3302
+ patch?: never;
3303
+ trace?: never;
3304
+ };
3288
3305
  "/teams/opening-balances/accounts-payable": {
3289
3306
  parameters: {
3290
3307
  query?: never;
@@ -53500,6 +53517,11 @@ export interface operations {
53500
53517
  /** Format: uuid */
53501
53518
  targetAccountId: string;
53502
53519
  }[];
53520
+ listingMappings?: {
53521
+ /** Format: uuid */
53522
+ sourceListingId: string;
53523
+ targetListingId: string | null;
53524
+ }[];
53503
53525
  };
53504
53526
  };
53505
53527
  };
@@ -53869,6 +53891,147 @@ export interface operations {
53869
53891
  };
53870
53892
  };
53871
53893
  };
53894
+ getTeamsMigrateVriToVrtStatementsListingMappings: {
53895
+ parameters: {
53896
+ query: {
53897
+ sourceTenantId: string;
53898
+ targetTenantId: string;
53899
+ };
53900
+ header?: never;
53901
+ path?: never;
53902
+ cookie?: never;
53903
+ };
53904
+ requestBody?: never;
53905
+ responses: {
53906
+ /** @description Successful response */
53907
+ 200: {
53908
+ headers: {
53909
+ [name: string]: unknown;
53910
+ };
53911
+ content: {
53912
+ "application/json": {
53913
+ effectiveGlStartAt: string;
53914
+ oldListings: {
53915
+ legacyListing: {
53916
+ /** Format: uuid */
53917
+ id: string;
53918
+ name: string | null;
53919
+ uniqueRef: string | null;
53920
+ status: string | null;
53921
+ pmsStatus: string | null;
53922
+ };
53923
+ importedStatementCount: number;
53924
+ suggestedTargetListing: {
53925
+ /** Format: uuid */
53926
+ id: string;
53927
+ name: string | null;
53928
+ uniqueRef: string | null;
53929
+ status: string | null;
53930
+ pmsStatus: string | null;
53931
+ } | null;
53932
+ currentTargetListing: {
53933
+ /** Format: uuid */
53934
+ id: string;
53935
+ name: string | null;
53936
+ uniqueRef: string | null;
53937
+ status: string | null;
53938
+ pmsStatus: string | null;
53939
+ } | null;
53940
+ currentMapping: ("targetListing" | "historicalListing") | null;
53941
+ }[];
53942
+ newListings: {
53943
+ /** Format: uuid */
53944
+ id: string;
53945
+ name: string | null;
53946
+ uniqueRef: string | null;
53947
+ status: string | null;
53948
+ pmsStatus: string | null;
53949
+ }[];
53950
+ };
53951
+ };
53952
+ };
53953
+ /** @description Bad request */
53954
+ 400: {
53955
+ headers: {
53956
+ [name: string]: unknown;
53957
+ };
53958
+ content: {
53959
+ "application/json": {
53960
+ code: string;
53961
+ message: string;
53962
+ issues?: {
53963
+ message: string;
53964
+ }[];
53965
+ context?: unknown;
53966
+ };
53967
+ };
53968
+ };
53969
+ /** @description Unauthorized */
53970
+ 401: {
53971
+ headers: {
53972
+ [name: string]: unknown;
53973
+ };
53974
+ content: {
53975
+ "application/json": {
53976
+ code: string;
53977
+ message: string;
53978
+ issues?: {
53979
+ message: string;
53980
+ }[];
53981
+ context?: unknown;
53982
+ };
53983
+ };
53984
+ };
53985
+ /** @description Forbidden */
53986
+ 403: {
53987
+ headers: {
53988
+ [name: string]: unknown;
53989
+ };
53990
+ content: {
53991
+ "application/json": {
53992
+ code: string;
53993
+ message: string;
53994
+ issues?: {
53995
+ message: string;
53996
+ }[];
53997
+ context?: unknown;
53998
+ };
53999
+ };
54000
+ };
54001
+ /** @description Not found */
54002
+ 404: {
54003
+ headers: {
54004
+ [name: string]: unknown;
54005
+ };
54006
+ content: {
54007
+ "application/json": {
54008
+ code: string;
54009
+ message: string;
54010
+ issues?: {
54011
+ message: string;
54012
+ }[];
54013
+ context?: unknown;
54014
+ };
54015
+ };
54016
+ };
54017
+ /** @description Internal server error */
54018
+ 500: {
54019
+ headers: {
54020
+ [name: string]: unknown;
54021
+ };
54022
+ content: {
54023
+ "application/json": {
54024
+ code: string;
54025
+ message: string;
54026
+ issues?: {
54027
+ message: string;
54028
+ }[];
54029
+ context?: unknown;
54030
+ };
54031
+ };
54032
+ };
54033
+ };
54034
+ };
53872
54035
  getTeamsOpeningBalancesAccountsPayable: {
53873
54036
  parameters: {
53874
54037
  query: {