wedance-shared 1.0.115 → 1.0.117

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.
@@ -149,3 +149,20 @@ export type Featured = {
149
149
  organizer?: OrganizerData;
150
150
  };
151
151
  export type PromotionStatus = "draft" | "pending_payment" | "payment_failed" | "scheduled" | "paused" | "cancelled";
152
+ export type FeaturedEvent = {
153
+ id: string;
154
+ eventId: string;
155
+ organizerId: string | null;
156
+ cities: string[];
157
+ status: string;
158
+ isActive: boolean;
159
+ priority: number;
160
+ promotionalText: string | null;
161
+ dateRangeStart: string;
162
+ dateRangeEnd: string;
163
+ createdBy: string | null;
164
+ createdAt: string;
165
+ updatedAt: string;
166
+ event?: Pick<EventData, "id" | "title" | "imageData" | "from" | "until">;
167
+ organizer?: Pick<OrganizerData, "id" | "name" | "logoUrl">;
168
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wedance-shared",
3
- "version": "1.0.115",
3
+ "version": "1.0.117",
4
4
  "description": "This repository contains shared TypeScript types and interfaces used across multiple WeDance applications:",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",