@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.
- package/dist/{ad-eMd9XpSs.d.ts → ad-Cld9z55n.d.mts} +80 -3
- package/dist/{ad-CIgrG2xI.d.mts → ad-j0VWBCVE.d.ts} +80 -3
- package/dist/{auth-D0FKzjLe.d.ts → auth-B1G5QrD2.d.ts} +1 -1
- package/dist/{auth-zy1P_DKw.d.mts → auth-DlXdCHFm.d.mts} +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-BYQMdxtO.d.ts → global-B3lGLGxH.d.mts} +7 -84
- package/dist/{global-CLsysATK.d.mts → global-DabCYr5t.d.ts} +7 -84
- package/dist/graphql/index.d.mts +2 -2
- package/dist/graphql/index.d.ts +2 -2
- package/dist/hooks/index.d.mts +3 -3
- package/dist/hooks/index.d.ts +3 -3
- package/dist/index.d.mts +82 -82
- package/dist/index.d.ts +82 -82
- package/dist/types/index.d.mts +3 -3
- package/dist/types/index.d.ts +3 -3
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { EnumOSPlatform, EnumResourceType, EnumPartnerType } from './enums/index.
|
|
2
|
-
import { C as Category,
|
|
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
|
|
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.
|
|
2
|
-
import { C as Category,
|
|
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
|
|
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 { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-
|
|
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-
|
|
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,
|
|
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 {
|
|
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,
|
|
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 {
|
|
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 };
|
package/dist/graphql/index.d.mts
CHANGED
|
@@ -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
|
|
5
|
-
import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-
|
|
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: () => {
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -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
|
|
5
|
-
import { T as TesterType, A as AdType, E as EnumAdStatus, P as PartnerType } from '../ad-
|
|
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: () => {
|
package/dist/hooks/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { L as LocationType,
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
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
|
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { L as LocationType,
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
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",
|
package/dist/types/index.d.mts
CHANGED
|
@@ -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-
|
|
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,
|
|
5
|
-
export {
|
|
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 {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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-
|
|
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,
|
|
5
|
-
export {
|
|
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 {
|
package/dist/utils/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumInviteStatus, EnumRegions } from '../enums/index.mjs';
|
|
2
|
-
import {
|
|
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";
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumInviteStatus, EnumRegions } from '../enums/index.js';
|
|
2
|
-
import {
|
|
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";
|