@chevre/factory 4.191.0-alpha.0 → 4.192.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.
|
@@ -30,14 +30,8 @@ export interface IObjectPendingTransaction {
|
|
|
30
30
|
transactionNumber?: string;
|
|
31
31
|
}
|
|
32
32
|
export declare type IPaymentCard = MoneyTransferActionFactory.IPaymentCard;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*/
|
|
36
|
-
export declare type ITokenizedPaymentCard = string;
|
|
37
|
-
/**
|
|
38
|
-
* 転送元インターフェース
|
|
39
|
-
*/
|
|
40
|
-
export declare type IFromLocation = IPaymentCard | ITokenizedPaymentCard;
|
|
33
|
+
export import ITokenizedPaymentCard = PayTransactionFactory.ITokenizedPaymentCard;
|
|
34
|
+
export import IFromLocation = PayTransactionFactory.IFromLocation;
|
|
41
35
|
/**
|
|
42
36
|
* 転送先インターフェース
|
|
43
37
|
*/
|
|
@@ -97,7 +91,6 @@ export interface IObject {
|
|
|
97
91
|
/**
|
|
98
92
|
* 転送先(PaymentCard決済)
|
|
99
93
|
*/
|
|
100
|
-
toLocation?: IToLocation;
|
|
101
94
|
/**
|
|
102
95
|
* 支払い方法(CreditCard決済)
|
|
103
96
|
*/
|
|
@@ -37,6 +37,7 @@ export interface IOrderAsFromLocation {
|
|
|
37
37
|
orderNumber: string;
|
|
38
38
|
}
|
|
39
39
|
export declare type IFromLocationBeforeStart = IOrderAsFromLocation | IPaymentCard | ITokenizedPaymentCard;
|
|
40
|
+
export declare type IToLocationBeforeStart = IOrderAsFromLocation | IPaymentCard;
|
|
40
41
|
/**
|
|
41
42
|
* 取引対象物インターフェース
|
|
42
43
|
*/
|
|
@@ -72,7 +73,7 @@ export interface IObjectBeforeStart {
|
|
|
72
73
|
/**
|
|
73
74
|
* 転送先
|
|
74
75
|
*/
|
|
75
|
-
toLocation: IToLocation;
|
|
76
|
+
toLocation: IToLocation | IToLocationBeforeStart;
|
|
76
77
|
/**
|
|
77
78
|
* 取引説明
|
|
78
79
|
*/
|
|
@@ -33,6 +33,11 @@ export interface IConfirmParams {
|
|
|
33
33
|
}
|
|
34
34
|
export declare type IResult = any;
|
|
35
35
|
export declare type IError = any;
|
|
36
|
+
/**
|
|
37
|
+
* ペイメントカードトークン
|
|
38
|
+
*/
|
|
39
|
+
export declare type ITokenizedPaymentCard = string;
|
|
40
|
+
export declare type IFromLocation = ITokenizedPaymentCard;
|
|
36
41
|
/**
|
|
37
42
|
* クレジットカード決済承認に必要なクレジットカードインターフェース
|
|
38
43
|
*/
|
|
@@ -75,6 +80,10 @@ export interface IPaymentMethod {
|
|
|
75
80
|
* 決済方法タイプ
|
|
76
81
|
*/
|
|
77
82
|
typeOf: string;
|
|
83
|
+
/**
|
|
84
|
+
* 出金元ペイメントカード
|
|
85
|
+
*/
|
|
86
|
+
fromLocation?: IFromLocation;
|
|
78
87
|
/**
|
|
79
88
|
* ムビチケリスト
|
|
80
89
|
*/
|