@vrplatform/api 1.3.1-stage.2532 → 1.3.1-stage.2533
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.
|
@@ -1076,7 +1076,7 @@ export interface paths {
|
|
|
1076
1076
|
patch: operations["patchInternalBookingChannelsByBookingChannelIdIconCandidatesByCandidateId"];
|
|
1077
1077
|
trace?: never;
|
|
1078
1078
|
};
|
|
1079
|
-
"/internal/booking-channels/{bookingChannelId}/selected-
|
|
1079
|
+
"/internal/booking-channels/{bookingChannelId}/selected-asset": {
|
|
1080
1080
|
parameters: {
|
|
1081
1081
|
query?: never;
|
|
1082
1082
|
header?: never;
|
|
@@ -1084,8 +1084,8 @@ export interface paths {
|
|
|
1084
1084
|
cookie?: never;
|
|
1085
1085
|
};
|
|
1086
1086
|
get?: never;
|
|
1087
|
-
/** @description Set or clear the selected icon candidate for a booking channel */
|
|
1088
|
-
put: operations["
|
|
1087
|
+
/** @description Set or clear the selected icon or logo candidate for a booking channel */
|
|
1088
|
+
put: operations["putInternalBookingChannelsByBookingChannelIdSelectedAsset"];
|
|
1089
1089
|
post?: never;
|
|
1090
1090
|
delete?: never;
|
|
1091
1091
|
options?: never;
|
|
@@ -10183,8 +10183,10 @@ export interface operations {
|
|
|
10183
10183
|
data: {
|
|
10184
10184
|
name: string;
|
|
10185
10185
|
icon: string | null;
|
|
10186
|
+
logo: string | null;
|
|
10186
10187
|
color: string | null;
|
|
10187
10188
|
iconProvider: ("cloudflare" | "logo_dev") | null;
|
|
10189
|
+
logoProvider: ("cloudflare" | "logo_dev") | null;
|
|
10188
10190
|
reservationCount: number;
|
|
10189
10191
|
}[];
|
|
10190
10192
|
};
|
|
@@ -15140,12 +15142,15 @@ export interface operations {
|
|
|
15140
15142
|
uniqueRef: string;
|
|
15141
15143
|
channelRef: string | null;
|
|
15142
15144
|
icon: string | null;
|
|
15145
|
+
logo: string | null;
|
|
15143
15146
|
color: string | null;
|
|
15144
15147
|
iconProvider: ("cloudflare" | "logo_dev") | null;
|
|
15148
|
+
logoProvider: ("cloudflare" | "logo_dev") | null;
|
|
15145
15149
|
lastGenerateRun: string | null;
|
|
15146
15150
|
usageCount: number;
|
|
15147
15151
|
iconCandidateCount: number;
|
|
15148
15152
|
selectedBookingChannelIconCandidateId: string | null;
|
|
15153
|
+
selectedBookingChannelLogoCandidateId: string | null;
|
|
15149
15154
|
}[];
|
|
15150
15155
|
};
|
|
15151
15156
|
};
|
|
@@ -15509,10 +15514,14 @@ export interface operations {
|
|
|
15509
15514
|
provider: "cloudflare" | "logo_dev";
|
|
15510
15515
|
cloudflareImageId: string | null;
|
|
15511
15516
|
icon: string | null;
|
|
15517
|
+
width: number | null;
|
|
15518
|
+
height: number | null;
|
|
15512
15519
|
color: string | null;
|
|
15513
15520
|
source: string | null;
|
|
15514
15521
|
comment: string | null;
|
|
15515
15522
|
isSelected: boolean;
|
|
15523
|
+
isSelectedForIcon: boolean;
|
|
15524
|
+
isSelectedForLogo: boolean;
|
|
15516
15525
|
createdAt: string;
|
|
15517
15526
|
updatedAt: string;
|
|
15518
15527
|
}[];
|
|
@@ -15628,10 +15637,14 @@ export interface operations {
|
|
|
15628
15637
|
provider: "cloudflare" | "logo_dev";
|
|
15629
15638
|
cloudflareImageId: string | null;
|
|
15630
15639
|
icon: string | null;
|
|
15640
|
+
width: number | null;
|
|
15641
|
+
height: number | null;
|
|
15631
15642
|
color: string | null;
|
|
15632
15643
|
source: string | null;
|
|
15633
15644
|
comment: string | null;
|
|
15634
15645
|
isSelected: boolean;
|
|
15646
|
+
isSelectedForIcon: boolean;
|
|
15647
|
+
isSelectedForLogo: boolean;
|
|
15635
15648
|
createdAt: string;
|
|
15636
15649
|
updatedAt: string;
|
|
15637
15650
|
}[];
|
|
@@ -15746,10 +15759,14 @@ export interface operations {
|
|
|
15746
15759
|
provider: "cloudflare" | "logo_dev";
|
|
15747
15760
|
cloudflareImageId: string | null;
|
|
15748
15761
|
icon: string | null;
|
|
15762
|
+
width: number | null;
|
|
15763
|
+
height: number | null;
|
|
15749
15764
|
color: string | null;
|
|
15750
15765
|
source: string | null;
|
|
15751
15766
|
comment: string | null;
|
|
15752
15767
|
isSelected: boolean;
|
|
15768
|
+
isSelectedForIcon: boolean;
|
|
15769
|
+
isSelectedForLogo: boolean;
|
|
15753
15770
|
createdAt: string;
|
|
15754
15771
|
updatedAt: string;
|
|
15755
15772
|
};
|
|
@@ -15865,9 +15882,12 @@ export interface operations {
|
|
|
15865
15882
|
uniqueRef: string;
|
|
15866
15883
|
channelRef: string | null;
|
|
15867
15884
|
icon: string | null;
|
|
15885
|
+
logo: string | null;
|
|
15868
15886
|
color: string | null;
|
|
15869
15887
|
iconProvider: ("cloudflare" | "logo_dev") | null;
|
|
15888
|
+
logoProvider: ("cloudflare" | "logo_dev") | null;
|
|
15870
15889
|
selectedBookingChannelIconCandidateId: string | null;
|
|
15890
|
+
selectedBookingChannelLogoCandidateId: string | null;
|
|
15871
15891
|
candidateCount: number;
|
|
15872
15892
|
};
|
|
15873
15893
|
};
|
|
@@ -15987,10 +16007,14 @@ export interface operations {
|
|
|
15987
16007
|
provider: "cloudflare" | "logo_dev";
|
|
15988
16008
|
cloudflareImageId: string | null;
|
|
15989
16009
|
icon: string | null;
|
|
16010
|
+
width: number | null;
|
|
16011
|
+
height: number | null;
|
|
15990
16012
|
color: string | null;
|
|
15991
16013
|
source: string | null;
|
|
15992
16014
|
comment: string | null;
|
|
15993
16015
|
isSelected: boolean;
|
|
16016
|
+
isSelectedForIcon: boolean;
|
|
16017
|
+
isSelectedForLogo: boolean;
|
|
15994
16018
|
createdAt: string;
|
|
15995
16019
|
updatedAt: string;
|
|
15996
16020
|
};
|
|
@@ -16078,7 +16102,7 @@ export interface operations {
|
|
|
16078
16102
|
};
|
|
16079
16103
|
};
|
|
16080
16104
|
};
|
|
16081
|
-
|
|
16105
|
+
putInternalBookingChannelsByBookingChannelIdSelectedAsset: {
|
|
16082
16106
|
parameters: {
|
|
16083
16107
|
query?: never;
|
|
16084
16108
|
header?: never;
|
|
@@ -16091,6 +16115,9 @@ export interface operations {
|
|
|
16091
16115
|
content: {
|
|
16092
16116
|
"application/json": {
|
|
16093
16117
|
candidateId: string | null;
|
|
16118
|
+
color?: string | null;
|
|
16119
|
+
/** @enum {string} */
|
|
16120
|
+
type: "icon" | "logo";
|
|
16094
16121
|
};
|
|
16095
16122
|
};
|
|
16096
16123
|
};
|
|
@@ -16107,9 +16134,12 @@ export interface operations {
|
|
|
16107
16134
|
uniqueRef: string;
|
|
16108
16135
|
channelRef: string | null;
|
|
16109
16136
|
icon: string | null;
|
|
16137
|
+
logo: string | null;
|
|
16110
16138
|
color: string | null;
|
|
16111
16139
|
iconProvider: ("cloudflare" | "logo_dev") | null;
|
|
16140
|
+
logoProvider: ("cloudflare" | "logo_dev") | null;
|
|
16112
16141
|
selectedBookingChannelIconCandidateId: string | null;
|
|
16142
|
+
selectedBookingChannelLogoCandidateId: string | null;
|
|
16113
16143
|
candidateCount: number;
|
|
16114
16144
|
};
|
|
16115
16145
|
};
|