@chevre/factory 4.375.0-alpha.14 → 4.375.0-alpha.16
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.
|
@@ -169,7 +169,6 @@ export type IEvent = Pick<ScreeningEventFactory.IEvent, 'id' | 'typeOf'> & {
|
|
|
169
169
|
export type IObject<T extends WebAPIFactory.Identifier> = {
|
|
170
170
|
typeOf: ObjectType;
|
|
171
171
|
event?: IEvent;
|
|
172
|
-
acceptedOffer?: IAcceptedOffer<T>[];
|
|
173
172
|
/**
|
|
174
173
|
* recipe有(仮予約時)のCOA興行オファー採用アクションID(2024-06-11~)
|
|
175
174
|
*/
|
|
@@ -16,10 +16,7 @@ export declare enum ResultType {
|
|
|
16
16
|
}
|
|
17
17
|
export { ICreditCard, IFromLocation, ITokenizedPaymentCard };
|
|
18
18
|
export import IPurchaseNumberAuthResult = CheckMovieTicketActionFactory.IPurchaseNumberAuthResult;
|
|
19
|
-
|
|
20
|
-
* 承認対象
|
|
21
|
-
*/
|
|
22
|
-
export interface IObject {
|
|
19
|
+
export interface IObjectIncludingPaymentMethodDetails {
|
|
23
20
|
/**
|
|
24
21
|
* The identifier for the account the payment will be applied to.
|
|
25
22
|
* MovieTicket->購入管理番号
|
|
@@ -79,13 +76,14 @@ export interface IObject {
|
|
|
79
76
|
*/
|
|
80
77
|
movieTickets?: IMovieTicket[];
|
|
81
78
|
}
|
|
82
|
-
export type IObjectWithoutDetail = Pick<
|
|
79
|
+
export type IObjectWithoutDetail = Pick<IObjectIncludingPaymentMethodDetails, 'additionalProperty' | 'amount' | 'issuedThrough' | 'paymentMethod' | 'description' | 'name' | 'creditCard' | 'method' | 'movieTickets' | 'fromLocation'> & {
|
|
83
80
|
/**
|
|
84
81
|
* 外部決済URL発行の場合に指定
|
|
85
82
|
* CreditCardのみ対応
|
|
86
83
|
*/
|
|
87
84
|
paymentMethodId?: string;
|
|
88
85
|
};
|
|
86
|
+
export type IObject = Pick<IObjectIncludingPaymentMethodDetails, 'accountId' | 'additionalProperty' | 'amount' | 'description' | 'fromLocation' | 'issuedThrough' | 'name' | 'paymentMethod' | 'paymentMethodId' | 'typeOf'>;
|
|
89
87
|
export interface IResultPaymentMethod {
|
|
90
88
|
/**
|
|
91
89
|
* 決済方法区分
|