accomadesc 0.2.17 → 0.2.19
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/dist/BookingRequest.svelte +1 -1
- package/dist/types.d.ts +3 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -226,7 +226,7 @@ export interface AccoCard {
|
|
|
226
226
|
export interface AccoCardContent {
|
|
227
227
|
displayName: string;
|
|
228
228
|
coverPhoto: PhotoContent;
|
|
229
|
-
slug
|
|
229
|
+
slug: string;
|
|
230
230
|
pricing: PricingShort;
|
|
231
231
|
avail: CalendarAvailable;
|
|
232
232
|
amenities: AmenitiesCore;
|
|
@@ -261,8 +261,8 @@ export interface ContactFormContent {
|
|
|
261
261
|
submitText: string;
|
|
262
262
|
successfullySentText: string;
|
|
263
263
|
sentErroredText: string;
|
|
264
|
+
explainer: string;
|
|
264
265
|
maxCharsAllowed?: number;
|
|
265
|
-
explainer?: string;
|
|
266
266
|
preview?: boolean;
|
|
267
267
|
}
|
|
268
268
|
export interface BookingRequest {
|
|
@@ -283,8 +283,8 @@ export interface BookingRequestContent {
|
|
|
283
283
|
sentErroredText: string;
|
|
284
284
|
invalidText: string;
|
|
285
285
|
messageLabel: string;
|
|
286
|
+
explainer: string;
|
|
286
287
|
maxCharsAllowed?: number;
|
|
287
|
-
explainer?: string;
|
|
288
288
|
preview?: boolean;
|
|
289
289
|
}
|
|
290
290
|
export type Block = Text | Photo | PhotoGallery | Calendar | CalendarAvailable | CalendarGrid | CalendarRows | Pricing | PricingShort | AmenitiesCore | Weather | LeafletMap | AccoCard | AccoDescription | ContactForm | BookingRequest | undefined;
|