@chevre/factory 4.351.0 → 4.352.0-alpha.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/action.d.ts +3 -0
- package/lib/transaction/placeOrder.d.ts +11 -0
- package/package.json +1 -1
package/lib/action.d.ts
CHANGED
|
@@ -178,6 +178,9 @@ export interface IConfirmParams {
|
|
|
178
178
|
export type IOrderAsResult = OrderFactory.IOrder & {
|
|
179
179
|
acceptedOffers: OrderFactory.IAcceptedOffer<OrderFactory.IItemOffered>[];
|
|
180
180
|
};
|
|
181
|
+
export interface IAuthorizeActionAsResult {
|
|
182
|
+
id: string;
|
|
183
|
+
}
|
|
181
184
|
/**
|
|
182
185
|
* 取引結果
|
|
183
186
|
*/
|
|
@@ -186,6 +189,14 @@ export interface IResult {
|
|
|
186
189
|
* 注文
|
|
187
190
|
*/
|
|
188
191
|
order: IOrderAsResult;
|
|
192
|
+
/**
|
|
193
|
+
* 承認アクションID(2024-01-17~)
|
|
194
|
+
*/
|
|
195
|
+
authorizeActions?: IAuthorizeActionAsResult[];
|
|
196
|
+
/**
|
|
197
|
+
* オファー数(2024-01-17~)
|
|
198
|
+
*/
|
|
199
|
+
numAcceptedOffers?: number;
|
|
189
200
|
}
|
|
190
201
|
/**
|
|
191
202
|
* エラー
|