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