@chevre/factory 4.393.0-alpha.12 → 4.393.0-alpha.13
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,4 +1,4 @@
|
|
|
1
|
-
import { IAction as IPayAction, ILocation, IMovieTicket, IOrderAsPayPurpose, IPendingTransaction,
|
|
1
|
+
import { IAction as IPayAction, ILocation, IMovieTicket, IOrderAsPayPurpose, IPendingTransaction, IRecipient as IPayRecipient } from '../action/trade/pay';
|
|
2
2
|
import * as AssetTransactionFactory from '../assetTransaction';
|
|
3
3
|
import { AssetTransactionType } from '../assetTransactionType';
|
|
4
4
|
import { IExtendId } from '../autoGenerated';
|
|
@@ -108,11 +108,14 @@ export interface IObjectWithoutDetail extends Pick<IObject, 'typeOf' | 'id' | 'p
|
|
|
108
108
|
}
|
|
109
109
|
export type IPotentialAction = IPotentialInformAction;
|
|
110
110
|
export type IOrderAsPurpose = IOrderAsPayPurpose;
|
|
111
|
-
export type IPurpose =
|
|
111
|
+
export type IPurpose = IOrderAsPurpose;
|
|
112
112
|
export type IStartParamsWithoutDetail = AssetTransactionFactory.IStartParams<AssetTransactionType.Pay, IAgent, IRecipient, IObjectWithoutDetail> & {
|
|
113
113
|
location?: ILocation;
|
|
114
114
|
recipient: IRecipient;
|
|
115
|
-
|
|
115
|
+
/**
|
|
116
|
+
* required(2025-02-12~)
|
|
117
|
+
*/
|
|
118
|
+
purpose: IPurpose;
|
|
116
119
|
};
|
|
117
120
|
export interface IStartParams extends AssetTransactionFactory.IStartParams<AssetTransactionType.Pay, IAgent, IRecipient, IObject> {
|
|
118
121
|
location?: ILocation;
|