@chevre/factory 4.256.0 → 4.257.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.
|
@@ -48,7 +48,20 @@ export interface IResult<T extends WebAPIFactory.Identifier> {
|
|
|
48
48
|
responseBody: IResponseBody<T>;
|
|
49
49
|
acceptedOffers?: IResultAcceptedOffer[];
|
|
50
50
|
}
|
|
51
|
-
export declare type
|
|
51
|
+
export declare type IAcceptedOfferPriceSpecification = ScreeningEventFactory.ITicketPriceSpecification & {
|
|
52
|
+
/**
|
|
53
|
+
* 複合価格仕様に、指定された適用決済カード情報を付加できるように
|
|
54
|
+
*/
|
|
55
|
+
appliesToMovieTicket?: ReserveTransactionFactory.IAcceptedAppliesToMovieTicket;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* 受け入れられたチケットオファー
|
|
59
|
+
*/
|
|
60
|
+
export declare type IAcceptedOffer4chevre = Pick<ScreeningEventFactory.ITicketOffer, 'id' | 'identifier' | 'typeOf' | 'priceCurrency' | 'itemOffered' | 'addOn' | 'additionalProperty'> & Pick<ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail, 'id' | 'addOn' | 'additionalProperty' | 'paymentMethod'> & {
|
|
61
|
+
itemOffered?: ReserveTransactionFactory.IAcceptedTicketOfferItemOffered;
|
|
62
|
+
priceSpecification: IAcceptedOfferPriceSpecification;
|
|
63
|
+
movieTicketIdentifire?: string;
|
|
64
|
+
};
|
|
52
65
|
export declare type IAcceptedOfferWithoutDetail4chevre = ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail;
|
|
53
66
|
export declare type IObjectWithoutDetail4chevre = ReserveTransactionFactory.IObjectWithoutDetail;
|
|
54
67
|
export declare type IAcceptedOffer4COA = ReserveTransactionFactory.IAcceptedTicketOfferWithoutDetail & OfferFactory.seatReservation.IOfferWithDetails;
|
|
@@ -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 { ITicketOffer } from '../event/screeningEvent';
|
|
7
6
|
import { IMovieTicket } from '../paymentMethod/paymentCard/movieTicket';
|
|
8
7
|
import { IPointAward } from '../product';
|
|
9
8
|
import { IPropertyValue } from '../propertyValue';
|
|
@@ -152,9 +151,6 @@ export interface IAcceptedTicketOfferWithoutDetail {
|
|
|
152
151
|
/**
|
|
153
152
|
* 受け入れられたチケットオファー
|
|
154
153
|
*/
|
|
155
|
-
export declare type IAcceptedTicketOffer = Omit<IAcceptedTicketOfferWithoutDetail, 'priceSpecification'> & ITicketOffer & {
|
|
156
|
-
itemOffered?: IAcceptedTicketOfferItemOffered;
|
|
157
|
-
};
|
|
158
154
|
export interface IAcceptedOffer4object {
|
|
159
155
|
id: string;
|
|
160
156
|
itemOffered: IAcceptedTicketOfferItemOffered4object;
|
|
@@ -168,9 +164,6 @@ export interface IAcceptedOffer4object {
|
|
|
168
164
|
*/
|
|
169
165
|
export interface IConfirmingReservation {
|
|
170
166
|
id: string;
|
|
171
|
-
/**
|
|
172
|
-
* Any additional text to appear on a ticket, such as additional privileges or identifiers.
|
|
173
|
-
*/
|
|
174
167
|
reservedTicket?: {
|
|
175
168
|
/**
|
|
176
169
|
* チケット発行者
|