@timardex/cluemart-shared 1.2.61 → 1.2.63
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-DDPQcDOS.d.ts → ad-DMOf8pe0.d.ts} +7 -2
- package/dist/{ad-5KC7r-i4.d.mts → ad-zeewmNrQ.d.mts} +7 -2
- package/dist/formFields/index.cjs +375 -357
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.d.mts +1 -2
- package/dist/formFields/index.d.ts +1 -2
- package/dist/formFields/index.mjs +375 -356
- package/dist/formFields/index.mjs.map +1 -1
- package/dist/graphql/index.cjs +2 -16
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +1 -1
- package/dist/graphql/index.d.ts +1 -1
- package/dist/graphql/index.mjs +2 -16
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/index.cjs +368 -364
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.mjs +368 -363
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -72,6 +72,11 @@ type UserActivity = {
|
|
|
72
72
|
events: UserActivityEvent[];
|
|
73
73
|
};
|
|
74
74
|
};
|
|
75
|
+
type UserLicenceType = {
|
|
76
|
+
licence: EnumUserLicence;
|
|
77
|
+
issuedDate: string;
|
|
78
|
+
expiryDate: string;
|
|
79
|
+
};
|
|
75
80
|
interface UserType {
|
|
76
81
|
_id: string;
|
|
77
82
|
active: boolean;
|
|
@@ -84,7 +89,7 @@ interface UserType {
|
|
|
84
89
|
firstName: string;
|
|
85
90
|
isTester: boolean;
|
|
86
91
|
lastName: string;
|
|
87
|
-
licences:
|
|
92
|
+
licences: UserLicenceType[] | null;
|
|
88
93
|
partner: string | null;
|
|
89
94
|
password: string;
|
|
90
95
|
platform: EnumOSPlatform | null;
|
|
@@ -158,4 +163,4 @@ interface AdType extends AdFormData {
|
|
|
158
163
|
updatedAt: Date;
|
|
159
164
|
}
|
|
160
165
|
|
|
161
|
-
export { type AdType as A, type CreateUserFormData as C, EnumAdStatus as E, type PartnerType as P, type SubscriptionStatusData as S, type TesterType as T, type UserType as U, type UserFormData as a, type PartnerFormData as b, type TestersFormData as c, type CreateTestersFormData as d, type AdFormData as e, type CreateAdFormData as f, type CreatePartnerFormData as g, type UserActivityEvent as h, type StripeSubscription as i, type UserActivity as j,
|
|
166
|
+
export { type AdType as A, type CreateUserFormData as C, EnumAdStatus as E, type PartnerType as P, type SubscriptionStatusData as S, type TesterType as T, type UserType as U, type UserFormData as a, type PartnerFormData as b, type TestersFormData as c, type CreateTestersFormData as d, type AdFormData as e, type CreateAdFormData as f, type CreatePartnerFormData as g, type UserActivityEvent as h, type StripeSubscription as i, type UserActivity as j, type UserLicenceType as k, EnumAdShowOn as l, EnumAdType as m, EnumAdStyle as n };
|
|
@@ -72,6 +72,11 @@ type UserActivity = {
|
|
|
72
72
|
events: UserActivityEvent[];
|
|
73
73
|
};
|
|
74
74
|
};
|
|
75
|
+
type UserLicenceType = {
|
|
76
|
+
licence: EnumUserLicence;
|
|
77
|
+
issuedDate: string;
|
|
78
|
+
expiryDate: string;
|
|
79
|
+
};
|
|
75
80
|
interface UserType {
|
|
76
81
|
_id: string;
|
|
77
82
|
active: boolean;
|
|
@@ -84,7 +89,7 @@ interface UserType {
|
|
|
84
89
|
firstName: string;
|
|
85
90
|
isTester: boolean;
|
|
86
91
|
lastName: string;
|
|
87
|
-
licences:
|
|
92
|
+
licences: UserLicenceType[] | null;
|
|
88
93
|
partner: string | null;
|
|
89
94
|
password: string;
|
|
90
95
|
platform: EnumOSPlatform | null;
|
|
@@ -158,4 +163,4 @@ interface AdType extends AdFormData {
|
|
|
158
163
|
updatedAt: Date;
|
|
159
164
|
}
|
|
160
165
|
|
|
161
|
-
export { type AdType as A, type CreateUserFormData as C, EnumAdStatus as E, type PartnerType as P, type SubscriptionStatusData as S, type TesterType as T, type UserType as U, type UserFormData as a, type PartnerFormData as b, type TestersFormData as c, type CreateTestersFormData as d, type AdFormData as e, type CreateAdFormData as f, type CreatePartnerFormData as g, type UserActivityEvent as h, type StripeSubscription as i, type UserActivity as j,
|
|
166
|
+
export { type AdType as A, type CreateUserFormData as C, EnumAdStatus as E, type PartnerType as P, type SubscriptionStatusData as S, type TesterType as T, type UserType as U, type UserFormData as a, type PartnerFormData as b, type TestersFormData as c, type CreateTestersFormData as d, type AdFormData as e, type CreateAdFormData as f, type CreatePartnerFormData as g, type UserActivityEvent as h, type StripeSubscription as i, type UserActivity as j, type UserLicenceType as k, EnumAdShowOn as l, EnumAdType as m, EnumAdStyle as n };
|