@qrush/types 1.1.7 → 1.1.9
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/Events.d.ts +1 -3
- package/package.json +1 -1
package/dist/Events.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { Features, Location, EventCategory, EventCategorySlug } from './Common.j
|
|
|
7
7
|
import { PromoTeaser } from "./Promotion.js";
|
|
8
8
|
export { EventCategory, EventCategorySlug, eventCategories, Features, Location } from './Common.js';
|
|
9
9
|
export interface IFireEvent {
|
|
10
|
+
id: string;
|
|
10
11
|
name: string;
|
|
11
12
|
nameSlug: string;
|
|
12
13
|
description?: string;
|
|
@@ -43,9 +44,6 @@ export interface IFireEvent {
|
|
|
43
44
|
modifiedAt?: Timestamp | null;
|
|
44
45
|
promotions?: PromoTeaser[];
|
|
45
46
|
}
|
|
46
|
-
export type EventWithID = IFireEvent & {
|
|
47
|
-
eventUID?: string;
|
|
48
|
-
};
|
|
49
47
|
export declare const eventTagsIsNotString: (tags: string[] | IFireMetaPossibleTags["tags"]) => tags is IFireMetaPossibleTags["tags"];
|
|
50
48
|
export interface TicketType {
|
|
51
49
|
id: string;
|