@chevre/factory 4.252.0 → 4.255.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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as CreativeWorkFactory from '../creativeWork';
|
|
2
|
+
import { IMultilingualString } from '../multilingualString';
|
|
2
3
|
import * as OfferFactory from '../offer';
|
|
3
4
|
import { IProject } from '../project';
|
|
4
5
|
import { SortType } from '../sortType';
|
|
@@ -25,6 +26,7 @@ export interface ICreativeWork extends CreativeWorkFactory.ICreativeWork {
|
|
|
25
26
|
* The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.
|
|
26
27
|
*/
|
|
27
28
|
duration?: string;
|
|
29
|
+
name?: IMultilingualString;
|
|
28
30
|
/**
|
|
29
31
|
* 販売情報
|
|
30
32
|
*/
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { CreativeWorkType } from './creativeWorkType';
|
|
2
2
|
import { OrganizationType } from './organizationType';
|
|
3
3
|
import * as PermitFactory from './permit';
|
|
4
|
-
import { IMemberOf } from './person';
|
|
5
4
|
import { PersonType } from './personType';
|
|
6
5
|
import * as ProductFactory from './product';
|
|
7
6
|
import { IProject } from './project';
|
|
@@ -48,17 +47,12 @@ export declare type IGoodWithDetail = IReservationWithDetail | IPermit;
|
|
|
48
47
|
export interface IOwnerAsOrganization {
|
|
49
48
|
typeOf: OrganizationType.Organization;
|
|
50
49
|
id: string;
|
|
51
|
-
project: {
|
|
52
|
-
id: string;
|
|
53
|
-
typeOf: OrganizationType.Project;
|
|
54
|
-
};
|
|
55
50
|
identifier?: IPropertyValue<string>[];
|
|
56
51
|
}
|
|
57
52
|
export interface IOwnerAsPerson {
|
|
58
53
|
typeOf: PersonType;
|
|
59
54
|
id: string;
|
|
60
55
|
identifier?: IPropertyValue<string>[];
|
|
61
|
-
memberOf?: IMemberOf;
|
|
62
56
|
}
|
|
63
57
|
export interface IOwnerAsWebApplication {
|
|
64
58
|
typeOf: CreativeWorkType.WebApplication;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { ICOAInfo, ILocation as IEventLocation, IName as IEventName, ISuperEvent } from '../event/screeningEvent';
|
|
1
|
+
import { ICOAInfo, ILocation as IEventLocation, IName as IEventName, ISuperEvent, IWorkPerformed } from '../event/screeningEvent';
|
|
2
2
|
import { EventStatusType } from '../eventStatusType';
|
|
3
3
|
import { EventType } from '../eventType';
|
|
4
|
+
import { IMultilingualString } from '../multilingualString';
|
|
4
5
|
import { IPriceSpecification as ICategoryCodeChargeSpecification } from '../priceSpecification/categoryCodeChargeSpecification';
|
|
5
6
|
import { IPriceSpecification as ICompoundPriceSpecification } from '../priceSpecification/compoundPriceSpecification';
|
|
6
7
|
import { IPriceSpecification as IMovieTicketTypeChargeSpecification } from '../priceSpecification/movieTicketTypeChargeSpecification';
|
|
@@ -9,7 +10,12 @@ import { IProject } from '../project';
|
|
|
9
10
|
import * as ReservationFactory from '../reservation';
|
|
10
11
|
import { ReservationStatusType } from '../reservationStatusType';
|
|
11
12
|
import { ReservationType } from '../reservationType';
|
|
12
|
-
export declare type
|
|
13
|
+
export declare type IOptimizedWorkPerformed = Omit<IWorkPerformed, 'name'> & {
|
|
14
|
+
name?: string | IMultilingualString;
|
|
15
|
+
};
|
|
16
|
+
export declare type IOptimizedSuperEvent = Pick<ISuperEvent, 'additionalProperty' | 'id' | 'kanaName' | 'location' | 'name' | 'project' | 'soundFormat' | 'typeOf' | 'videoFormat' | 'description' | 'headline' | 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'> & {
|
|
17
|
+
workPerformed: IOptimizedWorkPerformed;
|
|
18
|
+
};
|
|
13
19
|
export interface IReservationFor {
|
|
14
20
|
endDate: Date;
|
|
15
21
|
eventStatus: EventStatusType;
|