@chevre/factory 4.390.0-alpha.0 → 4.390.0-alpha.2

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.
@@ -120,4 +120,9 @@ export interface ISearchConditions {
120
120
  validFrom?: Date;
121
121
  validThrough?: Date;
122
122
  object?: IObjectSearchConditions;
123
+ audience?: {
124
+ id?: {
125
+ $eq?: string;
126
+ };
127
+ };
123
128
  }
@@ -122,7 +122,7 @@ export interface ISellerMakesOffer extends Pick<OfferFactory.IOffer, 'typeOf' |
122
122
  availabilityStarts: Date;
123
123
  validFrom: Date;
124
124
  validThrough: Date;
125
- availableAtOrFrom?: IOfferAvailableAtOrFrom;
125
+ availableAtOrFrom?: IOfferAvailableAtOrFrom | IOfferAvailableAtOrFrom[];
126
126
  }
127
127
  export interface ISeller {
128
128
  typeOf: OrganizationType.Corporation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.390.0-alpha.0",
3
+ "version": "4.390.0-alpha.2",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",