@vrplatform/api 1.3.1-4124 → 1.3.1-4128

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-4124",
6
+ "version": "1.3.1-4128",
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;
@@ -11523,6 +11540,8 @@ export interface operations {
11523
11540
  /** @default true */
11524
11541
  autoExtract?: boolean;
11525
11542
  sessionKey?: string;
11543
+ /** Format: uri */
11544
+ redirectTo?: string;
11526
11545
  /** @default {} */
11527
11546
  params?: {
11528
11547
  [key: string]: unknown;
@@ -11838,7 +11857,10 @@ export interface operations {
11838
11857
  content: {
11839
11858
  "application/json": {
11840
11859
  appId: string;
11841
- /** @default https://portal.vrplatform.app */
11860
+ /**
11861
+ * Format: uri
11862
+ * @default https://portal.vrplatform.app
11863
+ */
11842
11864
  redirectTo?: string;
11843
11865
  };
11844
11866
  };
@@ -12872,6 +12894,8 @@ export interface operations {
12872
12894
  /** @default true */
12873
12895
  autoExtract?: boolean;
12874
12896
  sessionKey?: string;
12897
+ /** Format: uri */
12898
+ redirectTo?: string;
12875
12899
  /** @default {} */
12876
12900
  params?: {
12877
12901
  [key: string]: unknown;
@@ -53500,6 +53524,11 @@ export interface operations {
53500
53524
  /** Format: uuid */
53501
53525
  targetAccountId: string;
53502
53526
  }[];
53527
+ listingMappings?: {
53528
+ /** Format: uuid */
53529
+ sourceListingId: string;
53530
+ targetListingId: string | null;
53531
+ }[];
53503
53532
  };
53504
53533
  };
53505
53534
  };
@@ -53869,6 +53898,147 @@ export interface operations {
53869
53898
  };
53870
53899
  };
53871
53900
  };
53901
+ getTeamsMigrateVriToVrtStatementsListingMappings: {
53902
+ parameters: {
53903
+ query: {
53904
+ sourceTenantId: string;
53905
+ targetTenantId: string;
53906
+ };
53907
+ header?: never;
53908
+ path?: never;
53909
+ cookie?: never;
53910
+ };
53911
+ requestBody?: never;
53912
+ responses: {
53913
+ /** @description Successful response */
53914
+ 200: {
53915
+ headers: {
53916
+ [name: string]: unknown;
53917
+ };
53918
+ content: {
53919
+ "application/json": {
53920
+ effectiveGlStartAt: string;
53921
+ oldListings: {
53922
+ legacyListing: {
53923
+ /** Format: uuid */
53924
+ id: string;
53925
+ name: string | null;
53926
+ uniqueRef: string | null;
53927
+ status: string | null;
53928
+ pmsStatus: string | null;
53929
+ };
53930
+ importedStatementCount: number;
53931
+ suggestedTargetListing: {
53932
+ /** Format: uuid */
53933
+ id: string;
53934
+ name: string | null;
53935
+ uniqueRef: string | null;
53936
+ status: string | null;
53937
+ pmsStatus: string | null;
53938
+ } | null;
53939
+ currentTargetListing: {
53940
+ /** Format: uuid */
53941
+ id: string;
53942
+ name: string | null;
53943
+ uniqueRef: string | null;
53944
+ status: string | null;
53945
+ pmsStatus: string | null;
53946
+ } | null;
53947
+ currentMapping: ("targetListing" | "historicalListing") | null;
53948
+ }[];
53949
+ newListings: {
53950
+ /** Format: uuid */
53951
+ id: string;
53952
+ name: string | null;
53953
+ uniqueRef: string | null;
53954
+ status: string | null;
53955
+ pmsStatus: string | null;
53956
+ }[];
53957
+ };
53958
+ };
53959
+ };
53960
+ /** @description Bad request */
53961
+ 400: {
53962
+ headers: {
53963
+ [name: string]: unknown;
53964
+ };
53965
+ content: {
53966
+ "application/json": {
53967
+ code: string;
53968
+ message: string;
53969
+ issues?: {
53970
+ message: string;
53971
+ }[];
53972
+ context?: unknown;
53973
+ };
53974
+ };
53975
+ };
53976
+ /** @description Unauthorized */
53977
+ 401: {
53978
+ headers: {
53979
+ [name: string]: unknown;
53980
+ };
53981
+ content: {
53982
+ "application/json": {
53983
+ code: string;
53984
+ message: string;
53985
+ issues?: {
53986
+ message: string;
53987
+ }[];
53988
+ context?: unknown;
53989
+ };
53990
+ };
53991
+ };
53992
+ /** @description Forbidden */
53993
+ 403: {
53994
+ headers: {
53995
+ [name: string]: unknown;
53996
+ };
53997
+ content: {
53998
+ "application/json": {
53999
+ code: string;
54000
+ message: string;
54001
+ issues?: {
54002
+ message: string;
54003
+ }[];
54004
+ context?: unknown;
54005
+ };
54006
+ };
54007
+ };
54008
+ /** @description Not found */
54009
+ 404: {
54010
+ headers: {
54011
+ [name: string]: unknown;
54012
+ };
54013
+ content: {
54014
+ "application/json": {
54015
+ code: string;
54016
+ message: string;
54017
+ issues?: {
54018
+ message: string;
54019
+ }[];
54020
+ context?: unknown;
54021
+ };
54022
+ };
54023
+ };
54024
+ /** @description Internal server error */
54025
+ 500: {
54026
+ headers: {
54027
+ [name: string]: unknown;
54028
+ };
54029
+ content: {
54030
+ "application/json": {
54031
+ code: string;
54032
+ message: string;
54033
+ issues?: {
54034
+ message: string;
54035
+ }[];
54036
+ context?: unknown;
54037
+ };
54038
+ };
54039
+ };
54040
+ };
54041
+ };
53872
54042
  getTeamsOpeningBalancesAccountsPayable: {
53873
54043
  parameters: {
53874
54044
  query: {