@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?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.352.0-alpha.1",
3
+ "version": "4.352.0-alpha.3",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",