@timardex/cluemart-shared 1.2.33 → 1.2.35

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.
Files changed (45) hide show
  1. package/dist/{ad-CiYcsJB7.d.mts → ad-CWAaH5Ql.d.mts} +1 -1
  2. package/dist/{ad-BZylIpez.d.ts → ad-D60cy5L4.d.ts} +1 -1
  3. package/dist/{auth-DDtMJHZw.d.mts → auth-BslKse3L.d.mts} +1 -1
  4. package/dist/{auth-CmaB99NK.d.ts → auth-Ch9Nt77g.d.ts} +1 -1
  5. package/dist/{chunk-NPHPFWQH.mjs → chunk-WWL2Q5DN.mjs} +3 -22
  6. package/dist/chunk-WWL2Q5DN.mjs.map +1 -0
  7. package/dist/formFields/index.cjs +0 -7
  8. package/dist/formFields/index.cjs.map +1 -1
  9. package/dist/formFields/index.d.mts +1 -1
  10. package/dist/formFields/index.d.ts +1 -1
  11. package/dist/formFields/index.mjs +0 -7
  12. package/dist/formFields/index.mjs.map +1 -1
  13. package/dist/{global-DVYSZ6LR.d.ts → global-DvxKMAQD.d.ts} +1 -1
  14. package/dist/{global-ExJZRDGR.d.mts → global-j9FEfVZs.d.mts} +1 -1
  15. package/dist/graphql/index.d.mts +2 -2
  16. package/dist/graphql/index.d.ts +2 -2
  17. package/dist/hooks/index.cjs +1 -0
  18. package/dist/hooks/index.cjs.map +1 -1
  19. package/dist/hooks/index.d.mts +3 -3
  20. package/dist/hooks/index.d.ts +3 -3
  21. package/dist/hooks/index.mjs +1 -0
  22. package/dist/hooks/index.mjs.map +1 -1
  23. package/dist/index.cjs +1 -118
  24. package/dist/index.cjs.map +1 -1
  25. package/dist/index.d.mts +1 -3
  26. package/dist/index.d.ts +1 -3
  27. package/dist/index.mjs +1 -117
  28. package/dist/index.mjs.map +1 -1
  29. package/dist/mongoose/index.cjs.map +1 -1
  30. package/dist/mongoose/index.d.mts +3 -3
  31. package/dist/mongoose/index.d.ts +3 -3
  32. package/dist/mongoose/index.mjs +76 -60
  33. package/dist/mongoose/index.mjs.map +1 -1
  34. package/dist/service/index.cjs +6 -142
  35. package/dist/service/index.cjs.map +1 -1
  36. package/dist/service/index.d.mts +2 -4
  37. package/dist/service/index.d.ts +2 -4
  38. package/dist/service/index.mjs +3 -114
  39. package/dist/service/index.mjs.map +1 -1
  40. package/dist/types/index.d.mts +3 -3
  41. package/dist/types/index.d.ts +3 -3
  42. package/dist/utils/index.d.mts +1 -1
  43. package/dist/utils/index.d.ts +1 -1
  44. package/package.json +1 -2
  45. package/dist/chunk-NPHPFWQH.mjs.map +0 -1
@@ -8,9 +8,8 @@ import {
8
8
  EnumAdType
9
9
  } from "../chunk-XXZPSRMS.mjs";
10
10
  import {
11
- NotificationModel,
12
- PushTokenModel
13
- } from "../chunk-NPHPFWQH.mjs";
11
+ NotificationModel
12
+ } from "../chunk-WWL2Q5DN.mjs";
14
13
  import {
15
14
  EnumChatType,
16
15
  EnumEventType,
@@ -441,10 +440,27 @@ var ChatSchema = new MongooseSchema5(
441
440
  );
442
441
  var ChatModel = mongoose5.models.Chat || mongoose5.model("Chat", ChatSchema);
443
442
 
444
- // src/mongoose/ResourceActivity.ts
443
+ // src/mongoose/PushToken.ts
445
444
  import mongoose6 from "mongoose";
446
445
  var MongooseSchema6 = mongoose6.Schema;
447
- var ActivitySchema = new MongooseSchema6(
446
+ var schema3 = new MongooseSchema6(
447
+ {
448
+ platform: {
449
+ enum: Object.values(EnumOSPlatform),
450
+ required: true,
451
+ type: String
452
+ },
453
+ token: { required: true, type: String },
454
+ userId: { required: true, type: mongoose6.Schema.Types.ObjectId }
455
+ },
456
+ { timestamps: true }
457
+ );
458
+ var PushTokenModel = mongoose6.models.PushToken || mongoose6.model("PushToken", schema3);
459
+
460
+ // src/mongoose/ResourceActivity.ts
461
+ import mongoose7 from "mongoose";
462
+ var MongooseSchema7 = mongoose7.Schema;
463
+ var ActivitySchema = new MongooseSchema7(
448
464
  {
449
465
  activityType: {
450
466
  enum: Object.values(EnumActivity),
@@ -475,7 +491,7 @@ var ActivitySchema = new MongooseSchema6(
475
491
  },
476
492
  { _id: false }
477
493
  );
478
- var schema3 = new MongooseSchema6(
494
+ var schema4 = new MongooseSchema7(
479
495
  {
480
496
  activity: { default: [], type: [ActivitySchema] },
481
497
  resourceId: { required: true, type: String },
@@ -487,14 +503,14 @@ var schema3 = new MongooseSchema6(
487
503
  },
488
504
  { timestamps: true }
489
505
  );
490
- schema3.index({ resourceId: 1, resourceType: 1 }, { unique: true });
491
- schema3.index({ "views.location": "2dsphere" });
492
- var ResourceActivityModel = mongoose6.models.ResourceActivity || mongoose6.model("ResourceActivity", schema3);
506
+ schema4.index({ resourceId: 1, resourceType: 1 }, { unique: true });
507
+ schema4.index({ "views.location": "2dsphere" });
508
+ var ResourceActivityModel = mongoose7.models.ResourceActivity || mongoose7.model("ResourceActivity", schema4);
493
509
 
494
510
  // src/mongoose/Testers.ts
495
- import mongoose7 from "mongoose";
496
- var MongooseSchema7 = mongoose7.Schema;
497
- var TesterSchema = new MongooseSchema7(
511
+ import mongoose8 from "mongoose";
512
+ var MongooseSchema8 = mongoose8.Schema;
513
+ var TesterSchema = new MongooseSchema8(
498
514
  {
499
515
  active: { default: false, required: true, type: Boolean },
500
516
  categories: [CategorySchema],
@@ -518,39 +534,39 @@ var TesterSchema = new MongooseSchema7(
518
534
  timestamps: true
519
535
  }
520
536
  );
521
- var TesterModel = mongoose7.models.Tester || mongoose7.model("Tester", TesterSchema);
537
+ var TesterModel = mongoose8.models.Tester || mongoose8.model("Tester", TesterSchema);
522
538
 
523
539
  // src/mongoose/User.ts
524
- import mongoose8 from "mongoose";
525
- var MongooseSchema8 = mongoose8.Schema;
526
- var userActivityEventSchema = new MongooseSchema8(
540
+ import mongoose9 from "mongoose";
541
+ var MongooseSchema9 = mongoose9.Schema;
542
+ var userActivityEventSchema = new MongooseSchema9(
527
543
  {
528
544
  resourceId: {
529
545
  ref: "Event",
530
546
  required: false,
531
- type: mongoose8.Schema.Types.ObjectId
547
+ type: mongoose9.Schema.Types.ObjectId
532
548
  },
533
549
  startDate: { required: false, type: String },
534
550
  startTime: { required: false, type: String }
535
551
  },
536
552
  { _id: false }
537
553
  );
538
- var userActivityFavouritesSchema = new MongooseSchema8(
554
+ var userActivityFavouritesSchema = new MongooseSchema9(
539
555
  {
540
556
  events: {
541
557
  ref: "Event",
542
558
  required: false,
543
- type: [mongoose8.Schema.Types.ObjectId]
559
+ type: [mongoose9.Schema.Types.ObjectId]
544
560
  },
545
561
  vendors: {
546
562
  ref: "Vendor",
547
563
  required: false,
548
- type: [mongoose8.Schema.Types.ObjectId]
564
+ type: [mongoose9.Schema.Types.ObjectId]
549
565
  }
550
566
  },
551
567
  { _id: false }
552
568
  );
553
- var schema4 = new MongooseSchema8(
569
+ var schema5 = new MongooseSchema9(
554
570
  {
555
571
  active: { default: false, required: true, type: Boolean },
556
572
  avatar: ResourceImageTypeSchema,
@@ -559,7 +575,7 @@ var schema4 = new MongooseSchema8(
559
575
  events: {
560
576
  ref: "Event",
561
577
  required: false,
562
- type: [mongoose8.Schema.Types.ObjectId]
578
+ type: [mongoose9.Schema.Types.ObjectId]
563
579
  },
564
580
  firstName: { required: true, type: String },
565
581
  isTester: { default: false, required: false, type: Boolean },
@@ -612,18 +628,18 @@ var schema4 = new MongooseSchema8(
612
628
  vendor: {
613
629
  ref: "Vendor",
614
630
  required: false,
615
- type: mongoose8.Schema.Types.ObjectId
631
+ type: mongoose9.Schema.Types.ObjectId
616
632
  }
617
633
  },
618
634
  { timestamps: true }
619
635
  );
620
- schema4.index({ "partners.email": 1 });
621
- var UserModel = mongoose8.models.User || mongoose8.model("User", schema4);
636
+ schema5.index({ "partners.email": 1 });
637
+ var UserModel = mongoose9.models.User || mongoose9.model("User", schema5);
622
638
 
623
639
  // src/mongoose/VerificationToken.ts
624
- import mongoose9 from "mongoose";
625
- var MongooseSchema9 = mongoose9.Schema;
626
- var schema5 = new MongooseSchema9(
640
+ import mongoose10 from "mongoose";
641
+ var MongooseSchema10 = mongoose10.Schema;
642
+ var schema6 = new MongooseSchema10(
627
643
  {
628
644
  createdAt: {
629
645
  default: Date.now,
@@ -638,12 +654,12 @@ var schema5 = new MongooseSchema9(
638
654
  },
639
655
  { timestamps: true }
640
656
  );
641
- var VerificationTokenModel = mongoose9.models.VerificationToken || mongoose9.model("VerificationToken", schema5);
657
+ var VerificationTokenModel = mongoose10.models.VerificationToken || mongoose10.model("VerificationToken", schema6);
642
658
 
643
659
  // src/mongoose/vendor/Vendor.ts
644
- import mongoose10 from "mongoose";
645
- var MongooseSchema10 = mongoose10.Schema;
646
- var MenuTypeSchema = new MongooseSchema10(
660
+ import mongoose11 from "mongoose";
661
+ var MongooseSchema11 = mongoose11.Schema;
662
+ var MenuTypeSchema = new MongooseSchema11(
647
663
  {
648
664
  description: { required: false, type: String },
649
665
  name: { required: false, type: String },
@@ -653,7 +669,7 @@ var MenuTypeSchema = new MongooseSchema10(
653
669
  { _id: false }
654
670
  // Prevents Mongoose from creating an additional _id field for subdocuments
655
671
  );
656
- var LocationsSchema = new MongooseSchema10(
672
+ var LocationsSchema = new MongooseSchema11(
657
673
  {
658
674
  dateTime: {
659
675
  endDate: { required: false, type: String },
@@ -681,7 +697,7 @@ var LocationsSchema = new MongooseSchema10(
681
697
  { _id: false }
682
698
  // Prevents Mongoose from creating an additional _id field for subdocuments
683
699
  );
684
- var schema6 = new MongooseSchema10(
700
+ var schema7 = new MongooseSchema11(
685
701
  {
686
702
  ...baseResourceFields,
687
703
  // Importing base resource fields from global.ts
@@ -697,7 +713,7 @@ var schema6 = new MongooseSchema10(
697
713
  vendorInfoId: {
698
714
  ref: "VendorInfo",
699
715
  required: false,
700
- type: mongoose10.Schema.Types.ObjectId
716
+ type: mongoose11.Schema.Types.ObjectId
701
717
  },
702
718
  vendorType: {
703
719
  enum: Object.values(EnumVendorType),
@@ -707,24 +723,24 @@ var schema6 = new MongooseSchema10(
707
723
  },
708
724
  { timestamps: true }
709
725
  );
710
- schema6.index({ name: 1 });
711
- schema6.index({ description: 1 });
712
- schema6.index({ region: 1 });
713
- schema6.index({ "categories.name": 1 });
714
- schema6.index({ "partners.email": 1 });
715
- var VendorModel = mongoose10.models.Vendor || mongoose10.model("Vendor", schema6);
726
+ schema7.index({ name: 1 });
727
+ schema7.index({ description: 1 });
728
+ schema7.index({ region: 1 });
729
+ schema7.index({ "categories.name": 1 });
730
+ schema7.index({ "partners.email": 1 });
731
+ var VendorModel = mongoose11.models.Vendor || mongoose11.model("Vendor", schema7);
716
732
 
717
733
  // src/mongoose/vendor/VendorInfo.ts
718
- import mongoose11 from "mongoose";
719
- var MongooseSchema11 = mongoose11.Schema;
720
- var AttributesSchema = new MongooseSchema11(
734
+ import mongoose12 from "mongoose";
735
+ var MongooseSchema12 = mongoose12.Schema;
736
+ var AttributesSchema = new MongooseSchema12(
721
737
  {
722
738
  details: { required: false, type: String },
723
739
  isRequired: { default: false, required: true, type: Boolean }
724
740
  },
725
741
  { _id: false }
726
742
  );
727
- var schema7 = new MongooseSchema11(
743
+ var schema8 = new MongooseSchema12(
728
744
  {
729
745
  compliance: {
730
746
  foodBeverageLicense: { default: false, required: false, type: Boolean },
@@ -758,17 +774,17 @@ var schema7 = new MongooseSchema11(
758
774
  vendorId: {
759
775
  ref: "Vendor",
760
776
  required: true,
761
- type: mongoose11.Schema.Types.ObjectId
777
+ type: mongoose12.Schema.Types.ObjectId
762
778
  }
763
779
  },
764
780
  { timestamps: true }
765
781
  );
766
- var VendorInfoModel = mongoose11.models.VendorInfo || mongoose11.model("VendorInfo", schema7);
782
+ var VendorInfoModel = mongoose12.models.VendorInfo || mongoose12.model("VendorInfo", schema8);
767
783
 
768
784
  // src/mongoose/event/Event.ts
769
- import mongoose12 from "mongoose";
770
- var MongooseSchema12 = mongoose12.Schema;
771
- var locationsSchema = new MongooseSchema12(
785
+ import mongoose13 from "mongoose";
786
+ var MongooseSchema13 = mongoose13.Schema;
787
+ var locationsSchema = new MongooseSchema13(
772
788
  {
773
789
  city: { required: true, type: String },
774
790
  coordinates: {
@@ -791,7 +807,7 @@ var locationsSchema = new MongooseSchema12(
791
807
  { _id: false }
792
808
  // Prevents Mongoose from creating an additional _id field for subdocuments
793
809
  );
794
- var dateTimeSchema2 = new MongooseSchema12(
810
+ var dateTimeSchema2 = new MongooseSchema13(
795
811
  {
796
812
  endDate: { required: true, type: String },
797
813
  endTime: { required: true, type: String },
@@ -801,7 +817,7 @@ var dateTimeSchema2 = new MongooseSchema12(
801
817
  { _id: false }
802
818
  // Prevents Mongoose from creating an additional _id field for subdocuments
803
819
  );
804
- var schema8 = new MongooseSchema12(
820
+ var schema9 = new MongooseSchema13(
805
821
  {
806
822
  ...baseResourceFields,
807
823
  // Importing base resource fields from global.ts
@@ -809,7 +825,7 @@ var schema8 = new MongooseSchema12(
809
825
  eventInfoId: {
810
826
  ref: "EventInfo",
811
827
  required: false,
812
- type: mongoose12.Schema.Types.ObjectId
828
+ type: mongoose13.Schema.Types.ObjectId
813
829
  },
814
830
  eventType: {
815
831
  enum: Object.values(EnumEventType),
@@ -827,13 +843,13 @@ var schema8 = new MongooseSchema12(
827
843
  },
828
844
  { timestamps: true }
829
845
  );
830
- schema8.index({ name: 1 });
831
- schema8.index({ description: 1 });
832
- schema8.index({ region: 1 });
833
- schema8.index({ location: "2dsphere" });
834
- schema8.index({ tags: 1 });
835
- schema8.index({ "partners.email": 1 });
836
- var EventModel = mongoose12.models.Event || mongoose12.model("Event", schema8);
846
+ schema9.index({ name: 1 });
847
+ schema9.index({ description: 1 });
848
+ schema9.index({ region: 1 });
849
+ schema9.index({ location: "2dsphere" });
850
+ schema9.index({ tags: 1 });
851
+ schema9.index({ "partners.email": 1 });
852
+ var EventModel = mongoose13.models.Event || mongoose13.model("Event", schema9);
837
853
  export {
838
854
  AdModel,
839
855
  CategorySchema,
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/mongoose/Ad.ts","../../src/mongoose/global.ts","../../src/mongoose/Relation.ts","../../src/mongoose/event/EventInfo.ts","../../src/mongoose/Chat.ts","../../src/mongoose/ResourceActivity.ts","../../src/mongoose/Testers.ts","../../src/mongoose/User.ts","../../src/mongoose/VerificationToken.ts","../../src/mongoose/vendor/Vendor.ts","../../src/mongoose/vendor/VendorInfo.ts","../../src/mongoose/event/Event.ts"],"sourcesContent":["import mongoose from \"mongoose\";\n\nimport { EnumResourceType } from \"src/enums\";\nimport {\n AdType,\n EnumAdShowOn,\n EnumAdStatus,\n EnumAdStyle,\n EnumAdType,\n} from \"src/types\";\n\nimport { SocialMediaTypeSchema } from \"./global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst schema = new MongooseSchema<AdType>(\n {\n active: { default: true, type: Boolean },\n adStyle: {\n default: EnumAdStyle.BLOOM,\n enum: Object.values(EnumAdStyle),\n required: true,\n type: String,\n },\n adType: {\n default: EnumAdType.SPONSORED,\n enum: Object.values(EnumAdType),\n required: true,\n type: String,\n },\n // TODO: similar to ViewSchema\n clicks: { default: 0, required: true, type: Number },\n clui: { required: false, type: String },\n end: { required: true, type: Date },\n // TODO: similar to ViewSchema\n impressions: { default: 0, required: true, type: Number },\n resourceCover: { required: true, type: String },\n resourceDescription: { required: true, type: String },\n resourceId: { required: true, type: String },\n resourceLogo: { required: false, type: String },\n resourceName: { required: true, type: String },\n resourceRegion: { required: true, type: String },\n resourceType: {\n enum: Object.values(EnumResourceType),\n required: true,\n type: String,\n },\n showOn: {\n default: EnumAdShowOn.FRONT_PAGE,\n enum: Object.values(EnumAdShowOn),\n required: true,\n type: String,\n },\n socialMedia: [SocialMediaTypeSchema],\n start: { required: true, type: Date },\n status: {\n default: EnumAdStatus.ACTIVE,\n enum: Object.values(EnumAdStatus),\n required: true,\n type: String,\n },\n targetRegion: { required: false, type: String },\n },\n {\n timestamps: true,\n },\n);\n\n// Compound index for background job queries\nschema.index({\n end: 1,\n start: 1,\n status: 1,\n});\n\nexport const AdModel =\n (mongoose.models.Ad as mongoose.Model<AdType>) ||\n mongoose.model<AdType>(\"Ad\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumResourceType, EnumUserLicence } from \"src/enums\";\nimport {\n Category,\n ObjectId,\n OwnerType,\n PartnerType,\n PosterUsageType,\n RelationDate,\n ResourceContactDetailsType,\n ResourceImageType,\n SocialMediaType,\n Subcategory,\n TermsAgreement,\n} from \"src/types\";\n\nimport { relationDatesSchema } from \"./Relation\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport type SchemaOwnerType = Omit<OwnerType, \"userId\"> & {\n userId: ObjectId;\n};\n\nconst OwnerTypeSchema = new MongooseSchema<SchemaOwnerType>(\n {\n email: { required: true, type: String },\n userId: {\n ref: \"User\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport const SocialMediaTypeSchema = new MongooseSchema<SocialMediaType>(\n {\n link: { required: true, type: String },\n name: { required: true, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field\n);\n\nexport const ResourceImageTypeSchema = new MongooseSchema<ResourceImageType>(\n {\n source: { required: false, type: String },\n title: { required: false, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst SubCategorySchema = new MongooseSchema<Subcategory>(\n {\n id: { required: false, type: String },\n items: [\n {\n id: { required: false, type: String },\n name: { required: false, type: String },\n },\n ],\n name: { required: false, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport const CategorySchema = new MongooseSchema<Category>(\n {\n id: { required: true, type: String },\n name: { required: true, type: String },\n subcategories: [SubCategorySchema],\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst PosterUsageTypeSchema = new MongooseSchema<PosterUsageType>(\n {\n count: { default: 0, required: false, type: Number },\n month: { required: false, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport const partnersSchema = new MongooseSchema<PartnerType>(\n {\n email: { required: false, type: String },\n licence: {\n enum: Object.values(EnumUserLicence),\n required: false,\n type: String,\n },\n resourceId: {\n required: false,\n type: String,\n },\n resourceType: {\n enum: Object.values(EnumResourceType),\n required: false,\n type: String,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst ContactDetailsSchema = new MongooseSchema<ResourceContactDetailsType>(\n {\n email: { required: false, type: String },\n landlinePhone: { required: false, type: String },\n mobilePhone: { required: false, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport const termsAgreementSchema = new MongooseSchema<TermsAgreement>(\n {\n appBuildNumber: { required: true, type: String },\n appId: { required: true, type: String },\n appVersion: { required: true, type: String },\n brand: { required: true, type: String },\n deviceName: { required: true, type: String },\n installationId: { required: true, type: String },\n manufacturer: { required: true, type: String },\n modelName: { required: true, type: String },\n osName: { required: true, type: String },\n osVersion: { required: true, type: String },\n termVersion: { required: true, type: String },\n timestamp: { required: true, type: String },\n },\n { _id: false },\n);\n\nconst resourceRelationsSchema = new MongooseSchema<{\n relationId: ObjectId;\n relationDates: RelationDate[];\n}>(\n {\n relationDates: {\n default: [],\n required: false,\n type: [relationDatesSchema],\n },\n relationId: {\n ref: \"Relation\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { _id: false },\n);\n\nexport const baseResourceFields = {\n active: { default: false, required: true, type: Boolean },\n adIds: {\n ref: \"Ad\",\n required: false,\n type: [mongoose.Schema.Types.ObjectId],\n },\n contactDetails: ContactDetailsSchema,\n cover: ResourceImageTypeSchema,\n deletedAt: { default: null, required: false, type: Date },\n description: { required: true, type: String },\n images: [ResourceImageTypeSchema],\n logo: ResourceImageTypeSchema,\n name: { required: true, type: String },\n owner: OwnerTypeSchema,\n partners: {\n required: false,\n type: [partnersSchema],\n },\n posterUsage: PosterUsageTypeSchema,\n promoCodes: { required: false, type: [String] },\n region: { required: true, type: String },\n relations: {\n default: [],\n required: false,\n type: [resourceRelationsSchema],\n },\n socialMedia: [SocialMediaTypeSchema],\n termsAgreement: termsAgreementSchema,\n};\n","import mongoose from \"mongoose\";\n\nimport {\n EnumInviteStatus,\n EnumRelationResource,\n EnumResourceType,\n} from \"src/enums\";\nimport { ObjectId, RelationDate, RelationType } from \"src/types\";\n\nimport { StallTypeSchema } from \"./event/EventInfo\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport const relationDatesSchema = new MongooseSchema<RelationDate>(\n {\n lastUpdateBy: {\n resourceId: { required: false, type: String },\n userEmail: { required: false, type: String },\n },\n paymentReference: { required: false, type: String },\n stallType: StallTypeSchema,\n startDate: { required: false, type: String },\n startTime: { required: false, type: String },\n status: {\n enum: Object.values(EnumInviteStatus),\n required: false,\n type: String,\n },\n },\n { _id: false },\n);\n\nexport type SchemaRelationType = Omit<\n RelationType,\n \"chatId\" | \"eventId\" | \"vendorId\"\n> & {\n chatId: ObjectId;\n eventId: ObjectId;\n vendorId: ObjectId;\n};\n/**\n * This is the schema for the relation type.\n * It is used to define the structure of the relation type in the database.\n * The schema is used by Mongoose to create a model for the relation type.\n */\nexport const RelationTypeSchema = new MongooseSchema<SchemaRelationType>(\n {\n active: { default: true, required: true, type: Boolean },\n chatId: {\n ref: \"Chat\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n deletedAt: { default: null, required: false, type: Date },\n eventId: {\n ref: \"Event\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n lastUpdateBy: {\n enum: Object.values(EnumResourceType),\n required: true,\n type: String,\n },\n relationDates: [relationDatesSchema],\n relationType: {\n enum: Object.values(EnumRelationResource),\n required: true,\n type: String,\n },\n vendorId: {\n ref: \"Vendor\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { timestamps: true },\n);\n\nRelationTypeSchema.index({\n \"relationDates.startDate\": 1,\n \"relationDates.startTime\": 1,\n \"relationDates.status\": 1,\n});\n\n// --- IMPORTANT: bind custom model type ---\nexport const RelationModel =\n (mongoose.models.Relation as mongoose.Model<SchemaRelationType>) ||\n mongoose.model<SchemaRelationType>(\"Relation\", RelationTypeSchema);\n","import mongoose from \"mongoose\";\n\nimport { EnumPaymentMethod } from \"src/enums\";\nimport {\n DateTimeWithPriceType,\n EventInfoType,\n ObjectId,\n PaymentInfoType,\n Requirement,\n StallType,\n} from \"src/types\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport const StallTypeSchema = new MongooseSchema<StallType>(\n {\n electricity: {\n price: { required: false, type: Number },\n selected: { required: false, type: Boolean },\n },\n label: { required: false, type: String },\n price: { required: false, type: Number },\n stallCapacity: { required: false, type: Number },\n },\n {\n _id: false, // Prevents Mongoose from creating an additional _id field for subdocuments\n },\n);\n\nconst dateTimeSchema = new MongooseSchema<DateTimeWithPriceType>(\n {\n endDate: { required: true, type: String },\n endTime: { required: true, type: String },\n stallTypes: [StallTypeSchema],\n startDate: { required: true, type: String },\n startTime: { required: true, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst paymentInfoSchema = new MongooseSchema<PaymentInfoType>(\n {\n accountHolderName: { required: false, type: String },\n accountNumber: { required: false, type: String },\n link: { required: false, type: String },\n paymentMethod: {\n enum: Object.values(EnumPaymentMethod),\n required: true,\n type: String,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field\n);\n\nconst requirementsSchema = new MongooseSchema<Requirement>(\n {\n category: { required: true, type: String },\n label: { required: true, type: String },\n value: { required: true, type: Boolean },\n },\n {\n _id: false, // Prevents Mongoose from creating an additional _id field for\n },\n);\n\nexport type SchemaEventInfoType = Omit<EventInfoType, \"eventId\"> & {\n eventId: ObjectId;\n};\n\n/**\n * This is the schema for the event info type.\n * It is used to define the structure of the event info type in the database.\n * The schema is used by Mongoose to create a model for the event info type.\n */\nconst schema = new MongooseSchema<SchemaEventInfoType>(\n {\n applicationDeadlineHours: { required: true, type: Number },\n dateTime: [dateTimeSchema],\n eventId: {\n ref: \"Event\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n packInTime: { required: true, type: Number },\n paymentDueHours: { required: true, type: Number },\n paymentInfo: [paymentInfoSchema],\n requirements: [requirementsSchema],\n },\n { timestamps: true },\n);\n\nexport const EventInfoModel =\n (mongoose.models.EventInfo as mongoose.Model<SchemaEventInfoType>) ||\n mongoose.model<SchemaEventInfoType>(\"EventInfo\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumChatType } from \"src/enums\";\nimport {\n ChatMessageType,\n ChatType,\n ObjectId,\n ParticipantType,\n} from \"src/types\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport type SchemaChatMessageType = Omit<ChatMessageType, \"senderId\"> & {\n senderId: ObjectId;\n};\n\nexport type SchemaParticipantType = Omit<ParticipantType, \"userId\"> & {\n userId: ObjectId;\n};\n\nconst MessageSchema = new MongooseSchema<SchemaChatMessageType>(\n {\n content: { required: true, type: String },\n senderAvatar: { required: false, type: String },\n senderId: {\n ref: \"User\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n senderName: { required: true, type: String },\n },\n { timestamps: true },\n);\n\nexport type SchemaChatType = Omit<\n ChatType,\n \"participants\" | \"messages\" | \"resourceInfo\"\n> & {\n participants: SchemaParticipantType[];\n messages: SchemaChatMessageType[];\n resourceInfo: { eventId: ObjectId; vendorId: ObjectId } | null;\n};\n\nexport const ParticipantSchema = new MongooseSchema<SchemaParticipantType>(\n {\n active: { default: true, required: true, type: Boolean },\n email: { required: true, type: String },\n userId: {\n ref: \"User\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst ChatSchema = new MongooseSchema<SchemaChatType>(\n {\n active: { default: true, required: true, type: Boolean },\n chatName: { required: true, type: String },\n chatType: {\n enum: Object.values(EnumChatType),\n required: true,\n type: String,\n },\n deletedAt: { default: null, required: false, type: Date },\n messages: [MessageSchema],\n participants: [ParticipantSchema],\n resourceInfo: {\n eventId: {\n ref: \"Event\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n vendorId: {\n ref: \"Vendor\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n },\n {\n timestamps: true,\n },\n);\n\nexport const ChatModel =\n (mongoose.models.Chat as mongoose.Model<SchemaChatType>) ||\n mongoose.model<SchemaChatType>(\"Chat\", ChatSchema);\n","import mongoose from \"mongoose\";\n\nimport { EnumOSPlatform, EnumResourceType } from \"src/enums\";\nimport {\n EnumActivity,\n ResourceActivityEntry,\n ResourceActivityType,\n} from \"src/types\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst ActivitySchema = new MongooseSchema<ResourceActivityEntry>(\n {\n activityType: {\n enum: Object.values(EnumActivity),\n required: true,\n type: String,\n },\n location: {\n coordinates: {\n required: false,\n type: [Number],\n },\n type: {\n default: \"Point\",\n enum: [\"Point\"],\n required: false,\n type: String,\n },\n },\n startDate: { required: false, type: String },\n startTime: { required: false, type: String },\n timestamp: { default: Date.now, type: Date },\n userAgent: {\n enum: Object.values(EnumOSPlatform),\n required: true,\n type: String,\n },\n userId: { required: false, type: String },\n },\n { _id: false },\n);\n\nconst schema = new MongooseSchema<ResourceActivityType>(\n {\n activity: { default: [], type: [ActivitySchema] },\n resourceId: { required: true, type: String },\n resourceType: {\n enum: Object.values(EnumResourceType),\n required: true,\n type: String,\n },\n },\n { timestamps: true },\n);\n\nschema.index({ resourceId: 1, resourceType: 1 }, { unique: true }); // one per entity\nschema.index({ \"views.location\": \"2dsphere\" });\n\nexport const ResourceActivityModel =\n (mongoose.models.ResourceActivity as mongoose.Model<ResourceActivityType>) ||\n mongoose.model<ResourceActivityType>(\"ResourceActivity\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumOSPlatform, EnumResourceType } from \"src/enums\";\nimport { TesterType } from \"src/types\";\n\nimport { CategorySchema } from \"./global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst TesterSchema = new MongooseSchema<TesterType>(\n {\n active: { default: false, required: true, type: Boolean },\n categories: [CategorySchema],\n companyName: { required: true, type: String },\n email: { required: true, type: String },\n firstName: { required: true, type: String },\n lastName: { required: true, type: String },\n osType: {\n enum: Object.values(EnumOSPlatform),\n required: true,\n type: String,\n },\n region: { required: true, type: String },\n resourceType: {\n enum: Object.values(EnumResourceType),\n required: true,\n type: String,\n },\n },\n {\n timestamps: true,\n },\n);\n\nexport const TesterModel =\n (mongoose.models.Tester as mongoose.Model<TesterType>) ||\n mongoose.model<TesterType>(\"Tester\", TesterSchema);\n","import mongoose from \"mongoose\";\n\nimport { EnumOSPlatform, EnumUserLicence, EnumUserRole } from \"src/enums\";\nimport { ObjectId, UserActivityEvent, UserType } from \"src/types\";\n\nimport {\n partnersSchema,\n ResourceImageTypeSchema,\n termsAgreementSchema,\n} from \"./global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport type SchemaUserActivityEvent = Omit<UserActivityEvent, \"resourceId\"> & {\n resourceId: ObjectId;\n};\n\nexport type SchemaUserType = Omit<\n UserType,\n \"vendor\" | \"events\" | \"userActivity\" | \"_id\"\n> & {\n _id: ObjectId;\n vendor: ObjectId;\n events: ObjectId[];\n userActivity: {\n favourites: {\n events: ObjectId[];\n vendors: ObjectId[];\n };\n interested: {\n events: SchemaUserActivityEvent[];\n };\n going: {\n events: SchemaUserActivityEvent[];\n };\n present: {\n events: SchemaUserActivityEvent[];\n };\n };\n};\n\nconst userActivityEventSchema = new MongooseSchema<SchemaUserActivityEvent>(\n {\n resourceId: {\n ref: \"Event\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n startDate: { required: false, type: String },\n startTime: { required: false, type: String },\n },\n { _id: false },\n);\n\nconst userActivityFavouritesSchema = new MongooseSchema(\n {\n events: {\n ref: \"Event\",\n required: false,\n type: [mongoose.Schema.Types.ObjectId],\n },\n vendors: {\n ref: \"Vendor\",\n required: false,\n type: [mongoose.Schema.Types.ObjectId],\n },\n },\n { _id: false },\n);\n\n/**\n * This is the schema for the user type.\n * It is used to define the structure of the user type in the database.\n * The schema is used by Mongoose to create a model for the user type.\n */\nconst schema = new MongooseSchema<SchemaUserType>(\n {\n active: { default: false, required: true, type: Boolean },\n avatar: ResourceImageTypeSchema,\n deletedAt: { default: null, required: false, type: Date },\n email: { required: true, type: String },\n events: {\n ref: \"Event\",\n required: false,\n type: [mongoose.Schema.Types.ObjectId],\n },\n firstName: { required: true, type: String },\n isTester: { default: false, required: false, type: Boolean },\n lastName: { required: true, type: String },\n licences: {\n enum: Object.values(EnumUserLicence),\n required: false,\n type: [String],\n },\n partners: {\n required: false,\n type: [partnersSchema],\n },\n password: { required: true, type: String },\n platform: {\n enum: Object.values(EnumOSPlatform),\n required: false,\n type: String,\n },\n preferredRegion: {\n required: true,\n type: String,\n },\n refreshToken: {\n required: false,\n type: String,\n },\n role: {\n default: EnumUserRole.CUSTOMER,\n enum: Object.values(EnumUserRole),\n required: true,\n type: String,\n },\n termsAgreement: termsAgreementSchema,\n userActivity: {\n favourites: {\n default: () => ({ events: [], vendors: [] }),\n type: userActivityFavouritesSchema,\n },\n going: {\n events: [userActivityEventSchema],\n },\n interested: {\n events: [userActivityEventSchema],\n },\n present: {\n events: [userActivityEventSchema],\n },\n },\n vendor: {\n ref: \"Vendor\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { timestamps: true },\n);\n\nschema.index({ \"partners.email\": 1 });\n\nexport const UserModel =\n (mongoose.models.User as mongoose.Model<SchemaUserType>) ||\n mongoose.model<SchemaUserType>(\"User\", schema);\n","import mongoose from \"mongoose\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport interface VerificationTokenType {\n email: string;\n verificationToken: string;\n createdAt: Date;\n}\n\nconst schema = new MongooseSchema<VerificationTokenType>(\n {\n createdAt: {\n default: Date.now,\n expires: 24 * 60 * 60, // 24 hours in seconds (MongoDB TTL expects seconds)\n required: true,\n type: Date,\n }, // Token expires after 1 day\n email: { required: true, type: String },\n verificationToken: { required: true, type: String },\n },\n { timestamps: true },\n);\n\nexport const VerificationTokenModel =\n (mongoose.models.VerificationToken as mongoose.Model<VerificationTokenType>) ||\n mongoose.model<VerificationTokenType>(\"VerificationToken\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumVendorType } from \"src/enums\";\nimport { ObjectId, VendorMenuType, VendorType } from \"src/types\";\n\nimport { baseResourceFields, CategorySchema, SchemaOwnerType } from \"../global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst MenuTypeSchema = new MongooseSchema<VendorMenuType>(\n {\n description: { required: false, type: String },\n name: { required: false, type: String },\n price: { required: false, type: Number },\n productGroups: { required: false, type: [String] },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst LocationsSchema = new MongooseSchema<VendorType[\"locations\"]>(\n {\n dateTime: {\n endDate: { required: false, type: String },\n endTime: { required: false, type: String },\n startDate: { required: false, type: String },\n startTime: { required: false, type: String },\n },\n description: { required: false, type: String },\n location: {\n city: { required: false, type: String },\n coordinates: {\n required: false,\n type: [Number], // [longitude, latitude]\n },\n country: { required: false, type: String },\n fullAddress: { required: false, type: String },\n latitude: { required: false, type: Number },\n longitude: { required: false, type: Number },\n region: { required: false, type: String },\n type: { required: false, type: String }, // Mongoose GeoJSON type\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport type SchemaVendorType = Omit<\n VendorType,\n \"vendorInfoId\" | \"owner\" | \"adIds\"\n> & {\n adIds?: ObjectId[];\n owner: SchemaOwnerType;\n vendorInfoId: ObjectId;\n};\n\nconst schema = new MongooseSchema<SchemaVendorType>(\n {\n ...baseResourceFields, // Importing base resource fields from global.ts\n availability: {\n corporate: { default: false, required: false, type: Boolean },\n private: { default: false, required: false, type: Boolean },\n school: { default: false, required: false, type: Boolean },\n },\n categories: [CategorySchema],\n locations: [LocationsSchema],\n multiLocation: { required: true, type: Boolean },\n products: [MenuTypeSchema],\n vendorInfoId: {\n ref: \"VendorInfo\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n vendorType: {\n enum: Object.values(EnumVendorType),\n required: true,\n type: String,\n },\n },\n { timestamps: true },\n);\n\n// 🔹 Add indexes to speed up regex-based searches\nschema.index({ name: 1 });\nschema.index({ description: 1 });\nschema.index({ region: 1 });\nschema.index({ \"categories.name\": 1 });\nschema.index({ \"partners.email\": 1 });\n\nexport const VendorModel =\n (mongoose.models.Vendor as mongoose.Model<SchemaVendorType>) ||\n mongoose.model<SchemaVendorType>(\"Vendor\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumFoodFlavor } from \"src/enums\";\nimport { ObjectId, VendorAttributes, VendorInfoType } from \"src/types\";\n\nimport { ResourceImageTypeSchema } from \"../global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport type SchemaVendorInfoType = Omit<VendorInfoType, \"vendorId\"> & {\n vendorId: ObjectId;\n};\n\nconst AttributesSchema = new MongooseSchema<VendorAttributes>(\n {\n details: { required: false, type: String },\n isRequired: { default: false, required: true, type: Boolean },\n },\n { _id: false },\n);\n\nconst schema = new MongooseSchema<SchemaVendorInfoType>(\n {\n compliance: {\n foodBeverageLicense: { default: false, required: false, type: Boolean },\n liabilityInsurance: { default: false, required: false, type: Boolean },\n },\n documents: [ResourceImageTypeSchema],\n product: {\n foodFlavors: {\n enum: Object.values(EnumFoodFlavor),\n required: true,\n type: [String],\n },\n packaging: { required: true, type: [String] },\n priceRange: {\n max: { required: true, type: Number },\n min: { required: true, type: Number },\n },\n producedIn: { required: true, type: [String] },\n },\n requirements: {\n electricity: AttributesSchema,\n gazebo: AttributesSchema,\n table: AttributesSchema,\n },\n stallInfo: {\n size: {\n depth: { required: true, type: Number },\n width: { required: true, type: Number },\n },\n },\n vendorId: {\n ref: \"Vendor\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { timestamps: true },\n);\n\nexport const VendorInfoModel =\n (mongoose.models.VendorInfo as mongoose.Model<SchemaVendorInfoType>) ||\n mongoose.model<SchemaVendorInfoType>(\"VendorInfo\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumEventType } from \"src/enums\";\nimport { DateTimeType, EventType, LocationType, ObjectId } from \"src/types\";\n\nimport { baseResourceFields, SchemaOwnerType } from \"../global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst locationsSchema = new MongooseSchema<LocationType>(\n {\n city: { required: true, type: String },\n coordinates: {\n required: true,\n type: [Number], // [longitude, latitude]\n },\n country: { required: true, type: String },\n fullAddress: { required: true, type: String },\n latitude: { required: true, type: Number },\n longitude: { required: true, type: Number },\n region: { required: true, type: String },\n type: {\n default: \"Point\",\n enum: [\"Point\"],\n required: true,\n type: String,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst dateTimeSchema = new MongooseSchema<DateTimeType>(\n {\n endDate: { required: true, type: String },\n endTime: { required: true, type: String },\n startDate: { required: true, type: String },\n startTime: { required: true, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport type SchemaEventType = Omit<\n EventType,\n \"eventInfoId\" | \"owner\" | \"adIds\"\n> & {\n adIds?: ObjectId[];\n eventInfoId: ObjectId;\n owner: SchemaOwnerType;\n};\n\n/**\n * This is the schema for the event type.\n * It is used to define the structure of the event type in the database.\n * The schema is used by Mongoose to create a model for the event type.\n */\nconst schema = new MongooseSchema<SchemaEventType>(\n {\n ...baseResourceFields, // Importing base resource fields from global.ts\n dateTime: [dateTimeSchema],\n eventInfoId: {\n ref: \"EventInfo\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n eventType: {\n enum: Object.values(EnumEventType),\n required: true,\n type: String,\n },\n location: {\n required: true,\n type: locationsSchema,\n },\n nzbn: { required: true, type: String },\n provider: { required: false, type: String },\n rainOrShine: { required: true, type: Boolean },\n tags: { required: true, type: [String] },\n },\n { timestamps: true },\n);\n\n// 🔹 Add indexes to speed up regex-based searches\nschema.index({ name: 1 });\nschema.index({ description: 1 });\nschema.index({ region: 1 });\nschema.index({ location: \"2dsphere\" });\nschema.index({ tags: 1 });\nschema.index({ \"partners.email\": 1 });\n\nexport const EventModel =\n (mongoose.models.Event as mongoose.Model<SchemaEventType>) ||\n mongoose.model<SchemaEventType>(\"Event\", schema);\n"],"mappings":"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","names":["mongoose","mongoose","mongoose","MongooseSchema","mongoose","MongooseSchema","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","mongoose","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","mongoose","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","schema","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","mongoose","dateTimeSchema","schema"]}
1
+ {"version":3,"sources":["../../src/mongoose/Ad.ts","../../src/mongoose/global.ts","../../src/mongoose/Relation.ts","../../src/mongoose/event/EventInfo.ts","../../src/mongoose/Chat.ts","../../src/mongoose/PushToken.ts","../../src/mongoose/ResourceActivity.ts","../../src/mongoose/Testers.ts","../../src/mongoose/User.ts","../../src/mongoose/VerificationToken.ts","../../src/mongoose/vendor/Vendor.ts","../../src/mongoose/vendor/VendorInfo.ts","../../src/mongoose/event/Event.ts"],"sourcesContent":["import mongoose from \"mongoose\";\n\nimport { EnumResourceType } from \"src/enums\";\nimport {\n AdType,\n EnumAdShowOn,\n EnumAdStatus,\n EnumAdStyle,\n EnumAdType,\n} from \"src/types\";\n\nimport { SocialMediaTypeSchema } from \"./global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst schema = new MongooseSchema<AdType>(\n {\n active: { default: true, type: Boolean },\n adStyle: {\n default: EnumAdStyle.BLOOM,\n enum: Object.values(EnumAdStyle),\n required: true,\n type: String,\n },\n adType: {\n default: EnumAdType.SPONSORED,\n enum: Object.values(EnumAdType),\n required: true,\n type: String,\n },\n // TODO: similar to ViewSchema\n clicks: { default: 0, required: true, type: Number },\n clui: { required: false, type: String },\n end: { required: true, type: Date },\n // TODO: similar to ViewSchema\n impressions: { default: 0, required: true, type: Number },\n resourceCover: { required: true, type: String },\n resourceDescription: { required: true, type: String },\n resourceId: { required: true, type: String },\n resourceLogo: { required: false, type: String },\n resourceName: { required: true, type: String },\n resourceRegion: { required: true, type: String },\n resourceType: {\n enum: Object.values(EnumResourceType),\n required: true,\n type: String,\n },\n showOn: {\n default: EnumAdShowOn.FRONT_PAGE,\n enum: Object.values(EnumAdShowOn),\n required: true,\n type: String,\n },\n socialMedia: [SocialMediaTypeSchema],\n start: { required: true, type: Date },\n status: {\n default: EnumAdStatus.ACTIVE,\n enum: Object.values(EnumAdStatus),\n required: true,\n type: String,\n },\n targetRegion: { required: false, type: String },\n },\n {\n timestamps: true,\n },\n);\n\n// Compound index for background job queries\nschema.index({\n end: 1,\n start: 1,\n status: 1,\n});\n\nexport const AdModel =\n (mongoose.models.Ad as mongoose.Model<AdType>) ||\n mongoose.model<AdType>(\"Ad\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumResourceType, EnumUserLicence } from \"src/enums\";\nimport {\n Category,\n ObjectId,\n OwnerType,\n PartnerType,\n PosterUsageType,\n RelationDate,\n ResourceContactDetailsType,\n ResourceImageType,\n SocialMediaType,\n Subcategory,\n TermsAgreement,\n} from \"src/types\";\n\nimport { relationDatesSchema } from \"./Relation\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport type SchemaOwnerType = Omit<OwnerType, \"userId\"> & {\n userId: ObjectId;\n};\n\nconst OwnerTypeSchema = new MongooseSchema<SchemaOwnerType>(\n {\n email: { required: true, type: String },\n userId: {\n ref: \"User\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport const SocialMediaTypeSchema = new MongooseSchema<SocialMediaType>(\n {\n link: { required: true, type: String },\n name: { required: true, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field\n);\n\nexport const ResourceImageTypeSchema = new MongooseSchema<ResourceImageType>(\n {\n source: { required: false, type: String },\n title: { required: false, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst SubCategorySchema = new MongooseSchema<Subcategory>(\n {\n id: { required: false, type: String },\n items: [\n {\n id: { required: false, type: String },\n name: { required: false, type: String },\n },\n ],\n name: { required: false, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport const CategorySchema = new MongooseSchema<Category>(\n {\n id: { required: true, type: String },\n name: { required: true, type: String },\n subcategories: [SubCategorySchema],\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst PosterUsageTypeSchema = new MongooseSchema<PosterUsageType>(\n {\n count: { default: 0, required: false, type: Number },\n month: { required: false, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport const partnersSchema = new MongooseSchema<PartnerType>(\n {\n email: { required: false, type: String },\n licence: {\n enum: Object.values(EnumUserLicence),\n required: false,\n type: String,\n },\n resourceId: {\n required: false,\n type: String,\n },\n resourceType: {\n enum: Object.values(EnumResourceType),\n required: false,\n type: String,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst ContactDetailsSchema = new MongooseSchema<ResourceContactDetailsType>(\n {\n email: { required: false, type: String },\n landlinePhone: { required: false, type: String },\n mobilePhone: { required: false, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport const termsAgreementSchema = new MongooseSchema<TermsAgreement>(\n {\n appBuildNumber: { required: true, type: String },\n appId: { required: true, type: String },\n appVersion: { required: true, type: String },\n brand: { required: true, type: String },\n deviceName: { required: true, type: String },\n installationId: { required: true, type: String },\n manufacturer: { required: true, type: String },\n modelName: { required: true, type: String },\n osName: { required: true, type: String },\n osVersion: { required: true, type: String },\n termVersion: { required: true, type: String },\n timestamp: { required: true, type: String },\n },\n { _id: false },\n);\n\nconst resourceRelationsSchema = new MongooseSchema<{\n relationId: ObjectId;\n relationDates: RelationDate[];\n}>(\n {\n relationDates: {\n default: [],\n required: false,\n type: [relationDatesSchema],\n },\n relationId: {\n ref: \"Relation\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { _id: false },\n);\n\nexport const baseResourceFields = {\n active: { default: false, required: true, type: Boolean },\n adIds: {\n ref: \"Ad\",\n required: false,\n type: [mongoose.Schema.Types.ObjectId],\n },\n contactDetails: ContactDetailsSchema,\n cover: ResourceImageTypeSchema,\n deletedAt: { default: null, required: false, type: Date },\n description: { required: true, type: String },\n images: [ResourceImageTypeSchema],\n logo: ResourceImageTypeSchema,\n name: { required: true, type: String },\n owner: OwnerTypeSchema,\n partners: {\n required: false,\n type: [partnersSchema],\n },\n posterUsage: PosterUsageTypeSchema,\n promoCodes: { required: false, type: [String] },\n region: { required: true, type: String },\n relations: {\n default: [],\n required: false,\n type: [resourceRelationsSchema],\n },\n socialMedia: [SocialMediaTypeSchema],\n termsAgreement: termsAgreementSchema,\n};\n","import mongoose from \"mongoose\";\n\nimport {\n EnumInviteStatus,\n EnumRelationResource,\n EnumResourceType,\n} from \"src/enums\";\nimport { ObjectId, RelationDate, RelationType } from \"src/types\";\n\nimport { StallTypeSchema } from \"./event/EventInfo\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport const relationDatesSchema = new MongooseSchema<RelationDate>(\n {\n lastUpdateBy: {\n resourceId: { required: false, type: String },\n userEmail: { required: false, type: String },\n },\n paymentReference: { required: false, type: String },\n stallType: StallTypeSchema,\n startDate: { required: false, type: String },\n startTime: { required: false, type: String },\n status: {\n enum: Object.values(EnumInviteStatus),\n required: false,\n type: String,\n },\n },\n { _id: false },\n);\n\nexport type SchemaRelationType = Omit<\n RelationType,\n \"chatId\" | \"eventId\" | \"vendorId\"\n> & {\n chatId: ObjectId;\n eventId: ObjectId;\n vendorId: ObjectId;\n};\n/**\n * This is the schema for the relation type.\n * It is used to define the structure of the relation type in the database.\n * The schema is used by Mongoose to create a model for the relation type.\n */\nexport const RelationTypeSchema = new MongooseSchema<SchemaRelationType>(\n {\n active: { default: true, required: true, type: Boolean },\n chatId: {\n ref: \"Chat\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n deletedAt: { default: null, required: false, type: Date },\n eventId: {\n ref: \"Event\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n lastUpdateBy: {\n enum: Object.values(EnumResourceType),\n required: true,\n type: String,\n },\n relationDates: [relationDatesSchema],\n relationType: {\n enum: Object.values(EnumRelationResource),\n required: true,\n type: String,\n },\n vendorId: {\n ref: \"Vendor\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { timestamps: true },\n);\n\nRelationTypeSchema.index({\n \"relationDates.startDate\": 1,\n \"relationDates.startTime\": 1,\n \"relationDates.status\": 1,\n});\n\n// --- IMPORTANT: bind custom model type ---\nexport const RelationModel =\n (mongoose.models.Relation as mongoose.Model<SchemaRelationType>) ||\n mongoose.model<SchemaRelationType>(\"Relation\", RelationTypeSchema);\n","import mongoose from \"mongoose\";\n\nimport { EnumPaymentMethod } from \"src/enums\";\nimport {\n DateTimeWithPriceType,\n EventInfoType,\n ObjectId,\n PaymentInfoType,\n Requirement,\n StallType,\n} from \"src/types\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport const StallTypeSchema = new MongooseSchema<StallType>(\n {\n electricity: {\n price: { required: false, type: Number },\n selected: { required: false, type: Boolean },\n },\n label: { required: false, type: String },\n price: { required: false, type: Number },\n stallCapacity: { required: false, type: Number },\n },\n {\n _id: false, // Prevents Mongoose from creating an additional _id field for subdocuments\n },\n);\n\nconst dateTimeSchema = new MongooseSchema<DateTimeWithPriceType>(\n {\n endDate: { required: true, type: String },\n endTime: { required: true, type: String },\n stallTypes: [StallTypeSchema],\n startDate: { required: true, type: String },\n startTime: { required: true, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst paymentInfoSchema = new MongooseSchema<PaymentInfoType>(\n {\n accountHolderName: { required: false, type: String },\n accountNumber: { required: false, type: String },\n link: { required: false, type: String },\n paymentMethod: {\n enum: Object.values(EnumPaymentMethod),\n required: true,\n type: String,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field\n);\n\nconst requirementsSchema = new MongooseSchema<Requirement>(\n {\n category: { required: true, type: String },\n label: { required: true, type: String },\n value: { required: true, type: Boolean },\n },\n {\n _id: false, // Prevents Mongoose from creating an additional _id field for\n },\n);\n\nexport type SchemaEventInfoType = Omit<EventInfoType, \"eventId\"> & {\n eventId: ObjectId;\n};\n\n/**\n * This is the schema for the event info type.\n * It is used to define the structure of the event info type in the database.\n * The schema is used by Mongoose to create a model for the event info type.\n */\nconst schema = new MongooseSchema<SchemaEventInfoType>(\n {\n applicationDeadlineHours: { required: true, type: Number },\n dateTime: [dateTimeSchema],\n eventId: {\n ref: \"Event\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n packInTime: { required: true, type: Number },\n paymentDueHours: { required: true, type: Number },\n paymentInfo: [paymentInfoSchema],\n requirements: [requirementsSchema],\n },\n { timestamps: true },\n);\n\nexport const EventInfoModel =\n (mongoose.models.EventInfo as mongoose.Model<SchemaEventInfoType>) ||\n mongoose.model<SchemaEventInfoType>(\"EventInfo\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumChatType } from \"src/enums\";\nimport {\n ChatMessageType,\n ChatType,\n ObjectId,\n ParticipantType,\n} from \"src/types\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport type SchemaChatMessageType = Omit<ChatMessageType, \"senderId\"> & {\n senderId: ObjectId;\n};\n\nexport type SchemaParticipantType = Omit<ParticipantType, \"userId\"> & {\n userId: ObjectId;\n};\n\nconst MessageSchema = new MongooseSchema<SchemaChatMessageType>(\n {\n content: { required: true, type: String },\n senderAvatar: { required: false, type: String },\n senderId: {\n ref: \"User\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n senderName: { required: true, type: String },\n },\n { timestamps: true },\n);\n\nexport type SchemaChatType = Omit<\n ChatType,\n \"participants\" | \"messages\" | \"resourceInfo\"\n> & {\n participants: SchemaParticipantType[];\n messages: SchemaChatMessageType[];\n resourceInfo: { eventId: ObjectId; vendorId: ObjectId } | null;\n};\n\nexport const ParticipantSchema = new MongooseSchema<SchemaParticipantType>(\n {\n active: { default: true, required: true, type: Boolean },\n email: { required: true, type: String },\n userId: {\n ref: \"User\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst ChatSchema = new MongooseSchema<SchemaChatType>(\n {\n active: { default: true, required: true, type: Boolean },\n chatName: { required: true, type: String },\n chatType: {\n enum: Object.values(EnumChatType),\n required: true,\n type: String,\n },\n deletedAt: { default: null, required: false, type: Date },\n messages: [MessageSchema],\n participants: [ParticipantSchema],\n resourceInfo: {\n eventId: {\n ref: \"Event\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n vendorId: {\n ref: \"Vendor\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n },\n {\n timestamps: true,\n },\n);\n\nexport const ChatModel =\n (mongoose.models.Chat as mongoose.Model<SchemaChatType>) ||\n mongoose.model<SchemaChatType>(\"Chat\", ChatSchema);\n","import mongoose from \"mongoose\";\n\nimport { EnumOSPlatform } from \"src/enums\";\nimport { ObjectId } from \"src/types\";\n\nconst MongooseSchema = mongoose.Schema;\n\ntype PushTokenType = {\n _id: string;\n createdAt: Date;\n platform: EnumOSPlatform;\n token: string;\n updatedAt: Date;\n userId: string;\n};\n\nexport type SchemaPushTokenType = Omit<PushTokenType, \"userId\"> & {\n userId: ObjectId;\n};\n\n/**\n * This is the schema for the push token type.\n * It is used to define the structure of the push token type in the database.\n * The schema is used by Mongoose to create a model for the push token type.\n */\nconst schema = new MongooseSchema<SchemaPushTokenType>(\n {\n platform: {\n enum: Object.values(EnumOSPlatform),\n required: true,\n type: String,\n },\n token: { required: true, type: String },\n userId: { required: true, type: mongoose.Schema.Types.ObjectId },\n },\n { timestamps: true },\n);\n\nexport const PushTokenModel =\n (mongoose.models.PushToken as mongoose.Model<SchemaPushTokenType>) ||\n mongoose.model<SchemaPushTokenType>(\"PushToken\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumOSPlatform, EnumResourceType } from \"src/enums\";\nimport {\n EnumActivity,\n ResourceActivityEntry,\n ResourceActivityType,\n} from \"src/types\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst ActivitySchema = new MongooseSchema<ResourceActivityEntry>(\n {\n activityType: {\n enum: Object.values(EnumActivity),\n required: true,\n type: String,\n },\n location: {\n coordinates: {\n required: false,\n type: [Number],\n },\n type: {\n default: \"Point\",\n enum: [\"Point\"],\n required: false,\n type: String,\n },\n },\n startDate: { required: false, type: String },\n startTime: { required: false, type: String },\n timestamp: { default: Date.now, type: Date },\n userAgent: {\n enum: Object.values(EnumOSPlatform),\n required: true,\n type: String,\n },\n userId: { required: false, type: String },\n },\n { _id: false },\n);\n\nconst schema = new MongooseSchema<ResourceActivityType>(\n {\n activity: { default: [], type: [ActivitySchema] },\n resourceId: { required: true, type: String },\n resourceType: {\n enum: Object.values(EnumResourceType),\n required: true,\n type: String,\n },\n },\n { timestamps: true },\n);\n\nschema.index({ resourceId: 1, resourceType: 1 }, { unique: true }); // one per entity\nschema.index({ \"views.location\": \"2dsphere\" });\n\nexport const ResourceActivityModel =\n (mongoose.models.ResourceActivity as mongoose.Model<ResourceActivityType>) ||\n mongoose.model<ResourceActivityType>(\"ResourceActivity\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumOSPlatform, EnumResourceType } from \"src/enums\";\nimport { TesterType } from \"src/types\";\n\nimport { CategorySchema } from \"./global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst TesterSchema = new MongooseSchema<TesterType>(\n {\n active: { default: false, required: true, type: Boolean },\n categories: [CategorySchema],\n companyName: { required: true, type: String },\n email: { required: true, type: String },\n firstName: { required: true, type: String },\n lastName: { required: true, type: String },\n osType: {\n enum: Object.values(EnumOSPlatform),\n required: true,\n type: String,\n },\n region: { required: true, type: String },\n resourceType: {\n enum: Object.values(EnumResourceType),\n required: true,\n type: String,\n },\n },\n {\n timestamps: true,\n },\n);\n\nexport const TesterModel =\n (mongoose.models.Tester as mongoose.Model<TesterType>) ||\n mongoose.model<TesterType>(\"Tester\", TesterSchema);\n","import mongoose from \"mongoose\";\n\nimport { EnumOSPlatform, EnumUserLicence, EnumUserRole } from \"src/enums\";\nimport { ObjectId, UserActivityEvent, UserType } from \"src/types\";\n\nimport {\n partnersSchema,\n ResourceImageTypeSchema,\n termsAgreementSchema,\n} from \"./global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport type SchemaUserActivityEvent = Omit<UserActivityEvent, \"resourceId\"> & {\n resourceId: ObjectId;\n};\n\nexport type SchemaUserType = Omit<\n UserType,\n \"vendor\" | \"events\" | \"userActivity\" | \"_id\"\n> & {\n _id: ObjectId;\n vendor: ObjectId;\n events: ObjectId[];\n userActivity: {\n favourites: {\n events: ObjectId[];\n vendors: ObjectId[];\n };\n interested: {\n events: SchemaUserActivityEvent[];\n };\n going: {\n events: SchemaUserActivityEvent[];\n };\n present: {\n events: SchemaUserActivityEvent[];\n };\n };\n};\n\nconst userActivityEventSchema = new MongooseSchema<SchemaUserActivityEvent>(\n {\n resourceId: {\n ref: \"Event\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n startDate: { required: false, type: String },\n startTime: { required: false, type: String },\n },\n { _id: false },\n);\n\nconst userActivityFavouritesSchema = new MongooseSchema(\n {\n events: {\n ref: \"Event\",\n required: false,\n type: [mongoose.Schema.Types.ObjectId],\n },\n vendors: {\n ref: \"Vendor\",\n required: false,\n type: [mongoose.Schema.Types.ObjectId],\n },\n },\n { _id: false },\n);\n\n/**\n * This is the schema for the user type.\n * It is used to define the structure of the user type in the database.\n * The schema is used by Mongoose to create a model for the user type.\n */\nconst schema = new MongooseSchema<SchemaUserType>(\n {\n active: { default: false, required: true, type: Boolean },\n avatar: ResourceImageTypeSchema,\n deletedAt: { default: null, required: false, type: Date },\n email: { required: true, type: String },\n events: {\n ref: \"Event\",\n required: false,\n type: [mongoose.Schema.Types.ObjectId],\n },\n firstName: { required: true, type: String },\n isTester: { default: false, required: false, type: Boolean },\n lastName: { required: true, type: String },\n licences: {\n enum: Object.values(EnumUserLicence),\n required: false,\n type: [String],\n },\n partners: {\n required: false,\n type: [partnersSchema],\n },\n password: { required: true, type: String },\n platform: {\n enum: Object.values(EnumOSPlatform),\n required: false,\n type: String,\n },\n preferredRegion: {\n required: true,\n type: String,\n },\n refreshToken: {\n required: false,\n type: String,\n },\n role: {\n default: EnumUserRole.CUSTOMER,\n enum: Object.values(EnumUserRole),\n required: true,\n type: String,\n },\n termsAgreement: termsAgreementSchema,\n userActivity: {\n favourites: {\n default: () => ({ events: [], vendors: [] }),\n type: userActivityFavouritesSchema,\n },\n going: {\n events: [userActivityEventSchema],\n },\n interested: {\n events: [userActivityEventSchema],\n },\n present: {\n events: [userActivityEventSchema],\n },\n },\n vendor: {\n ref: \"Vendor\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { timestamps: true },\n);\n\nschema.index({ \"partners.email\": 1 });\n\nexport const UserModel =\n (mongoose.models.User as mongoose.Model<SchemaUserType>) ||\n mongoose.model<SchemaUserType>(\"User\", schema);\n","import mongoose from \"mongoose\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport interface VerificationTokenType {\n email: string;\n verificationToken: string;\n createdAt: Date;\n}\n\nconst schema = new MongooseSchema<VerificationTokenType>(\n {\n createdAt: {\n default: Date.now,\n expires: 24 * 60 * 60, // 24 hours in seconds (MongoDB TTL expects seconds)\n required: true,\n type: Date,\n }, // Token expires after 1 day\n email: { required: true, type: String },\n verificationToken: { required: true, type: String },\n },\n { timestamps: true },\n);\n\nexport const VerificationTokenModel =\n (mongoose.models\n .VerificationToken as mongoose.Model<VerificationTokenType>) ||\n mongoose.model<VerificationTokenType>(\"VerificationToken\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumVendorType } from \"src/enums\";\nimport { ObjectId, VendorMenuType, VendorType } from \"src/types\";\n\nimport { baseResourceFields, CategorySchema, SchemaOwnerType } from \"../global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst MenuTypeSchema = new MongooseSchema<VendorMenuType>(\n {\n description: { required: false, type: String },\n name: { required: false, type: String },\n price: { required: false, type: Number },\n productGroups: { required: false, type: [String] },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst LocationsSchema = new MongooseSchema<VendorType[\"locations\"]>(\n {\n dateTime: {\n endDate: { required: false, type: String },\n endTime: { required: false, type: String },\n startDate: { required: false, type: String },\n startTime: { required: false, type: String },\n },\n description: { required: false, type: String },\n location: {\n city: { required: false, type: String },\n coordinates: {\n required: false,\n type: [Number], // [longitude, latitude]\n },\n country: { required: false, type: String },\n fullAddress: { required: false, type: String },\n latitude: { required: false, type: Number },\n longitude: { required: false, type: Number },\n region: { required: false, type: String },\n type: { required: false, type: String }, // Mongoose GeoJSON type\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport type SchemaVendorType = Omit<\n VendorType,\n \"vendorInfoId\" | \"owner\" | \"adIds\"\n> & {\n adIds?: ObjectId[];\n owner: SchemaOwnerType;\n vendorInfoId: ObjectId;\n};\n\nconst schema = new MongooseSchema<SchemaVendorType>(\n {\n ...baseResourceFields, // Importing base resource fields from global.ts\n availability: {\n corporate: { default: false, required: false, type: Boolean },\n private: { default: false, required: false, type: Boolean },\n school: { default: false, required: false, type: Boolean },\n },\n categories: [CategorySchema],\n locations: [LocationsSchema],\n multiLocation: { required: true, type: Boolean },\n products: [MenuTypeSchema],\n vendorInfoId: {\n ref: \"VendorInfo\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n vendorType: {\n enum: Object.values(EnumVendorType),\n required: true,\n type: String,\n },\n },\n { timestamps: true },\n);\n\n// 🔹 Add indexes to speed up regex-based searches\nschema.index({ name: 1 });\nschema.index({ description: 1 });\nschema.index({ region: 1 });\nschema.index({ \"categories.name\": 1 });\nschema.index({ \"partners.email\": 1 });\n\nexport const VendorModel =\n (mongoose.models.Vendor as mongoose.Model<SchemaVendorType>) ||\n mongoose.model<SchemaVendorType>(\"Vendor\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumFoodFlavor } from \"src/enums\";\nimport { ObjectId, VendorAttributes, VendorInfoType } from \"src/types\";\n\nimport { ResourceImageTypeSchema } from \"../global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nexport type SchemaVendorInfoType = Omit<VendorInfoType, \"vendorId\"> & {\n vendorId: ObjectId;\n};\n\nconst AttributesSchema = new MongooseSchema<VendorAttributes>(\n {\n details: { required: false, type: String },\n isRequired: { default: false, required: true, type: Boolean },\n },\n { _id: false },\n);\n\nconst schema = new MongooseSchema<SchemaVendorInfoType>(\n {\n compliance: {\n foodBeverageLicense: { default: false, required: false, type: Boolean },\n liabilityInsurance: { default: false, required: false, type: Boolean },\n },\n documents: [ResourceImageTypeSchema],\n product: {\n foodFlavors: {\n enum: Object.values(EnumFoodFlavor),\n required: true,\n type: [String],\n },\n packaging: { required: true, type: [String] },\n priceRange: {\n max: { required: true, type: Number },\n min: { required: true, type: Number },\n },\n producedIn: { required: true, type: [String] },\n },\n requirements: {\n electricity: AttributesSchema,\n gazebo: AttributesSchema,\n table: AttributesSchema,\n },\n stallInfo: {\n size: {\n depth: { required: true, type: Number },\n width: { required: true, type: Number },\n },\n },\n vendorId: {\n ref: \"Vendor\",\n required: true,\n type: mongoose.Schema.Types.ObjectId,\n },\n },\n { timestamps: true },\n);\n\nexport const VendorInfoModel =\n (mongoose.models.VendorInfo as mongoose.Model<SchemaVendorInfoType>) ||\n mongoose.model<SchemaVendorInfoType>(\"VendorInfo\", schema);\n","import mongoose from \"mongoose\";\n\nimport { EnumEventType } from \"src/enums\";\nimport { DateTimeType, EventType, LocationType, ObjectId } from \"src/types\";\n\nimport { baseResourceFields, SchemaOwnerType } from \"../global\";\n\nconst MongooseSchema = mongoose.Schema;\n\nconst locationsSchema = new MongooseSchema<LocationType>(\n {\n city: { required: true, type: String },\n coordinates: {\n required: true,\n type: [Number], // [longitude, latitude]\n },\n country: { required: true, type: String },\n fullAddress: { required: true, type: String },\n latitude: { required: true, type: Number },\n longitude: { required: true, type: Number },\n region: { required: true, type: String },\n type: {\n default: \"Point\",\n enum: [\"Point\"],\n required: true,\n type: String,\n },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nconst dateTimeSchema = new MongooseSchema<DateTimeType>(\n {\n endDate: { required: true, type: String },\n endTime: { required: true, type: String },\n startDate: { required: true, type: String },\n startTime: { required: true, type: String },\n },\n { _id: false }, // Prevents Mongoose from creating an additional _id field for subdocuments\n);\n\nexport type SchemaEventType = Omit<\n EventType,\n \"eventInfoId\" | \"owner\" | \"adIds\"\n> & {\n adIds?: ObjectId[];\n eventInfoId: ObjectId;\n owner: SchemaOwnerType;\n};\n\n/**\n * This is the schema for the event type.\n * It is used to define the structure of the event type in the database.\n * The schema is used by Mongoose to create a model for the event type.\n */\nconst schema = new MongooseSchema<SchemaEventType>(\n {\n ...baseResourceFields, // Importing base resource fields from global.ts\n dateTime: [dateTimeSchema],\n eventInfoId: {\n ref: \"EventInfo\",\n required: false,\n type: mongoose.Schema.Types.ObjectId,\n },\n eventType: {\n enum: Object.values(EnumEventType),\n required: true,\n type: String,\n },\n location: {\n required: true,\n type: locationsSchema,\n },\n nzbn: { required: true, type: String },\n provider: { required: false, type: String },\n rainOrShine: { required: true, type: Boolean },\n tags: { required: true, type: [String] },\n },\n { timestamps: true },\n);\n\n// 🔹 Add indexes to speed up regex-based searches\nschema.index({ name: 1 });\nschema.index({ description: 1 });\nschema.index({ region: 1 });\nschema.index({ location: \"2dsphere\" });\nschema.index({ tags: 1 });\nschema.index({ \"partners.email\": 1 });\n\nexport const EventModel =\n (mongoose.models.Event as mongoose.Model<SchemaEventType>) ||\n mongoose.model<SchemaEventType>(\"Event\", schema);\n"],"mappings":"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","names":["mongoose","mongoose","mongoose","MongooseSchema","mongoose","MongooseSchema","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","mongoose","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","mongoose","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","schema","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","mongoose","schema","mongoose","MongooseSchema","mongoose","dateTimeSchema","schema"]}