@timardex/cluemart-shared 1.2.96 → 1.2.98

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,5 +1,5 @@
1
- import { EnumOSPlatform, EnumResourceType, EnumPartnerType } from './enums/index.js';
2
- import { C as Category, H as CreateFormData, v as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, t as SocialMediaType } from './global-BYQMdxtO.js';
1
+ import { EnumOSPlatform, EnumResourceType, EnumUserRole, EnumSubscriptionStatus, EnumUserLicence, EnumPartnerType } from './enums/index.mjs';
2
+ import { C as Category, w as CreateFormData, A as AssociateType, o as ResourceImageType, U as UserLicenceType, T as TermsAgreement, s as DateTimeType, r as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, p as SocialMediaType } from './global-B3lGLGxH.mjs';
3
3
 
4
4
  declare enum OrganizedMarketCount {
5
5
  ONE = "One",
@@ -87,6 +87,83 @@ interface TesterType extends TesterFormData {
87
87
  updatedAt: Date | null;
88
88
  }
89
89
 
90
+ type UserFormData = {
91
+ _id?: string;
92
+ active: boolean;
93
+ avatar?: ResourceImageType | null;
94
+ avatarUpload?: ResourceImageType | null;
95
+ confirmPassword?: string | null;
96
+ email: string;
97
+ firstName: string;
98
+ isTester: boolean;
99
+ lastName: string;
100
+ password?: string | null;
101
+ platform?: EnumOSPlatform;
102
+ preferredRegion: string;
103
+ role: EnumUserRole;
104
+ termsAgreement?: TermsAgreement | null;
105
+ };
106
+ type CreateUserFormData = CreateFormData<UserFormData>;
107
+ type UserActivityEvent = {
108
+ resourceId: string;
109
+ dateTime: DateTimeType;
110
+ };
111
+ type StripeSubscription = {
112
+ customerId?: string;
113
+ subscriptionId?: string;
114
+ status?: EnumSubscriptionStatus;
115
+ currentPlan?: EnumUserLicence;
116
+ startDate?: string;
117
+ endDate?: string;
118
+ };
119
+ type SubscriptionStatusData = {
120
+ subscriptionId: string | null;
121
+ status: EnumSubscriptionStatus;
122
+ priceId: string | null;
123
+ currentPlan: EnumUserLicence | null;
124
+ };
125
+ type UserActivity = {
126
+ favourites: {
127
+ events: string[];
128
+ vendors: string[];
129
+ partners: string[];
130
+ };
131
+ going: {
132
+ events: UserActivityEvent[];
133
+ };
134
+ interested: {
135
+ events: UserActivityEvent[];
136
+ };
137
+ present: {
138
+ events: UserActivityEvent[];
139
+ };
140
+ };
141
+ interface UserType {
142
+ _id: string;
143
+ active: boolean;
144
+ associates?: AssociateType[] | null;
145
+ avatar: ResourceImageType | null;
146
+ createdAt: Date;
147
+ deletedAt: Date | null;
148
+ email: string;
149
+ events: string[] | null;
150
+ firstName: string;
151
+ isTester: boolean;
152
+ lastName: string;
153
+ licences: UserLicenceType[] | null;
154
+ partner: string | null;
155
+ password: string;
156
+ platform: EnumOSPlatform | null;
157
+ preferredRegion: string;
158
+ refreshToken: string | null;
159
+ role: EnumUserRole;
160
+ stripe?: StripeSubscription;
161
+ termsAgreement?: TermsAgreement | null;
162
+ updatedAt: Date | null;
163
+ userActivity: UserActivity | null;
164
+ vendor: string | null;
165
+ }
166
+
90
167
  interface PartnerFormData extends BaseResourceTypeFormData {
91
168
  location: LocationType;
92
169
  nzbn: string;
@@ -147,4 +224,4 @@ interface AdType extends AdFormData {
147
224
  updatedAt: Date | null;
148
225
  }
149
226
 
150
- export { type AdType as A, type CreateTesterFormData as C, EnumAdStatus as E, OrganizedMarketCount as O, type PartnerType as P, type TesterType as T, VendorSellingFrequency as V, type PartnerFormData as a, type TesterFormData as b, type AdFormData as c, type CreateAdFormData as d, type CreatePartnerFormData as e, OrganizerMarketFrequency as f, type TesterVendor as g, type TesterEvent as h, EnumAdShowOn as i, EnumAdType as j, EnumAdStyle as k };
227
+ export { type AdType as A, type CreateUserFormData as C, EnumAdStatus as E, OrganizedMarketCount as O, type PartnerType as P, type SubscriptionStatusData as S, type TesterType as T, type UserType as U, VendorSellingFrequency as V, type UserFormData as a, type PartnerFormData as b, type TesterFormData as c, type CreateTesterFormData as d, type AdFormData as e, type CreateAdFormData as f, type CreatePartnerFormData as g, OrganizerMarketFrequency as h, type TesterVendor as i, type TesterEvent as j, type UserActivityEvent as k, type StripeSubscription as l, type UserActivity as m, EnumAdShowOn as n, EnumAdType as o, EnumAdStyle as p };
@@ -1,5 +1,5 @@
1
- import { EnumOSPlatform, EnumResourceType, EnumPartnerType } from './enums/index.mjs';
2
- import { C as Category, H as CreateFormData, v as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, t as SocialMediaType } from './global-CLsysATK.mjs';
1
+ import { EnumOSPlatform, EnumResourceType, EnumUserRole, EnumSubscriptionStatus, EnumUserLicence, EnumPartnerType } from './enums/index.js';
2
+ import { C as Category, w as CreateFormData, A as AssociateType, o as ResourceImageType, U as UserLicenceType, T as TermsAgreement, s as DateTimeType, r as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, p as SocialMediaType } from './global-DabCYr5t.js';
3
3
 
4
4
  declare enum OrganizedMarketCount {
5
5
  ONE = "One",
@@ -87,6 +87,83 @@ interface TesterType extends TesterFormData {
87
87
  updatedAt: Date | null;
88
88
  }
89
89
 
90
+ type UserFormData = {
91
+ _id?: string;
92
+ active: boolean;
93
+ avatar?: ResourceImageType | null;
94
+ avatarUpload?: ResourceImageType | null;
95
+ confirmPassword?: string | null;
96
+ email: string;
97
+ firstName: string;
98
+ isTester: boolean;
99
+ lastName: string;
100
+ password?: string | null;
101
+ platform?: EnumOSPlatform;
102
+ preferredRegion: string;
103
+ role: EnumUserRole;
104
+ termsAgreement?: TermsAgreement | null;
105
+ };
106
+ type CreateUserFormData = CreateFormData<UserFormData>;
107
+ type UserActivityEvent = {
108
+ resourceId: string;
109
+ dateTime: DateTimeType;
110
+ };
111
+ type StripeSubscription = {
112
+ customerId?: string;
113
+ subscriptionId?: string;
114
+ status?: EnumSubscriptionStatus;
115
+ currentPlan?: EnumUserLicence;
116
+ startDate?: string;
117
+ endDate?: string;
118
+ };
119
+ type SubscriptionStatusData = {
120
+ subscriptionId: string | null;
121
+ status: EnumSubscriptionStatus;
122
+ priceId: string | null;
123
+ currentPlan: EnumUserLicence | null;
124
+ };
125
+ type UserActivity = {
126
+ favourites: {
127
+ events: string[];
128
+ vendors: string[];
129
+ partners: string[];
130
+ };
131
+ going: {
132
+ events: UserActivityEvent[];
133
+ };
134
+ interested: {
135
+ events: UserActivityEvent[];
136
+ };
137
+ present: {
138
+ events: UserActivityEvent[];
139
+ };
140
+ };
141
+ interface UserType {
142
+ _id: string;
143
+ active: boolean;
144
+ associates?: AssociateType[] | null;
145
+ avatar: ResourceImageType | null;
146
+ createdAt: Date;
147
+ deletedAt: Date | null;
148
+ email: string;
149
+ events: string[] | null;
150
+ firstName: string;
151
+ isTester: boolean;
152
+ lastName: string;
153
+ licences: UserLicenceType[] | null;
154
+ partner: string | null;
155
+ password: string;
156
+ platform: EnumOSPlatform | null;
157
+ preferredRegion: string;
158
+ refreshToken: string | null;
159
+ role: EnumUserRole;
160
+ stripe?: StripeSubscription;
161
+ termsAgreement?: TermsAgreement | null;
162
+ updatedAt: Date | null;
163
+ userActivity: UserActivity | null;
164
+ vendor: string | null;
165
+ }
166
+
90
167
  interface PartnerFormData extends BaseResourceTypeFormData {
91
168
  location: LocationType;
92
169
  nzbn: string;
@@ -147,4 +224,4 @@ interface AdType extends AdFormData {
147
224
  updatedAt: Date | null;
148
225
  }
149
226
 
150
- export { type AdType as A, type CreateTesterFormData as C, EnumAdStatus as E, OrganizedMarketCount as O, type PartnerType as P, type TesterType as T, VendorSellingFrequency as V, type PartnerFormData as a, type TesterFormData as b, type AdFormData as c, type CreateAdFormData as d, type CreatePartnerFormData as e, OrganizerMarketFrequency as f, type TesterVendor as g, type TesterEvent as h, EnumAdShowOn as i, EnumAdType as j, EnumAdStyle as k };
227
+ export { type AdType as A, type CreateUserFormData as C, EnumAdStatus as E, OrganizedMarketCount as O, type PartnerType as P, type SubscriptionStatusData as S, type TesterType as T, type UserType as U, VendorSellingFrequency as V, type UserFormData as a, type PartnerFormData as b, type TesterFormData as c, type CreateTesterFormData as d, type AdFormData as e, type CreateAdFormData as f, type CreatePartnerFormData as g, OrganizerMarketFrequency as h, type TesterVendor as i, type TesterEvent as j, type UserActivityEvent as k, type StripeSubscription as l, type UserActivity as m, EnumAdShowOn as n, EnumAdType as o, EnumAdStyle as p };
@@ -1,4 +1,4 @@
1
- import { H as CreateFormData, T as TermsAgreement } from './global-BYQMdxtO.js';
1
+ import { w as CreateFormData, T as TermsAgreement } from './global-DabCYr5t.js';
2
2
  import { EnumOSPlatform } from './enums/index.js';
3
3
 
4
4
  type ContactUsFormData = {
@@ -1,4 +1,4 @@
1
- import { H as CreateFormData, T as TermsAgreement } from './global-CLsysATK.mjs';
1
+ import { w as CreateFormData, T as TermsAgreement } from './global-B3lGLGxH.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-CLsysATK.mjs';
1
+ import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-B3lGLGxH.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-BYQMdxtO.js';
1
+ import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-DabCYr5t.js';
2
2
  import 'react-hook-form';
3
3
  import '../enums/index.js';
4
4
 
@@ -1,5 +1,5 @@
1
1
  import { FieldValues, Control, FieldErrors, UseFormHandleSubmit, UseFormReset, UseFormSetValue, UseFormWatch } from 'react-hook-form';
2
- import { EnumInviteStatus, EnumResourceType, EnumRelationResource, EnumEventType, EnumPaymentMethod, EnumUserLicence, EnumOSPlatform, EnumUserRole, EnumSubscriptionStatus, EnumVendorType, EnumFoodFlavor, EnumSocialMedia, EnumEventDateStatus } from './enums/index.js';
2
+ import { EnumInviteStatus, EnumResourceType, EnumRelationResource, EnumEventType, EnumPaymentMethod, EnumVendorType, EnumFoodFlavor, EnumUserLicence, EnumSocialMedia, EnumEventDateStatus } from './enums/index.mjs';
3
3
 
4
4
  type RelationDate = {
5
5
  dateTime: DateTimeType & {
@@ -89,88 +89,6 @@ type EventInfoType = Omit<EventInfoFormData, "_id"> & {
89
89
  _id: string;
90
90
  };
91
91
 
92
- type UserFormData = {
93
- _id?: string;
94
- active: boolean;
95
- avatar?: ResourceImageType | null;
96
- avatarUpload?: ResourceImageType | null;
97
- confirmPassword?: string | null;
98
- email: string;
99
- firstName: string;
100
- isTester: boolean;
101
- lastName: string;
102
- password?: string | null;
103
- platform?: EnumOSPlatform;
104
- preferredRegion: string;
105
- role: EnumUserRole;
106
- termsAgreement?: TermsAgreement | null;
107
- };
108
- type CreateUserFormData = CreateFormData<UserFormData>;
109
- type UserActivityEvent = {
110
- resourceId: string;
111
- dateTime: DateTimeType;
112
- };
113
- type StripeSubscription = {
114
- customerId?: string;
115
- subscriptionId?: string;
116
- status?: EnumSubscriptionStatus;
117
- currentPlan?: EnumUserLicence;
118
- startDate?: string;
119
- endDate?: string;
120
- };
121
- type SubscriptionStatusData = {
122
- subscriptionId: string | null;
123
- status: EnumSubscriptionStatus;
124
- priceId: string | null;
125
- currentPlan: EnumUserLicence | null;
126
- };
127
- type UserActivity = {
128
- favourites: {
129
- events: string[];
130
- vendors: string[];
131
- partners: string[];
132
- };
133
- going: {
134
- events: UserActivityEvent[];
135
- };
136
- interested: {
137
- events: UserActivityEvent[];
138
- };
139
- present: {
140
- events: UserActivityEvent[];
141
- };
142
- };
143
- type UserLicenceType = {
144
- expiryDate: Date;
145
- issuedDate: Date;
146
- licenceType: EnumUserLicence;
147
- };
148
- interface UserType {
149
- _id: string;
150
- active: boolean;
151
- associates?: AssociateType[] | null;
152
- avatar: ResourceImageType | null;
153
- createdAt: Date;
154
- deletedAt: Date | null;
155
- email: string;
156
- events: string[] | null;
157
- firstName: string;
158
- isTester: boolean;
159
- lastName: string;
160
- licences: UserLicenceType[] | null;
161
- partner: string | null;
162
- password: string;
163
- platform: EnumOSPlatform | null;
164
- preferredRegion: string;
165
- refreshToken: string | null;
166
- role: EnumUserRole;
167
- stripe?: StripeSubscription;
168
- termsAgreement?: TermsAgreement | null;
169
- updatedAt: Date | null;
170
- userActivity: UserActivity | null;
171
- vendor: string | null;
172
- }
173
-
174
92
  type VendorLocation = {
175
93
  dateTime: Nullable<DateTimeType> | null;
176
94
  description?: string | null;
@@ -289,6 +207,11 @@ type SocialMediaType = {
289
207
  name?: EnumSocialMedia;
290
208
  link?: string;
291
209
  };
210
+ type UserLicenceType = {
211
+ expiryDate: Date;
212
+ issuedDate: Date;
213
+ licenceType: EnumUserLicence;
214
+ };
292
215
  type AssociateType = {
293
216
  email: string;
294
217
  resourceId: string;
@@ -421,4 +344,4 @@ interface CreateFormData<T extends FieldValues> {
421
344
  watch: UseFormWatch<T>;
422
345
  }
423
346
 
424
- export type { UserActivity as $, AssociateType as A, BaseResourceTypeFormData as B, Category as C, DeviceInfo as D, EventType as E, FormField as F, GeocodeLocation as G, CreateFormData as H, ImageObjectType as I, DateTimeWithPriceType as J, PaymentInfoType as K, LocationType as L, MapMultiLocation as M, Nullable as N, OptionItem as O, PosterUsageType as P, RelationDate as Q, Requirement as R, StallType as S, TermsAgreement as T, UserLicenceType as U, VendorType as V, VendorLocation as W, VendorMenuType as X, VendorAttributes as Y, UserActivityEvent as Z, StripeSubscription as _, FormDateField as a, EventInfoType as b, RelationType as c, ResourceConnectionsType as d, VendorInfoType as e, UserType as f, SubscriptionStatusData as g, VendorFormData as h, CreateVendorFormData as i, VendorInfoFormData as j, CreateVendorInfoFormData as k, EventFormData as l, CreateEventFormData as m, EventInfoFormData as n, CreateEventInfoFormData as o, UserFormData as p, CreateUserFormData as q, ResourceContactDetailsType as r, ResourceImageType as s, SocialMediaType as t, OwnerType as u, BaseResourceType as v, DateTimeType as w, Region as x, SubcategoryItems as y, Subcategory as z };
347
+ export type { AssociateType as A, BaseResourceTypeFormData as B, Category as C, DeviceInfo as D, EventType as E, FormField as F, GeocodeLocation as G, VendorLocation as H, ImageObjectType as I, VendorMenuType as J, VendorAttributes as K, LocationType as L, MapMultiLocation as M, Nullable as N, OptionItem as O, PosterUsageType as P, Requirement as R, StallType as S, TermsAgreement as T, UserLicenceType as U, VendorType as V, FormDateField as a, EventInfoType as b, RelationType as c, ResourceConnectionsType as d, VendorInfoType as e, VendorFormData as f, CreateVendorFormData as g, VendorInfoFormData as h, CreateVendorInfoFormData as i, EventFormData as j, CreateEventFormData as k, EventInfoFormData as l, CreateEventInfoFormData as m, ResourceContactDetailsType as n, ResourceImageType as o, SocialMediaType as p, OwnerType as q, BaseResourceType as r, DateTimeType as s, Region as t, SubcategoryItems as u, Subcategory as v, CreateFormData as w, DateTimeWithPriceType as x, PaymentInfoType as y, RelationDate as z };
@@ -1,5 +1,5 @@
1
1
  import { FieldValues, Control, FieldErrors, UseFormHandleSubmit, UseFormReset, UseFormSetValue, UseFormWatch } from 'react-hook-form';
2
- import { EnumInviteStatus, EnumResourceType, EnumRelationResource, EnumEventType, EnumPaymentMethod, EnumUserLicence, EnumOSPlatform, EnumUserRole, EnumSubscriptionStatus, EnumVendorType, EnumFoodFlavor, EnumSocialMedia, EnumEventDateStatus } from './enums/index.mjs';
2
+ import { EnumInviteStatus, EnumResourceType, EnumRelationResource, EnumEventType, EnumPaymentMethod, EnumVendorType, EnumFoodFlavor, EnumUserLicence, EnumSocialMedia, EnumEventDateStatus } from './enums/index.js';
3
3
 
4
4
  type RelationDate = {
5
5
  dateTime: DateTimeType & {
@@ -89,88 +89,6 @@ type EventInfoType = Omit<EventInfoFormData, "_id"> & {
89
89
  _id: string;
90
90
  };
91
91
 
92
- type UserFormData = {
93
- _id?: string;
94
- active: boolean;
95
- avatar?: ResourceImageType | null;
96
- avatarUpload?: ResourceImageType | null;
97
- confirmPassword?: string | null;
98
- email: string;
99
- firstName: string;
100
- isTester: boolean;
101
- lastName: string;
102
- password?: string | null;
103
- platform?: EnumOSPlatform;
104
- preferredRegion: string;
105
- role: EnumUserRole;
106
- termsAgreement?: TermsAgreement | null;
107
- };
108
- type CreateUserFormData = CreateFormData<UserFormData>;
109
- type UserActivityEvent = {
110
- resourceId: string;
111
- dateTime: DateTimeType;
112
- };
113
- type StripeSubscription = {
114
- customerId?: string;
115
- subscriptionId?: string;
116
- status?: EnumSubscriptionStatus;
117
- currentPlan?: EnumUserLicence;
118
- startDate?: string;
119
- endDate?: string;
120
- };
121
- type SubscriptionStatusData = {
122
- subscriptionId: string | null;
123
- status: EnumSubscriptionStatus;
124
- priceId: string | null;
125
- currentPlan: EnumUserLicence | null;
126
- };
127
- type UserActivity = {
128
- favourites: {
129
- events: string[];
130
- vendors: string[];
131
- partners: string[];
132
- };
133
- going: {
134
- events: UserActivityEvent[];
135
- };
136
- interested: {
137
- events: UserActivityEvent[];
138
- };
139
- present: {
140
- events: UserActivityEvent[];
141
- };
142
- };
143
- type UserLicenceType = {
144
- expiryDate: Date;
145
- issuedDate: Date;
146
- licenceType: EnumUserLicence;
147
- };
148
- interface UserType {
149
- _id: string;
150
- active: boolean;
151
- associates?: AssociateType[] | null;
152
- avatar: ResourceImageType | null;
153
- createdAt: Date;
154
- deletedAt: Date | null;
155
- email: string;
156
- events: string[] | null;
157
- firstName: string;
158
- isTester: boolean;
159
- lastName: string;
160
- licences: UserLicenceType[] | null;
161
- partner: string | null;
162
- password: string;
163
- platform: EnumOSPlatform | null;
164
- preferredRegion: string;
165
- refreshToken: string | null;
166
- role: EnumUserRole;
167
- stripe?: StripeSubscription;
168
- termsAgreement?: TermsAgreement | null;
169
- updatedAt: Date | null;
170
- userActivity: UserActivity | null;
171
- vendor: string | null;
172
- }
173
-
174
92
  type VendorLocation = {
175
93
  dateTime: Nullable<DateTimeType> | null;
176
94
  description?: string | null;
@@ -289,6 +207,11 @@ type SocialMediaType = {
289
207
  name?: EnumSocialMedia;
290
208
  link?: string;
291
209
  };
210
+ type UserLicenceType = {
211
+ expiryDate: Date;
212
+ issuedDate: Date;
213
+ licenceType: EnumUserLicence;
214
+ };
292
215
  type AssociateType = {
293
216
  email: string;
294
217
  resourceId: string;
@@ -421,4 +344,4 @@ interface CreateFormData<T extends FieldValues> {
421
344
  watch: UseFormWatch<T>;
422
345
  }
423
346
 
424
- export type { UserActivity as $, AssociateType as A, BaseResourceTypeFormData as B, Category as C, DeviceInfo as D, EventType as E, FormField as F, GeocodeLocation as G, CreateFormData as H, ImageObjectType as I, DateTimeWithPriceType as J, PaymentInfoType as K, LocationType as L, MapMultiLocation as M, Nullable as N, OptionItem as O, PosterUsageType as P, RelationDate as Q, Requirement as R, StallType as S, TermsAgreement as T, UserLicenceType as U, VendorType as V, VendorLocation as W, VendorMenuType as X, VendorAttributes as Y, UserActivityEvent as Z, StripeSubscription as _, FormDateField as a, EventInfoType as b, RelationType as c, ResourceConnectionsType as d, VendorInfoType as e, UserType as f, SubscriptionStatusData as g, VendorFormData as h, CreateVendorFormData as i, VendorInfoFormData as j, CreateVendorInfoFormData as k, EventFormData as l, CreateEventFormData as m, EventInfoFormData as n, CreateEventInfoFormData as o, UserFormData as p, CreateUserFormData as q, ResourceContactDetailsType as r, ResourceImageType as s, SocialMediaType as t, OwnerType as u, BaseResourceType as v, DateTimeType as w, Region as x, SubcategoryItems as y, Subcategory as z };
347
+ export type { AssociateType as A, BaseResourceTypeFormData as B, Category as C, DeviceInfo as D, EventType as E, FormField as F, GeocodeLocation as G, VendorLocation as H, ImageObjectType as I, VendorMenuType as J, VendorAttributes as K, LocationType as L, MapMultiLocation as M, Nullable as N, OptionItem as O, PosterUsageType as P, Requirement as R, StallType as S, TermsAgreement as T, UserLicenceType as U, VendorType as V, FormDateField as a, EventInfoType as b, RelationType as c, ResourceConnectionsType as d, VendorInfoType as e, VendorFormData as f, CreateVendorFormData as g, VendorInfoFormData as h, CreateVendorInfoFormData as i, EventFormData as j, CreateEventFormData as k, EventInfoFormData as l, CreateEventInfoFormData as m, ResourceContactDetailsType as n, ResourceImageType as o, SocialMediaType as p, OwnerType as q, BaseResourceType as r, DateTimeType as s, Region as t, SubcategoryItems as u, Subcategory as v, CreateFormData as w, DateTimeWithPriceType as x, PaymentInfoType as y, RelationDate as z };
@@ -1,8 +1,8 @@
1
1
  import * as _apollo_client from '@apollo/client';
2
2
  import { EnumResourceType } from '../enums/index.mjs';
3
3
  import { C as ChatType, N as NotificationType, a as NotificationCount, R as ResourceActivityType } from '../resourceActivities-CJRTZROh.mjs';
4
- import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType, f as UserType, g as SubscriptionStatusData } from '../global-CLsysATK.mjs';
5
- import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-CIgrG2xI.mjs';
4
+ import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType } from '../global-B3lGLGxH.mjs';
5
+ import { T as TesterType, U as UserType, A as AdType, E as EnumAdStatus, S as SubscriptionStatusData, P as PartnerType } from '../ad-Cld9z55n.mjs';
6
6
  import 'react-hook-form';
7
7
 
8
8
  declare const useAdminUpdateResourceType: () => {
@@ -1,8 +1,8 @@
1
1
  import * as _apollo_client from '@apollo/client';
2
2
  import { EnumResourceType } from '../enums/index.js';
3
3
  import { C as ChatType, N as NotificationType, a as NotificationCount, R as ResourceActivityType } from '../resourceActivities-CVwxvGeC.js';
4
- import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType, f as UserType, g as SubscriptionStatusData } from '../global-BYQMdxtO.js';
5
- import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-eMd9XpSs.js';
4
+ import { E as EventType, b as EventInfoType, c as RelationType, d as ResourceConnectionsType, V as VendorType, e as VendorInfoType, U as UserLicenceType } from '../global-DabCYr5t.js';
5
+ import { T as TesterType, U as UserType, A as AdType, E as EnumAdStatus, S as SubscriptionStatusData, P as PartnerType } from '../ad-j0VWBCVE.js';
6
6
  import 'react-hook-form';
7
7
 
8
8
  declare const useAdminUpdateResourceType: () => {
@@ -1,6 +1,6 @@
1
- import { L as LocationType, h as VendorFormData, i as CreateVendorFormData, j as VendorInfoFormData, k as CreateVendorInfoFormData, l as EventFormData, m as CreateEventFormData, n as EventInfoFormData, o as CreateEventInfoFormData, p as UserFormData, q as CreateUserFormData, B as BaseResourceTypeFormData } from '../global-CLsysATK.mjs';
2
- import { C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, c as CreateValidateVerificationTokenFormData, d as CreateResetPasswordFormData, e as ContactUsFormData, f as CreateContactUsFormData } from '../auth-zy1P_DKw.mjs';
3
- import { a as PartnerFormData, b as TesterFormData, C as CreateTesterFormData, c as AdFormData, d as CreateAdFormData, e as CreatePartnerFormData } from '../ad-CIgrG2xI.mjs';
1
+ import { L as LocationType, f as VendorFormData, g as CreateVendorFormData, h as VendorInfoFormData, i as CreateVendorInfoFormData, j as EventFormData, k as CreateEventFormData, l as EventInfoFormData, m as CreateEventInfoFormData, B as BaseResourceTypeFormData } from '../global-B3lGLGxH.mjs';
2
+ import { a as UserFormData, C as CreateUserFormData, b as PartnerFormData, c as TesterFormData, d as CreateTesterFormData, e as AdFormData, f as CreateAdFormData, g as CreatePartnerFormData } from '../ad-Cld9z55n.mjs';
3
+ import { C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, c as CreateValidateVerificationTokenFormData, d as CreateResetPasswordFormData, e as ContactUsFormData, f as CreateContactUsFormData } from '../auth-DlXdCHFm.mjs';
4
4
  import 'react-hook-form';
5
5
  import '../enums/index.mjs';
6
6
 
@@ -1,6 +1,6 @@
1
- import { L as LocationType, h as VendorFormData, i as CreateVendorFormData, j as VendorInfoFormData, k as CreateVendorInfoFormData, l as EventFormData, m as CreateEventFormData, n as EventInfoFormData, o as CreateEventInfoFormData, p as UserFormData, q as CreateUserFormData, B as BaseResourceTypeFormData } from '../global-BYQMdxtO.js';
2
- import { C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, c as CreateValidateVerificationTokenFormData, d as CreateResetPasswordFormData, e as ContactUsFormData, f as CreateContactUsFormData } from '../auth-D0FKzjLe.js';
3
- import { a as PartnerFormData, b as TesterFormData, C as CreateTesterFormData, c as AdFormData, d as CreateAdFormData, e as CreatePartnerFormData } from '../ad-eMd9XpSs.js';
1
+ import { L as LocationType, f as VendorFormData, g as CreateVendorFormData, h as VendorInfoFormData, i as CreateVendorInfoFormData, j as EventFormData, k as CreateEventFormData, l as EventInfoFormData, m as CreateEventInfoFormData, B as BaseResourceTypeFormData } from '../global-DabCYr5t.js';
2
+ import { a as UserFormData, C as CreateUserFormData, b as PartnerFormData, c as TesterFormData, d as CreateTesterFormData, e as AdFormData, f as CreateAdFormData, g as CreatePartnerFormData } from '../ad-j0VWBCVE.js';
3
+ import { C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, c as CreateValidateVerificationTokenFormData, d as CreateResetPasswordFormData, e as ContactUsFormData, f as CreateContactUsFormData } from '../auth-B1G5QrD2.js';
4
4
  import 'react-hook-form';
5
5
  import '../enums/index.js';
6
6
 
package/dist/index.d.mts CHANGED
@@ -268,88 +268,6 @@ type EventInfoType = Omit<EventInfoFormData, "_id"> & {
268
268
  _id: string;
269
269
  };
270
270
 
271
- type UserFormData = {
272
- _id?: string;
273
- active: boolean;
274
- avatar?: ResourceImageType | null;
275
- avatarUpload?: ResourceImageType | null;
276
- confirmPassword?: string | null;
277
- email: string;
278
- firstName: string;
279
- isTester: boolean;
280
- lastName: string;
281
- password?: string | null;
282
- platform?: EnumOSPlatform;
283
- preferredRegion: string;
284
- role: EnumUserRole;
285
- termsAgreement?: TermsAgreement | null;
286
- };
287
- type CreateUserFormData = CreateFormData<UserFormData>;
288
- type UserActivityEvent = {
289
- resourceId: string;
290
- dateTime: DateTimeType;
291
- };
292
- type StripeSubscription = {
293
- customerId?: string;
294
- subscriptionId?: string;
295
- status?: EnumSubscriptionStatus;
296
- currentPlan?: EnumUserLicence;
297
- startDate?: string;
298
- endDate?: string;
299
- };
300
- type SubscriptionStatusData = {
301
- subscriptionId: string | null;
302
- status: EnumSubscriptionStatus;
303
- priceId: string | null;
304
- currentPlan: EnumUserLicence | null;
305
- };
306
- type UserActivity = {
307
- favourites: {
308
- events: string[];
309
- vendors: string[];
310
- partners: string[];
311
- };
312
- going: {
313
- events: UserActivityEvent[];
314
- };
315
- interested: {
316
- events: UserActivityEvent[];
317
- };
318
- present: {
319
- events: UserActivityEvent[];
320
- };
321
- };
322
- type UserLicenceType = {
323
- expiryDate: Date;
324
- issuedDate: Date;
325
- licenceType: EnumUserLicence;
326
- };
327
- interface UserType {
328
- _id: string;
329
- active: boolean;
330
- associates?: AssociateType[] | null;
331
- avatar: ResourceImageType | null;
332
- createdAt: Date;
333
- deletedAt: Date | null;
334
- email: string;
335
- events: string[] | null;
336
- firstName: string;
337
- isTester: boolean;
338
- lastName: string;
339
- licences: UserLicenceType[] | null;
340
- partner: string | null;
341
- password: string;
342
- platform: EnumOSPlatform | null;
343
- preferredRegion: string;
344
- refreshToken: string | null;
345
- role: EnumUserRole;
346
- stripe?: StripeSubscription;
347
- termsAgreement?: TermsAgreement | null;
348
- updatedAt: Date | null;
349
- userActivity: UserActivity | null;
350
- vendor: string | null;
351
- }
352
-
353
271
  type VendorLocation = {
354
272
  dateTime: Nullable<DateTimeType> | null;
355
273
  description?: string | null;
@@ -468,6 +386,11 @@ type SocialMediaType = {
468
386
  name?: EnumSocialMedia;
469
387
  link?: string;
470
388
  };
389
+ type UserLicenceType = {
390
+ expiryDate: Date;
391
+ issuedDate: Date;
392
+ licenceType: EnumUserLicence;
393
+ };
471
394
  type AssociateType = {
472
395
  email: string;
473
396
  resourceId: string;
@@ -814,6 +737,83 @@ interface TesterType extends TesterFormData {
814
737
  updatedAt: Date | null;
815
738
  }
816
739
 
740
+ type UserFormData = {
741
+ _id?: string;
742
+ active: boolean;
743
+ avatar?: ResourceImageType | null;
744
+ avatarUpload?: ResourceImageType | null;
745
+ confirmPassword?: string | null;
746
+ email: string;
747
+ firstName: string;
748
+ isTester: boolean;
749
+ lastName: string;
750
+ password?: string | null;
751
+ platform?: EnumOSPlatform;
752
+ preferredRegion: string;
753
+ role: EnumUserRole;
754
+ termsAgreement?: TermsAgreement | null;
755
+ };
756
+ type CreateUserFormData = CreateFormData<UserFormData>;
757
+ type UserActivityEvent = {
758
+ resourceId: string;
759
+ dateTime: DateTimeType;
760
+ };
761
+ type StripeSubscription = {
762
+ customerId?: string;
763
+ subscriptionId?: string;
764
+ status?: EnumSubscriptionStatus;
765
+ currentPlan?: EnumUserLicence;
766
+ startDate?: string;
767
+ endDate?: string;
768
+ };
769
+ type SubscriptionStatusData = {
770
+ subscriptionId: string | null;
771
+ status: EnumSubscriptionStatus;
772
+ priceId: string | null;
773
+ currentPlan: EnumUserLicence | null;
774
+ };
775
+ type UserActivity = {
776
+ favourites: {
777
+ events: string[];
778
+ vendors: string[];
779
+ partners: string[];
780
+ };
781
+ going: {
782
+ events: UserActivityEvent[];
783
+ };
784
+ interested: {
785
+ events: UserActivityEvent[];
786
+ };
787
+ present: {
788
+ events: UserActivityEvent[];
789
+ };
790
+ };
791
+ interface UserType {
792
+ _id: string;
793
+ active: boolean;
794
+ associates?: AssociateType[] | null;
795
+ avatar: ResourceImageType | null;
796
+ createdAt: Date;
797
+ deletedAt: Date | null;
798
+ email: string;
799
+ events: string[] | null;
800
+ firstName: string;
801
+ isTester: boolean;
802
+ lastName: string;
803
+ licences: UserLicenceType[] | null;
804
+ partner: string | null;
805
+ password: string;
806
+ platform: EnumOSPlatform | null;
807
+ preferredRegion: string;
808
+ refreshToken: string | null;
809
+ role: EnumUserRole;
810
+ stripe?: StripeSubscription;
811
+ termsAgreement?: TermsAgreement | null;
812
+ updatedAt: Date | null;
813
+ userActivity: UserActivity | null;
814
+ vendor: string | null;
815
+ }
816
+
817
817
  declare enum EnumAdShowOn {
818
818
  EVENTS_PAGE = "Events_page",
819
819
  FRONT_PAGE = "Front_page",
package/dist/index.d.ts CHANGED
@@ -268,88 +268,6 @@ type EventInfoType = Omit<EventInfoFormData, "_id"> & {
268
268
  _id: string;
269
269
  };
270
270
 
271
- type UserFormData = {
272
- _id?: string;
273
- active: boolean;
274
- avatar?: ResourceImageType | null;
275
- avatarUpload?: ResourceImageType | null;
276
- confirmPassword?: string | null;
277
- email: string;
278
- firstName: string;
279
- isTester: boolean;
280
- lastName: string;
281
- password?: string | null;
282
- platform?: EnumOSPlatform;
283
- preferredRegion: string;
284
- role: EnumUserRole;
285
- termsAgreement?: TermsAgreement | null;
286
- };
287
- type CreateUserFormData = CreateFormData<UserFormData>;
288
- type UserActivityEvent = {
289
- resourceId: string;
290
- dateTime: DateTimeType;
291
- };
292
- type StripeSubscription = {
293
- customerId?: string;
294
- subscriptionId?: string;
295
- status?: EnumSubscriptionStatus;
296
- currentPlan?: EnumUserLicence;
297
- startDate?: string;
298
- endDate?: string;
299
- };
300
- type SubscriptionStatusData = {
301
- subscriptionId: string | null;
302
- status: EnumSubscriptionStatus;
303
- priceId: string | null;
304
- currentPlan: EnumUserLicence | null;
305
- };
306
- type UserActivity = {
307
- favourites: {
308
- events: string[];
309
- vendors: string[];
310
- partners: string[];
311
- };
312
- going: {
313
- events: UserActivityEvent[];
314
- };
315
- interested: {
316
- events: UserActivityEvent[];
317
- };
318
- present: {
319
- events: UserActivityEvent[];
320
- };
321
- };
322
- type UserLicenceType = {
323
- expiryDate: Date;
324
- issuedDate: Date;
325
- licenceType: EnumUserLicence;
326
- };
327
- interface UserType {
328
- _id: string;
329
- active: boolean;
330
- associates?: AssociateType[] | null;
331
- avatar: ResourceImageType | null;
332
- createdAt: Date;
333
- deletedAt: Date | null;
334
- email: string;
335
- events: string[] | null;
336
- firstName: string;
337
- isTester: boolean;
338
- lastName: string;
339
- licences: UserLicenceType[] | null;
340
- partner: string | null;
341
- password: string;
342
- platform: EnumOSPlatform | null;
343
- preferredRegion: string;
344
- refreshToken: string | null;
345
- role: EnumUserRole;
346
- stripe?: StripeSubscription;
347
- termsAgreement?: TermsAgreement | null;
348
- updatedAt: Date | null;
349
- userActivity: UserActivity | null;
350
- vendor: string | null;
351
- }
352
-
353
271
  type VendorLocation = {
354
272
  dateTime: Nullable<DateTimeType> | null;
355
273
  description?: string | null;
@@ -468,6 +386,11 @@ type SocialMediaType = {
468
386
  name?: EnumSocialMedia;
469
387
  link?: string;
470
388
  };
389
+ type UserLicenceType = {
390
+ expiryDate: Date;
391
+ issuedDate: Date;
392
+ licenceType: EnumUserLicence;
393
+ };
471
394
  type AssociateType = {
472
395
  email: string;
473
396
  resourceId: string;
@@ -814,6 +737,83 @@ interface TesterType extends TesterFormData {
814
737
  updatedAt: Date | null;
815
738
  }
816
739
 
740
+ type UserFormData = {
741
+ _id?: string;
742
+ active: boolean;
743
+ avatar?: ResourceImageType | null;
744
+ avatarUpload?: ResourceImageType | null;
745
+ confirmPassword?: string | null;
746
+ email: string;
747
+ firstName: string;
748
+ isTester: boolean;
749
+ lastName: string;
750
+ password?: string | null;
751
+ platform?: EnumOSPlatform;
752
+ preferredRegion: string;
753
+ role: EnumUserRole;
754
+ termsAgreement?: TermsAgreement | null;
755
+ };
756
+ type CreateUserFormData = CreateFormData<UserFormData>;
757
+ type UserActivityEvent = {
758
+ resourceId: string;
759
+ dateTime: DateTimeType;
760
+ };
761
+ type StripeSubscription = {
762
+ customerId?: string;
763
+ subscriptionId?: string;
764
+ status?: EnumSubscriptionStatus;
765
+ currentPlan?: EnumUserLicence;
766
+ startDate?: string;
767
+ endDate?: string;
768
+ };
769
+ type SubscriptionStatusData = {
770
+ subscriptionId: string | null;
771
+ status: EnumSubscriptionStatus;
772
+ priceId: string | null;
773
+ currentPlan: EnumUserLicence | null;
774
+ };
775
+ type UserActivity = {
776
+ favourites: {
777
+ events: string[];
778
+ vendors: string[];
779
+ partners: string[];
780
+ };
781
+ going: {
782
+ events: UserActivityEvent[];
783
+ };
784
+ interested: {
785
+ events: UserActivityEvent[];
786
+ };
787
+ present: {
788
+ events: UserActivityEvent[];
789
+ };
790
+ };
791
+ interface UserType {
792
+ _id: string;
793
+ active: boolean;
794
+ associates?: AssociateType[] | null;
795
+ avatar: ResourceImageType | null;
796
+ createdAt: Date;
797
+ deletedAt: Date | null;
798
+ email: string;
799
+ events: string[] | null;
800
+ firstName: string;
801
+ isTester: boolean;
802
+ lastName: string;
803
+ licences: UserLicenceType[] | null;
804
+ partner: string | null;
805
+ password: string;
806
+ platform: EnumOSPlatform | null;
807
+ preferredRegion: string;
808
+ refreshToken: string | null;
809
+ role: EnumUserRole;
810
+ stripe?: StripeSubscription;
811
+ termsAgreement?: TermsAgreement | null;
812
+ updatedAt: Date | null;
813
+ userActivity: UserActivity | null;
814
+ vendor: string | null;
815
+ }
816
+
817
817
  declare enum EnumAdShowOn {
818
818
  EVENTS_PAGE = "Events_page",
819
819
  FRONT_PAGE = "Front_page",
@@ -1,8 +1,8 @@
1
1
  import { EnumResourceType } from '../enums/index.mjs';
2
- export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-zy1P_DKw.mjs';
2
+ export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-DlXdCHFm.mjs';
3
3
  export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, e as CreateBulkNotificationInput, E as EnumActivity, a as NotificationCount, d as NotificationDataType, N as NotificationType, P as ParticipantType, f as ResourceActivityEntry, g as ResourceActivityInputType, R as ResourceActivityType } from '../resourceActivities-CJRTZROh.mjs';
4
- export { A as AssociateType, v as BaseResourceType, B as BaseResourceTypeFormData, C as Category, m as CreateEventFormData, o as CreateEventInfoFormData, H as CreateFormData, q as CreateUserFormData, i as CreateVendorFormData, k as CreateVendorInfoFormData, w as DateTimeType, J as DateTimeWithPriceType, D as DeviceInfo, l as EventFormData, n as EventInfoFormData, b as EventInfoType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, L as LocationType, M as MapMultiLocation, N as Nullable, O as OptionItem, u as OwnerType, K as PaymentInfoType, P as PosterUsageType, x as Region, Q as RelationDate, c as RelationType, R as Requirement, d as ResourceConnectionsType, r as ResourceContactDetailsType, s as ResourceImageType, t as SocialMediaType, S as StallType, _ as StripeSubscription, z as Subcategory, y as SubcategoryItems, g as SubscriptionStatusData, T as TermsAgreement, $ as UserActivity, Z as UserActivityEvent, p as UserFormData, U as UserLicenceType, f as UserType, Y as VendorAttributes, h as VendorFormData, j as VendorInfoFormData, e as VendorInfoType, W as VendorLocation, X as VendorMenuType, V as VendorType } from '../global-CLsysATK.mjs';
5
- export { c as AdFormData, A as AdType, d as CreateAdFormData, e as CreatePartnerFormData, C as CreateTesterFormData, i as EnumAdShowOn, E as EnumAdStatus, k as EnumAdStyle, j as EnumAdType, O as OrganizedMarketCount, f as OrganizerMarketFrequency, a as PartnerFormData, P as PartnerType, h as TesterEvent, b as TesterFormData, T as TesterType, g as TesterVendor, V as VendorSellingFrequency } from '../ad-CIgrG2xI.mjs';
4
+ export { A as AssociateType, r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, k as CreateEventFormData, m as CreateEventInfoFormData, w as CreateFormData, g as CreateVendorFormData, i as CreateVendorInfoFormData, s as DateTimeType, x as DateTimeWithPriceType, D as DeviceInfo, j as EventFormData, l as EventInfoFormData, b as EventInfoType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, L as LocationType, M as MapMultiLocation, N as Nullable, O as OptionItem, q as OwnerType, y as PaymentInfoType, P as PosterUsageType, t as Region, z as RelationDate, c as RelationType, R as Requirement, d as ResourceConnectionsType, n as ResourceContactDetailsType, o as ResourceImageType, p as SocialMediaType, S as StallType, v as Subcategory, u as SubcategoryItems, T as TermsAgreement, U as UserLicenceType, K as VendorAttributes, f as VendorFormData, h as VendorInfoFormData, e as VendorInfoType, H as VendorLocation, J as VendorMenuType, V as VendorType } from '../global-B3lGLGxH.mjs';
5
+ export { e as AdFormData, A as AdType, f as CreateAdFormData, g as CreatePartnerFormData, d as CreateTesterFormData, C as CreateUserFormData, n as EnumAdShowOn, E as EnumAdStatus, p as EnumAdStyle, o as EnumAdType, O as OrganizedMarketCount, h as OrganizerMarketFrequency, b as PartnerFormData, P as PartnerType, l as StripeSubscription, S as SubscriptionStatusData, j as TesterEvent, c as TesterFormData, T as TesterType, i as TesterVendor, m as UserActivity, k as UserActivityEvent, a as UserFormData, U as UserType, V as VendorSellingFrequency } from '../ad-Cld9z55n.mjs';
6
6
  import 'react-hook-form';
7
7
 
8
8
  interface AdminUpdateResourceType {
@@ -1,8 +1,8 @@
1
1
  import { EnumResourceType } from '../enums/index.js';
2
- export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-D0FKzjLe.js';
2
+ export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-B1G5QrD2.js';
3
3
  export { b as ChatMessageInput, c as ChatMessageType, C as ChatType, e as CreateBulkNotificationInput, E as EnumActivity, a as NotificationCount, d as NotificationDataType, N as NotificationType, P as ParticipantType, f as ResourceActivityEntry, g as ResourceActivityInputType, R as ResourceActivityType } from '../resourceActivities-CVwxvGeC.js';
4
- export { A as AssociateType, v as BaseResourceType, B as BaseResourceTypeFormData, C as Category, m as CreateEventFormData, o as CreateEventInfoFormData, H as CreateFormData, q as CreateUserFormData, i as CreateVendorFormData, k as CreateVendorInfoFormData, w as DateTimeType, J as DateTimeWithPriceType, D as DeviceInfo, l as EventFormData, n as EventInfoFormData, b as EventInfoType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, L as LocationType, M as MapMultiLocation, N as Nullable, O as OptionItem, u as OwnerType, K as PaymentInfoType, P as PosterUsageType, x as Region, Q as RelationDate, c as RelationType, R as Requirement, d as ResourceConnectionsType, r as ResourceContactDetailsType, s as ResourceImageType, t as SocialMediaType, S as StallType, _ as StripeSubscription, z as Subcategory, y as SubcategoryItems, g as SubscriptionStatusData, T as TermsAgreement, $ as UserActivity, Z as UserActivityEvent, p as UserFormData, U as UserLicenceType, f as UserType, Y as VendorAttributes, h as VendorFormData, j as VendorInfoFormData, e as VendorInfoType, W as VendorLocation, X as VendorMenuType, V as VendorType } from '../global-BYQMdxtO.js';
5
- export { c as AdFormData, A as AdType, d as CreateAdFormData, e as CreatePartnerFormData, C as CreateTesterFormData, i as EnumAdShowOn, E as EnumAdStatus, k as EnumAdStyle, j as EnumAdType, O as OrganizedMarketCount, f as OrganizerMarketFrequency, a as PartnerFormData, P as PartnerType, h as TesterEvent, b as TesterFormData, T as TesterType, g as TesterVendor, V as VendorSellingFrequency } from '../ad-eMd9XpSs.js';
4
+ export { A as AssociateType, r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, k as CreateEventFormData, m as CreateEventInfoFormData, w as CreateFormData, g as CreateVendorFormData, i as CreateVendorInfoFormData, s as DateTimeType, x as DateTimeWithPriceType, D as DeviceInfo, j as EventFormData, l as EventInfoFormData, b as EventInfoType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, L as LocationType, M as MapMultiLocation, N as Nullable, O as OptionItem, q as OwnerType, y as PaymentInfoType, P as PosterUsageType, t as Region, z as RelationDate, c as RelationType, R as Requirement, d as ResourceConnectionsType, n as ResourceContactDetailsType, o as ResourceImageType, p as SocialMediaType, S as StallType, v as Subcategory, u as SubcategoryItems, T as TermsAgreement, U as UserLicenceType, K as VendorAttributes, f as VendorFormData, h as VendorInfoFormData, e as VendorInfoType, H as VendorLocation, J as VendorMenuType, V as VendorType } from '../global-DabCYr5t.js';
5
+ export { e as AdFormData, A as AdType, f as CreateAdFormData, g as CreatePartnerFormData, d as CreateTesterFormData, C as CreateUserFormData, n as EnumAdShowOn, E as EnumAdStatus, p as EnumAdStyle, o as EnumAdType, O as OrganizedMarketCount, h as OrganizerMarketFrequency, b as PartnerFormData, P as PartnerType, l as StripeSubscription, S as SubscriptionStatusData, j as TesterEvent, c as TesterFormData, T as TesterType, i as TesterVendor, m as UserActivity, k as UserActivityEvent, a as UserFormData, U as UserType, V as VendorSellingFrequency } from '../ad-j0VWBCVE.js';
6
6
  import 'react-hook-form';
7
7
 
8
8
  interface AdminUpdateResourceType {
@@ -1,5 +1,5 @@
1
1
  import { EnumInviteStatus, EnumRegions } from '../enums/index.mjs';
2
- import { x as Region, O as OptionItem } from '../global-CLsysATK.mjs';
2
+ import { t as Region, O as OptionItem } from '../global-B3lGLGxH.mjs';
3
3
  import 'react-hook-form';
4
4
 
5
5
  declare const dateFormat = "DD-MM-YYYY";
@@ -1,5 +1,5 @@
1
1
  import { EnumInviteStatus, EnumRegions } from '../enums/index.js';
2
- import { x as Region, O as OptionItem } from '../global-BYQMdxtO.js';
2
+ import { t as Region, O as OptionItem } from '../global-DabCYr5t.js';
3
3
  import 'react-hook-form';
4
4
 
5
5
  declare const dateFormat = "DD-MM-YYYY";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timardex/cluemart-shared",
3
- "version": "1.2.96",
3
+ "version": "1.2.98",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",