@vrplatform/api 1.3.1-stage.3871 → 1.3.1-stage.3873
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.
|
@@ -624,6 +624,23 @@ export interface paths {
|
|
|
624
624
|
patch?: never;
|
|
625
625
|
trace?: never;
|
|
626
626
|
};
|
|
627
|
+
"/connections/pms-cutover/listing-mappings": {
|
|
628
|
+
parameters: {
|
|
629
|
+
query?: never;
|
|
630
|
+
header?: never;
|
|
631
|
+
path?: never;
|
|
632
|
+
cookie?: never;
|
|
633
|
+
};
|
|
634
|
+
/** @description Retrieve PMS migration cutover target listing refs that need mapping, suggested source listings, and the source listing pool */
|
|
635
|
+
get: operations["getPmsConnectionCutoverListingMappings"];
|
|
636
|
+
put?: never;
|
|
637
|
+
post?: never;
|
|
638
|
+
delete?: never;
|
|
639
|
+
options?: never;
|
|
640
|
+
head?: never;
|
|
641
|
+
patch?: never;
|
|
642
|
+
trace?: never;
|
|
643
|
+
};
|
|
627
644
|
"/connections/pms-cutover/preview": {
|
|
628
645
|
parameters: {
|
|
629
646
|
query?: never;
|
|
@@ -11548,6 +11565,11 @@ export interface operations {
|
|
|
11548
11565
|
/** Format: uuid */
|
|
11549
11566
|
targetConnectionId: string;
|
|
11550
11567
|
cutoverAt: string;
|
|
11568
|
+
listingMappings?: {
|
|
11569
|
+
/** Format: uuid */
|
|
11570
|
+
targetListingConnectionId: string;
|
|
11571
|
+
sourceListingId: string | null;
|
|
11572
|
+
}[];
|
|
11551
11573
|
};
|
|
11552
11574
|
};
|
|
11553
11575
|
};
|
|
@@ -11686,6 +11708,132 @@ export interface operations {
|
|
|
11686
11708
|
};
|
|
11687
11709
|
};
|
|
11688
11710
|
};
|
|
11711
|
+
getPmsConnectionCutoverListingMappings: {
|
|
11712
|
+
parameters: {
|
|
11713
|
+
query: {
|
|
11714
|
+
sourceConnectionId: string;
|
|
11715
|
+
targetConnectionId: string;
|
|
11716
|
+
};
|
|
11717
|
+
header?: never;
|
|
11718
|
+
path?: never;
|
|
11719
|
+
cookie?: never;
|
|
11720
|
+
};
|
|
11721
|
+
requestBody?: never;
|
|
11722
|
+
responses: {
|
|
11723
|
+
/** @description Successful response */
|
|
11724
|
+
200: {
|
|
11725
|
+
headers: {
|
|
11726
|
+
[name: string]: unknown;
|
|
11727
|
+
};
|
|
11728
|
+
content: {
|
|
11729
|
+
"application/json": {
|
|
11730
|
+
sourceListings: {
|
|
11731
|
+
/** Format: uuid */
|
|
11732
|
+
id: string;
|
|
11733
|
+
name: string;
|
|
11734
|
+
address: string | null;
|
|
11735
|
+
}[];
|
|
11736
|
+
targetListings: {
|
|
11737
|
+
/** Format: uuid */
|
|
11738
|
+
targetListingConnectionId: string;
|
|
11739
|
+
uniqueRef: string | null;
|
|
11740
|
+
name: string;
|
|
11741
|
+
address: string | null;
|
|
11742
|
+
listingId: string | null;
|
|
11743
|
+
/** @enum {string} */
|
|
11744
|
+
status: "alreadyShared" | "matched" | "ambiguous" | "unmapped";
|
|
11745
|
+
suggestedListing: {
|
|
11746
|
+
/** Format: uuid */
|
|
11747
|
+
id: string;
|
|
11748
|
+
name: string;
|
|
11749
|
+
address: string | null;
|
|
11750
|
+
} | null;
|
|
11751
|
+
}[];
|
|
11752
|
+
};
|
|
11753
|
+
};
|
|
11754
|
+
};
|
|
11755
|
+
/** @description Bad request */
|
|
11756
|
+
400: {
|
|
11757
|
+
headers: {
|
|
11758
|
+
[name: string]: unknown;
|
|
11759
|
+
};
|
|
11760
|
+
content: {
|
|
11761
|
+
"application/json": {
|
|
11762
|
+
code: string;
|
|
11763
|
+
message: string;
|
|
11764
|
+
issues?: {
|
|
11765
|
+
message: string;
|
|
11766
|
+
}[];
|
|
11767
|
+
context?: unknown;
|
|
11768
|
+
};
|
|
11769
|
+
};
|
|
11770
|
+
};
|
|
11771
|
+
/** @description Unauthorized */
|
|
11772
|
+
401: {
|
|
11773
|
+
headers: {
|
|
11774
|
+
[name: string]: unknown;
|
|
11775
|
+
};
|
|
11776
|
+
content: {
|
|
11777
|
+
"application/json": {
|
|
11778
|
+
code: string;
|
|
11779
|
+
message: string;
|
|
11780
|
+
issues?: {
|
|
11781
|
+
message: string;
|
|
11782
|
+
}[];
|
|
11783
|
+
context?: unknown;
|
|
11784
|
+
};
|
|
11785
|
+
};
|
|
11786
|
+
};
|
|
11787
|
+
/** @description Forbidden */
|
|
11788
|
+
403: {
|
|
11789
|
+
headers: {
|
|
11790
|
+
[name: string]: unknown;
|
|
11791
|
+
};
|
|
11792
|
+
content: {
|
|
11793
|
+
"application/json": {
|
|
11794
|
+
code: string;
|
|
11795
|
+
message: string;
|
|
11796
|
+
issues?: {
|
|
11797
|
+
message: string;
|
|
11798
|
+
}[];
|
|
11799
|
+
context?: unknown;
|
|
11800
|
+
};
|
|
11801
|
+
};
|
|
11802
|
+
};
|
|
11803
|
+
/** @description Not found */
|
|
11804
|
+
404: {
|
|
11805
|
+
headers: {
|
|
11806
|
+
[name: string]: unknown;
|
|
11807
|
+
};
|
|
11808
|
+
content: {
|
|
11809
|
+
"application/json": {
|
|
11810
|
+
code: string;
|
|
11811
|
+
message: string;
|
|
11812
|
+
issues?: {
|
|
11813
|
+
message: string;
|
|
11814
|
+
}[];
|
|
11815
|
+
context?: unknown;
|
|
11816
|
+
};
|
|
11817
|
+
};
|
|
11818
|
+
};
|
|
11819
|
+
/** @description Internal server error */
|
|
11820
|
+
500: {
|
|
11821
|
+
headers: {
|
|
11822
|
+
[name: string]: unknown;
|
|
11823
|
+
};
|
|
11824
|
+
content: {
|
|
11825
|
+
"application/json": {
|
|
11826
|
+
code: string;
|
|
11827
|
+
message: string;
|
|
11828
|
+
issues?: {
|
|
11829
|
+
message: string;
|
|
11830
|
+
}[];
|
|
11831
|
+
context?: unknown;
|
|
11832
|
+
};
|
|
11833
|
+
};
|
|
11834
|
+
};
|
|
11835
|
+
};
|
|
11836
|
+
};
|
|
11689
11837
|
previewPmsConnectionCutover: {
|
|
11690
11838
|
parameters: {
|
|
11691
11839
|
query?: never;
|
|
@@ -11701,6 +11849,11 @@ export interface operations {
|
|
|
11701
11849
|
/** Format: uuid */
|
|
11702
11850
|
targetConnectionId: string;
|
|
11703
11851
|
cutoverAt: string;
|
|
11852
|
+
listingMappings?: {
|
|
11853
|
+
/** Format: uuid */
|
|
11854
|
+
targetListingConnectionId: string;
|
|
11855
|
+
sourceListingId: string | null;
|
|
11856
|
+
}[];
|
|
11704
11857
|
};
|
|
11705
11858
|
};
|
|
11706
11859
|
};
|