@chevre/factory 4.352.0-alpha.1 → 4.352.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.
|
@@ -197,13 +197,19 @@ export interface IResult {
|
|
|
197
197
|
* オファー数(2024-01-17~)
|
|
198
198
|
*/
|
|
199
199
|
numAcceptedOffers?: number;
|
|
200
|
+
options?: {
|
|
201
|
+
/**
|
|
202
|
+
* 取引resultの注文オファーを無視する(Orderに適用しない)
|
|
203
|
+
*/
|
|
204
|
+
ignoreAccpetedOffersFromResult?: boolean;
|
|
205
|
+
};
|
|
200
206
|
}
|
|
201
207
|
/**
|
|
202
208
|
* エラー
|
|
203
209
|
*/
|
|
204
210
|
export type IError = any;
|
|
205
211
|
export interface IPotentialActions {
|
|
206
|
-
order: IOrderActionAttributes
|
|
212
|
+
order: Pick<IOrderActionAttributes, 'potentialActions'>;
|
|
207
213
|
}
|
|
208
214
|
export interface IAttributes extends TransactionFactory.IAttributes<Omit<IStartParams, 'expiresInSeconds'>, IResult, IError, IPotentialActions> {
|
|
209
215
|
}
|
|
@@ -215,7 +221,11 @@ export interface ISearchConditions extends TransactionFactory.ISearchConditions<
|
|
|
215
221
|
seller?: {
|
|
216
222
|
ids?: string[];
|
|
217
223
|
};
|
|
218
|
-
object?: {
|
|
224
|
+
object?: {
|
|
225
|
+
orderNumber?: {
|
|
226
|
+
$eq?: string;
|
|
227
|
+
};
|
|
228
|
+
};
|
|
219
229
|
result?: {
|
|
220
230
|
order?: {
|
|
221
231
|
confirmationNumber?: {
|