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