@chevre/factory 4.259.0-alpha.0 → 4.259.0-alpha.1

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.
@@ -74,7 +74,7 @@ export declare type IOfferMerchantReturnPolicy = Pick<IMerchantReturnPolicy, 'ty
74
74
  identifier: string;
75
75
  name?: IMultilingualString;
76
76
  };
77
- export declare type IHasMerchantReturnPolicy = IOfferMerchantReturnPolicy[];
77
+ export declare type IHasMerchantReturnPolicy = Pick<IOfferMerchantReturnPolicy, 'typeOf' | 'id' | 'identifier' | 'name'>[];
78
78
  export interface IOfferMerchantReturnPolicySearchConditions {
79
79
  limit?: number;
80
80
  page?: number;
@@ -365,6 +365,11 @@ export interface ISearchConditions {
365
365
  $eq?: string;
366
366
  };
367
367
  };
368
+ hasMerchantReturnPolicy?: {
369
+ id?: {
370
+ $eq?: string;
371
+ };
372
+ };
368
373
  id?: {
369
374
  $eq?: string;
370
375
  $in?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.259.0-alpha.0",
3
+ "version": "4.259.0-alpha.1",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",