@chevre/factory 4.288.0-alpha.0 → 4.288.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.
|
@@ -61,7 +61,7 @@ export declare type IAcceptedOfferPriceSpecification = ITicketPriceSpecification
|
|
|
61
61
|
/**
|
|
62
62
|
* 受け入れられたチケットオファー
|
|
63
63
|
*/
|
|
64
|
-
export declare type IAcceptedOffer4chevre = Pick<ITicketOffer, 'id' | 'identifier' | 'typeOf' | 'priceCurrency' | 'itemOffered' | 'addOn' | 'additionalProperty'> & Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'addOn' | 'additionalProperty'
|
|
64
|
+
export declare type IAcceptedOffer4chevre = Pick<ITicketOffer, 'id' | 'identifier' | 'typeOf' | 'priceCurrency' | 'itemOffered' | 'addOn' | 'additionalProperty'> & Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'addOn' | 'additionalProperty'> & {
|
|
65
65
|
itemOffered?: ReserveTransactionFactory.IAcceptedTicketOfferItemOffered;
|
|
66
66
|
priceSpecification: IAcceptedOfferPriceSpecification;
|
|
67
67
|
};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { EventType } from './eventType';
|
|
2
2
|
import { IMultilingualString } from './multilingualString';
|
|
3
|
+
import { OfferType } from './offerType';
|
|
3
4
|
import { IProject } from './project';
|
|
4
5
|
import { PropertyValueType } from './propertyValue';
|
|
5
6
|
import { SortType } from './sortType';
|
|
6
7
|
import { IThing } from './thing';
|
|
7
|
-
export declare type CategorySetIdentifier = EventType.ScreeningEvent | EventType.ScreeningEventSeries | PropertyValueType.LocationFeatureSpecification;
|
|
8
|
+
export declare type CategorySetIdentifier = EventType.ScreeningEvent | EventType.ScreeningEventSeries | PropertyValueType.LocationFeatureSpecification | 'OfferCatalog' | OfferType.Offer;
|
|
8
9
|
/**
|
|
9
10
|
* {@link https://schema.org/CategoryCodeSet}
|
|
10
11
|
*/
|
|
@@ -3,7 +3,6 @@ import { ActionType } from '../actionType';
|
|
|
3
3
|
import * as AssetTransactionFactory from '../assetTransaction';
|
|
4
4
|
import { AssetTransactionType } from '../assetTransactionType';
|
|
5
5
|
import { IExtendId } from '../autoGenerated';
|
|
6
|
-
import { IMovieTicket } from '../paymentMethod/paymentCard/movieTicket';
|
|
7
6
|
import { IPointAward } from '../product';
|
|
8
7
|
import { IPropertyValue } from '../propertyValue';
|
|
9
8
|
import * as ReservationFactory from '../reservation';
|
|
@@ -124,7 +123,6 @@ export interface IAcceptedAddOn {
|
|
|
124
123
|
*/
|
|
125
124
|
id?: string;
|
|
126
125
|
}
|
|
127
|
-
export declare type IAcceptedPaymentMethod = IMovieTicket;
|
|
128
126
|
export interface ISingleAcceptedAppliesToMovieTicket {
|
|
129
127
|
/**
|
|
130
128
|
* 適用決済カード識別子
|
|
@@ -168,7 +166,6 @@ export interface IAcceptedTicketOfferWithoutDetail {
|
|
|
168
166
|
* 受け入れるアドオン
|
|
169
167
|
*/
|
|
170
168
|
addOn?: IAcceptedAddOn[];
|
|
171
|
-
paymentMethod?: IAcceptedPaymentMethod;
|
|
172
169
|
additionalProperty?: IPropertyValue<string>[];
|
|
173
170
|
priceSpecification?: {
|
|
174
171
|
appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
|
|
@@ -184,10 +181,6 @@ export interface IAcceptedOffer4object {
|
|
|
184
181
|
appliesToMovieTicket?: IAcceptedAppliesToMovieTicket;
|
|
185
182
|
};
|
|
186
183
|
}
|
|
187
|
-
/**
|
|
188
|
-
* 確定時予約
|
|
189
|
-
* 指定することで、予約属性を確定時に上書きすることができる
|
|
190
|
-
*/
|
|
191
184
|
export interface IPotentialActionsParams {
|
|
192
185
|
reserve?: {
|
|
193
186
|
purpose?: ReserveActionFactory.IOrderAsReservePurpose;
|