@chevre/factory 4.313.0-alpha.2 → 4.313.0-alpha.4

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.
@@ -63,6 +63,7 @@ export interface ISearchConditions extends AssetTransactionFactory.ISearchCondit
63
63
  };
64
64
  paymentMethodId?: {
65
65
  $eq?: string;
66
+ $in?: string[];
66
67
  };
67
68
  };
68
69
  }
@@ -1,10 +1,19 @@
1
1
  import { IExtendId } from '../autoGenerated';
2
2
  import * as TaskFactory from '../task';
3
3
  import { TaskName } from '../taskName';
4
- import { ITransaction as IMoneyTransfer } from '../transaction/moneyTransfer';
5
- import { ITransaction as IPlaceOrder } from '../transaction/placeOrder';
6
- import { ITransaction as IReturnOrder } from '../transaction/returnOrder';
7
- export declare type IObject = Pick<IPlaceOrder | IReturnOrder | IMoneyTransfer, 'project' | 'id' | 'typeOf' | 'startDate' | 'endDate'>;
4
+ import { IObject as IMoneyTransferObject, ITransaction as IMoneyTransfer } from '../transaction/moneyTransfer';
5
+ import { IObject as IPlaceOrderObject, ITransaction as IPlaceOrder } from '../transaction/placeOrder';
6
+ import { IObject as IReturnOrderObject, ITransaction as IReturnOrder } from '../transaction/returnOrder';
7
+ export declare type IObjectAsMoneyTransfer = Pick<IMoneyTransfer, 'project' | 'id' | 'typeOf' | 'startDate' | 'endDate'> & {
8
+ object: Pick<IMoneyTransferObject, 'pendingTransaction'>;
9
+ };
10
+ export declare type IObjectAsPlaceOrder = Pick<IPlaceOrder, 'project' | 'id' | 'typeOf' | 'startDate' | 'endDate'> & {
11
+ object: Pick<IPlaceOrderObject, 'confirmationNumber' | 'orderNumber'>;
12
+ };
13
+ export declare type IObjectAsReturnOrder = Pick<IReturnOrder, 'project' | 'id' | 'typeOf' | 'startDate' | 'endDate'> & {
14
+ object: Pick<IReturnOrderObject, 'order'>;
15
+ };
16
+ export declare type IObject = IObjectAsMoneyTransfer | IObjectAsPlaceOrder | IObjectAsReturnOrder;
8
17
  export interface IData {
9
18
  object: IObject;
10
19
  }
@@ -1,5 +1,4 @@
1
1
  import * as waiter from '@waiter/factory';
2
- import { IAction as IAuthorizeAction, IAttributes as IAuthorizeActionAttributes } from '../action/authorize';
3
2
  import { IAttributes as IMoneyTransferActionAttributes } from '../action/interact/confirm/moneyTransfer';
4
3
  import { IAmount as IMoneyTransferAmount } from '../action/transfer/moneyTransfer';
5
4
  import * as MoneyTransferAssetTransactionFactory from '../assetTransaction/moneyTransfer';
@@ -116,10 +115,6 @@ export interface IObject {
116
115
  * WAITER許可証
117
116
  */
118
117
  passport?: waiter.passport.IPassport;
119
- /**
120
- * 承認アクションリスト
121
- */
122
- authorizeActions?: IAuthorizeAction<IAuthorizeActionAttributes<any, any>>[];
123
118
  }
124
119
  export interface IPotentialActions {
125
120
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.313.0-alpha.2",
3
+ "version": "4.313.0-alpha.4",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",