@chevre/factory 5.4.0-alpha.13 → 5.4.0-alpha.15

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.
@@ -30,11 +30,11 @@ export interface IOffer extends Pick<OfferFactory.IOffer, 'typeOf' | 'eligibleQu
30
30
  /**
31
31
  * イベント開始前の販売猶予期間(POS)
32
32
  */
33
- availabilityStartsGraceTimeOnPOS: IAvailabilityStartsGraceTime;
33
+ availabilityStartsGraceTimeOnPOS?: never;
34
34
  /**
35
35
  * イベント開始後の販売猶予期間(POS)
36
36
  */
37
- availabilityEndsGraceTimeOnPOS: IAvailabilityEndsGraceTime;
37
+ availabilityEndsGraceTimeOnPOS?: never;
38
38
  }
39
39
  /**
40
40
  * 施設の操作するPoints-of-Sales
@@ -118,6 +118,14 @@ export interface ISearchConditions {
118
118
  $eq?: string;
119
119
  };
120
120
  };
121
+ /**
122
+ * 所属販売者
123
+ */
124
+ seller?: {
125
+ id?: {
126
+ $eq?: string;
127
+ };
128
+ };
121
129
  id?: {
122
130
  $eq?: string;
123
131
  $in?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "5.4.0-alpha.13",
3
+ "version": "5.4.0-alpha.15",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",