@qrush/types 2.1.16 → 2.1.18

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.
@@ -21,7 +21,7 @@ export type LocationType = LocationTypeKey[];
21
21
  export type LocationTypeSlugArray = LocationTypeSlug[];
22
22
  /** @deprecated Use locationTypeSlug instead */
23
23
  export type LocationTypeArray = LocationTypeKey[];
24
- export declare const LOCATION_HIGHLIGHT_SLUGS: readonly ["rooftop", "whirlpool", "pool-table", "billiard", "darts", "dance-floor", "outdoor-area", "beer-garden", "terrace", "sauna", "hot-tub", "game-room", "live-sports"];
24
+ export declare const LOCATION_HIGHLIGHT_SLUGS: readonly ["rooftop", "whirlpool", "pool-table", "billiard", "darts", "dance-floor", "outdoor-area", "beer-garden", "terrace", "sauna", "hot-tub", "board-games", "video-games", "live-sports", "smoking-area", "shisha-lounge", "photo-wall", "dance-bar", "lounge", "vip-area"];
25
25
  export type LocationHighlightSlug = (typeof LOCATION_HIGHLIGHT_SLUGS)[number];
26
26
  /**
27
27
  * @deprecated Old type, replaced by LocationType. Handle migration for 'Open Air' to 'Outdoor' and for 'Other'.
@@ -42,7 +42,10 @@ export type DaySchedule = {
42
42
  highlights?: LocationHighlightSlug[];
43
43
  showAsEvent?: boolean;
44
44
  eventTitle?: string;
45
- specialNotes?: string;
45
+ eventDescription?: string;
46
+ imageUrl?: string;
47
+ eventStart?: TimeFormat;
48
+ eventEnd?: TimeFormat;
46
49
  };
47
50
  export type IFireLocation = {
48
51
  id: string;
package/dist/Location.js CHANGED
@@ -22,6 +22,13 @@ export const LOCATION_HIGHLIGHT_SLUGS = [
22
22
  "terrace",
23
23
  "sauna",
24
24
  "hot-tub",
25
- "game-room",
25
+ "board-games",
26
+ "video-games",
26
27
  "live-sports",
28
+ "smoking-area",
29
+ "shisha-lounge",
30
+ "photo-wall",
31
+ "dance-bar",
32
+ "lounge",
33
+ "vip-area"
27
34
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrush/types",
3
- "version": "2.1.16",
3
+ "version": "2.1.18",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",