@timardex/cluemart-shared 1.4.34 → 1.4.36
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/{chunk-FWQCXOHJ.mjs → chunk-3XCNU5MU.mjs} +5 -4
- package/dist/{chunk-FWQCXOHJ.mjs.map → chunk-3XCNU5MU.mjs.map} +1 -1
- package/dist/{chunk-B3564QBA.mjs → chunk-B5HXAEH4.mjs} +1 -2
- package/dist/{chunk-B3564QBA.mjs.map → chunk-B5HXAEH4.mjs.map} +1 -1
- package/dist/{chunk-VK7YXMD5.mjs → chunk-JKQ4GVSJ.mjs} +7 -7
- package/dist/{chunk-VK7YXMD5.mjs.map → chunk-JKQ4GVSJ.mjs.map} +1 -1
- package/dist/formFields/index.cjs +6 -6
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.mjs +1 -1
- package/dist/graphql/index.cjs +4 -3
- 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 +1 -1
- package/dist/hooks/index.cjs +21 -5
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.mjs +20 -4
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +27 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +6 -9
- package/dist/index.d.ts +6 -9
- package/dist/index.mjs +27 -11
- package/dist/index.mjs.map +1 -1
- package/dist/{post-BFyga46l.d.mts → post-DklGTzDA.d.mts} +6 -9
- package/dist/{post-zekOa7mw.d.ts → post-vmmaQ9XX.d.ts} +6 -9
- package/dist/types/index.cjs +0 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -269,7 +269,6 @@ declare enum EnumPostType {
|
|
|
269
269
|
DAILY_POLL = "daily_poll"
|
|
270
270
|
}
|
|
271
271
|
declare enum EnumPostContentType {
|
|
272
|
-
COVER = "cover",
|
|
273
272
|
IMAGE = "image",
|
|
274
273
|
LIST = "list",
|
|
275
274
|
TEXTAREA = "textarea",
|
|
@@ -279,10 +278,6 @@ type PostFileInput = {
|
|
|
279
278
|
source: File;
|
|
280
279
|
title?: string;
|
|
281
280
|
};
|
|
282
|
-
type PostContentCover = {
|
|
283
|
-
cover: ResourceImageType;
|
|
284
|
-
coverUpload?: PostFileInput | null;
|
|
285
|
-
};
|
|
286
281
|
type PostContentTextarea = {
|
|
287
282
|
textarea: {
|
|
288
283
|
title?: string;
|
|
@@ -307,7 +302,7 @@ type PostContentList = {
|
|
|
307
302
|
}[];
|
|
308
303
|
};
|
|
309
304
|
};
|
|
310
|
-
type PostContentData =
|
|
305
|
+
type PostContentData = PostContentTextarea | PostContentImage | PostContentVideo | PostContentList;
|
|
311
306
|
type PostContentFormData = {
|
|
312
307
|
contentData?: PostContentData | null;
|
|
313
308
|
contentOrder?: number | null;
|
|
@@ -317,6 +312,8 @@ interface PostFormData {
|
|
|
317
312
|
active: boolean;
|
|
318
313
|
caption: string;
|
|
319
314
|
content: PostContentFormData[];
|
|
315
|
+
cover?: ResourceImageType | null;
|
|
316
|
+
coverUpload?: PostFileInput | null;
|
|
320
317
|
postType: EnumPostType;
|
|
321
318
|
resource?: {
|
|
322
319
|
resourceId: string;
|
|
@@ -327,9 +324,9 @@ interface PostFormData {
|
|
|
327
324
|
}
|
|
328
325
|
type CreatePostFormData = CreateFormData<PostFormData>;
|
|
329
326
|
type PostContentType = Omit<PostContentFormData, "contentData"> & {
|
|
330
|
-
contentData: Omit<PostContentData, "imagesUpload"
|
|
327
|
+
contentData: Omit<PostContentData, "imagesUpload">;
|
|
331
328
|
};
|
|
332
|
-
type PostType = Omit<PostFormData, "content"> & {
|
|
329
|
+
type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
|
|
333
330
|
_id: string;
|
|
334
331
|
content: PostContentType[];
|
|
335
332
|
createdAt: Date;
|
|
@@ -337,4 +334,4 @@ type PostType = Omit<PostFormData, "content"> & {
|
|
|
337
334
|
updatedAt: Date | null;
|
|
338
335
|
};
|
|
339
336
|
|
|
340
|
-
export { type AdType as A, type
|
|
337
|
+
export { type AdType as A, type PostContentVideo as B, type CreateUserFormData as C, type PostFileInput as D, EnumAdStatus as E, type StripeSubscription as F, type SubscriptionPlanData as G, type SubscriptionPricingData as H, type TesterEvent as I, type TesterVendor as J, type UserActivity as K, type UserActivityEvent as L, OrganizedMarketCount as O, type PartnerType as P, type SubscriptionPlansResponse as S, type TesterType as T, type UserType as U, VendorSellingFrequency as V, type SubscriptionStatusData as a, type PostType as b, EnumPostType as c, type AppSettingsType as d, type UserFormData as e, type PartnerFormData as f, type TesterFormData as g, type CreateTesterFormData as h, type AdFormData as i, type CreateAdFormData as j, type CreatePartnerFormData as k, type PostFormData as l, type CreatePostFormData as m, type AppSettingsFormData as n, type CreateAppSettingsFormData as o, EnumAdShowOn as p, EnumAdStyle as q, EnumAdType as r, EnumPostContentType as s, OrganizerMarketFrequency as t, type PostContentData as u, type PostContentFormData as v, type PostContentImage as w, type PostContentList as x, type PostContentTextarea as y, type PostContentType as z };
|
|
@@ -269,7 +269,6 @@ declare enum EnumPostType {
|
|
|
269
269
|
DAILY_POLL = "daily_poll"
|
|
270
270
|
}
|
|
271
271
|
declare enum EnumPostContentType {
|
|
272
|
-
COVER = "cover",
|
|
273
272
|
IMAGE = "image",
|
|
274
273
|
LIST = "list",
|
|
275
274
|
TEXTAREA = "textarea",
|
|
@@ -279,10 +278,6 @@ type PostFileInput = {
|
|
|
279
278
|
source: File;
|
|
280
279
|
title?: string;
|
|
281
280
|
};
|
|
282
|
-
type PostContentCover = {
|
|
283
|
-
cover: ResourceImageType;
|
|
284
|
-
coverUpload?: PostFileInput | null;
|
|
285
|
-
};
|
|
286
281
|
type PostContentTextarea = {
|
|
287
282
|
textarea: {
|
|
288
283
|
title?: string;
|
|
@@ -307,7 +302,7 @@ type PostContentList = {
|
|
|
307
302
|
}[];
|
|
308
303
|
};
|
|
309
304
|
};
|
|
310
|
-
type PostContentData =
|
|
305
|
+
type PostContentData = PostContentTextarea | PostContentImage | PostContentVideo | PostContentList;
|
|
311
306
|
type PostContentFormData = {
|
|
312
307
|
contentData?: PostContentData | null;
|
|
313
308
|
contentOrder?: number | null;
|
|
@@ -317,6 +312,8 @@ interface PostFormData {
|
|
|
317
312
|
active: boolean;
|
|
318
313
|
caption: string;
|
|
319
314
|
content: PostContentFormData[];
|
|
315
|
+
cover?: ResourceImageType | null;
|
|
316
|
+
coverUpload?: PostFileInput | null;
|
|
320
317
|
postType: EnumPostType;
|
|
321
318
|
resource?: {
|
|
322
319
|
resourceId: string;
|
|
@@ -327,9 +324,9 @@ interface PostFormData {
|
|
|
327
324
|
}
|
|
328
325
|
type CreatePostFormData = CreateFormData<PostFormData>;
|
|
329
326
|
type PostContentType = Omit<PostContentFormData, "contentData"> & {
|
|
330
|
-
contentData: Omit<PostContentData, "imagesUpload"
|
|
327
|
+
contentData: Omit<PostContentData, "imagesUpload">;
|
|
331
328
|
};
|
|
332
|
-
type PostType = Omit<PostFormData, "content"> & {
|
|
329
|
+
type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
|
|
333
330
|
_id: string;
|
|
334
331
|
content: PostContentType[];
|
|
335
332
|
createdAt: Date;
|
|
@@ -337,4 +334,4 @@ type PostType = Omit<PostFormData, "content"> & {
|
|
|
337
334
|
updatedAt: Date | null;
|
|
338
335
|
};
|
|
339
336
|
|
|
340
|
-
export { type AdType as A, type
|
|
337
|
+
export { type AdType as A, type PostContentVideo as B, type CreateUserFormData as C, type PostFileInput as D, EnumAdStatus as E, type StripeSubscription as F, type SubscriptionPlanData as G, type SubscriptionPricingData as H, type TesterEvent as I, type TesterVendor as J, type UserActivity as K, type UserActivityEvent as L, OrganizedMarketCount as O, type PartnerType as P, type SubscriptionPlansResponse as S, type TesterType as T, type UserType as U, VendorSellingFrequency as V, type SubscriptionStatusData as a, type PostType as b, EnumPostType as c, type AppSettingsType as d, type UserFormData as e, type PartnerFormData as f, type TesterFormData as g, type CreateTesterFormData as h, type AdFormData as i, type CreateAdFormData as j, type CreatePartnerFormData as k, type PostFormData as l, type CreatePostFormData as m, type AppSettingsFormData as n, type CreateAppSettingsFormData as o, EnumAdShowOn as p, EnumAdStyle as q, EnumAdType as r, EnumPostContentType as s, OrganizerMarketFrequency as t, type PostContentData as u, type PostContentFormData as v, type PostContentImage as w, type PostContentList as x, type PostContentTextarea as y, type PostContentType as z };
|
package/dist/types/index.cjs
CHANGED
|
@@ -108,7 +108,6 @@ var EnumPostType = /* @__PURE__ */ ((EnumPostType2) => {
|
|
|
108
108
|
return EnumPostType2;
|
|
109
109
|
})(EnumPostType || {});
|
|
110
110
|
var EnumPostContentType = /* @__PURE__ */ ((EnumPostContentType2) => {
|
|
111
|
-
EnumPostContentType2["COVER"] = "cover";
|
|
112
111
|
EnumPostContentType2["IMAGE"] = "image";
|
|
113
112
|
EnumPostContentType2["LIST"] = "list";
|
|
114
113
|
EnumPostContentType2["TEXTAREA"] = "textarea";
|
package/dist/types/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/types/index.ts","../../src/types/auth.ts","../../src/types/tester.ts","../../src/types/ad.ts","../../src/types/resourceActivities.ts","../../src/types/post.ts"],"sourcesContent":["export * from \"./admin\";\nexport * from \"./auth\";\nexport * from \"./chat\";\nexport * from \"./contactUs\";\nexport * from \"./global\";\nexport * from \"./event\";\nexport * from \"./notification\";\nexport * from \"./poster\";\nexport * from \"./relation\";\nexport * from \"./vendor\";\nexport * from \"./tester\";\nexport * from \"./user\";\nexport * from \"./ad\";\nexport * from \"./resourceActivities\";\nexport * from \"./partner\";\nexport * from \"./post\";\nexport * from \"./appSettings\";\nexport * from \"./googleImportedMarket\";\n","import { CreateFormData, EnumOSPlatform, TermsAgreement } from \"src\";\n\nexport enum EnumVerificationType {\n REGISTER = \"register\",\n RESET_PASSWORD = \"resetPassword\",\n TESTER_VALIDATION = \"testerValidation\",\n}\n\nexport type LoginFormData = {\n email: string;\n isAdminPage?: boolean;\n password: string;\n platform?: EnumOSPlatform;\n};\n\nexport type CreateLoginFormData = CreateFormData<LoginFormData>;\n\nexport type RegisterFormData = {\n email: string;\n firstName: string;\n lastName: string;\n password: string;\n platform?: EnumOSPlatform;\n preferredRegion: string;\n termsAgreement?: TermsAgreement | null;\n};\n\nexport type CreateRegisterFormData = CreateFormData<RegisterFormData>;\n\nexport type RequestPasswordResetFormData = {\n email: string;\n};\n\nexport type CreateRequestPasswordResetFormData =\n CreateFormData<RequestPasswordResetFormData>;\n\nexport type ResetPasswordFormData = {\n confirmPassword: string;\n email: string;\n password: string;\n};\n\nexport type CreateResetPasswordFormData = CreateFormData<ResetPasswordFormData>;\n\nexport type ValidateVerificationTokenFormData = {\n email: string;\n verificationToken: string;\n verificationType?: EnumVerificationType;\n};\n\nexport type CreateValidateVerificationTokenFormData =\n CreateFormData<ValidateVerificationTokenFormData>;\n","import { EnumOSPlatform, EnumResourceType } from \"src/enums\";\n\nimport { Category, CreateFormData } from \"./global\";\n\nexport enum OrganizedMarketCount {\n ONE = \"One\",\n TWO_TO_THREE = \"Two_to_Three\",\n FOUR_TO_FIVE = \"Four_to_Five\",\n MORE_THAN_FIVE = \"More_than_Five\",\n}\n\nexport enum VendorSellingFrequency {\n TWICE_A_WEEK = \"Two_to_Three_times_a_week\",\n ONCE_A_WEEK = \"Once_a_week\",\n ONE_TO_TWO_TIMES_A_MONTH = \"One_to_Two_times_a_month\",\n LESS_OFTEN = \"Less_often\",\n}\n\nexport enum OrganizerMarketFrequency {\n WEEKLY = \"Weekly\",\n FORTNIGHTLY = \"Fortnightly\",\n MONTHLY = \"Monthly\",\n SEASONAL = \"Seasonal\",\n}\n\nexport type TesterVendor = {\n categories: Category[];\n marketsAttended: { name: string; city: string }[];\n productsOrServices: string;\n sellingFrequency: VendorSellingFrequency;\n yearlySellingApprox: number;\n questionary: {\n appearInVideoIntroduction?: boolean; // Q15 (Yes / No)\n applyToAtLeastOneMarket: boolean; // Q11\n completeFeedbackQuestionnaire: boolean; // Q13\n excitementAboutApp?: string; // Q17\n sendPhotoForSocialMedia?: boolean; // Q14 (Yes / No)\n socialMediaFeatureReason?: string; // Q16 (optional free text)\n testingPeriodConcerns?: string; // Q19 (optional)\n tryVisitorFeatures: boolean; // Q12\n uploadStallProfileFirstWeek: boolean; // Q10\n usefulnessExpectations?: string; // Q18\n };\n};\n\nexport type TesterEvent = {\n /** Organizer background */\n organizedMarketCount: OrganizedMarketCount;\n markets: {\n name: string;\n cityOrVenue: string;\n frequency: OrganizerMarketFrequency;\n averageStallCount: number;\n }[];\n questionary: {\n allowMarketingAppearance?: boolean;\n completeFinalQuestionnaire: boolean;\n interestedInCharityInitiative?: boolean;\n inviteStallholders: boolean;\n manageApplicationsAndCommunication: boolean;\n completeMarketProfileFirstWeek: boolean;\n spaceForClueMart?: boolean;\n uploadStallList: boolean;\n organizerExpectations?: string;\n dailyCoordinationNeeds?: string;\n };\n};\n\nexport interface TesterFormData {\n businessName: string;\n consents: {\n privacyConsent: boolean;\n betaTestConsent: boolean;\n };\n email: string;\n event?: TesterEvent | null;\n firstName: string;\n lastName: string;\n mobilePhone: string;\n osType: EnumOSPlatform;\n region: string;\n resourceType: EnumResourceType;\n vendor?: TesterVendor | null;\n}\n\nexport type CreateTesterFormData = CreateFormData<TesterFormData>;\n\nexport interface TesterType extends TesterFormData {\n _id: string;\n active: boolean;\n approved: boolean;\n createdAt: Date;\n updatedAt: Date | null;\n}\n","import { EnumResourceType } from \"src/enums\";\n\nimport { CreateFormData, SocialMediaType } from \"./global\";\n\nexport enum EnumAdShowOn {\n EVENTS_PAGE = \"Events_page\",\n FRONT_PAGE = \"Front_page\",\n PARTNERS_PAGE = \"Partners_page\",\n VENDORS_PAGE = \"Vendors_page\",\n}\n\nexport enum EnumAdStatus {\n ACTIVE = \"Active\",\n PAUSED = \"Paused\",\n EXPIRED = \"Expired\",\n}\n\nexport enum EnumAdType {\n SPONSORED = \"Sponsored\",\n FREE = \"Free\",\n}\n\nexport enum EnumAdStyle {\n BLOOM = \"Bloom\",\n RISE = \"Rise\",\n}\n\nexport interface AdFormData {\n active: boolean;\n adStyle: EnumAdStyle;\n adType: EnumAdType;\n clui?: string | null;\n end: Date; // ISO date string\n resourceCover: string;\n resourceDescription: string;\n resourceId: string;\n resourceLogo?: string | null;\n resourceName: string;\n resourceRegion: string;\n resourceType: EnumResourceType;\n showOn: EnumAdShowOn;\n socialMedia?: SocialMediaType[] | null;\n start?: Date; // ISO date string\n status: EnumAdStatus;\n targetRegion?: string | null;\n}\n\nexport type CreateAdFormData = CreateFormData<AdFormData>;\n\nexport interface AdType extends AdFormData {\n _id: string;\n clicks?: number; // How many times the ad was clicked\n createdAt: Date;\n impressions?: number; // How often the ad was seen\n start: Date; // ISO date string\n updatedAt: Date | null;\n}\n","import {\n EnumEventDateStatus,\n EnumOSPlatform,\n EnumResourceType,\n} from \"src/enums\";\n\nimport { LocationGeoType } from \"./global\";\n\nexport enum EnumActivity {\n FAVORITE = \"FAVORITE\",\n GOING = \"GOING\",\n INTERESTED = \"INTERESTED\",\n PRESENT = \"PRESENT\",\n VIEW = \"VIEW\",\n}\n\nexport type ResourceActivityEntry = {\n activityType: EnumActivity;\n location: LocationGeoType | null;\n dateStatus?: EnumEventDateStatus | null;\n startDate?: string | null;\n startTime?: string | null;\n timestamp: Date;\n userAgent: EnumOSPlatform;\n userId?: string | null;\n};\n\nexport type ResourceActivityType = {\n _id: string;\n resourceType: EnumResourceType;\n resourceId: string;\n activity: ResourceActivityEntry[];\n};\n\nexport type ResourceActivityInputType = {\n resourceId: string;\n resourceType: EnumResourceType;\n activity: Omit<ResourceActivityEntry, \"timestamp\">;\n};\n","import { EnumResourceType } from \"src/enums\";\n\nimport { CreateFormData, ResourceImageType } from \"./global\";\n\nexport enum EnumPostType {\n DAILY_MEETS = \"daily_meets\",\n DAILY_TIPS = \"daily_tips\",\n DAILY_POLL = \"daily_poll\",\n}\n\nexport enum EnumPostContentType {\n COVER = \"cover\",\n IMAGE = \"image\",\n LIST = \"list\",\n TEXTAREA = \"textarea\",\n VIDEO = \"video\",\n}\n\nexport type PostFileInput = {\n source: File;\n title?: string;\n};\n\nexport type PostContentCover = {\n cover: ResourceImageType;\n coverUpload?: PostFileInput | null;\n};\n\nexport type PostContentTextarea = {\n textarea: {\n title?: string;\n data: string;\n };\n};\n\nexport type PostContentImage = {\n images: ResourceImageType[] | null;\n imagesUpload?: PostFileInput[] | null;\n};\n\nexport type PostContentVideo = {\n video: {\n source: string;\n title?: string;\n };\n};\n\nexport type PostContentList = {\n list: {\n title?: string;\n items: {\n text: string;\n }[];\n };\n};\n\nexport type PostContentData =\n | PostContentCover\n | PostContentTextarea\n | PostContentImage\n | PostContentVideo\n | PostContentList;\n\nexport type PostContentFormData = {\n contentData?: PostContentData | null;\n contentOrder?: number | null;\n contentType?: EnumPostContentType | null;\n};\n\nexport interface PostFormData {\n active: boolean;\n caption: string;\n content: PostContentFormData[];\n postType: EnumPostType;\n resource?: {\n resourceId: string;\n resourceType: EnumResourceType;\n } | null;\n tags?: string[] | null;\n title: string;\n}\n\nexport type CreatePostFormData = CreateFormData<PostFormData>;\n\nexport type PostContentType = Omit<PostContentFormData, \"contentData\"> & {\n contentData: Omit<PostContentData, \"imagesUpload\" | \"coverUpload\">;\n};\n\nexport type PostType = Omit<PostFormData, \"content\"> & {\n _id: string;\n content: PostContentType[];\n createdAt: Date;\n deletedAt: Date | null;\n updatedAt: Date | null;\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACEO,IAAK,uBAAL,kBAAKA,0BAAL;AACL,EAAAA,sBAAA,cAAW;AACX,EAAAA,sBAAA,oBAAiB;AACjB,EAAAA,sBAAA,uBAAoB;AAHV,SAAAA;AAAA,GAAA;;;ACEL,IAAK,uBAAL,kBAAKC,0BAAL;AACL,EAAAA,sBAAA,SAAM;AACN,EAAAA,sBAAA,kBAAe;AACf,EAAAA,sBAAA,kBAAe;AACf,EAAAA,sBAAA,oBAAiB;AAJP,SAAAA;AAAA,GAAA;AAOL,IAAK,yBAAL,kBAAKC,4BAAL;AACL,EAAAA,wBAAA,kBAAe;AACf,EAAAA,wBAAA,iBAAc;AACd,EAAAA,wBAAA,8BAA2B;AAC3B,EAAAA,wBAAA,gBAAa;AAJH,SAAAA;AAAA,GAAA;AAOL,IAAK,2BAAL,kBAAKC,8BAAL;AACL,EAAAA,0BAAA,YAAS;AACT,EAAAA,0BAAA,iBAAc;AACd,EAAAA,0BAAA,aAAU;AACV,EAAAA,0BAAA,cAAW;AAJD,SAAAA;AAAA,GAAA;;;ACdL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,iBAAc;AACd,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,mBAAgB;AAChB,EAAAA,cAAA,kBAAe;AAJL,SAAAA;AAAA,GAAA;AAOL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,YAAS;AACT,EAAAA,cAAA,YAAS;AACT,EAAAA,cAAA,aAAU;AAHA,SAAAA;AAAA,GAAA;AAML,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,YAAA,eAAY;AACZ,EAAAA,YAAA,UAAO;AAFG,SAAAA;AAAA,GAAA;AAKL,IAAK,cAAL,kBAAKC,iBAAL;AACL,EAAAA,aAAA,WAAQ;AACR,EAAAA,aAAA,UAAO;AAFG,SAAAA;AAAA,GAAA;;;ACdL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,cAAW;AACX,EAAAA,cAAA,WAAQ;AACR,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,aAAU;AACV,EAAAA,cAAA,UAAO;AALG,SAAAA;AAAA,GAAA;;;ACJL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,iBAAc;AACd,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,gBAAa;AAHH,SAAAA;AAAA,GAAA;AAML,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,WAAQ;AACR,EAAAA,qBAAA,WAAQ;AACR,EAAAA,qBAAA,UAAO;AACP,EAAAA,qBAAA,cAAW;AACX,EAAAA,qBAAA,WAAQ;AALE,SAAAA;AAAA,GAAA;","names":["EnumVerificationType","OrganizedMarketCount","VendorSellingFrequency","OrganizerMarketFrequency","EnumAdShowOn","EnumAdStatus","EnumAdType","EnumAdStyle","EnumActivity","EnumPostType","EnumPostContentType"]}
|
|
1
|
+
{"version":3,"sources":["../../src/types/index.ts","../../src/types/auth.ts","../../src/types/tester.ts","../../src/types/ad.ts","../../src/types/resourceActivities.ts","../../src/types/post.ts"],"sourcesContent":["export * from \"./admin\";\nexport * from \"./auth\";\nexport * from \"./chat\";\nexport * from \"./contactUs\";\nexport * from \"./global\";\nexport * from \"./event\";\nexport * from \"./notification\";\nexport * from \"./poster\";\nexport * from \"./relation\";\nexport * from \"./vendor\";\nexport * from \"./tester\";\nexport * from \"./user\";\nexport * from \"./ad\";\nexport * from \"./resourceActivities\";\nexport * from \"./partner\";\nexport * from \"./post\";\nexport * from \"./appSettings\";\nexport * from \"./googleImportedMarket\";\n","import { CreateFormData, EnumOSPlatform, TermsAgreement } from \"src\";\n\nexport enum EnumVerificationType {\n REGISTER = \"register\",\n RESET_PASSWORD = \"resetPassword\",\n TESTER_VALIDATION = \"testerValidation\",\n}\n\nexport type LoginFormData = {\n email: string;\n isAdminPage?: boolean;\n password: string;\n platform?: EnumOSPlatform;\n};\n\nexport type CreateLoginFormData = CreateFormData<LoginFormData>;\n\nexport type RegisterFormData = {\n email: string;\n firstName: string;\n lastName: string;\n password: string;\n platform?: EnumOSPlatform;\n preferredRegion: string;\n termsAgreement?: TermsAgreement | null;\n};\n\nexport type CreateRegisterFormData = CreateFormData<RegisterFormData>;\n\nexport type RequestPasswordResetFormData = {\n email: string;\n};\n\nexport type CreateRequestPasswordResetFormData =\n CreateFormData<RequestPasswordResetFormData>;\n\nexport type ResetPasswordFormData = {\n confirmPassword: string;\n email: string;\n password: string;\n};\n\nexport type CreateResetPasswordFormData = CreateFormData<ResetPasswordFormData>;\n\nexport type ValidateVerificationTokenFormData = {\n email: string;\n verificationToken: string;\n verificationType?: EnumVerificationType;\n};\n\nexport type CreateValidateVerificationTokenFormData =\n CreateFormData<ValidateVerificationTokenFormData>;\n","import { EnumOSPlatform, EnumResourceType } from \"src/enums\";\n\nimport { Category, CreateFormData } from \"./global\";\n\nexport enum OrganizedMarketCount {\n ONE = \"One\",\n TWO_TO_THREE = \"Two_to_Three\",\n FOUR_TO_FIVE = \"Four_to_Five\",\n MORE_THAN_FIVE = \"More_than_Five\",\n}\n\nexport enum VendorSellingFrequency {\n TWICE_A_WEEK = \"Two_to_Three_times_a_week\",\n ONCE_A_WEEK = \"Once_a_week\",\n ONE_TO_TWO_TIMES_A_MONTH = \"One_to_Two_times_a_month\",\n LESS_OFTEN = \"Less_often\",\n}\n\nexport enum OrganizerMarketFrequency {\n WEEKLY = \"Weekly\",\n FORTNIGHTLY = \"Fortnightly\",\n MONTHLY = \"Monthly\",\n SEASONAL = \"Seasonal\",\n}\n\nexport type TesterVendor = {\n categories: Category[];\n marketsAttended: { name: string; city: string }[];\n productsOrServices: string;\n sellingFrequency: VendorSellingFrequency;\n yearlySellingApprox: number;\n questionary: {\n appearInVideoIntroduction?: boolean; // Q15 (Yes / No)\n applyToAtLeastOneMarket: boolean; // Q11\n completeFeedbackQuestionnaire: boolean; // Q13\n excitementAboutApp?: string; // Q17\n sendPhotoForSocialMedia?: boolean; // Q14 (Yes / No)\n socialMediaFeatureReason?: string; // Q16 (optional free text)\n testingPeriodConcerns?: string; // Q19 (optional)\n tryVisitorFeatures: boolean; // Q12\n uploadStallProfileFirstWeek: boolean; // Q10\n usefulnessExpectations?: string; // Q18\n };\n};\n\nexport type TesterEvent = {\n /** Organizer background */\n organizedMarketCount: OrganizedMarketCount;\n markets: {\n name: string;\n cityOrVenue: string;\n frequency: OrganizerMarketFrequency;\n averageStallCount: number;\n }[];\n questionary: {\n allowMarketingAppearance?: boolean;\n completeFinalQuestionnaire: boolean;\n interestedInCharityInitiative?: boolean;\n inviteStallholders: boolean;\n manageApplicationsAndCommunication: boolean;\n completeMarketProfileFirstWeek: boolean;\n spaceForClueMart?: boolean;\n uploadStallList: boolean;\n organizerExpectations?: string;\n dailyCoordinationNeeds?: string;\n };\n};\n\nexport interface TesterFormData {\n businessName: string;\n consents: {\n privacyConsent: boolean;\n betaTestConsent: boolean;\n };\n email: string;\n event?: TesterEvent | null;\n firstName: string;\n lastName: string;\n mobilePhone: string;\n osType: EnumOSPlatform;\n region: string;\n resourceType: EnumResourceType;\n vendor?: TesterVendor | null;\n}\n\nexport type CreateTesterFormData = CreateFormData<TesterFormData>;\n\nexport interface TesterType extends TesterFormData {\n _id: string;\n active: boolean;\n approved: boolean;\n createdAt: Date;\n updatedAt: Date | null;\n}\n","import { EnumResourceType } from \"src/enums\";\n\nimport { CreateFormData, SocialMediaType } from \"./global\";\n\nexport enum EnumAdShowOn {\n EVENTS_PAGE = \"Events_page\",\n FRONT_PAGE = \"Front_page\",\n PARTNERS_PAGE = \"Partners_page\",\n VENDORS_PAGE = \"Vendors_page\",\n}\n\nexport enum EnumAdStatus {\n ACTIVE = \"Active\",\n PAUSED = \"Paused\",\n EXPIRED = \"Expired\",\n}\n\nexport enum EnumAdType {\n SPONSORED = \"Sponsored\",\n FREE = \"Free\",\n}\n\nexport enum EnumAdStyle {\n BLOOM = \"Bloom\",\n RISE = \"Rise\",\n}\n\nexport interface AdFormData {\n active: boolean;\n adStyle: EnumAdStyle;\n adType: EnumAdType;\n clui?: string | null;\n end: Date; // ISO date string\n resourceCover: string;\n resourceDescription: string;\n resourceId: string;\n resourceLogo?: string | null;\n resourceName: string;\n resourceRegion: string;\n resourceType: EnumResourceType;\n showOn: EnumAdShowOn;\n socialMedia?: SocialMediaType[] | null;\n start?: Date; // ISO date string\n status: EnumAdStatus;\n targetRegion?: string | null;\n}\n\nexport type CreateAdFormData = CreateFormData<AdFormData>;\n\nexport interface AdType extends AdFormData {\n _id: string;\n clicks?: number; // How many times the ad was clicked\n createdAt: Date;\n impressions?: number; // How often the ad was seen\n start: Date; // ISO date string\n updatedAt: Date | null;\n}\n","import {\n EnumEventDateStatus,\n EnumOSPlatform,\n EnumResourceType,\n} from \"src/enums\";\n\nimport { LocationGeoType } from \"./global\";\n\nexport enum EnumActivity {\n FAVORITE = \"FAVORITE\",\n GOING = \"GOING\",\n INTERESTED = \"INTERESTED\",\n PRESENT = \"PRESENT\",\n VIEW = \"VIEW\",\n}\n\nexport type ResourceActivityEntry = {\n activityType: EnumActivity;\n location: LocationGeoType | null;\n dateStatus?: EnumEventDateStatus | null;\n startDate?: string | null;\n startTime?: string | null;\n timestamp: Date;\n userAgent: EnumOSPlatform;\n userId?: string | null;\n};\n\nexport type ResourceActivityType = {\n _id: string;\n resourceType: EnumResourceType;\n resourceId: string;\n activity: ResourceActivityEntry[];\n};\n\nexport type ResourceActivityInputType = {\n resourceId: string;\n resourceType: EnumResourceType;\n activity: Omit<ResourceActivityEntry, \"timestamp\">;\n};\n","import { EnumResourceType } from \"src/enums\";\n\nimport { CreateFormData, ResourceImageType } from \"./global\";\n\nexport enum EnumPostType {\n DAILY_MEETS = \"daily_meets\",\n DAILY_TIPS = \"daily_tips\",\n DAILY_POLL = \"daily_poll\",\n}\n\nexport enum EnumPostContentType {\n IMAGE = \"image\",\n LIST = \"list\",\n TEXTAREA = \"textarea\",\n VIDEO = \"video\",\n}\n\nexport type PostFileInput = {\n source: File;\n title?: string;\n};\n\nexport type PostContentTextarea = {\n textarea: {\n title?: string;\n data: string;\n };\n};\n\nexport type PostContentImage = {\n images: ResourceImageType[] | null;\n imagesUpload?: PostFileInput[] | null;\n};\n\nexport type PostContentVideo = {\n video: {\n source: string;\n title?: string;\n };\n};\n\nexport type PostContentList = {\n list: {\n title?: string;\n items: {\n text: string;\n }[];\n };\n};\n\nexport type PostContentData =\n | PostContentTextarea\n | PostContentImage\n | PostContentVideo\n | PostContentList;\n\nexport type PostContentFormData = {\n contentData?: PostContentData | null;\n contentOrder?: number | null;\n contentType?: EnumPostContentType | null;\n};\n\nexport interface PostFormData {\n active: boolean;\n caption: string;\n content: PostContentFormData[];\n cover?: ResourceImageType | null;\n coverUpload?: PostFileInput | null;\n postType: EnumPostType;\n resource?: {\n resourceId: string;\n resourceType: EnumResourceType;\n } | null;\n tags?: string[] | null;\n title: string;\n}\n\nexport type CreatePostFormData = CreateFormData<PostFormData>;\n\nexport type PostContentType = Omit<PostContentFormData, \"contentData\"> & {\n contentData: Omit<PostContentData, \"imagesUpload\">;\n};\n\nexport type PostType = Omit<PostFormData, \"content\" | \"coverUpload\"> & {\n _id: string;\n content: PostContentType[];\n createdAt: Date;\n deletedAt: Date | null;\n updatedAt: Date | null;\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACEO,IAAK,uBAAL,kBAAKA,0BAAL;AACL,EAAAA,sBAAA,cAAW;AACX,EAAAA,sBAAA,oBAAiB;AACjB,EAAAA,sBAAA,uBAAoB;AAHV,SAAAA;AAAA,GAAA;;;ACEL,IAAK,uBAAL,kBAAKC,0BAAL;AACL,EAAAA,sBAAA,SAAM;AACN,EAAAA,sBAAA,kBAAe;AACf,EAAAA,sBAAA,kBAAe;AACf,EAAAA,sBAAA,oBAAiB;AAJP,SAAAA;AAAA,GAAA;AAOL,IAAK,yBAAL,kBAAKC,4BAAL;AACL,EAAAA,wBAAA,kBAAe;AACf,EAAAA,wBAAA,iBAAc;AACd,EAAAA,wBAAA,8BAA2B;AAC3B,EAAAA,wBAAA,gBAAa;AAJH,SAAAA;AAAA,GAAA;AAOL,IAAK,2BAAL,kBAAKC,8BAAL;AACL,EAAAA,0BAAA,YAAS;AACT,EAAAA,0BAAA,iBAAc;AACd,EAAAA,0BAAA,aAAU;AACV,EAAAA,0BAAA,cAAW;AAJD,SAAAA;AAAA,GAAA;;;ACdL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,iBAAc;AACd,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,mBAAgB;AAChB,EAAAA,cAAA,kBAAe;AAJL,SAAAA;AAAA,GAAA;AAOL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,YAAS;AACT,EAAAA,cAAA,YAAS;AACT,EAAAA,cAAA,aAAU;AAHA,SAAAA;AAAA,GAAA;AAML,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,YAAA,eAAY;AACZ,EAAAA,YAAA,UAAO;AAFG,SAAAA;AAAA,GAAA;AAKL,IAAK,cAAL,kBAAKC,iBAAL;AACL,EAAAA,aAAA,WAAQ;AACR,EAAAA,aAAA,UAAO;AAFG,SAAAA;AAAA,GAAA;;;ACdL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,cAAW;AACX,EAAAA,cAAA,WAAQ;AACR,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,aAAU;AACV,EAAAA,cAAA,UAAO;AALG,SAAAA;AAAA,GAAA;;;ACJL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,iBAAc;AACd,EAAAA,cAAA,gBAAa;AACb,EAAAA,cAAA,gBAAa;AAHH,SAAAA;AAAA,GAAA;AAML,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,WAAQ;AACR,EAAAA,qBAAA,UAAO;AACP,EAAAA,qBAAA,cAAW;AACX,EAAAA,qBAAA,WAAQ;AAJE,SAAAA;AAAA,GAAA;","names":["EnumVerificationType","OrganizedMarketCount","VendorSellingFrequency","OrganizerMarketFrequency","EnumAdShowOn","EnumAdStatus","EnumAdType","EnumAdStyle","EnumActivity","EnumPostType","EnumPostContentType"]}
|
package/dist/types/index.d.mts
CHANGED
|
@@ -3,7 +3,7 @@ export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginF
|
|
|
3
3
|
export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-BtWfy0kk.mjs';
|
|
4
4
|
import { q as ResourceImageType, D as DateTimeType, L as LocationType, r as RelationDate } from '../global-V7YaFCJR.mjs';
|
|
5
5
|
export { A as AssociateType, s as BaseResourceType, B as BaseResourceTypeFormData, C as Category, m as CreateEventFormData, o as CreateEventInfoFormData, t as CreateFormData, u as CreateUnregisteredVendorFormData, i as CreateVendorFormData, k as CreateVendorInfoFormData, v as DateTimeWithPriceType, w as DeviceInfo, l as EventFormData, n as EventInfoFormData, c as EventInfoType, b as EventListItemType, x as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, y as LocationGeoType, M as MapMultiLocation, N as Nullable, O as OptionItem, z as OwnerType, P as PaymentInfoType, H as PosterUsageType, J as Region, d as RelationType, R as Requirement, e as ResourceConnectionsType, K as ResourceContactDetailsType, Q as SocialMediaType, S as StallType, T as Subcategory, W as SubcategoryItems, X as TermsAgreement, p as UnregisteredVendorFormData, Y as UnregisteredVendorInvitationType, U as UnregisteredVendorType, g as UserLicenceType, Z as VendorAttributes, h as VendorFormData, j as VendorInfoFormData, f as VendorInfoType, _ as VendorLocation, $ as VendorMenuType, V as VendorType } from '../global-V7YaFCJR.mjs';
|
|
6
|
-
export { i as AdFormData, A as AdType, n as AppSettingsFormData, d as AppSettingsType, j as CreateAdFormData, o as CreateAppSettingsFormData, k as CreatePartnerFormData, m as CreatePostFormData, h as CreateTesterFormData, C as CreateUserFormData, p as EnumAdShowOn, E as EnumAdStatus, q as EnumAdStyle, r as EnumAdType, s as EnumPostContentType, c as EnumPostType, O as OrganizedMarketCount, t as OrganizerMarketFrequency, f as PartnerFormData, P as PartnerType, u as
|
|
6
|
+
export { i as AdFormData, A as AdType, n as AppSettingsFormData, d as AppSettingsType, j as CreateAdFormData, o as CreateAppSettingsFormData, k as CreatePartnerFormData, m as CreatePostFormData, h as CreateTesterFormData, C as CreateUserFormData, p as EnumAdShowOn, E as EnumAdStatus, q as EnumAdStyle, r as EnumAdType, s as EnumPostContentType, c as EnumPostType, O as OrganizedMarketCount, t as OrganizerMarketFrequency, f as PartnerFormData, P as PartnerType, u as PostContentData, v as PostContentFormData, w as PostContentImage, x as PostContentList, y as PostContentTextarea, z as PostContentType, B as PostContentVideo, D as PostFileInput, l as PostFormData, b as PostType, F as StripeSubscription, G as SubscriptionPlanData, S as SubscriptionPlansResponse, H as SubscriptionPricingData, a as SubscriptionStatusData, I as TesterEvent, g as TesterFormData, T as TesterType, J as TesterVendor, K as UserActivity, L as UserActivityEvent, e as UserFormData, U as UserType, V as VendorSellingFrequency } from '../post-DklGTzDA.mjs';
|
|
7
7
|
import 'react-hook-form';
|
|
8
8
|
|
|
9
9
|
interface AdminUpdateResourceType {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginF
|
|
|
3
3
|
export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-fgwhRy0j.js';
|
|
4
4
|
import { q as ResourceImageType, D as DateTimeType, L as LocationType, r as RelationDate } from '../global-DgA-5e-O.js';
|
|
5
5
|
export { A as AssociateType, s as BaseResourceType, B as BaseResourceTypeFormData, C as Category, m as CreateEventFormData, o as CreateEventInfoFormData, t as CreateFormData, u as CreateUnregisteredVendorFormData, i as CreateVendorFormData, k as CreateVendorInfoFormData, v as DateTimeWithPriceType, w as DeviceInfo, l as EventFormData, n as EventInfoFormData, c as EventInfoType, b as EventListItemType, x as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, y as LocationGeoType, M as MapMultiLocation, N as Nullable, O as OptionItem, z as OwnerType, P as PaymentInfoType, H as PosterUsageType, J as Region, d as RelationType, R as Requirement, e as ResourceConnectionsType, K as ResourceContactDetailsType, Q as SocialMediaType, S as StallType, T as Subcategory, W as SubcategoryItems, X as TermsAgreement, p as UnregisteredVendorFormData, Y as UnregisteredVendorInvitationType, U as UnregisteredVendorType, g as UserLicenceType, Z as VendorAttributes, h as VendorFormData, j as VendorInfoFormData, f as VendorInfoType, _ as VendorLocation, $ as VendorMenuType, V as VendorType } from '../global-DgA-5e-O.js';
|
|
6
|
-
export { i as AdFormData, A as AdType, n as AppSettingsFormData, d as AppSettingsType, j as CreateAdFormData, o as CreateAppSettingsFormData, k as CreatePartnerFormData, m as CreatePostFormData, h as CreateTesterFormData, C as CreateUserFormData, p as EnumAdShowOn, E as EnumAdStatus, q as EnumAdStyle, r as EnumAdType, s as EnumPostContentType, c as EnumPostType, O as OrganizedMarketCount, t as OrganizerMarketFrequency, f as PartnerFormData, P as PartnerType, u as
|
|
6
|
+
export { i as AdFormData, A as AdType, n as AppSettingsFormData, d as AppSettingsType, j as CreateAdFormData, o as CreateAppSettingsFormData, k as CreatePartnerFormData, m as CreatePostFormData, h as CreateTesterFormData, C as CreateUserFormData, p as EnumAdShowOn, E as EnumAdStatus, q as EnumAdStyle, r as EnumAdType, s as EnumPostContentType, c as EnumPostType, O as OrganizedMarketCount, t as OrganizerMarketFrequency, f as PartnerFormData, P as PartnerType, u as PostContentData, v as PostContentFormData, w as PostContentImage, x as PostContentList, y as PostContentTextarea, z as PostContentType, B as PostContentVideo, D as PostFileInput, l as PostFormData, b as PostType, F as StripeSubscription, G as SubscriptionPlanData, S as SubscriptionPlansResponse, H as SubscriptionPricingData, a as SubscriptionStatusData, I as TesterEvent, g as TesterFormData, T as TesterType, J as TesterVendor, K as UserActivity, L as UserActivityEvent, e as UserFormData, U as UserType, V as VendorSellingFrequency } from '../post-vmmaQ9XX.js';
|
|
7
7
|
import 'react-hook-form';
|
|
8
8
|
|
|
9
9
|
interface AdminUpdateResourceType {
|
package/dist/types/index.mjs
CHANGED