@chevre/factory 4.353.0-alpha.1 → 4.353.0-alpha.3
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.
|
@@ -184,9 +184,7 @@ export interface IConfirmParams {
|
|
|
184
184
|
*/
|
|
185
185
|
result?: IResultParams;
|
|
186
186
|
}
|
|
187
|
-
export type IOrderAsResult = OrderFactory.IOrder & {
|
|
188
|
-
acceptedOffers: OrderFactory.IAcceptedOffer<OrderFactory.IItemOffered>[];
|
|
189
|
-
};
|
|
187
|
+
export type IOrderAsResult = OrderFactory.IOrder & {};
|
|
190
188
|
export interface IAuthorizeActionAsResult {
|
|
191
189
|
id: string;
|
|
192
190
|
}
|
|
@@ -198,6 +196,10 @@ export interface IResult {
|
|
|
198
196
|
* 注文
|
|
199
197
|
*/
|
|
200
198
|
order: IOrderAsResult;
|
|
199
|
+
/**
|
|
200
|
+
* 取引確定時の同期的な注文コード発行に対応(2024-02-05~)
|
|
201
|
+
*/
|
|
202
|
+
code?: string;
|
|
201
203
|
/**
|
|
202
204
|
* 承認アクションID(2024-01-17~)
|
|
203
205
|
*/
|