@chevre/factory 4.279.0-alpha.4 → 4.279.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.
@@ -1,9 +1,7 @@
1
1
  import { AccountType } from '../../accountType';
2
2
  import * as ActionFactory from '../../action';
3
- import { ActionStatusType } from '../../actionStatusType';
4
3
  import { ActionType } from '../../actionType';
5
4
  import { IMonetaryAmount } from '../../monetaryAmount';
6
- import { SortType } from '../../sortType';
7
5
  import { IThing } from '../../thing';
8
6
  import { AccountTransactionType } from '../transactionType';
9
7
  export declare type IAgent = ActionFactory.IParticipant;
@@ -90,82 +88,3 @@ export interface IAttributes extends ActionFactory.IAttributes<ActionType.MoneyT
90
88
  toLocation: ILocation;
91
89
  }
92
90
  export declare type IAction = ActionFactory.IAction<IAttributes>;
93
- /**
94
- * ソート条件
95
- */
96
- export interface ISortOrder {
97
- /**
98
- * 開始日時
99
- */
100
- startDate?: SortType;
101
- }
102
- export interface IProjectSearchConditions {
103
- id?: {
104
- $eq?: string;
105
- $ne?: string;
106
- };
107
- }
108
- /**
109
- * 検索条件
110
- */
111
- export interface ISearchConditions {
112
- limit?: number;
113
- page?: number;
114
- sort?: ISortOrder;
115
- actionStatus?: {
116
- $in?: ActionStatusType[];
117
- };
118
- amount?: {
119
- /**
120
- * 通貨
121
- */
122
- currency?: {
123
- $eq?: string;
124
- };
125
- };
126
- location?: {
127
- /**
128
- * 口座番号
129
- */
130
- accountNumber?: {
131
- $eq?: string;
132
- };
133
- /**
134
- * 口座種別
135
- */
136
- typeOf?: {
137
- $eq?: string;
138
- };
139
- };
140
- project?: IProjectSearchConditions;
141
- purpose?: {
142
- /**
143
- * 取引タイプ
144
- */
145
- typeOf?: {
146
- $eq?: string;
147
- };
148
- /**
149
- * 取引ID
150
- */
151
- id?: {
152
- $eq?: string;
153
- };
154
- /**
155
- * 取引番号
156
- */
157
- transactionNumber?: {
158
- $eq?: string;
159
- };
160
- /**
161
- * 取引識別子
162
- */
163
- identifier?: {
164
- $eq?: string;
165
- };
166
- };
167
- startDate?: {
168
- $gte?: Date;
169
- $lte?: Date;
170
- };
171
- }
@@ -68,4 +68,14 @@ export interface ISearchConditions {
68
68
  };
69
69
  };
70
70
  };
71
+ additionalProperty?: {
72
+ $elemMatch?: {
73
+ name?: {
74
+ /**
75
+ * 一致する名称の追加特性がひとつでも存在する
76
+ */
77
+ $eq?: string;
78
+ };
79
+ };
80
+ };
71
81
  }
@@ -57,4 +57,14 @@ export interface ISearchConditions {
57
57
  seatCount?: 1;
58
58
  sectionCount?: 1;
59
59
  };
60
+ additionalProperty?: {
61
+ $elemMatch?: {
62
+ name?: {
63
+ /**
64
+ * 一致する名称の追加特性がひとつでも存在する
65
+ */
66
+ $eq?: string;
67
+ };
68
+ };
69
+ };
60
70
  }
@@ -51,4 +51,14 @@ export interface ISearchConditions {
51
51
  $projection?: {
52
52
  seatCount?: 1;
53
53
  };
54
+ additionalProperty?: {
55
+ $elemMatch?: {
56
+ name?: {
57
+ /**
58
+ * 一致する名称の追加特性がひとつでも存在する
59
+ */
60
+ $eq?: string;
61
+ };
62
+ };
63
+ };
54
64
  }
@@ -86,4 +86,14 @@ export interface ISearchConditions {
86
86
  seatingType?: {
87
87
  $eq?: string;
88
88
  };
89
+ additionalProperty?: {
90
+ $elemMatch?: {
91
+ name?: {
92
+ /**
93
+ * 一致する名称の追加特性がひとつでも存在する
94
+ */
95
+ $eq?: string;
96
+ };
97
+ };
98
+ };
89
99
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.279.0-alpha.4",
3
+ "version": "4.279.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",