@chevre/factory 5.4.0-alpha.19 → 5.4.0-alpha.20
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.
|
@@ -18,10 +18,13 @@ export type IRoomAsNotification = IContainsPlace & {
|
|
|
18
18
|
*/
|
|
19
19
|
id: string;
|
|
20
20
|
};
|
|
21
|
+
project: {
|
|
22
|
+
id: string;
|
|
23
|
+
};
|
|
21
24
|
};
|
|
22
25
|
/**
|
|
23
26
|
* 施設通知
|
|
24
27
|
*/
|
|
25
28
|
export type IMovieTheaterAsNotification = Pick<IMovieTheater, 'id' | 'additionalProperty' | 'branchCode' | 'hasEntranceGate' | 'kanaName' | 'name' | 'parentOrganization' | 'project' | 'telephone' | 'url' | 'typeOf'> & {
|
|
26
|
-
containsPlace
|
|
29
|
+
containsPlace?: never;
|
|
27
30
|
};
|
|
@@ -15,6 +15,10 @@ interface ISeller {
|
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
17
|
* 拡張可能なイベントオファー
|
|
18
|
+
* イベント(itemOffered)とアプリケーション(availableAtOrFrom)に対して有効期間を明確に定義する
|
|
19
|
+
* イベントIF内にもアプリケーションごとのオファー定義(makesOffer)が存在するが、そちらとのAND条件として検証される
|
|
20
|
+
* オファーコードはプロジェクトが任意に定義する(ただし、イベントID内でユニーク)
|
|
21
|
+
* 有効期間外のオファーは予告なく自動的に削除される
|
|
18
22
|
*/
|
|
19
23
|
interface IEventOffer extends Pick<IOffer, 'typeOf' | 'validFrom' | 'validThrough'> {
|
|
20
24
|
project: {
|