wedance-shared 1.0.167 → 1.0.169
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/types/event.d.ts +2 -2
- package/package.json +1 -1
package/dist/types/event.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { City } from "./city.js";
|
|
|
3
3
|
import { EventTicket } from "./ticket.js";
|
|
4
4
|
import { UserBadge } from "./user.js";
|
|
5
5
|
import { OrganizerSummary } from "wedance-shared";
|
|
6
|
-
export type DanceTag = "salsa" | "kizomba" | "bachata" | "zouk" | "tango" | "heels" | "hiphop" | "reggaeton" | "other";
|
|
6
|
+
export type DanceTag = "salsa" | "kizomba" | "bachata" | "zouk" | "tango" | "heels" | "hiphop" | "reggaeton" | "latin_mix" | "other";
|
|
7
7
|
export type Links = {
|
|
8
8
|
paymentLink?: string;
|
|
9
9
|
instagram?: string;
|
|
@@ -101,7 +101,7 @@ export type EventData = {
|
|
|
101
101
|
* Lightweight event projection with the basic info needed when an event is
|
|
102
102
|
* attached to another record (e.g. a Pass). Populated server-side via a join.
|
|
103
103
|
*/
|
|
104
|
-
export type EventSummary = Pick<EventData, "id" | "title" | "imageData" | "from" | "until">;
|
|
104
|
+
export type EventSummary = Pick<EventData, "id" | "title" | "imageData" | "from" | "until" | "city">;
|
|
105
105
|
/**
|
|
106
106
|
* Workshop: Only workshop
|
|
107
107
|
* Social: Only social and possible pre-party class
|
package/package.json
CHANGED