wedance-shared 1.0.174 → 1.0.176

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.
@@ -39,6 +39,7 @@ export interface AnalyticsOverviewQuery {
39
39
  /** Per-day platform counts, computed over a UTC day. */
40
40
  export interface AnalyticsDailyStats {
41
41
  activeUsers: number;
42
+ activeUsersTotal: number;
42
43
  newUsers: number;
43
44
  purchasedTickets: number;
44
45
  newEvents: number;
@@ -3,7 +3,8 @@ 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" | "latin_mix" | "other";
6
+ export declare const LIST_DANCE_TAGS: readonly ["salsa", "kizomba", "bachata", "zouk", "tango", "heels", "hiphop", "reggaeton", "latin_mix", "other"];
7
+ export type DanceTag = (typeof LIST_DANCE_TAGS)[number];
7
8
  export type Links = {
8
9
  paymentLink?: string;
9
10
  instagram?: string;
@@ -1,2 +1,13 @@
1
- export {};
1
+ export const LIST_DANCE_TAGS = [
2
+ "salsa",
3
+ "kizomba",
4
+ "bachata",
5
+ "zouk",
6
+ "tango",
7
+ "heels",
8
+ "hiphop",
9
+ "reggaeton",
10
+ "latin_mix",
11
+ "other",
12
+ ];
2
13
  //# sourceMappingURL=event.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"event.js","sourceRoot":"","sources":["../../src/types/event.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"event.js","sourceRoot":"","sources":["../../src/types/event.ts"],"names":[],"mappings":"AAMA,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,OAAO;IACP,SAAS;IACT,SAAS;IACT,MAAM;IACN,OAAO;IACP,OAAO;IACP,QAAQ;IACR,WAAW;IACX,WAAW;IACX,OAAO;CACC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wedance-shared",
3
- "version": "1.0.174",
3
+ "version": "1.0.176",
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",