@chevre/factory 4.262.0 → 4.264.0
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/event/screeningEvent.d.ts +9 -0
- package/lib/event.d.ts +0 -9
- package/lib/offerCatalog.d.ts +0 -1
- package/package.json +1 -1
|
@@ -89,6 +89,12 @@ export declare type IServiceType = IProductServiceType & {
|
|
|
89
89
|
*/
|
|
90
90
|
export interface IItemOffered {
|
|
91
91
|
id?: string;
|
|
92
|
+
/**
|
|
93
|
+
* 興行名称
|
|
94
|
+
*/
|
|
95
|
+
name?: {
|
|
96
|
+
ja?: string;
|
|
97
|
+
};
|
|
92
98
|
/**
|
|
93
99
|
* 興行区分
|
|
94
100
|
*/
|
|
@@ -321,6 +327,9 @@ export interface IOfferSearchConditions {
|
|
|
321
327
|
validFrom?: Date;
|
|
322
328
|
validThrough?: Date;
|
|
323
329
|
itemOffered?: {
|
|
330
|
+
id?: {
|
|
331
|
+
$in?: string[];
|
|
332
|
+
};
|
|
324
333
|
serviceType?: {
|
|
325
334
|
ids?: string[];
|
|
326
335
|
};
|
package/lib/event.d.ts
CHANGED
|
@@ -7,11 +7,6 @@ import * as PlaceFactory from './place';
|
|
|
7
7
|
import { IProject } from './project';
|
|
8
8
|
import { IPropertyValue } from './propertyValue';
|
|
9
9
|
import { SortType } from './sortType';
|
|
10
|
-
export interface IHasOfferCatalog {
|
|
11
|
-
typeOf: 'OfferCatalog';
|
|
12
|
-
id: string;
|
|
13
|
-
identifier?: string;
|
|
14
|
-
}
|
|
15
10
|
export interface IAttributes<T extends EventType> {
|
|
16
11
|
project: Pick<IProject, 'id' | 'typeOf'>;
|
|
17
12
|
/**
|
|
@@ -52,10 +47,6 @@ export interface IAttributes<T extends EventType> {
|
|
|
52
47
|
* イベントがキャンセル、あるいは、延期された場合に主に使用されます。
|
|
53
48
|
*/
|
|
54
49
|
eventStatus: EventStatusType;
|
|
55
|
-
/**
|
|
56
|
-
* Indicates an OfferCatalog listing for this Organization, Person, or Service.
|
|
57
|
-
*/
|
|
58
|
-
hasOfferCatalog?: IHasOfferCatalog;
|
|
59
50
|
headline?: IMultilingualString;
|
|
60
51
|
/**
|
|
61
52
|
* イベントが実行される場所
|
package/lib/offerCatalog.d.ts
CHANGED