@chevre/factory 4.270.0-alpha.2 → 4.270.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.
@@ -40,7 +40,7 @@ export interface IAccount {
40
40
  name?: string;
41
41
  }
42
42
  /**
43
- * 転送元あるいは転送先の場所
43
+ * 転送元あるいは転送先
44
44
  */
45
45
  export declare type ILocation = IAnonymousLocation | IAccount;
46
46
  export declare type IObject = any;
@@ -62,7 +62,7 @@ export interface IPurpose {
62
62
  /**
63
63
  * 取引番号
64
64
  */
65
- transactionNumber?: string;
65
+ transactionNumber: string;
66
66
  /**
67
67
  * 取引識別子
68
68
  */
@@ -94,7 +94,7 @@ export declare type IAction = ActionFactory.IAction<IAttributes>;
94
94
  */
95
95
  export interface ISortOrder {
96
96
  /**
97
- * アクション開始日時順
97
+ * 開始日時
98
98
  */
99
99
  startDate?: SortType;
100
100
  }
@@ -111,11 +111,6 @@ export interface ISearchConditions {
111
111
  limit?: number;
112
112
  page?: number;
113
113
  sort?: ISortOrder;
114
- /**
115
- * 口座番号
116
- * @deprecated Use location.accountNumber
117
- */
118
- accountNumber?: string;
119
114
  actionStatus?: {
120
115
  $in?: ActionStatusType[];
121
116
  };
@@ -132,7 +132,7 @@ export interface ISearchConditions {
132
132
  $eq?: AccountTransactionType;
133
133
  };
134
134
  status?: {
135
- $in: TransactionStatusType[];
135
+ $in?: TransactionStatusType[];
136
136
  };
137
137
  startDate?: {
138
138
  $gte?: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.270.0-alpha.2",
3
+ "version": "4.270.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",