@qrush/types 2.1.0 → 2.1.2

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/Common.d.ts CHANGED
@@ -29,13 +29,9 @@ export type Address = {
29
29
  state?: string;
30
30
  country?: string;
31
31
  };
32
- export type GeoPointCustom = {
33
- _latitude: number;
34
- _longitude: number;
35
- };
36
32
  export type Location = {
37
33
  address: Address;
38
- geopoint: GeoPoint | GeoPointCustom;
34
+ geopoint: GeoPoint;
39
35
  };
40
36
  export type EventCategory = 'Clubnight' | 'Concert' | 'Party' | 'Festival' | 'Open-Air' | 'Rave' | 'Live-Musik' | 'Comedy' | 'Karaoke' | 'Quiz-Night' | 'Open-Mic' | 'Pub-Crawl' | 'LGBTQ+' | 'Drag-Show' | 'Speed-Dating' | 'Burlesque-Show';
41
37
  export type EventCategorySlug = 'clubnight' | 'concert' | 'party' | 'festival' | 'open-air' | 'rave' | 'live-musik' | 'comedy' | 'karaoke' | 'quiz-night' | 'open-mic' | 'pub-crawl' | 'lgbtq' | 'drag-show' | 'speed-dating' | 'burlesque-show';
@@ -1,5 +1,5 @@
1
1
  import { FireQueryDocSnapshotRef } from "./CustomDocType.js";
2
- import { Location as BaseLocation, Features } from "./Common.js";
2
+ import { Location as BaseLocation, EventCategorySlug, Features } from "./Common.js";
3
3
  import { PromotionTeaser } from "./Promotion.js";
4
4
  export declare const LOCATION_TYPE_MAPPING: {
5
5
  readonly Bar: "bars";
@@ -42,6 +42,7 @@ export type IFireLocation = {
42
42
  locationTypeSlug: LocationTypeSlugArray;
43
43
  citySlug: string;
44
44
  highlights?: string;
45
+ eventCategories?: EventCategorySlug[];
45
46
  communityNote?: {
46
47
  title: string;
47
48
  content: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrush/types",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "Shared TypeScript types for the QRush ecosystem",
5
5
  "type": "module",
6
6
  "scripts": {