@chevre/factory 4.253.0 → 4.256.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.
|
@@ -100,6 +100,32 @@ export interface IAcceptedAddOn {
|
|
|
100
100
|
id?: string;
|
|
101
101
|
}
|
|
102
102
|
export declare type IAcceptedPaymentMethod = IMovieTicket;
|
|
103
|
+
export interface ISingleAcceptedAppliesToMovieTicket {
|
|
104
|
+
/**
|
|
105
|
+
* 適用決済カード識別子
|
|
106
|
+
*/
|
|
107
|
+
identifier?: string;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* 複数承認適用決済カード
|
|
111
|
+
* 複数指定の場合、カード識別子と決済方法区分の組み合わせで指定します
|
|
112
|
+
*/
|
|
113
|
+
export declare type IMultipleAcceptedAppliesToMovieTicket = {
|
|
114
|
+
/**
|
|
115
|
+
* 適用決済カード識別子
|
|
116
|
+
*/
|
|
117
|
+
identifier?: string;
|
|
118
|
+
serviceOutput?: {
|
|
119
|
+
/**
|
|
120
|
+
* 決済方法区分
|
|
121
|
+
*/
|
|
122
|
+
typeOf?: string;
|
|
123
|
+
};
|
|
124
|
+
}[];
|
|
125
|
+
/**
|
|
126
|
+
* 承認適用決済カード
|
|
127
|
+
*/
|
|
128
|
+
export declare type IAcceptedAppliesToMovieTicket = ISingleAcceptedAppliesToMovieTicket | IMultipleAcceptedAppliesToMovieTicket;
|
|
103
129
|
/**
|
|
104
130
|
* 受け入れられたチケットオファー(詳細なし)
|
|
105
131
|
*/
|
|
@@ -120,12 +146,7 @@ export interface IAcceptedTicketOfferWithoutDetail {
|
|
|
120
146
|
paymentMethod?: IAcceptedPaymentMethod;
|
|
121
147
|
additionalProperty?: IPropertyValue<string>[];
|
|
122
148
|
priceSpecification?: {
|
|
123
|
-
appliesToMovieTicket?:
|
|
124
|
-
/**
|
|
125
|
-
* 適用MovieTicket購入番号
|
|
126
|
-
*/
|
|
127
|
-
identifier?: string;
|
|
128
|
-
};
|
|
149
|
+
appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
|
|
129
150
|
};
|
|
130
151
|
}
|
|
131
152
|
/**
|
|
@@ -138,12 +159,7 @@ export interface IAcceptedOffer4object {
|
|
|
138
159
|
id: string;
|
|
139
160
|
itemOffered: IAcceptedTicketOfferItemOffered4object;
|
|
140
161
|
priceSpecification?: {
|
|
141
|
-
appliesToMovieTicket?:
|
|
142
|
-
/**
|
|
143
|
-
* 適用MovieTicket購入番号
|
|
144
|
-
*/
|
|
145
|
-
identifier?: string;
|
|
146
|
-
};
|
|
162
|
+
appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
|
|
147
163
|
};
|
|
148
164
|
}
|
|
149
165
|
/**
|
|
@@ -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,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;
|