@chevre/factory 4.327.0-alpha.6 → 4.327.0-alpha.7
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.
|
@@ -9,6 +9,11 @@ export interface IPayAssetTransaction {
|
|
|
9
9
|
* 決済取引番号
|
|
10
10
|
*/
|
|
11
11
|
transactionNumber: string;
|
|
12
|
+
object?: {
|
|
13
|
+
paymentMethod?: {
|
|
14
|
+
identifier?: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
12
17
|
}
|
|
13
18
|
export declare type IObject = IPayAssetTransaction[];
|
|
14
19
|
export declare type IResult = any;
|
|
@@ -142,6 +142,11 @@ export interface IPotentialActionsParams {
|
|
|
142
142
|
*/
|
|
143
143
|
export interface IConfirmParams {
|
|
144
144
|
id?: string;
|
|
145
|
+
object?: {
|
|
146
|
+
paymentMethod?: {
|
|
147
|
+
identifier?: string;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
145
150
|
transactionNumber?: string;
|
|
146
151
|
endDate?: Date;
|
|
147
152
|
potentialActions: IPotentialActionsParams;
|
|
@@ -13,6 +13,11 @@ export interface IObjectAsPayTransaction {
|
|
|
13
13
|
typeOf: AssetTransactionType.Pay;
|
|
14
14
|
transactionNumber: string;
|
|
15
15
|
status: TransactionStatusType.Confirmed;
|
|
16
|
+
object?: {
|
|
17
|
+
paymentMethod?: {
|
|
18
|
+
identifier?: string;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
16
21
|
}
|
|
17
22
|
export interface IData {
|
|
18
23
|
project: Pick<IProject, 'id' | 'typeOf'>;
|