wedance-shared 1.0.70 → 1.0.71
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.
|
@@ -54,4 +54,5 @@ export type FestivalArtist = {
|
|
|
54
54
|
};
|
|
55
55
|
export type FestivalArtistRole = "dj" | "dancer" | "mc" | "guest-dancer" | "organizer" | "media";
|
|
56
56
|
export type Region = "Nordics" | "Baltics" | "Western Europe" | "Eastern Europe" | "Southern Europe" | "Central Europe" | "Asia" | "Africa";
|
|
57
|
+
export type CreateFestivalInput = Omit<FestivalData, "createdAt" | "updatedAt" | "createdBy" | "updatedBy" | "id">;
|
|
57
58
|
export {};
|
package/package.json
CHANGED