@chevre/factory 4.289.0-alpha.11 → 4.289.0-alpha.12
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as GMO from '@motionpicture/gmo-service';
|
|
2
|
-
import { IAttributes as IPayActionAttributes, ILocation, IOrderAsPayPurpose, IPayPurpose, IPendingTransaction, IRecipient as IPayRecipient, ITotalPaymentDue } from '../action/trade/pay';
|
|
2
|
+
import { IAction as IPayAction, IAttributes as IPayActionAttributes, ILocation, IOrderAsPayPurpose, IPayPurpose, IPendingTransaction, IRecipient as IPayRecipient, ITotalPaymentDue } from '../action/trade/pay';
|
|
3
3
|
import * as AssetTransactionFactory from '../assetTransaction';
|
|
4
4
|
import { AssetTransactionType } from '../assetTransactionType';
|
|
5
5
|
import { IExtendId } from '../autoGenerated';
|
|
@@ -85,13 +85,13 @@ export interface IObject {
|
|
|
85
85
|
* 発行決済サービスID
|
|
86
86
|
*/
|
|
87
87
|
id: string;
|
|
88
|
-
paymentMethod
|
|
88
|
+
paymentMethod: IPaymentMethod;
|
|
89
89
|
pendingTransaction?: IPendingTransaction;
|
|
90
90
|
entryTranArgs?: IEntryTranArgs;
|
|
91
91
|
entryTranResult?: IEntryTranResult;
|
|
92
92
|
execTranArgs?: IExecTranArgs;
|
|
93
93
|
execTranResult?: IExecTranResult;
|
|
94
|
-
payAction?:
|
|
94
|
+
payAction?: IPayAction;
|
|
95
95
|
onPaymentStatusChanged?: IOnPaymentStatusChanged;
|
|
96
96
|
}
|
|
97
97
|
export declare type IObjectWithoutDetail = Pick<IObject, 'typeOf' | 'id' | 'paymentMethod'>;
|