@chevre/factory 4.279.0-alpha.2 → 4.279.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.
@@ -113,4 +113,14 @@ export interface ISearchConditions {
113
113
  $in?: string[];
114
114
  };
115
115
  };
116
+ additionalProperty?: {
117
+ $elemMatch?: {
118
+ name?: {
119
+ /**
120
+ * 一致する名称の追加特性がひとつでも存在する
121
+ */
122
+ $eq?: string;
123
+ };
124
+ };
125
+ };
116
126
  }
@@ -73,4 +73,14 @@ export interface ISearchConditions {
73
73
  datePublishedFrom?: Date;
74
74
  datePublishedThrough?: Date;
75
75
  offers?: IOfferSearchConditions;
76
+ additionalProperty?: {
77
+ $elemMatch?: {
78
+ name?: {
79
+ /**
80
+ * 一致する名称の追加特性がひとつでも存在する
81
+ */
82
+ $eq?: string;
83
+ };
84
+ };
85
+ };
76
86
  }
@@ -159,4 +159,14 @@ export interface ISearchConditions {
159
159
  $eq?: string;
160
160
  };
161
161
  };
162
+ additionalProperty?: {
163
+ $elemMatch?: {
164
+ name?: {
165
+ /**
166
+ * 一致する名称の追加特性がひとつでも存在する
167
+ */
168
+ $eq?: string;
169
+ };
170
+ };
171
+ };
162
172
  }
@@ -201,4 +201,14 @@ export interface ISearchConditions {
201
201
  $eq?: string;
202
202
  };
203
203
  };
204
+ additionalProperty?: {
205
+ $elemMatch?: {
206
+ name?: {
207
+ /**
208
+ * 一致する名称の追加特性がひとつでも存在する
209
+ */
210
+ $eq?: string;
211
+ };
212
+ };
213
+ };
204
214
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.279.0-alpha.2",
3
+ "version": "4.279.0-alpha.4",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",