@timardex/cluemart-shared 1.5.49 → 1.5.491

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.
@@ -137,8 +137,63 @@ type AppSettingsType = AppSettingsFormData & {
137
137
  updatedAt: Date | null;
138
138
  };
139
139
 
140
- declare const gameScreenIdentifiers: readonly ["activities", "chat", "edit-profile", "event", "events-near-me", "events", "events/region", "games", "home", "notifications", "options", "partner", "partners", "post", "profile", "vendor", "vendors", "visitors"];
141
- type GamePlacement = (typeof gameScreenIdentifiers)[number];
140
+ declare const gameScreenIdentifierList: readonly [{
141
+ readonly clue: "Where your actions turn into a timeline.";
142
+ readonly id: "activities";
143
+ }, {
144
+ readonly clue: "Where conversations happen without speaking.";
145
+ readonly id: "chat";
146
+ }, {
147
+ readonly clue: "The place to redefine who you are.";
148
+ readonly id: "edit-profile";
149
+ }, {
150
+ readonly clue: "A single moment worth showing up for.";
151
+ readonly id: "event";
152
+ }, {
153
+ readonly clue: "What’s happening around you, right now.";
154
+ readonly id: "events-near-me";
155
+ }, {
156
+ readonly clue: "A collection of things worth attending.";
157
+ readonly id: "events";
158
+ }, {
159
+ readonly clue: "What’s happening in a wider area—not just nearby.";
160
+ readonly id: "events/region";
161
+ }, {
162
+ readonly clue: "Where fun becomes a challenge.";
163
+ readonly id: "games";
164
+ }, {
165
+ readonly clue: "Your starting point for everything.";
166
+ readonly id: "home";
167
+ }, {
168
+ readonly clue: "Where the app taps you on the shoulder.";
169
+ readonly id: "notifications";
170
+ }, {
171
+ readonly clue: "Where you fine-tune your experience.";
172
+ readonly id: "options";
173
+ }, {
174
+ readonly clue: "A single collaborator in the ecosystem.";
175
+ readonly id: "partner";
176
+ }, {
177
+ readonly clue: "The network behind the scenes.";
178
+ readonly id: "partners";
179
+ }, {
180
+ readonly clue: "Where you share something with everyone.";
181
+ readonly id: "post";
182
+ }, {
183
+ readonly clue: "Your identity, on display.";
184
+ readonly id: "profile";
185
+ }, {
186
+ readonly clue: "One provider offering something valuable.";
187
+ readonly id: "vendor";
188
+ }, {
189
+ readonly clue: "A marketplace of providers.";
190
+ readonly id: "vendors";
191
+ }, {
192
+ readonly clue: "People who stopped by to see you.";
193
+ readonly id: "visitors";
194
+ }];
195
+ type GamePlacement = (typeof gameScreenIdentifierList)[number]["id"];
196
+ type GamePlacementClue = (typeof gameScreenIdentifierList)[number]["clue"];
142
197
  declare enum EnumGameType {
143
198
  DAILY_CLUE = "dailyClue"
144
199
  }
@@ -160,7 +215,7 @@ type DailyClueGameData = {
160
215
  collected: string[] | null;
161
216
  shuffled: string[];
162
217
  todaysLetter: string | null;
163
- todaysClue: string | null;
218
+ todaysClue: GamePlacementClue | null;
164
219
  todaysPlacement: GamePlacement | null;
165
220
  };
166
221
  streak: number;
@@ -317,4 +372,4 @@ type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
317
372
  updatedAt: Date | null;
318
373
  };
319
374
 
320
- export { type AdType as A, type BaseGame as B, type CreateUserFormData as C, type DailyClueGameData as D, EnumAdStatus as E, type PostContentGame as F, type GameType as G, type PostContentImage as H, type PostContentList as I, type PostContentTextarea as J, type PostContentType as K, type PostContentVideo as L, type PostFileInput as M, type StripeSubscription as N, type SubscriptionPlanData as O, type PartnerType as P, type SubscriptionPricingData as Q, type ResourceByUser as R, type SubscriptionPlansResponse as S, type UserActivity as T, type UserType as U, type UserActivityEvent as V, gameScreenIdentifiers as W, gameTypeToDisplayName as X, type SubscriptionStatusData as a, type PostType as b, EnumPostType as c, type AppSettingsType as d, type GameLeaderboard as e, type UserFormData as f, type PartnerFormData as g, type AdFormData as h, type CreateAdFormData as i, type CreatePartnerFormData as j, type PostFormData as k, type CreatePostFormData as l, type AppSettingsFormData as m, type CreateAppSettingsFormData as n, type AdResource as o, EnumAdShowOn as p, EnumAdStyle as q, EnumAdType as r, EnumGameType as s, EnumPostContentType as t, type GameData as u, type GameDate as v, type GameHistory as w, type GamePlacement as x, type PostContentData as y, type PostContentFormData as z };
375
+ export { type AdType as A, type BaseGame as B, type CreateUserFormData as C, type DailyClueGameData as D, EnumAdStatus as E, type PostContentFormData as F, type GameType as G, type PostContentGame as H, type PostContentImage as I, type PostContentList as J, type PostContentTextarea as K, type PostContentType as L, type PostContentVideo as M, type PostFileInput as N, type StripeSubscription as O, type PartnerType as P, type SubscriptionPlanData as Q, type ResourceByUser as R, type SubscriptionPlansResponse as S, type SubscriptionPricingData as T, type UserType as U, type UserActivity as V, type UserActivityEvent as W, gameScreenIdentifierList as X, gameTypeToDisplayName as Y, type SubscriptionStatusData as a, type PostType as b, EnumPostType as c, type AppSettingsType as d, type GameLeaderboard as e, type UserFormData as f, type PartnerFormData as g, type AdFormData as h, type CreateAdFormData as i, type CreatePartnerFormData as j, type PostFormData as k, type CreatePostFormData as l, type AppSettingsFormData as m, type CreateAppSettingsFormData as n, type AdResource as o, EnumAdShowOn as p, EnumAdStyle as q, EnumAdType as r, EnumGameType as s, EnumPostContentType as t, type GameData as u, type GameDate as v, type GameHistory as w, type GamePlacement as x, type GamePlacementClue as y, type PostContentData as z };
@@ -137,8 +137,63 @@ type AppSettingsType = AppSettingsFormData & {
137
137
  updatedAt: Date | null;
138
138
  };
139
139
 
140
- declare const gameScreenIdentifiers: readonly ["activities", "chat", "edit-profile", "event", "events-near-me", "events", "events/region", "games", "home", "notifications", "options", "partner", "partners", "post", "profile", "vendor", "vendors", "visitors"];
141
- type GamePlacement = (typeof gameScreenIdentifiers)[number];
140
+ declare const gameScreenIdentifierList: readonly [{
141
+ readonly clue: "Where your actions turn into a timeline.";
142
+ readonly id: "activities";
143
+ }, {
144
+ readonly clue: "Where conversations happen without speaking.";
145
+ readonly id: "chat";
146
+ }, {
147
+ readonly clue: "The place to redefine who you are.";
148
+ readonly id: "edit-profile";
149
+ }, {
150
+ readonly clue: "A single moment worth showing up for.";
151
+ readonly id: "event";
152
+ }, {
153
+ readonly clue: "What’s happening around you, right now.";
154
+ readonly id: "events-near-me";
155
+ }, {
156
+ readonly clue: "A collection of things worth attending.";
157
+ readonly id: "events";
158
+ }, {
159
+ readonly clue: "What’s happening in a wider area—not just nearby.";
160
+ readonly id: "events/region";
161
+ }, {
162
+ readonly clue: "Where fun becomes a challenge.";
163
+ readonly id: "games";
164
+ }, {
165
+ readonly clue: "Your starting point for everything.";
166
+ readonly id: "home";
167
+ }, {
168
+ readonly clue: "Where the app taps you on the shoulder.";
169
+ readonly id: "notifications";
170
+ }, {
171
+ readonly clue: "Where you fine-tune your experience.";
172
+ readonly id: "options";
173
+ }, {
174
+ readonly clue: "A single collaborator in the ecosystem.";
175
+ readonly id: "partner";
176
+ }, {
177
+ readonly clue: "The network behind the scenes.";
178
+ readonly id: "partners";
179
+ }, {
180
+ readonly clue: "Where you share something with everyone.";
181
+ readonly id: "post";
182
+ }, {
183
+ readonly clue: "Your identity, on display.";
184
+ readonly id: "profile";
185
+ }, {
186
+ readonly clue: "One provider offering something valuable.";
187
+ readonly id: "vendor";
188
+ }, {
189
+ readonly clue: "A marketplace of providers.";
190
+ readonly id: "vendors";
191
+ }, {
192
+ readonly clue: "People who stopped by to see you.";
193
+ readonly id: "visitors";
194
+ }];
195
+ type GamePlacement = (typeof gameScreenIdentifierList)[number]["id"];
196
+ type GamePlacementClue = (typeof gameScreenIdentifierList)[number]["clue"];
142
197
  declare enum EnumGameType {
143
198
  DAILY_CLUE = "dailyClue"
144
199
  }
@@ -160,7 +215,7 @@ type DailyClueGameData = {
160
215
  collected: string[] | null;
161
216
  shuffled: string[];
162
217
  todaysLetter: string | null;
163
- todaysClue: string | null;
218
+ todaysClue: GamePlacementClue | null;
164
219
  todaysPlacement: GamePlacement | null;
165
220
  };
166
221
  streak: number;
@@ -317,4 +372,4 @@ type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
317
372
  updatedAt: Date | null;
318
373
  };
319
374
 
320
- export { type AdType as A, type BaseGame as B, type CreateUserFormData as C, type DailyClueGameData as D, EnumAdStatus as E, type PostContentGame as F, type GameType as G, type PostContentImage as H, type PostContentList as I, type PostContentTextarea as J, type PostContentType as K, type PostContentVideo as L, type PostFileInput as M, type StripeSubscription as N, type SubscriptionPlanData as O, type PartnerType as P, type SubscriptionPricingData as Q, type ResourceByUser as R, type SubscriptionPlansResponse as S, type UserActivity as T, type UserType as U, type UserActivityEvent as V, gameScreenIdentifiers as W, gameTypeToDisplayName as X, type SubscriptionStatusData as a, type PostType as b, EnumPostType as c, type AppSettingsType as d, type GameLeaderboard as e, type UserFormData as f, type PartnerFormData as g, type AdFormData as h, type CreateAdFormData as i, type CreatePartnerFormData as j, type PostFormData as k, type CreatePostFormData as l, type AppSettingsFormData as m, type CreateAppSettingsFormData as n, type AdResource as o, EnumAdShowOn as p, EnumAdStyle as q, EnumAdType as r, EnumGameType as s, EnumPostContentType as t, type GameData as u, type GameDate as v, type GameHistory as w, type GamePlacement as x, type PostContentData as y, type PostContentFormData as z };
375
+ export { type AdType as A, type BaseGame as B, type CreateUserFormData as C, type DailyClueGameData as D, EnumAdStatus as E, type PostContentFormData as F, type GameType as G, type PostContentGame as H, type PostContentImage as I, type PostContentList as J, type PostContentTextarea as K, type PostContentType as L, type PostContentVideo as M, type PostFileInput as N, type StripeSubscription as O, type PartnerType as P, type SubscriptionPlanData as Q, type ResourceByUser as R, type SubscriptionPlansResponse as S, type SubscriptionPricingData as T, type UserType as U, type UserActivity as V, type UserActivityEvent as W, gameScreenIdentifierList as X, gameTypeToDisplayName as Y, type SubscriptionStatusData as a, type PostType as b, EnumPostType as c, type AppSettingsType as d, type GameLeaderboard as e, type UserFormData as f, type PartnerFormData as g, type AdFormData as h, type CreateAdFormData as i, type CreatePartnerFormData as j, type PostFormData as k, type CreatePostFormData as l, type AppSettingsFormData as m, type CreateAppSettingsFormData as n, type AdResource as o, EnumAdShowOn as p, EnumAdStyle as q, EnumAdType as r, EnumGameType as s, EnumPostContentType as t, type GameData as u, type GameDate as v, type GameHistory as w, type GamePlacement as x, type GamePlacementClue as y, type PostContentData as z };
@@ -29,7 +29,7 @@ __export(types_exports, {
29
29
  EnumPostContentType: () => EnumPostContentType,
30
30
  EnumPostType: () => EnumPostType,
31
31
  EnumVerificationType: () => EnumVerificationType,
32
- gameScreenIdentifiers: () => gameScreenIdentifiers,
32
+ gameScreenIdentifierList: () => gameScreenIdentifierList,
33
33
  gameTypeToDisplayName: () => gameTypeToDisplayName
34
34
  });
35
35
  module.exports = __toCommonJS(types_exports);
@@ -93,25 +93,79 @@ var EnumPostContentType = /* @__PURE__ */ ((EnumPostContentType2) => {
93
93
  })(EnumPostContentType || {});
94
94
 
95
95
  // src/types/game.ts
96
- var gameScreenIdentifiers = [
97
- "activities",
98
- "chat",
99
- "edit-profile",
100
- "event",
101
- "events-near-me",
102
- "events",
103
- "events/region",
104
- "games",
105
- "home",
106
- "notifications",
107
- "options",
108
- "partner",
109
- "partners",
110
- "post",
111
- "profile",
112
- "vendor",
113
- "vendors",
114
- "visitors"
96
+ var gameScreenIdentifierList = [
97
+ {
98
+ clue: "Where your actions turn into a timeline.",
99
+ id: "activities"
100
+ },
101
+ {
102
+ clue: "Where conversations happen without speaking.",
103
+ id: "chat"
104
+ },
105
+ {
106
+ clue: "The place to redefine who you are.",
107
+ id: "edit-profile"
108
+ },
109
+ {
110
+ clue: "A single moment worth showing up for.",
111
+ id: "event"
112
+ },
113
+ {
114
+ clue: "What\u2019s happening around you, right now.",
115
+ id: "events-near-me"
116
+ },
117
+ {
118
+ clue: "A collection of things worth attending.",
119
+ id: "events"
120
+ },
121
+ {
122
+ clue: "What\u2019s happening in a wider area\u2014not just nearby.",
123
+ id: "events/region"
124
+ },
125
+ {
126
+ clue: "Where fun becomes a challenge.",
127
+ id: "games"
128
+ },
129
+ {
130
+ clue: "Your starting point for everything.",
131
+ id: "home"
132
+ },
133
+ {
134
+ clue: "Where the app taps you on the shoulder.",
135
+ id: "notifications"
136
+ },
137
+ {
138
+ clue: "Where you fine-tune your experience.",
139
+ id: "options"
140
+ },
141
+ {
142
+ clue: "A single collaborator in the ecosystem.",
143
+ id: "partner"
144
+ },
145
+ {
146
+ clue: "The network behind the scenes.",
147
+ id: "partners"
148
+ },
149
+ {
150
+ clue: "Where you share something with everyone.",
151
+ id: "post"
152
+ },
153
+ {
154
+ clue: "Your identity, on display.",
155
+ id: "profile"
156
+ },
157
+ {
158
+ clue: "One provider offering something valuable.",
159
+ id: "vendor"
160
+ },
161
+ {
162
+ clue: "A marketplace of providers.",
163
+ id: "vendors"
164
+ },
165
+ {
166
+ clue: "People who stopped by to see you.",
167
+ id: "visitors"
168
+ }
115
169
  ];
116
170
  var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
117
171
  EnumGameType2["DAILY_CLUE"] = "dailyClue";
@@ -131,7 +185,7 @@ var gameTypeToDisplayName = {
131
185
  EnumPostContentType,
132
186
  EnumPostType,
133
187
  EnumVerificationType,
134
- gameScreenIdentifiers,
188
+ gameScreenIdentifierList,
135
189
  gameTypeToDisplayName
136
190
  });
137
191
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/types/index.ts","../../src/types/auth.ts","../../src/types/ad.ts","../../src/types/resourceActivities.ts","../../src/types/post.ts","../../src/types/game.ts"],"sourcesContent":["export * from \"./admin\";\nexport * from \"./auth\";\nexport * from \"./chat\";\nexport * from \"./contactUs\";\nexport * from \"./global\";\nexport * from \"./event\";\nexport * from \"./notification\";\nexport * from \"./poster\";\nexport * from \"./relation\";\nexport * from \"./vendor\";\nexport * from \"./user\";\nexport * from \"./ad\";\nexport * from \"./resourceActivities\";\nexport * from \"./partner\";\nexport * from \"./post\";\nexport * from \"./appSettings\";\nexport * from \"./googleImportedMarket\";\nexport * from \"./game\";\n","import { CreateFormData, EnumOSPlatform, TermsAgreement } from \"src\";\n\nexport enum EnumVerificationType {\n REGISTER = \"register\",\n RESET_PASSWORD = \"resetPassword\",\n}\n\nexport type LoginFormData = {\n email: string;\n isAdminPage?: boolean;\n password: string;\n platform?: EnumOSPlatform;\n};\n\nexport type CreateLoginFormData = CreateFormData<LoginFormData>;\n\nexport type RegisterFormData = {\n email: string;\n firstName: string;\n lastName: string;\n password: string;\n platform?: EnumOSPlatform;\n preferredRegion: string;\n promoCode?: string | null;\n termsAgreement?: TermsAgreement | null;\n};\n\nexport type CreateRegisterFormData = CreateFormData<RegisterFormData>;\n\nexport type RequestPasswordResetFormData = {\n email: string;\n};\n\nexport type CreateRequestPasswordResetFormData =\n CreateFormData<RequestPasswordResetFormData>;\n\nexport type ResetPasswordFormData = {\n confirmPassword: string;\n email: string;\n password: string;\n};\n\nexport type CreateResetPasswordFormData = CreateFormData<ResetPasswordFormData>;\n\nexport type ValidateVerificationTokenFormData = {\n email: string;\n verificationToken: string;\n verificationType?: EnumVerificationType;\n};\n\nexport type CreateValidateVerificationTokenFormData =\n CreateFormData<ValidateVerificationTokenFormData>;\n","import { EnumResourceType } from \"src/enums\";\n\nimport { CreateFormData, SocialMediaType } from \"./global\";\n\nexport enum EnumAdShowOn {\n EVENTS_PAGE = \"Events_page\",\n FRONT_PAGE = \"Front_page\",\n PARTNERS_PAGE = \"Partners_page\",\n VENDORS_PAGE = \"Vendors_page\",\n}\n\nexport enum EnumAdStatus {\n ACTIVE = \"Active\",\n PAUSED = \"Paused\",\n EXPIRED = \"Expired\",\n}\n\nexport enum EnumAdType {\n SPONSORED = \"Sponsored\",\n FREE = \"Free\",\n}\n\nexport enum EnumAdStyle {\n BLOOM = \"Bloom\",\n RISE = \"Rise\",\n}\n\nexport type AdResource = {\n adDescription: string | null;\n adImage: string | null;\n adStyle: EnumAdStyle | null;\n adTitle: string | null;\n adType: EnumAdType | null;\n resourceId: string | null;\n resourceName: string | null;\n resourceRegion: string | null;\n resourceType: EnumResourceType | null;\n};\n\nexport interface AdFormData {\n active: boolean;\n end: Date; // ISO date string\n resource: AdResource;\n showOn: EnumAdShowOn[];\n start?: Date; // ISO date string\n status: EnumAdStatus;\n targetRegion: string[];\n}\n\nexport type CreateAdFormData = CreateFormData<AdFormData>;\n\nexport interface AdType extends AdFormData {\n _id: string;\n clicks?: number; // How many times the ad was clicked\n createdAt: Date;\n impressions?: number; // How often the ad was seen\n start: Date; // ISO date string\n updatedAt: Date | null;\n}\n","import {\n EnumEventDateStatus,\n EnumOSPlatform,\n EnumResourceType,\n} from \"src/enums\";\n\nimport { LocationGeoType } from \"./global\";\n\nexport enum EnumActivity {\n FAVORITE = \"FAVORITE\",\n GOING = \"GOING\",\n INTERESTED = \"INTERESTED\",\n PRESENT = \"PRESENT\",\n VIEW = \"VIEW\",\n}\n\nexport type ResourceActivityEntry = {\n activityType: EnumActivity;\n location: LocationGeoType | null;\n dateStatus?: EnumEventDateStatus | null;\n startDate?: string | null;\n startTime?: string | null;\n timestamp: Date;\n userAgent: EnumOSPlatform;\n userId?: string | null;\n};\n\nexport type ResourceActivityType = {\n _id: string;\n resourceType: EnumResourceType;\n resourceId: string;\n activity: ResourceActivityEntry[];\n};\n\nexport type ResourceActivityInputType = {\n resourceId: string;\n resourceType: EnumResourceType;\n activity: Omit<ResourceActivityEntry, \"timestamp\">;\n};\n","import { EnumResourceType } from \"src/enums\";\n\nimport { BaseGame } from \"./game\";\nimport { CreateFormData, ResourceImageType } from \"./global\";\n\nexport enum EnumPostType {\n DAILY_MEETS = \"daily_meets\",\n DAILY_TIPS = \"daily_tips\",\n DAILY_GAMES = \"daily_games\",\n}\n\nexport enum EnumPostContentType {\n GAME = \"game\",\n IMAGE = \"image\",\n LIST = \"list\",\n TEXTAREA = \"textarea\",\n VIDEO = \"video\",\n}\n\nexport type PostFileInput = {\n source: File;\n title?: string;\n};\n\nexport type PostContentTextarea = {\n textarea: {\n title?: string;\n data: string;\n };\n};\n\nexport type PostContentImage = {\n images: ResourceImageType[] | null;\n imagesUpload?: PostFileInput[] | null;\n};\n\nexport type PostContentVideo = {\n video: {\n source: string;\n title?: string;\n };\n};\n\nexport type PostContentList = {\n list: {\n title?: string;\n items: {\n text: string;\n }[];\n };\n};\n\nexport type PostContentGame = {\n game: BaseGame;\n};\n\nexport type PostContentData =\n | PostContentGame\n | PostContentTextarea\n | PostContentImage\n | PostContentVideo\n | PostContentList;\n\nexport type PostContentFormData = {\n contentData?: PostContentData | null;\n contentOrder?: number | null;\n contentType?: EnumPostContentType | null;\n};\n\nexport interface PostFormData {\n active: boolean;\n caption: string;\n content: PostContentFormData[];\n cover?: ResourceImageType | null;\n coverUpload?: PostFileInput | null;\n postType: EnumPostType;\n resource?: {\n resourceId: string;\n resourceType: EnumResourceType;\n } | null;\n tags?: string[] | null;\n title: string;\n}\n\nexport type CreatePostFormData = CreateFormData<PostFormData>;\n\nexport type PostContentType = Omit<PostContentFormData, \"contentData\"> & {\n contentData: Omit<PostContentData, \"imagesUpload\">;\n};\n\nexport type PostType = Omit<PostFormData, \"content\" | \"coverUpload\"> & {\n _id: string;\n content: PostContentType[];\n createdAt: Date;\n deletedAt: Date | null;\n updatedAt: Date | null;\n};\n","import { OwnerType } from \"./global\";\n\nexport const gameScreenIdentifiers = [\n \"activities\",\n \"chat\",\n \"edit-profile\",\n \"event\",\n \"events-near-me\",\n \"events\",\n \"events/region\",\n \"games\",\n \"home\",\n \"notifications\",\n \"options\",\n \"partner\",\n \"partners\",\n \"post\",\n \"profile\",\n \"vendor\",\n \"vendors\",\n \"visitors\",\n] as const;\n\nexport type GamePlacement = (typeof gameScreenIdentifiers)[number];\n\nexport enum EnumGameType {\n DAILY_CLUE = \"dailyClue\",\n}\n\nexport const gameTypeToDisplayName: Record<EnumGameType, string> = {\n [EnumGameType.DAILY_CLUE]: \"Daily Clue\",\n};\n\nexport type GameDate = {\n startDate: Date;\n endDate: Date;\n};\n\nexport type BaseGame = {\n gameDate: GameDate;\n gameSolution: string;\n gameType: EnumGameType;\n};\n\nexport type DailyClueGameData = {\n gameFields: BaseGame;\n lastFoundDate: Date | null;\n points: number;\n letterInfo: {\n collected: string[] | null; // The letters the user has found, e.g. [\"C\", \"L\", \"U\"]\n shuffled: string[]; // The letters of the solution, but shuffled, e.g. [\"L\", \"C\", \"U\"]\n todaysLetter: string | null; // The letter the user has to find today, e.g. \"C\"\n todaysClue: string | null; // The clue for user to find the letter, e.g. related to {todaysPlacement}\n todaysPlacement: GamePlacement | null; // The screen where the user has to find the clue, e.g. \"HomeScreen\"\n };\n // User has found the clue 3 days in a row, this is incrementing if the user finds the clue and decrements if user misses a day\n streak: number;\n};\n\ntype GameDataMap = {\n [EnumGameType.DAILY_CLUE]: DailyClueGameData;\n};\nexport type GameData = {\n [K in keyof GameDataMap]?: GameDataMap[K] | null;\n};\n\nexport type GameHistory = {\n gameDate: GameDate;\n gameType: EnumGameType;\n pointsEarned: number;\n};\n\nexport type GameType = {\n _id: string;\n active: boolean;\n createdAt: Date;\n deletedAt: Date | null;\n gameData: GameData | null;\n gameHistory: GameHistory[] | null;\n owner: OwnerType;\n points: number;\n updatedAt: Date | null;\n};\n\nexport type GameLeaderboard = {\n gameHistory: GameHistory[] | null;\n overallPoints: number;\n owner: OwnerType;\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACEO,IAAK,uBAAL,kBAAKA,0BAAL;AACL,EAAAA,sBAAA,cAAW;AACX,EAAAA,sBAAA,oBAAiB;AAFP,SAAAA;AAAA,GAAA;;;ACEL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,iBAAc;AACd,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,mBAAgB;AAChB,EAAAA,cAAA,kBAAe;AAJL,SAAAA;AAAA,GAAA;AAOL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,YAAS;AACT,EAAAA,cAAA,YAAS;AACT,EAAAA,cAAA,aAAU;AAHA,SAAAA;AAAA,GAAA;AAML,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,YAAA,eAAY;AACZ,EAAAA,YAAA,UAAO;AAFG,SAAAA;AAAA,GAAA;AAKL,IAAK,cAAL,kBAAKC,iBAAL;AACL,EAAAA,aAAA,WAAQ;AACR,EAAAA,aAAA,UAAO;AAFG,SAAAA;AAAA,GAAA;;;ACdL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,cAAW;AACX,EAAAA,cAAA,WAAQ;AACR,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,aAAU;AACV,EAAAA,cAAA,UAAO;AALG,SAAAA;AAAA,GAAA;;;ACHL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,iBAAc;AACd,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,iBAAc;AAHJ,SAAAA;AAAA,GAAA;AAML,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,UAAO;AACP,EAAAA,qBAAA,WAAQ;AACR,EAAAA,qBAAA,UAAO;AACP,EAAAA,qBAAA,cAAW;AACX,EAAAA,qBAAA,WAAQ;AALE,SAAAA;AAAA,GAAA;;;ACTL,IAAM,wBAAwB;AAAA,EACnC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAIO,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,gBAAa;AADH,SAAAA;AAAA,GAAA;AAIL,IAAM,wBAAsD;AAAA,EACjE,CAAC,4BAAuB,GAAG;AAC7B;","names":["EnumVerificationType","EnumAdShowOn","EnumAdStatus","EnumAdType","EnumAdStyle","EnumActivity","EnumPostType","EnumPostContentType","EnumGameType"]}
1
+ {"version":3,"sources":["../../src/types/index.ts","../../src/types/auth.ts","../../src/types/ad.ts","../../src/types/resourceActivities.ts","../../src/types/post.ts","../../src/types/game.ts"],"sourcesContent":["export * from \"./admin\";\nexport * from \"./auth\";\nexport * from \"./chat\";\nexport * from \"./contactUs\";\nexport * from \"./global\";\nexport * from \"./event\";\nexport * from \"./notification\";\nexport * from \"./poster\";\nexport * from \"./relation\";\nexport * from \"./vendor\";\nexport * from \"./user\";\nexport * from \"./ad\";\nexport * from \"./resourceActivities\";\nexport * from \"./partner\";\nexport * from \"./post\";\nexport * from \"./appSettings\";\nexport * from \"./googleImportedMarket\";\nexport * from \"./game\";\n","import { CreateFormData, EnumOSPlatform, TermsAgreement } from \"src\";\n\nexport enum EnumVerificationType {\n REGISTER = \"register\",\n RESET_PASSWORD = \"resetPassword\",\n}\n\nexport type LoginFormData = {\n email: string;\n isAdminPage?: boolean;\n password: string;\n platform?: EnumOSPlatform;\n};\n\nexport type CreateLoginFormData = CreateFormData<LoginFormData>;\n\nexport type RegisterFormData = {\n email: string;\n firstName: string;\n lastName: string;\n password: string;\n platform?: EnumOSPlatform;\n preferredRegion: string;\n promoCode?: string | null;\n termsAgreement?: TermsAgreement | null;\n};\n\nexport type CreateRegisterFormData = CreateFormData<RegisterFormData>;\n\nexport type RequestPasswordResetFormData = {\n email: string;\n};\n\nexport type CreateRequestPasswordResetFormData =\n CreateFormData<RequestPasswordResetFormData>;\n\nexport type ResetPasswordFormData = {\n confirmPassword: string;\n email: string;\n password: string;\n};\n\nexport type CreateResetPasswordFormData = CreateFormData<ResetPasswordFormData>;\n\nexport type ValidateVerificationTokenFormData = {\n email: string;\n verificationToken: string;\n verificationType?: EnumVerificationType;\n};\n\nexport type CreateValidateVerificationTokenFormData =\n CreateFormData<ValidateVerificationTokenFormData>;\n","import { EnumResourceType } from \"src/enums\";\n\nimport { CreateFormData, SocialMediaType } from \"./global\";\n\nexport enum EnumAdShowOn {\n EVENTS_PAGE = \"Events_page\",\n FRONT_PAGE = \"Front_page\",\n PARTNERS_PAGE = \"Partners_page\",\n VENDORS_PAGE = \"Vendors_page\",\n}\n\nexport enum EnumAdStatus {\n ACTIVE = \"Active\",\n PAUSED = \"Paused\",\n EXPIRED = \"Expired\",\n}\n\nexport enum EnumAdType {\n SPONSORED = \"Sponsored\",\n FREE = \"Free\",\n}\n\nexport enum EnumAdStyle {\n BLOOM = \"Bloom\",\n RISE = \"Rise\",\n}\n\nexport type AdResource = {\n adDescription: string | null;\n adImage: string | null;\n adStyle: EnumAdStyle | null;\n adTitle: string | null;\n adType: EnumAdType | null;\n resourceId: string | null;\n resourceName: string | null;\n resourceRegion: string | null;\n resourceType: EnumResourceType | null;\n};\n\nexport interface AdFormData {\n active: boolean;\n end: Date; // ISO date string\n resource: AdResource;\n showOn: EnumAdShowOn[];\n start?: Date; // ISO date string\n status: EnumAdStatus;\n targetRegion: string[];\n}\n\nexport type CreateAdFormData = CreateFormData<AdFormData>;\n\nexport interface AdType extends AdFormData {\n _id: string;\n clicks?: number; // How many times the ad was clicked\n createdAt: Date;\n impressions?: number; // How often the ad was seen\n start: Date; // ISO date string\n updatedAt: Date | null;\n}\n","import {\n EnumEventDateStatus,\n EnumOSPlatform,\n EnumResourceType,\n} from \"src/enums\";\n\nimport { LocationGeoType } from \"./global\";\n\nexport enum EnumActivity {\n FAVORITE = \"FAVORITE\",\n GOING = \"GOING\",\n INTERESTED = \"INTERESTED\",\n PRESENT = \"PRESENT\",\n VIEW = \"VIEW\",\n}\n\nexport type ResourceActivityEntry = {\n activityType: EnumActivity;\n location: LocationGeoType | null;\n dateStatus?: EnumEventDateStatus | null;\n startDate?: string | null;\n startTime?: string | null;\n timestamp: Date;\n userAgent: EnumOSPlatform;\n userId?: string | null;\n};\n\nexport type ResourceActivityType = {\n _id: string;\n resourceType: EnumResourceType;\n resourceId: string;\n activity: ResourceActivityEntry[];\n};\n\nexport type ResourceActivityInputType = {\n resourceId: string;\n resourceType: EnumResourceType;\n activity: Omit<ResourceActivityEntry, \"timestamp\">;\n};\n","import { EnumResourceType } from \"src/enums\";\n\nimport { BaseGame } from \"./game\";\nimport { CreateFormData, ResourceImageType } from \"./global\";\n\nexport enum EnumPostType {\n DAILY_MEETS = \"daily_meets\",\n DAILY_TIPS = \"daily_tips\",\n DAILY_GAMES = \"daily_games\",\n}\n\nexport enum EnumPostContentType {\n GAME = \"game\",\n IMAGE = \"image\",\n LIST = \"list\",\n TEXTAREA = \"textarea\",\n VIDEO = \"video\",\n}\n\nexport type PostFileInput = {\n source: File;\n title?: string;\n};\n\nexport type PostContentTextarea = {\n textarea: {\n title?: string;\n data: string;\n };\n};\n\nexport type PostContentImage = {\n images: ResourceImageType[] | null;\n imagesUpload?: PostFileInput[] | null;\n};\n\nexport type PostContentVideo = {\n video: {\n source: string;\n title?: string;\n };\n};\n\nexport type PostContentList = {\n list: {\n title?: string;\n items: {\n text: string;\n }[];\n };\n};\n\nexport type PostContentGame = {\n game: BaseGame;\n};\n\nexport type PostContentData =\n | PostContentGame\n | PostContentTextarea\n | PostContentImage\n | PostContentVideo\n | PostContentList;\n\nexport type PostContentFormData = {\n contentData?: PostContentData | null;\n contentOrder?: number | null;\n contentType?: EnumPostContentType | null;\n};\n\nexport interface PostFormData {\n active: boolean;\n caption: string;\n content: PostContentFormData[];\n cover?: ResourceImageType | null;\n coverUpload?: PostFileInput | null;\n postType: EnumPostType;\n resource?: {\n resourceId: string;\n resourceType: EnumResourceType;\n } | null;\n tags?: string[] | null;\n title: string;\n}\n\nexport type CreatePostFormData = CreateFormData<PostFormData>;\n\nexport type PostContentType = Omit<PostContentFormData, \"contentData\"> & {\n contentData: Omit<PostContentData, \"imagesUpload\">;\n};\n\nexport type PostType = Omit<PostFormData, \"content\" | \"coverUpload\"> & {\n _id: string;\n content: PostContentType[];\n createdAt: Date;\n deletedAt: Date | null;\n updatedAt: Date | null;\n};\n","import { OwnerType } from \"./global\";\n\nexport const gameScreenIdentifierList = [\n {\n clue: \"Where your actions turn into a timeline.\",\n id: \"activities\",\n },\n {\n clue: \"Where conversations happen without speaking.\",\n id: \"chat\",\n },\n {\n clue: \"The place to redefine who you are.\",\n id: \"edit-profile\",\n },\n {\n clue: \"A single moment worth showing up for.\",\n id: \"event\",\n },\n {\n clue: \"What’s happening around you, right now.\",\n id: \"events-near-me\",\n },\n {\n clue: \"A collection of things worth attending.\",\n id: \"events\",\n },\n {\n clue: \"What’s happening in a wider area—not just nearby.\",\n id: \"events/region\",\n },\n {\n clue: \"Where fun becomes a challenge.\",\n id: \"games\",\n },\n {\n clue: \"Your starting point for everything.\",\n id: \"home\",\n },\n {\n clue: \"Where the app taps you on the shoulder.\",\n id: \"notifications\",\n },\n {\n clue: \"Where you fine-tune your experience.\",\n id: \"options\",\n },\n {\n clue: \"A single collaborator in the ecosystem.\",\n id: \"partner\",\n },\n {\n clue: \"The network behind the scenes.\",\n id: \"partners\",\n },\n {\n clue: \"Where you share something with everyone.\",\n id: \"post\",\n },\n {\n clue: \"Your identity, on display.\",\n id: \"profile\",\n },\n {\n clue: \"One provider offering something valuable.\",\n id: \"vendor\",\n },\n {\n clue: \"A marketplace of providers.\",\n id: \"vendors\",\n },\n {\n clue: \"People who stopped by to see you.\",\n id: \"visitors\",\n },\n] as const;\n\nexport type GamePlacement = (typeof gameScreenIdentifierList)[number][\"id\"];\nexport type GamePlacementClue =\n (typeof gameScreenIdentifierList)[number][\"clue\"];\n\nexport enum EnumGameType {\n DAILY_CLUE = \"dailyClue\",\n}\n\nexport const gameTypeToDisplayName: Record<EnumGameType, string> = {\n [EnumGameType.DAILY_CLUE]: \"Daily Clue\",\n};\n\nexport type GameDate = {\n startDate: Date;\n endDate: Date;\n};\n\nexport type BaseGame = {\n gameDate: GameDate;\n gameSolution: string;\n gameType: EnumGameType;\n};\n\nexport type DailyClueGameData = {\n gameFields: BaseGame;\n lastFoundDate: Date | null;\n points: number;\n letterInfo: {\n collected: string[] | null; // The letters the user has found, e.g. [\"C\", \"L\", \"U\"]\n shuffled: string[]; // The letters of the solution, but shuffled, e.g. [\"L\", \"C\", \"U\"]\n todaysLetter: string | null; // The letter the user has to find today, e.g. \"C\"\n todaysClue: GamePlacementClue | null; // The clue for user to find the letter, e.g. related to {todaysPlacement}\n todaysPlacement: GamePlacement | null; // The screen where the user has to find the clue, e.g. \"HomeScreen\"\n };\n // User has found the clue 3 days in a row, this is incrementing if the user finds the clue and decrements if user misses a day\n streak: number;\n};\n\ntype GameDataMap = {\n [EnumGameType.DAILY_CLUE]: DailyClueGameData;\n};\nexport type GameData = {\n [K in keyof GameDataMap]?: GameDataMap[K] | null;\n};\n\nexport type GameHistory = {\n gameDate: GameDate;\n gameType: EnumGameType;\n pointsEarned: number;\n};\n\nexport type GameType = {\n _id: string;\n active: boolean;\n createdAt: Date;\n deletedAt: Date | null;\n gameData: GameData | null;\n gameHistory: GameHistory[] | null;\n owner: OwnerType;\n points: number;\n updatedAt: Date | null;\n};\n\nexport type GameLeaderboard = {\n gameHistory: GameHistory[] | null;\n overallPoints: number;\n owner: OwnerType;\n};\n"],"mappings":"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","names":["EnumVerificationType","EnumAdShowOn","EnumAdStatus","EnumAdType","EnumAdStyle","EnumActivity","EnumPostType","EnumPostContentType","EnumGameType"]}
@@ -3,7 +3,7 @@ export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginF
3
3
  export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-CqrscA5x.mjs';
4
4
  import { c as EventListItemType } from '../global-MMBYi34A.mjs';
5
5
  export { A as AssociateType, r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, n as CreateEventFormData, p as CreateEventInfoFormData, s as CreateFormData, t as CreateUnregisteredVendorFormData, j as CreateVendorFormData, l as CreateVendorInfoFormData, D as DateTimeType, u as DateTimeWithPriceType, v as DeviceInfo, m as EventFormData, o as EventInfoFormData, d as EventInfoType, w as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, x as LocationGeoType, L as LocationType, N as Nullable, O as OptionItem, y as OwnerType, P as PaymentInfoType, z as PosterUsageType, R as RefundPolicy, H as Region, J as RelationDate, e as RelationType, b as Requirement, f as ResourceConnectionsType, K as ResourceContactDetailsType, M as ResourceDetails, Q as ResourceImageType, T as SocialMediaType, S as StallType, W as Subcategory, X as SubcategoryItems, Y as TermsAgreement, q as UnregisteredVendorFormData, Z as UnregisteredVendorInvitationType, U as UnregisteredVendorType, h as UserLicenceType, _ as VendorAttributes, $ as VendorCalendarData, i as VendorFormData, k as VendorInfoFormData, g as VendorInfoType, a0 as VendorProductList, V as VendorType } from '../global-MMBYi34A.mjs';
6
- export { h as AdFormData, o as AdResource, A as AdType, m as AppSettingsFormData, d as AppSettingsType, B as BaseGame, i as CreateAdFormData, n as CreateAppSettingsFormData, j as CreatePartnerFormData, l as CreatePostFormData, C as CreateUserFormData, D as DailyClueGameData, p as EnumAdShowOn, E as EnumAdStatus, q as EnumAdStyle, r as EnumAdType, s as EnumGameType, t as EnumPostContentType, c as EnumPostType, u as GameData, v as GameDate, w as GameHistory, e as GameLeaderboard, x as GamePlacement, G as GameType, g as PartnerFormData, P as PartnerType, y as PostContentData, z as PostContentFormData, F as PostContentGame, H as PostContentImage, I as PostContentList, J as PostContentTextarea, K as PostContentType, L as PostContentVideo, M as PostFileInput, k as PostFormData, b as PostType, R as ResourceByUser, N as StripeSubscription, O as SubscriptionPlanData, S as SubscriptionPlansResponse, Q as SubscriptionPricingData, a as SubscriptionStatusData, T as UserActivity, V as UserActivityEvent, f as UserFormData, U as UserType, W as gameScreenIdentifiers, X as gameTypeToDisplayName } from '../post-DhFpT73h.mjs';
6
+ export { h as AdFormData, o as AdResource, A as AdType, m as AppSettingsFormData, d as AppSettingsType, B as BaseGame, i as CreateAdFormData, n as CreateAppSettingsFormData, j as CreatePartnerFormData, l as CreatePostFormData, C as CreateUserFormData, D as DailyClueGameData, p as EnumAdShowOn, E as EnumAdStatus, q as EnumAdStyle, r as EnumAdType, s as EnumGameType, t as EnumPostContentType, c as EnumPostType, u as GameData, v as GameDate, w as GameHistory, e as GameLeaderboard, x as GamePlacement, y as GamePlacementClue, G as GameType, g as PartnerFormData, P as PartnerType, z as PostContentData, F as PostContentFormData, H as PostContentGame, I as PostContentImage, J as PostContentList, K as PostContentTextarea, L as PostContentType, M as PostContentVideo, N as PostFileInput, k as PostFormData, b as PostType, R as ResourceByUser, O as StripeSubscription, Q as SubscriptionPlanData, S as SubscriptionPlansResponse, T as SubscriptionPricingData, a as SubscriptionStatusData, V as UserActivity, W as UserActivityEvent, f as UserFormData, U as UserType, X as gameScreenIdentifierList, Y as gameTypeToDisplayName } from '../post-BbNsaCyb.mjs';
7
7
  import 'react-hook-form';
8
8
 
9
9
  interface AdminUpdateResourceType {
@@ -3,7 +3,7 @@ export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginF
3
3
  export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-2FaGRW-i.js';
4
4
  import { c as EventListItemType } from '../global-B0WdAD-8.js';
5
5
  export { A as AssociateType, r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, n as CreateEventFormData, p as CreateEventInfoFormData, s as CreateFormData, t as CreateUnregisteredVendorFormData, j as CreateVendorFormData, l as CreateVendorInfoFormData, D as DateTimeType, u as DateTimeWithPriceType, v as DeviceInfo, m as EventFormData, o as EventInfoFormData, d as EventInfoType, w as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, x as LocationGeoType, L as LocationType, N as Nullable, O as OptionItem, y as OwnerType, P as PaymentInfoType, z as PosterUsageType, R as RefundPolicy, H as Region, J as RelationDate, e as RelationType, b as Requirement, f as ResourceConnectionsType, K as ResourceContactDetailsType, M as ResourceDetails, Q as ResourceImageType, T as SocialMediaType, S as StallType, W as Subcategory, X as SubcategoryItems, Y as TermsAgreement, q as UnregisteredVendorFormData, Z as UnregisteredVendorInvitationType, U as UnregisteredVendorType, h as UserLicenceType, _ as VendorAttributes, $ as VendorCalendarData, i as VendorFormData, k as VendorInfoFormData, g as VendorInfoType, a0 as VendorProductList, V as VendorType } from '../global-B0WdAD-8.js';
6
- export { h as AdFormData, o as AdResource, A as AdType, m as AppSettingsFormData, d as AppSettingsType, B as BaseGame, i as CreateAdFormData, n as CreateAppSettingsFormData, j as CreatePartnerFormData, l as CreatePostFormData, C as CreateUserFormData, D as DailyClueGameData, p as EnumAdShowOn, E as EnumAdStatus, q as EnumAdStyle, r as EnumAdType, s as EnumGameType, t as EnumPostContentType, c as EnumPostType, u as GameData, v as GameDate, w as GameHistory, e as GameLeaderboard, x as GamePlacement, G as GameType, g as PartnerFormData, P as PartnerType, y as PostContentData, z as PostContentFormData, F as PostContentGame, H as PostContentImage, I as PostContentList, J as PostContentTextarea, K as PostContentType, L as PostContentVideo, M as PostFileInput, k as PostFormData, b as PostType, R as ResourceByUser, N as StripeSubscription, O as SubscriptionPlanData, S as SubscriptionPlansResponse, Q as SubscriptionPricingData, a as SubscriptionStatusData, T as UserActivity, V as UserActivityEvent, f as UserFormData, U as UserType, W as gameScreenIdentifiers, X as gameTypeToDisplayName } from '../post-DYryesys.js';
6
+ export { h as AdFormData, o as AdResource, A as AdType, m as AppSettingsFormData, d as AppSettingsType, B as BaseGame, i as CreateAdFormData, n as CreateAppSettingsFormData, j as CreatePartnerFormData, l as CreatePostFormData, C as CreateUserFormData, D as DailyClueGameData, p as EnumAdShowOn, E as EnumAdStatus, q as EnumAdStyle, r as EnumAdType, s as EnumGameType, t as EnumPostContentType, c as EnumPostType, u as GameData, v as GameDate, w as GameHistory, e as GameLeaderboard, x as GamePlacement, y as GamePlacementClue, G as GameType, g as PartnerFormData, P as PartnerType, z as PostContentData, F as PostContentFormData, H as PostContentGame, I as PostContentImage, J as PostContentList, K as PostContentTextarea, L as PostContentType, M as PostContentVideo, N as PostFileInput, k as PostFormData, b as PostType, R as ResourceByUser, O as StripeSubscription, Q as SubscriptionPlanData, S as SubscriptionPlansResponse, T as SubscriptionPricingData, a as SubscriptionStatusData, V as UserActivity, W as UserActivityEvent, f as UserFormData, U as UserType, X as gameScreenIdentifierList, Y as gameTypeToDisplayName } from '../post-BrzttWbn.js';
7
7
  import 'react-hook-form';
8
8
 
9
9
  interface AdminUpdateResourceType {
@@ -8,9 +8,9 @@ import {
8
8
  EnumPostContentType,
9
9
  EnumPostType,
10
10
  EnumVerificationType,
11
- gameScreenIdentifiers,
11
+ gameScreenIdentifierList,
12
12
  gameTypeToDisplayName
13
- } from "../chunk-RNLHQ7EP.mjs";
13
+ } from "../chunk-CXUOUJBM.mjs";
14
14
  export {
15
15
  EnumActivity,
16
16
  EnumAdShowOn,
@@ -21,7 +21,7 @@ export {
21
21
  EnumPostContentType,
22
22
  EnumPostType,
23
23
  EnumVerificationType,
24
- gameScreenIdentifiers,
24
+ gameScreenIdentifierList,
25
25
  gameTypeToDisplayName
26
26
  };
27
27
  //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timardex/cluemart-shared",
3
- "version": "1.5.49",
3
+ "version": "1.5.491",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",