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