@timardex/cluemart-shared 1.2.13 → 1.2.15
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-D6PyfsyB.d.mts → ad-BY7DQZFI.d.mts} +1 -1
- package/dist/{ad-vOHYPnqC.d.ts → ad-CG4AaK6P.d.ts} +1 -1
- package/dist/{auth-DETM5FhC.d.mts → auth-BVGs-5Vm.d.mts} +1 -1
- package/dist/{auth-CS7JARU5.d.ts → auth-BhUIvvZ2.d.ts} +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-DfRb-Tdc.d.ts → global-BA84KF8J.d.ts} +4 -2
- package/dist/{global-BpCkzdeB.d.mts → global-BEqzo5Z2.d.mts} +4 -2
- package/dist/graphql/index.cjs +196 -208
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +2 -2
- package/dist/graphql/index.d.ts +2 -2
- package/dist/graphql/index.mjs +146 -158
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.d.mts +3 -3
- package/dist/hooks/index.d.ts +3 -3
- package/dist/index.cjs +196 -208
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.mjs +146 -158
- package/dist/index.mjs.map +1 -1
- 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
1
|
import { EnumOSPlatform, EnumResourceType, EnumUserLicence, EnumUserRole } from './enums/index.mjs';
|
|
2
|
-
import { C as Category, x as CreateFormData, o as ResourceImageType, P as PartnerType, T as TermsAgreement, p as SocialMediaType } from './global-
|
|
2
|
+
import { C as Category, x as CreateFormData, o as ResourceImageType, P as PartnerType, T as TermsAgreement, p as SocialMediaType } from './global-BEqzo5Z2.mjs';
|
|
3
3
|
|
|
4
4
|
interface TestersFormData {
|
|
5
5
|
categories?: Category[] | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumOSPlatform, EnumResourceType, EnumUserLicence, EnumUserRole } from './enums/index.js';
|
|
2
|
-
import { C as Category, x as CreateFormData, o as ResourceImageType, P as PartnerType, T as TermsAgreement, p as SocialMediaType } from './global-
|
|
2
|
+
import { C as Category, x as CreateFormData, o as ResourceImageType, P as PartnerType, T as TermsAgreement, p as SocialMediaType } from './global-BA84KF8J.js';
|
|
3
3
|
|
|
4
4
|
interface TestersFormData {
|
|
5
5
|
categories?: Category[] | null;
|
|
@@ -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-BEqzo5Z2.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-BA84KF8J.js';
|
|
2
2
|
import 'react-hook-form';
|
|
3
3
|
import '../enums/index.js';
|
|
4
4
|
|
|
@@ -236,8 +236,10 @@ type BaseResourceType = Omit<BaseResourceTypeFormData, "_id" | "coverUpload" | "
|
|
|
236
236
|
deletedAt: string | null;
|
|
237
237
|
owner: OwnerType;
|
|
238
238
|
posterUsage?: PosterUsageType | null;
|
|
239
|
-
|
|
240
|
-
|
|
239
|
+
relations: {
|
|
240
|
+
relationId: string | null;
|
|
241
|
+
relationDates: RelationDate[] | null;
|
|
242
|
+
}[] | null;
|
|
241
243
|
updatedAt: string;
|
|
242
244
|
};
|
|
243
245
|
type LocationType = {
|
|
@@ -236,8 +236,10 @@ type BaseResourceType = Omit<BaseResourceTypeFormData, "_id" | "coverUpload" | "
|
|
|
236
236
|
deletedAt: string | null;
|
|
237
237
|
owner: OwnerType;
|
|
238
238
|
posterUsage?: PosterUsageType | null;
|
|
239
|
-
|
|
240
|
-
|
|
239
|
+
relations: {
|
|
240
|
+
relationId: string | null;
|
|
241
|
+
relationDates: RelationDate[] | null;
|
|
242
|
+
}[] | null;
|
|
241
243
|
updatedAt: string;
|
|
242
244
|
};
|
|
243
245
|
type LocationType = {
|