@chevre/factory 4.372.0 → 4.373.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.
|
@@ -4,6 +4,7 @@ import { IAttributes as IOrderActionAttributes } from '../action/trade/order';
|
|
|
4
4
|
import { IEntryTranArgs, IEntryTranResult, IExecTran3dsResult, IExecTranArgs, IExecTranResult, IPaymentMethodWithoutDetail } from '../assetTransaction/pay';
|
|
5
5
|
import { IExtendId } from '../autoGenerated';
|
|
6
6
|
import { IClientUser } from '../clientUser';
|
|
7
|
+
import { CreativeWorkType } from '../creativeWorkType';
|
|
7
8
|
import * as OrderFactory from '../order';
|
|
8
9
|
import { IProject } from '../project';
|
|
9
10
|
import * as TransactionFactory from '../transaction';
|
|
@@ -96,6 +97,13 @@ export interface IStartParamsWithoutDetail {
|
|
|
96
97
|
};
|
|
97
98
|
}
|
|
98
99
|
export type ISeller = TransactionFactory.ISeller & Pick<OrderFactory.ISeller, 'additionalProperty'>;
|
|
100
|
+
export interface IInstrument {
|
|
101
|
+
typeOf: CreativeWorkType.WebApplication;
|
|
102
|
+
/**
|
|
103
|
+
* アプリケーションID
|
|
104
|
+
*/
|
|
105
|
+
id: string;
|
|
106
|
+
}
|
|
99
107
|
/**
|
|
100
108
|
* 取引開始パラメーター
|
|
101
109
|
*/
|
|
@@ -105,6 +113,7 @@ export interface IStartParams extends Pick<TransactionFactory.IStartParams<Trans
|
|
|
105
113
|
*/
|
|
106
114
|
seller: ISeller;
|
|
107
115
|
expiresInSeconds: number;
|
|
116
|
+
instrument?: IInstrument;
|
|
108
117
|
}
|
|
109
118
|
type ISendEmailMessageParams = TransactionFactory.ISendEmailMessageParams;
|
|
110
119
|
/**
|
|
@@ -160,7 +169,7 @@ export interface IConfirmParams {
|
|
|
160
169
|
*/
|
|
161
170
|
result?: IResultParams;
|
|
162
171
|
}
|
|
163
|
-
export type IOrderAsResult = OrderFactory.IOrder
|
|
172
|
+
export type IOrderAsResult = OrderFactory.IOrder;
|
|
164
173
|
export interface IAuthorizeActionAsResult {
|
|
165
174
|
id: string;
|
|
166
175
|
}
|