@chevre/factory 4.202.0 → 4.203.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.
|
@@ -77,7 +77,7 @@ export declare type IObject<T extends WebAPIFactory.Identifier> = {
|
|
|
77
77
|
* Chevre進行中取引
|
|
78
78
|
*/
|
|
79
79
|
pendingTransaction?: IPendingTransaction;
|
|
80
|
-
} & IObjectWithoutDetail<T>;
|
|
80
|
+
} & Omit<IObjectWithoutDetail<T>, 'acceptedOffer'>;
|
|
81
81
|
export interface IPurpose {
|
|
82
82
|
typeOf: TransactionType.PlaceOrder;
|
|
83
83
|
id: string;
|
|
@@ -136,12 +136,20 @@ export interface IAcceptedTicketOfferWithoutDetail {
|
|
|
136
136
|
/**
|
|
137
137
|
* 受け入れられたチケットオファー
|
|
138
138
|
*/
|
|
139
|
-
export declare type IAcceptedTicketOffer = IAcceptedTicketOfferWithoutDetail & ITicketOffer & {
|
|
139
|
+
export declare type IAcceptedTicketOffer = Omit<IAcceptedTicketOfferWithoutDetail, 'priceSpecification'> & ITicketOffer & {
|
|
140
140
|
itemOffered?: IAcceptedTicketOfferItemOffered;
|
|
141
141
|
};
|
|
142
142
|
export interface IAcceptedOffer4object {
|
|
143
143
|
id: string;
|
|
144
144
|
itemOffered: IAcceptedTicketOfferItemOffered4object;
|
|
145
|
+
priceSpecification?: {
|
|
146
|
+
appliesToMovieTicket?: {
|
|
147
|
+
/**
|
|
148
|
+
* 適用MovieTicket購入番号
|
|
149
|
+
*/
|
|
150
|
+
identifier?: string;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
145
153
|
}
|
|
146
154
|
/**
|
|
147
155
|
* 確定時予約インターフェース
|