wedance-shared 1.0.164 → 1.0.165

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.
@@ -2,7 +2,7 @@ import { Timestamp } from "firebase/firestore";
2
2
  import { City } from "./city.js";
3
3
  import { EventTicket } from "./ticket.js";
4
4
  import { UserBadge } from "./user.js";
5
- import { OrganizerData, OrganizerSummary } from "wedance-shared";
5
+ import { OrganizerSummary } from "wedance-shared";
6
6
  export type DanceTag = "salsa" | "kizomba" | "bachata" | "zouk" | "tango" | "heels" | "hiphop" | "reggaeton" | "other";
7
7
  export type Links = {
8
8
  paymentLink?: string;
@@ -188,5 +188,5 @@ export type FeaturedEvent = {
188
188
  createdAt: string;
189
189
  updatedAt: string;
190
190
  event?: Pick<EventData, "id" | "title" | "imageData" | "from" | "until">;
191
- organizer?: Pick<OrganizerData, "id" | "name" | "logoUrl">;
191
+ organizer?: OrganizerSummary;
192
192
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wedance-shared",
3
- "version": "1.0.164",
3
+ "version": "1.0.165",
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",