@chevre/factory 4.263.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 +6 -0
- package/lib/event.d.ts +0 -9
- package/package.json +1 -1
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
|
* イベントが実行される場所
|