@chevre/factory 4.366.0-alpha.2 → 4.366.0-alpha.3
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.
|
@@ -83,6 +83,7 @@ export interface IAccountsReceivableByServiceType {
|
|
|
83
83
|
serviceType: string;
|
|
84
84
|
accountsReceivable?: number;
|
|
85
85
|
}
|
|
86
|
+
export type IPayActionInObject = Pick<IPayAction, 'actionStatus' | 'id' | 'typeOf'>;
|
|
86
87
|
/**
|
|
87
88
|
* 取引対象物
|
|
88
89
|
*/
|
|
@@ -95,14 +96,17 @@ export interface IObject {
|
|
|
95
96
|
*/
|
|
96
97
|
id: string;
|
|
97
98
|
paymentMethod: IPaymentMethod;
|
|
99
|
+
onPaymentStatusChanged?: IOnPaymentStatusChanged;
|
|
98
100
|
pendingTransaction?: IPendingTransaction;
|
|
99
101
|
entryTranArgs?: IEntryTranArgs;
|
|
100
102
|
entryTranResult?: IEntryTranResult;
|
|
101
103
|
execTranArgs?: IExecTranArgs | IExecTran3dsArgs;
|
|
102
104
|
execTranResult?: IExecTranResult | IExecTran3dsResult;
|
|
103
105
|
secureTran2Result?: ISecureTran2Result;
|
|
104
|
-
|
|
105
|
-
|
|
106
|
+
/**
|
|
107
|
+
* PaymentServiceType.MovieTicketの場合、着券アクション
|
|
108
|
+
*/
|
|
109
|
+
payAction?: IPayActionInObject;
|
|
106
110
|
accountsReceivablesByServiceType?: IAccountsReceivableByServiceType[];
|
|
107
111
|
}
|
|
108
112
|
export interface IPaymentMethodWithoutDetail extends IPaymentMethod {
|