@timardex/cluemart-server-shared 1.0.173 → 1.0.174

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.
@@ -424,15 +424,17 @@ declare const VerificationTokenModel: mongoose.Model<VerificationTokenType, {},
424
424
  __v: number;
425
425
  }, any>;
426
426
 
427
- type SchemaVendorType = Omit<VendorType, "vendorInfoId" | "owner" | "adIds"> & {
427
+ type SchemaVendorType = Omit<VendorType, "vendorInfoId" | "owner" | "adIds" | "unregisteredVendorId"> & {
428
428
  adIds?: ObjectId[];
429
429
  owner: SchemaOwnerType;
430
430
  vendorInfoId: ObjectId;
431
+ unregisteredVendorId?: ObjectId | null;
431
432
  };
432
- declare const VendorModel: mongoose.Model<SchemaVendorType, {}, {}, {}, mongoose.Document<unknown, {}, SchemaVendorType, {}, {}> & Omit<VendorType, "owner" | "vendorInfoId" | "adIds"> & {
433
+ declare const VendorModel: mongoose.Model<SchemaVendorType, {}, {}, {}, mongoose.Document<unknown, {}, SchemaVendorType, {}, {}> & Omit<VendorType, "owner" | "vendorInfoId" | "adIds" | "unregisteredVendorId"> & {
433
434
  adIds?: ObjectId[];
434
435
  owner: SchemaOwnerType;
435
436
  vendorInfoId: ObjectId;
437
+ unregisteredVendorId?: ObjectId | null;
436
438
  } & Required<{
437
439
  _id: string;
438
440
  }> & {
@@ -424,15 +424,17 @@ declare const VerificationTokenModel: mongoose.Model<VerificationTokenType, {},
424
424
  __v: number;
425
425
  }, any>;
426
426
 
427
- type SchemaVendorType = Omit<VendorType, "vendorInfoId" | "owner" | "adIds"> & {
427
+ type SchemaVendorType = Omit<VendorType, "vendorInfoId" | "owner" | "adIds" | "unregisteredVendorId"> & {
428
428
  adIds?: ObjectId[];
429
429
  owner: SchemaOwnerType;
430
430
  vendorInfoId: ObjectId;
431
+ unregisteredVendorId?: ObjectId | null;
431
432
  };
432
- declare const VendorModel: mongoose.Model<SchemaVendorType, {}, {}, {}, mongoose.Document<unknown, {}, SchemaVendorType, {}, {}> & Omit<VendorType, "owner" | "vendorInfoId" | "adIds"> & {
433
+ declare const VendorModel: mongoose.Model<SchemaVendorType, {}, {}, {}, mongoose.Document<unknown, {}, SchemaVendorType, {}, {}> & Omit<VendorType, "owner" | "vendorInfoId" | "adIds" | "unregisteredVendorId"> & {
433
434
  adIds?: ObjectId[];
434
435
  owner: SchemaOwnerType;
435
436
  vendorInfoId: ObjectId;
437
+ unregisteredVendorId?: ObjectId | null;
436
438
  } & Required<{
437
439
  _id: string;
438
440
  }> & {
@@ -37,7 +37,7 @@ import {
37
37
  resourceRelationsSchema,
38
38
  termsAgreementSchema,
39
39
  userLicenseSchema
40
- } from "../chunk-ODJX3YV4.mjs";
40
+ } from "../chunk-G5V7UZ6M.mjs";
41
41
  import "../chunk-3QS3WKRC.mjs";
42
42
  export {
43
43
  APP_SETTINGS_ID,
@@ -12350,9 +12350,9 @@ var schema9 = new MongooseSchema13(
12350
12350
  type: [resourceRelationsSchema]
12351
12351
  },
12352
12352
  unregisteredVendorId: {
12353
- default: null,
12353
+ ref: "UnregisteredVendor",
12354
12354
  required: false,
12355
- type: String
12355
+ type: import_mongoose14.default.Schema.Types.ObjectId
12356
12356
  },
12357
12357
  vendorInfoId: {
12358
12358
  ref: "VendorInfo",