@timardex/cluemart-shared 1.3.73 → 1.3.75

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.
@@ -1,4 +1,4 @@
1
- import { z as CreateFormData, T as TermsAgreement } from './global-sRP-50jD.js';
1
+ import { z as CreateFormData, T as TermsAgreement } from './global-BJbi-2I6.js';
2
2
  import { EnumOSPlatform } from './enums/index.js';
3
3
 
4
4
  type ContactUsFormData = {
@@ -1,4 +1,4 @@
1
- import { z as CreateFormData, T as TermsAgreement } from './global-Dcnzbzvv.mjs';
1
+ import { z as CreateFormData, T as TermsAgreement } from './global-ZW2_JxF5.mjs';
2
2
  import { EnumOSPlatform } from './enums/index.mjs';
3
3
 
4
4
  type ContactUsFormData = {
@@ -1,4 +1,4 @@
1
- import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-Dcnzbzvv.mjs';
1
+ import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-ZW2_JxF5.mjs';
2
2
  import 'react-hook-form';
3
3
  import '../enums/index.mjs';
4
4
 
@@ -1,4 +1,4 @@
1
- import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-sRP-50jD.js';
1
+ import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-BJbi-2I6.js';
2
2
  import 'react-hook-form';
3
3
  import '../enums/index.js';
4
4
 
@@ -72,9 +72,11 @@ interface EventFormData extends BaseResourceTypeFormData {
72
72
  type CreateEventInfoFormData = CreateFormData<EventInfoFormData>;
73
73
  type CreateEventFormData = CreateFormData<EventFormData>;
74
74
  interface EventType extends BaseResourceType {
75
+ claimed: boolean;
75
76
  dateTime: DateTimeType[];
76
77
  eventInfoId: string;
77
78
  eventType: EnumEventType;
79
+ googlePlaceId?: string | null;
78
80
  location: LocationType;
79
81
  nzbn: string;
80
82
  provider: string | null;
@@ -93,7 +95,7 @@ interface EventListItemType {
93
95
  createdAt: Date;
94
96
  dateTime: DateTimeType[];
95
97
  deletedAt: Date | null;
96
- description?: string | null;
98
+ description: string | null;
97
99
  eventType: EnumEventType;
98
100
  googlePlaceId?: string | null;
99
101
  images?: ResourceImageType[] | null;
@@ -103,6 +105,10 @@ interface EventListItemType {
103
105
  rainOrShine: boolean;
104
106
  rating?: number | null;
105
107
  region: string;
108
+ relations: {
109
+ relationId: string | null;
110
+ relationDates: RelationDate[] | null;
111
+ }[] | null;
106
112
  reviewCount?: number | null;
107
113
  updatedAt: Date | null;
108
114
  }
@@ -291,6 +297,8 @@ type BaseResourceType = Omit<BaseResourceTypeFormData, "_id" | "coverUpload" | "
291
297
  createdAt: Date;
292
298
  deletedAt: Date | null;
293
299
  posterUsage?: PosterUsageType | null;
300
+ rating?: number | null;
301
+ reviewCount?: number | null;
294
302
  updatedAt: Date | null;
295
303
  };
296
304
  type LocationType = {
@@ -72,9 +72,11 @@ interface EventFormData extends BaseResourceTypeFormData {
72
72
  type CreateEventInfoFormData = CreateFormData<EventInfoFormData>;
73
73
  type CreateEventFormData = CreateFormData<EventFormData>;
74
74
  interface EventType extends BaseResourceType {
75
+ claimed: boolean;
75
76
  dateTime: DateTimeType[];
76
77
  eventInfoId: string;
77
78
  eventType: EnumEventType;
79
+ googlePlaceId?: string | null;
78
80
  location: LocationType;
79
81
  nzbn: string;
80
82
  provider: string | null;
@@ -93,7 +95,7 @@ interface EventListItemType {
93
95
  createdAt: Date;
94
96
  dateTime: DateTimeType[];
95
97
  deletedAt: Date | null;
96
- description?: string | null;
98
+ description: string | null;
97
99
  eventType: EnumEventType;
98
100
  googlePlaceId?: string | null;
99
101
  images?: ResourceImageType[] | null;
@@ -103,6 +105,10 @@ interface EventListItemType {
103
105
  rainOrShine: boolean;
104
106
  rating?: number | null;
105
107
  region: string;
108
+ relations: {
109
+ relationId: string | null;
110
+ relationDates: RelationDate[] | null;
111
+ }[] | null;
106
112
  reviewCount?: number | null;
107
113
  updatedAt: Date | null;
108
114
  }
@@ -291,6 +297,8 @@ type BaseResourceType = Omit<BaseResourceTypeFormData, "_id" | "coverUpload" | "
291
297
  createdAt: Date;
292
298
  deletedAt: Date | null;
293
299
  posterUsage?: PosterUsageType | null;
300
+ rating?: number | null;
301
+ reviewCount?: number | null;
294
302
  updatedAt: Date | null;
295
303
  };
296
304
  type LocationType = {
@@ -409,12 +409,19 @@ var EVENT_LIST_ITEM = import_client2.gql`
409
409
  rainOrShine
410
410
  rating
411
411
  region
412
+ relations {
413
+ relationId
414
+ relationDates {
415
+ ...RelationDates
416
+ }
417
+ }
412
418
  reviewCount
413
419
  updatedAt
414
420
  }
415
421
  ${EVENT_DATETIME_FIELDS_FRAGMENT}
416
422
  ${LOCATION_FIELDS_FRAGMENT}
417
423
  ${RESOURCE_IMAGE_FIELDS_FRAGMENT}
424
+ ${RELATION_DATES_FRAGMENT}
418
425
  `;
419
426
 
420
427
  // src/graphql/queries/event.ts
@@ -460,6 +467,7 @@ var EVENT = import_client3.gql`
460
467
  cover {
461
468
  ...ResourceImageFields
462
469
  }
470
+ claimed
463
471
  createdAt
464
472
  contactDetails {
465
473
  ...ContactDetailsFields
@@ -469,6 +477,7 @@ var EVENT = import_client3.gql`
469
477
  }
470
478
  description
471
479
  deletedAt
480
+ googlePlaceId
472
481
  images {
473
482
  ...ResourceImageFields
474
483
  }
@@ -497,6 +506,8 @@ var EVENT = import_client3.gql`
497
506
  ...RelationDates
498
507
  }
499
508
  }
509
+ rating
510
+ reviewCount
500
511
  socialMedia {
501
512
  ...SocialMediaFields
502
513
  }
@@ -750,7 +761,9 @@ var VENDOR = import_client5.gql`
750
761
  posterUsage {
751
762
  ...PosterUsageFields
752
763
  }
764
+ rating
753
765
  region
766
+ reviewCount
754
767
  relations {
755
768
  relationId
756
769
  relationDates {
@@ -1374,7 +1387,9 @@ var PARTNER = import_client17.gql`
1374
1387
  posterUsage {
1375
1388
  ...PosterUsageFields
1376
1389
  }
1390
+ rating
1377
1391
  region
1392
+ reviewCount
1378
1393
  socialMedia {
1379
1394
  ...SocialMediaFields
1380
1395
  }