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