@timardex/cluemart-server-shared 1.0.305 → 1.0.306
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/{Affiliate-BxNv9k41.d.mts → Affiliate-B76iZ3fE.d.mts} +2 -1
- package/dist/{Affiliate-DRuifOv4.d.ts → Affiliate-gqV1-654.d.ts} +2 -1
- package/dist/{chunk-7X5A335O.mjs → chunk-SY7T26IW.mjs} +1 -1
- package/dist/{chunk-7X5A335O.mjs.map → chunk-SY7T26IW.mjs.map} +1 -1
- package/dist/index.cjs +25 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.mjs +25 -23
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.d.mts +2 -2
- package/dist/mongoose/index.d.ts +2 -2
- package/dist/mongoose/index.mjs +1 -1
- package/dist/service/index.cjs +25 -23
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.d.mts +4 -3
- package/dist/service/index.d.ts +4 -3
- package/dist/service/index.mjs +26 -24
- package/dist/service/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -373,8 +373,9 @@ declare const RelationModel: mongoose__default.Model<SchemaRelationType, {}, {},
|
|
|
373
373
|
}, any>;
|
|
374
374
|
|
|
375
375
|
type SchemaAffiliateReward = AffiliateRewardType;
|
|
376
|
-
type SchemaAffiliateResourceType = Omit<AffiliateResourceType, "resourceId"> & {
|
|
376
|
+
type SchemaAffiliateResourceType = Omit<AffiliateResourceType, "resourceId" | "resourceOwner"> & {
|
|
377
377
|
resourceId: ObjectId;
|
|
378
|
+
resourceOwner: SchemaOwnerType;
|
|
378
379
|
};
|
|
379
380
|
type AffiliateDocument = Omit<AffiliateType, "_id" | "owner" | "affiliateResources"> & {
|
|
380
381
|
affiliateResources: SchemaAffiliateResourceType[];
|
|
@@ -373,8 +373,9 @@ declare const RelationModel: mongoose__default.Model<SchemaRelationType, {}, {},
|
|
|
373
373
|
}, any>;
|
|
374
374
|
|
|
375
375
|
type SchemaAffiliateReward = AffiliateRewardType;
|
|
376
|
-
type SchemaAffiliateResourceType = Omit<AffiliateResourceType, "resourceId"> & {
|
|
376
|
+
type SchemaAffiliateResourceType = Omit<AffiliateResourceType, "resourceId" | "resourceOwner"> & {
|
|
377
377
|
resourceId: ObjectId;
|
|
378
|
+
resourceOwner: SchemaOwnerType;
|
|
378
379
|
};
|
|
379
380
|
type AffiliateDocument = Omit<AffiliateType, "_id" | "owner" | "affiliateResources"> & {
|
|
380
381
|
affiliateResources: SchemaAffiliateResourceType[];
|