@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.
- package/lib/place/movieTheater.d.ts +10 -2
- package/package.json +1 -1
|
@@ -30,11 +30,11 @@ export interface IOffer extends Pick<OfferFactory.IOffer, 'typeOf' | 'eligibleQu
|
|
|
30
30
|
/**
|
|
31
31
|
* イベント開始前の販売猶予期間(POS)
|
|
32
32
|
*/
|
|
33
|
-
availabilityStartsGraceTimeOnPOS
|
|
33
|
+
availabilityStartsGraceTimeOnPOS?: never;
|
|
34
34
|
/**
|
|
35
35
|
* イベント開始後の販売猶予期間(POS)
|
|
36
36
|
*/
|
|
37
|
-
availabilityEndsGraceTimeOnPOS
|
|
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[];
|