@timardex/cluemart-server-shared 1.0.250 → 1.0.252

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/index.d.mts CHANGED
@@ -396,6 +396,10 @@ declare const baseResourceFields: {
396
396
  required: boolean;
397
397
  type: NumberConstructor;
398
398
  };
399
+ slug: {
400
+ required: boolean;
401
+ type: StringConstructor;
402
+ };
399
403
  socialMedia: {
400
404
  required: boolean;
401
405
  type: mongoose.Schema<SocialMediaType, mongoose.Model<SocialMediaType, any, any, any, mongoose.Document<unknown, any, SocialMediaType, any, {}> & SocialMediaType & {
@@ -668,6 +672,7 @@ type SchemaPostType = PostType;
668
672
  declare const PostModel: mongoose.Model<PostType, {}, {}, {}, mongoose.Document<unknown, {}, PostType, {}, {}> & Omit<_timardex_cluemart_shared.PostFormData, "content" | "coverUpload"> & {
669
673
  _id: string;
670
674
  content: PostContentType[];
675
+ slug: string;
671
676
  createdAt: Date;
672
677
  deletedAt: Date | null;
673
678
  updatedAt: Date | null;
package/dist/index.d.ts CHANGED
@@ -396,6 +396,10 @@ declare const baseResourceFields: {
396
396
  required: boolean;
397
397
  type: NumberConstructor;
398
398
  };
399
+ slug: {
400
+ required: boolean;
401
+ type: StringConstructor;
402
+ };
399
403
  socialMedia: {
400
404
  required: boolean;
401
405
  type: mongoose.Schema<SocialMediaType, mongoose.Model<SocialMediaType, any, any, any, mongoose.Document<unknown, any, SocialMediaType, any, {}> & SocialMediaType & {
@@ -668,6 +672,7 @@ type SchemaPostType = PostType;
668
672
  declare const PostModel: mongoose.Model<PostType, {}, {}, {}, mongoose.Document<unknown, {}, PostType, {}, {}> & Omit<_timardex_cluemart_shared.PostFormData, "content" | "coverUpload"> & {
669
673
  _id: string;
670
674
  content: PostContentType[];
675
+ slug: string;
671
676
  createdAt: Date;
672
677
  deletedAt: Date | null;
673
678
  updatedAt: Date | null;