@chevre/factory 4.205.0 → 4.206.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.
@@ -141,6 +141,11 @@ export interface ISearchConditions {
141
141
  $eq?: string;
142
142
  $in?: string[];
143
143
  };
144
+ object?: {
145
+ paymentMethodId?: {
146
+ $eq?: string;
147
+ };
148
+ };
144
149
  orderNumber?: {
145
150
  $in?: string[];
146
151
  };
@@ -1,5 +1,5 @@
1
1
  import * as GMO from '@motionpicture/gmo-service';
2
- import { IAgent as IPayAgent, IAttributes as IPayActionAttributes, IPayPurpose, IPendingTransaction, IRecipient as IPayRecipient } from '../action/trade/pay';
2
+ import { IAgent as IPayAgent, IAttributes as IPayActionAttributes, IOrderAsPayPurpose, IPayPurpose, IPendingTransaction, IRecipient as IPayRecipient } from '../action/trade/pay';
3
3
  import * as TransactionFactory from '../assetTransaction';
4
4
  import { AssetTransactionType } from '../assetTransactionType';
5
5
  import { IExtendId } from '../autoGenerated';
@@ -18,8 +18,8 @@ export declare type IStartParamsWithoutDetail = TransactionFactory.IStartParams<
18
18
  export interface IStartParams extends TransactionFactory.IStartParams<AssetTransactionType.Pay, IAgent, IRecipient, IObject> {
19
19
  }
20
20
  export interface IPotentialActionsParams {
21
- pay?: {
22
- purpose?: IPayPurpose;
21
+ pay: {
22
+ purpose: IOrderAsPayPurpose;
23
23
  };
24
24
  }
25
25
  /**
@@ -29,7 +29,7 @@ export interface IConfirmParams {
29
29
  id?: string;
30
30
  transactionNumber?: string;
31
31
  endDate?: Date;
32
- potentialActions?: IPotentialActionsParams;
32
+ potentialActions: IPotentialActionsParams;
33
33
  }
34
34
  export declare type IResult = any;
35
35
  export declare type IError = any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.205.0",
3
+ "version": "4.206.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",