@chevre/factory 4.360.0 → 4.361.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.
|
@@ -14,14 +14,6 @@ export type IRecipient = ActionFactory.IParticipantAsSeller;
|
|
|
14
14
|
export declare enum ResultType {
|
|
15
15
|
Payment = "Payment"
|
|
16
16
|
}
|
|
17
|
-
/**
|
|
18
|
-
* 進行中取引
|
|
19
|
-
*/
|
|
20
|
-
export interface IObjectPendingTransaction {
|
|
21
|
-
typeOf: AssetTransactionType.MoneyTransfer;
|
|
22
|
-
id?: string;
|
|
23
|
-
transactionNumber?: string;
|
|
24
|
-
}
|
|
25
17
|
export { ICreditCard, IFromLocation, ITokenizedPaymentCard };
|
|
26
18
|
export import IPurchaseNumberAuthResult = CheckMovieTicketActionFactory.IPurchaseNumberAuthResult;
|
|
27
19
|
/**
|
|
@@ -64,10 +56,6 @@ export interface IObject {
|
|
|
64
56
|
*/
|
|
65
57
|
id: string;
|
|
66
58
|
};
|
|
67
|
-
/**
|
|
68
|
-
* 進行中取引(ペイメントカード決済)
|
|
69
|
-
*/
|
|
70
|
-
pendingTransaction?: IObjectPendingTransaction;
|
|
71
59
|
/**
|
|
72
60
|
* 転送元(PaymentCard決済)
|
|
73
61
|
*/
|
|
@@ -140,11 +128,16 @@ export interface IPurpose {
|
|
|
140
128
|
export declare enum ServiceIdentifier {
|
|
141
129
|
Chevre = "Chevre"
|
|
142
130
|
}
|
|
143
|
-
export interface
|
|
131
|
+
export interface IInstrumentAsService {
|
|
144
132
|
typeOf: 'WebAPI';
|
|
145
133
|
identifier: ServiceIdentifier;
|
|
146
134
|
}
|
|
147
|
-
export
|
|
135
|
+
export interface IInstrumentAsAssetTransaction {
|
|
136
|
+
typeOf: AssetTransactionType.Pay;
|
|
137
|
+
transactionNumber: string;
|
|
138
|
+
identifier: ServiceIdentifier;
|
|
139
|
+
}
|
|
140
|
+
export type IInstrument = IInstrumentAsAssetTransaction | IInstrumentAsService;
|
|
148
141
|
/**
|
|
149
142
|
* 決済承認アクション属性
|
|
150
143
|
*/
|