@timardex/cluemart-shared 1.5.499 → 1.5.500

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.
Files changed (38) hide show
  1. package/dist/{chunk-EJSVR77W.mjs → chunk-IDDG4XZS.mjs} +2 -2
  2. package/dist/{chunk-RO2IWCW2.mjs → chunk-Q6CO7TFK.mjs} +39 -20
  3. package/dist/chunk-Q6CO7TFK.mjs.map +1 -0
  4. package/dist/{chunk-6WV7CECU.mjs → chunk-W4FADQMS.mjs} +2 -2
  5. package/dist/formFields/index.cjs +38 -19
  6. package/dist/formFields/index.cjs.map +1 -1
  7. package/dist/formFields/index.mjs +3 -3
  8. package/dist/{game-Dn5SH8_0.d.ts → game-BzOJ4f7U.d.ts} +38 -19
  9. package/dist/{game-BR9xpQkt.d.mts → game-CoVv7iyf.d.mts} +38 -19
  10. package/dist/graphql/index.d.mts +2 -2
  11. package/dist/graphql/index.d.ts +2 -2
  12. package/dist/hooks/index.cjs +38 -19
  13. package/dist/hooks/index.cjs.map +1 -1
  14. package/dist/hooks/index.d.mts +2 -2
  15. package/dist/hooks/index.d.ts +2 -2
  16. package/dist/hooks/index.mjs +3 -3
  17. package/dist/index.cjs +38 -19
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.d.mts +38 -19
  20. package/dist/index.d.ts +38 -19
  21. package/dist/index.mjs +38 -19
  22. package/dist/index.mjs.map +1 -1
  23. package/dist/{post-BBYcN5xv.d.mts → post-CcJowEi5.d.mts} +1 -1
  24. package/dist/{post-CWZFxlP7.d.ts → post-D9_1FbFI.d.ts} +1 -1
  25. package/dist/types/index.cjs +38 -19
  26. package/dist/types/index.cjs.map +1 -1
  27. package/dist/types/index.d.mts +2 -2
  28. package/dist/types/index.d.ts +2 -2
  29. package/dist/types/index.mjs +1 -1
  30. package/dist/utils/index.cjs +38 -19
  31. package/dist/utils/index.cjs.map +1 -1
  32. package/dist/utils/index.d.mts +1 -1
  33. package/dist/utils/index.d.ts +1 -1
  34. package/dist/utils/index.mjs +2 -2
  35. package/package.json +1 -1
  36. package/dist/chunk-RO2IWCW2.mjs.map +0 -1
  37. /package/dist/{chunk-EJSVR77W.mjs.map → chunk-IDDG4XZS.mjs.map} +0 -0
  38. /package/dist/{chunk-6WV7CECU.mjs.map → chunk-W4FADQMS.mjs.map} +0 -0
@@ -43,10 +43,10 @@ import {
43
43
  vendorStallSize,
44
44
  vendorStartDateFields,
45
45
  vendorTable
46
- } from "../chunk-6WV7CECU.mjs";
47
- import "../chunk-EJSVR77W.mjs";
46
+ } from "../chunk-W4FADQMS.mjs";
47
+ import "../chunk-IDDG4XZS.mjs";
48
48
  import "../chunk-534WN2SR.mjs";
49
- import "../chunk-RO2IWCW2.mjs";
49
+ import "../chunk-Q6CO7TFK.mjs";
50
50
  export {
51
51
  availableCategories,
52
52
  availableTagTypes,
@@ -2,61 +2,80 @@ import { y as OwnerType } from './global-B0WdAD-8.js';
2
2
 
3
3
  declare const gameScreenIdentifierList: readonly [{
4
4
  readonly clue: "Where your actions turn into a timeline.";
5
- readonly id: "/profile/activities";
5
+ readonly id: "activities";
6
+ readonly match: "/profile/activities";
6
7
  }, {
7
8
  readonly clue: "Where conversations happen without speaking.";
8
- readonly id: "/profile/chat";
9
+ readonly id: "chat";
10
+ readonly match: "/profile/chat";
9
11
  }, {
10
12
  readonly clue: "The place to redefine who you are.";
11
- readonly id: "/profile/edit-profile";
13
+ readonly id: "edit-profile";
14
+ readonly match: "/profile/edit-profile";
12
15
  }, {
13
16
  readonly clue: "A single moment worth showing up for.";
14
- readonly id: RegExp;
17
+ readonly id: "single-event";
18
+ readonly match: RegExp;
15
19
  }, {
16
20
  readonly clue: "What’s happening around you, right now.";
17
- readonly id: "/events/events-near-me";
21
+ readonly id: "events-near-me";
22
+ readonly match: "/events/events-near-me";
18
23
  }, {
19
24
  readonly clue: "A collection of things worth attending.";
20
- readonly id: "/events";
25
+ readonly id: "events";
26
+ readonly match: "/events";
21
27
  }, {
22
28
  readonly clue: "What’s happening in a wider area—not just nearby.";
23
- readonly id: RegExp;
29
+ readonly id: "events-region";
30
+ readonly match: RegExp;
24
31
  }, {
25
32
  readonly clue: "Where you go to find something specific.";
26
- readonly id: "/events/search";
33
+ readonly id: "events-search";
34
+ readonly match: "/events/search";
27
35
  }, {
28
36
  readonly clue: "Where fun becomes a challenge.";
29
- readonly id: "/games";
37
+ readonly id: "games";
38
+ readonly match: "/games";
30
39
  }, {
31
40
  readonly clue: "Your starting point for everything.";
32
- readonly id: "/";
41
+ readonly id: "home";
42
+ readonly match: "/";
33
43
  }, {
34
44
  readonly clue: "Where the app taps you on the shoulder.";
35
- readonly id: "/notifications";
45
+ readonly id: "notifications";
46
+ readonly match: "/notifications";
36
47
  }, {
37
48
  readonly clue: "Where you fine-tune your experience.";
38
- readonly id: "/options";
49
+ readonly id: "options";
50
+ readonly match: "/options";
39
51
  }, {
40
52
  readonly clue: "A single collaborator in the ecosystem.";
41
- readonly id: RegExp;
53
+ readonly id: "single-partner";
54
+ readonly match: RegExp;
42
55
  }, {
43
56
  readonly clue: "The network behind the scenes.";
44
- readonly id: "/partners";
57
+ readonly id: "partners";
58
+ readonly match: "/partners";
45
59
  }, {
46
60
  readonly clue: "Where you share something with everyone.";
47
- readonly id: RegExp;
61
+ readonly id: "single-visitor-post";
62
+ readonly match: RegExp;
48
63
  }, {
49
64
  readonly clue: "Your identity, on display.";
50
- readonly id: "/profile";
65
+ readonly id: "profile";
66
+ readonly match: "/profile";
51
67
  }, {
52
68
  readonly clue: "One provider offering something valuable.";
53
- readonly id: RegExp;
69
+ readonly id: "single-vendor";
70
+ readonly match: RegExp;
54
71
  }, {
55
72
  readonly clue: "A marketplace of providers.";
56
- readonly id: "/vendors";
73
+ readonly id: "vendors";
74
+ readonly match: "/vendors";
57
75
  }, {
58
76
  readonly clue: "People who stopped by to see you.";
59
- readonly id: "/visitors";
77
+ readonly id: "visitors";
78
+ readonly match: "/visitors";
60
79
  }];
61
80
  type GamePlacement = (typeof gameScreenIdentifierList)[number]["id"];
62
81
  type GamePlacementClue = (typeof gameScreenIdentifierList)[number]["clue"];
@@ -2,61 +2,80 @@ import { y as OwnerType } from './global-MMBYi34A.mjs';
2
2
 
3
3
  declare const gameScreenIdentifierList: readonly [{
4
4
  readonly clue: "Where your actions turn into a timeline.";
5
- readonly id: "/profile/activities";
5
+ readonly id: "activities";
6
+ readonly match: "/profile/activities";
6
7
  }, {
7
8
  readonly clue: "Where conversations happen without speaking.";
8
- readonly id: "/profile/chat";
9
+ readonly id: "chat";
10
+ readonly match: "/profile/chat";
9
11
  }, {
10
12
  readonly clue: "The place to redefine who you are.";
11
- readonly id: "/profile/edit-profile";
13
+ readonly id: "edit-profile";
14
+ readonly match: "/profile/edit-profile";
12
15
  }, {
13
16
  readonly clue: "A single moment worth showing up for.";
14
- readonly id: RegExp;
17
+ readonly id: "single-event";
18
+ readonly match: RegExp;
15
19
  }, {
16
20
  readonly clue: "What’s happening around you, right now.";
17
- readonly id: "/events/events-near-me";
21
+ readonly id: "events-near-me";
22
+ readonly match: "/events/events-near-me";
18
23
  }, {
19
24
  readonly clue: "A collection of things worth attending.";
20
- readonly id: "/events";
25
+ readonly id: "events";
26
+ readonly match: "/events";
21
27
  }, {
22
28
  readonly clue: "What’s happening in a wider area—not just nearby.";
23
- readonly id: RegExp;
29
+ readonly id: "events-region";
30
+ readonly match: RegExp;
24
31
  }, {
25
32
  readonly clue: "Where you go to find something specific.";
26
- readonly id: "/events/search";
33
+ readonly id: "events-search";
34
+ readonly match: "/events/search";
27
35
  }, {
28
36
  readonly clue: "Where fun becomes a challenge.";
29
- readonly id: "/games";
37
+ readonly id: "games";
38
+ readonly match: "/games";
30
39
  }, {
31
40
  readonly clue: "Your starting point for everything.";
32
- readonly id: "/";
41
+ readonly id: "home";
42
+ readonly match: "/";
33
43
  }, {
34
44
  readonly clue: "Where the app taps you on the shoulder.";
35
- readonly id: "/notifications";
45
+ readonly id: "notifications";
46
+ readonly match: "/notifications";
36
47
  }, {
37
48
  readonly clue: "Where you fine-tune your experience.";
38
- readonly id: "/options";
49
+ readonly id: "options";
50
+ readonly match: "/options";
39
51
  }, {
40
52
  readonly clue: "A single collaborator in the ecosystem.";
41
- readonly id: RegExp;
53
+ readonly id: "single-partner";
54
+ readonly match: RegExp;
42
55
  }, {
43
56
  readonly clue: "The network behind the scenes.";
44
- readonly id: "/partners";
57
+ readonly id: "partners";
58
+ readonly match: "/partners";
45
59
  }, {
46
60
  readonly clue: "Where you share something with everyone.";
47
- readonly id: RegExp;
61
+ readonly id: "single-visitor-post";
62
+ readonly match: RegExp;
48
63
  }, {
49
64
  readonly clue: "Your identity, on display.";
50
- readonly id: "/profile";
65
+ readonly id: "profile";
66
+ readonly match: "/profile";
51
67
  }, {
52
68
  readonly clue: "One provider offering something valuable.";
53
- readonly id: RegExp;
69
+ readonly id: "single-vendor";
70
+ readonly match: RegExp;
54
71
  }, {
55
72
  readonly clue: "A marketplace of providers.";
56
- readonly id: "/vendors";
73
+ readonly id: "vendors";
74
+ readonly match: "/vendors";
57
75
  }, {
58
76
  readonly clue: "People who stopped by to see you.";
59
- readonly id: "/visitors";
77
+ readonly id: "visitors";
78
+ readonly match: "/visitors";
60
79
  }];
61
80
  type GamePlacement = (typeof gameScreenIdentifierList)[number]["id"];
62
81
  type GamePlacementClue = (typeof gameScreenIdentifierList)[number]["clue"];
@@ -2,8 +2,8 @@ import * as _apollo_client from '@apollo/client';
2
2
  import { EnumResourceType } from '../enums/index.mjs';
3
3
  import { C as ChatType, R as ReportChatUser, N as NotificationCount, a as NotificationType, b as ResourceActivityType } from '../resourceActivities-CqrscA5x.mjs';
4
4
  import { E as EventType, c as EventListItemType, d as EventInfoType, e as RelationType, f as ResourceConnectionsType, U as UnregisteredVendorType, V as VendorType, g as VendorInfoType, h as UserLicenceType } from '../global-MMBYi34A.mjs';
5
- import { U as UserType, P as PartnerType, R as ResourceByUser, A as AdType, E as EnumAdStatus, S as SubscriptionPlansResponse, a as SubscriptionStatusData, b as PostType, c as EnumPostType, d as AppSettingsType } from '../post-BBYcN5xv.mjs';
6
- import { G as GameType, a as GameLeaderboard } from '../game-BR9xpQkt.mjs';
5
+ import { U as UserType, P as PartnerType, R as ResourceByUser, A as AdType, E as EnumAdStatus, S as SubscriptionPlansResponse, a as SubscriptionStatusData, b as PostType, c as EnumPostType, d as AppSettingsType } from '../post-CcJowEi5.mjs';
6
+ import { G as GameType, a as GameLeaderboard } from '../game-CoVv7iyf.mjs';
7
7
  import 'react-hook-form';
8
8
 
9
9
  declare const useAdminUpdateResourceType: () => {
@@ -2,8 +2,8 @@ import * as _apollo_client from '@apollo/client';
2
2
  import { EnumResourceType } from '../enums/index.js';
3
3
  import { C as ChatType, R as ReportChatUser, N as NotificationCount, a as NotificationType, b as ResourceActivityType } from '../resourceActivities-2FaGRW-i.js';
4
4
  import { E as EventType, c as EventListItemType, d as EventInfoType, e as RelationType, f as ResourceConnectionsType, U as UnregisteredVendorType, V as VendorType, g as VendorInfoType, h as UserLicenceType } from '../global-B0WdAD-8.js';
5
- import { U as UserType, P as PartnerType, R as ResourceByUser, A as AdType, E as EnumAdStatus, S as SubscriptionPlansResponse, a as SubscriptionStatusData, b as PostType, c as EnumPostType, d as AppSettingsType } from '../post-CWZFxlP7.js';
6
- import { G as GameType, a as GameLeaderboard } from '../game-Dn5SH8_0.js';
5
+ import { U as UserType, P as PartnerType, R as ResourceByUser, A as AdType, E as EnumAdStatus, S as SubscriptionPlansResponse, a as SubscriptionStatusData, b as PostType, c as EnumPostType, d as AppSettingsType } from '../post-D9_1FbFI.js';
6
+ import { G as GameType, a as GameLeaderboard } from '../game-BzOJ4f7U.js';
7
7
  import 'react-hook-form';
8
8
 
9
9
  declare const useAdminUpdateResourceType: () => {
@@ -294,79 +294,98 @@ var createRouteMatcher = (base, type) => {
294
294
  var gameScreenIdentifierList = [
295
295
  {
296
296
  clue: "Where your actions turn into a timeline.",
297
- id: "/profile/activities"
297
+ id: "activities",
298
+ match: "/profile/activities"
298
299
  },
299
300
  {
300
301
  clue: "Where conversations happen without speaking.",
301
- id: "/profile/chat"
302
+ id: "chat",
303
+ match: "/profile/chat"
302
304
  },
303
305
  {
304
306
  clue: "The place to redefine who you are.",
305
- id: "/profile/edit-profile"
307
+ id: "edit-profile",
308
+ match: "/profile/edit-profile"
306
309
  },
307
310
  {
308
311
  clue: "A single moment worth showing up for.",
309
- id: createRouteMatcher("events", "mongoId")
312
+ id: "single-event",
313
+ match: createRouteMatcher("events", "mongoId")
310
314
  },
311
315
  {
312
316
  clue: "What\u2019s happening around you, right now.",
313
- id: "/events/events-near-me"
317
+ id: "events-near-me",
318
+ match: "/events/events-near-me"
314
319
  },
315
320
  {
316
321
  clue: "A collection of things worth attending.",
317
- id: "/events"
322
+ id: "events",
323
+ match: "/events"
318
324
  },
319
325
  {
320
326
  clue: "What\u2019s happening in a wider area\u2014not just nearby.",
321
- id: createRouteMatcher("events/region", "slug")
327
+ id: "events-region",
328
+ match: createRouteMatcher("events/region", "slug")
322
329
  },
323
330
  {
324
331
  clue: "Where you go to find something specific.",
325
- id: "/events/search"
332
+ id: "events-search",
333
+ match: "/events/search"
326
334
  },
327
335
  {
328
336
  clue: "Where fun becomes a challenge.",
329
- id: "/games"
337
+ id: "games",
338
+ match: "/games"
330
339
  },
331
340
  {
332
341
  clue: "Your starting point for everything.",
333
- id: "/"
342
+ id: "home",
343
+ match: "/"
334
344
  },
335
345
  {
336
346
  clue: "Where the app taps you on the shoulder.",
337
- id: "/notifications"
347
+ id: "notifications",
348
+ match: "/notifications"
338
349
  },
339
350
  {
340
351
  clue: "Where you fine-tune your experience.",
341
- id: "/options"
352
+ id: "options",
353
+ match: "/options"
342
354
  },
343
355
  {
344
356
  clue: "A single collaborator in the ecosystem.",
345
- id: createRouteMatcher("partners", "mongoId")
357
+ id: "single-partner",
358
+ match: createRouteMatcher("partners", "mongoId")
346
359
  },
347
360
  {
348
361
  clue: "The network behind the scenes.",
349
- id: "/partners"
362
+ id: "partners",
363
+ match: "/partners"
350
364
  },
351
365
  {
352
366
  clue: "Where you share something with everyone.",
353
- id: createRouteMatcher("visitors/posts", "mongoId")
367
+ id: "single-visitor-post",
368
+ match: createRouteMatcher("visitors/posts", "mongoId")
354
369
  },
355
370
  {
356
371
  clue: "Your identity, on display.",
357
- id: "/profile"
372
+ id: "profile",
373
+ match: "/profile"
358
374
  },
359
375
  {
360
376
  clue: "One provider offering something valuable.",
361
- id: createRouteMatcher("vendors", "mongoId")
377
+ id: "single-vendor",
378
+ match: createRouteMatcher("vendors", "mongoId")
362
379
  },
363
380
  {
364
381
  clue: "A marketplace of providers.",
365
- id: "/vendors"
382
+ id: "vendors",
383
+ match: "/vendors"
366
384
  },
367
385
  {
368
386
  clue: "People who stopped by to see you.",
369
- id: "/visitors"
387
+ id: "visitors",
388
+ match: "/visitors"
370
389
  }
371
390
  ];
372
391