@chevre/factory 4.205.0 → 4.206.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.
package/lib/factory/action.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as GMO from '@motionpicture/gmo-service';
|
|
2
|
-
import { IAgent as IPayAgent, IAttributes as IPayActionAttributes, IPayPurpose, IPendingTransaction, IRecipient as IPayRecipient } from '../action/trade/pay';
|
|
2
|
+
import { IAgent as IPayAgent, IAttributes as IPayActionAttributes, IOrderAsPayPurpose, IPayPurpose, IPendingTransaction, IRecipient as IPayRecipient } from '../action/trade/pay';
|
|
3
3
|
import * as TransactionFactory from '../assetTransaction';
|
|
4
4
|
import { AssetTransactionType } from '../assetTransactionType';
|
|
5
5
|
import { IExtendId } from '../autoGenerated';
|
|
@@ -18,8 +18,8 @@ export declare type IStartParamsWithoutDetail = TransactionFactory.IStartParams<
|
|
|
18
18
|
export interface IStartParams extends TransactionFactory.IStartParams<AssetTransactionType.Pay, IAgent, IRecipient, IObject> {
|
|
19
19
|
}
|
|
20
20
|
export interface IPotentialActionsParams {
|
|
21
|
-
pay
|
|
22
|
-
purpose
|
|
21
|
+
pay: {
|
|
22
|
+
purpose: IOrderAsPayPurpose;
|
|
23
23
|
};
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
@@ -29,7 +29,7 @@ export interface IConfirmParams {
|
|
|
29
29
|
id?: string;
|
|
30
30
|
transactionNumber?: string;
|
|
31
31
|
endDate?: Date;
|
|
32
|
-
potentialActions
|
|
32
|
+
potentialActions: IPotentialActionsParams;
|
|
33
33
|
}
|
|
34
34
|
export declare type IResult = any;
|
|
35
35
|
export declare type IError = any;
|