@clairejs/server 3.0.0 → 3.0.3

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.
Files changed (55) hide show
  1. package/README.md +448 -432
  2. package/dist/common/constants.d.ts +1 -1
  3. package/dist/database/adapter/AbstractDatabaseAdapter.d.ts +19 -19
  4. package/dist/database/adapter/AbstractQuery.d.ts +43 -43
  5. package/dist/database/adapter/DefaultSqlDatabaseAdapter.d.ts +18 -18
  6. package/dist/database/adapter/IQuery.d.ts +40 -40
  7. package/dist/database/adapter/IQueryProvider.d.ts +9 -9
  8. package/dist/database/adapter/providers.d.ts +8 -8
  9. package/dist/database/decorators.d.ts +2 -2
  10. package/dist/database/migrator/AbstractDatabaseMigrator.d.ts +4 -4
  11. package/dist/database/migrator/DefaultSqlDatabaseMigrator.d.ts +26 -26
  12. package/dist/database/transaction/ITransaction.d.ts +10 -10
  13. package/dist/database/transaction/ITransactionProvider.d.ts +4 -4
  14. package/dist/database/transaction/TransactionLink.d.ts +14 -14
  15. package/dist/database/transaction/TransactionObjectMetadata.d.ts +4 -4
  16. package/dist/database/transaction/TransactionState.d.ts +5 -5
  17. package/dist/database/util/transaction-provider.d.ts +1 -1
  18. package/dist/http/common/HttpRequest.d.ts +39 -39
  19. package/dist/http/common/HttpResponse.d.ts +25 -23
  20. package/dist/http/common/RequestOptions.d.ts +9 -9
  21. package/dist/http/common/ResponseValues.d.ts +10 -10
  22. package/dist/http/common/types.d.ts +1 -1
  23. package/dist/http/controller/AbstractHttpController.d.ts +8 -8
  24. package/dist/http/controller/AbstractHttpMiddleware.d.ts +5 -5
  25. package/dist/http/controller/AbstractHttpRequestHandler.d.ts +10 -10
  26. package/dist/http/controller/ControllerMetadata.d.ts +6 -6
  27. package/dist/http/controller/CrudHttpController.d.ts +58 -63
  28. package/dist/http/controller/CrudService.d.ts +36 -36
  29. package/dist/http/controller/DefaultHttpRequestHandler.d.ts +19 -19
  30. package/dist/http/controller/EndpointMetadata.d.ts +36 -35
  31. package/dist/http/controller/HttpEndpoint.d.ts +12 -12
  32. package/dist/http/controller/MountedEndpointInfo.d.ts +6 -6
  33. package/dist/http/decorators.d.ts +26 -22
  34. package/dist/http/security/AbstractAccessCondition.d.ts +8 -8
  35. package/dist/http/security/AbstractHttpAuthorizationProvider.d.ts +7 -7
  36. package/dist/http/security/FilterModelFieldAccessCondition.d.ts +4 -4
  37. package/dist/http/security/IPrincipal.d.ts +3 -3
  38. package/dist/http/security/OwnedResourceAccessCondition.d.ts +5 -5
  39. package/dist/index.d.ts +38 -38
  40. package/dist/index.js +1 -1
  41. package/dist/logging/FileLogMedium.d.ts +13 -13
  42. package/dist/service/AbstractService.d.ts +5 -5
  43. package/dist/socket/AbstractServerSocket.d.ts +36 -36
  44. package/dist/socket/AbstractServerSocketManager.d.ts +19 -19
  45. package/dist/socket/AwsSocketManager.d.ts +46 -46
  46. package/dist/socket/IServerSocket.d.ts +9 -9
  47. package/dist/socket/LocalSocketManager.d.ts +23 -23
  48. package/dist/socket/ServerSocket.d.ts +14 -14
  49. package/dist/system/AbstractFileUploadHandler.d.ts +6 -6
  50. package/dist/system/ClaireServer.d.ts +10 -10
  51. package/dist/system/ExpressWrapper.d.ts +17 -17
  52. package/dist/system/IRequestHandler.d.ts +5 -5
  53. package/dist/system/LambdaWrapper.d.ts +17 -17
  54. package/dist/system/ServerGlobalStore.d.ts +7 -7
  55. package/package.json +58 -58
package/README.md CHANGED
@@ -1,432 +1,448 @@
1
- ## Change Log
2
-
3
- #### 2.3.13:
4
-
5
- - update raw query function signature
6
-
7
- #### 2.3.12:
8
-
9
- - fix & export CrudService
10
-
11
- #### 2.3.10:
12
-
13
- - Array & Object model field persist & parse
14
-
15
- #### 2.3.9:
16
-
17
- - @TextField will default to Sequelize.TEXT if length is not specified
18
-
19
- #### 2.3.6:
20
-
21
- - fix missing beforeCreate call when update nesting
22
-
23
- #### 2.3.1:
24
-
25
- - fix returning nested uris
26
-
27
- #### 2.3.0:
28
-
29
- - introduce CrudService
30
- - CrudHttpController support @HasMany
31
-
32
- #### 2.2.12:
33
-
34
- - fix isIntegral default
35
-
36
- #### 2.2.10:
37
-
38
- - update `CrudHttpController` Update and Delete to return `Partial<T>`
39
-
40
- #### 2.2.2:
41
-
42
- - fix `@CurrentUser` decorator
43
- - implement `@CurrentUser` decorator
44
-
45
- #### 2.2.0:
46
-
47
- - add `AbstractFileUploadHandler` and handle file upload in `CrudHttpController`
48
- - fix migration contraint remove order
49
-
50
- #### 2.1.20:
51
-
52
- - extends IPrincipal
53
-
54
- #### 2.1.19:
55
-
56
- - fix crud http controller not init database adapter
57
-
58
- #### 2.1.18:
59
-
60
- - downgrade webpack
61
-
62
- #### 2.1.16:
63
-
64
- - add pg-hstore
65
-
66
- #### 2.1.15:
67
-
68
- - add optional injection for socket manager
69
-
70
- #### 2.1.14:
71
-
72
- - AwsSocketManger needs always to be fed by JSON object
73
-
74
- #### 2.1.13:
75
-
76
- - correct json parsing when hanling aws socket message
77
-
78
- #### 2.1.11:
79
-
80
- - adjust getMany and getRecords to return Pick type based on projection
81
- - add getRecords for IQuery to return just the records
82
-
83
- #### 2.1.9:
84
-
85
- - fix CrudHttpController updateMany FilterField condition check
86
-
87
- #### 2.1.8:
88
-
89
- - fix server socket remove not delete its redis info
90
- - add socket created timestamp info
91
- - add get all alive sockets to remove stale sockets in server
92
-
93
- #### 2.1.5:
94
-
95
- - support model defualt value in db migrator & adapter
96
-
97
- #### 2.1.3:
98
-
99
- - add test for cascade delete
100
-
101
- #### 2.1.2:
102
-
103
- - update claire core
104
- - fix converting QueryCondition use "and" as default operator
105
-
106
- #### 2.1.1:
107
-
108
- - update claire core
109
- - update implementation of FileLogMedium
110
-
111
- #### 2.0.26:
112
-
113
- - parse client socket data
114
- - add more debug log
115
- - fix ExpressWrapper AWS GW socket http integration
116
-
117
- #### 2.0.17:
118
-
119
- - add AWS API GW socket request parser for express
120
-
121
- #### 2.0.16:
122
-
123
- - add log to http request handler
124
- - refactor to allow AwsSocketManager to be used with ExpressWrapper
125
-
126
- #### 2.0.14:
127
-
128
- - fix express socket unique id
129
-
130
- #### 2.0.13:
131
-
132
- - update error code from claire core
133
-
134
- #### 2.0.12:
135
-
136
- - export Get, Post, Put, Del decorators
137
-
138
- #### 2.0.11:
139
-
140
- - add log in http request handler
141
- - fix AbstractAccessCondition signature
142
-
143
- #### 2.0.9:
144
-
145
- - fix AccessCondition (to use injection)
146
- - fix ExpressWrapper & LambdaWrapper to resolve AbstractServerSocketManager
147
- - remove getMountedEndpointInfo from AbstractHttpRequestHandler, move to ServerGlobalStore
148
- - fix property assignment in isolated transactional object
149
- - add log for AwsSocketManager, fix connection problem to redis
150
-
151
- #### 2.0.1:
152
-
153
- - fix some import redundancies
154
-
155
- #### 2.0.0:
156
-
157
- - Upgrade with claire core 2.0.0
158
-
159
- #### 1.6.4:
160
-
161
- - Add pong socket response
162
-
163
- #### 1.6.3:
164
-
165
- - AbstractDatabaseMigrator: supply migration directory to migrate and rollback functions
166
- - fix migrator cli path
167
-
168
- #### 1.6.1:
169
-
170
- - AbstractPrincipal -> IPrincipal (for serialization)
171
-
172
- #### 1.5.51:
173
-
174
- - fix AwsSocketManager not release redis connection, add more log
175
- - fix ExpressWrapper unhandled socket promise exception
176
-
177
- #### 1.5.39 (Breaking change):
178
-
179
- - fix properties null check
180
- - socket multiplex
181
-
182
- #### 1.5.28:
183
-
184
- - fix server socket authId => authInfo
185
-
186
- #### 1.5.26:
187
-
188
- - add OwnedResourceAccessCondition
189
-
190
- #### 1.5.24:
191
-
192
- - replace HttpRequest.getPrincipalId by HttpRequest.getAuthInfo
193
-
194
- #### 1.5.23:
195
-
196
- - fix ServerSocket
197
- - fix not remove disconnect socket from socket manager
198
-
199
- #### 1.5.15 (Breaking change):
200
-
201
- - remove getValue / setValue in HttpRequest
202
- - add setPrincipalId / getPrincipalId in HttpRequest
203
- - adjust Socket Server
204
-
205
- #### 1.5.12:
206
-
207
- - handle socket in lambda wrapper
208
-
209
- #### 1.5.11:
210
-
211
- - fix ServerSocket
212
-
213
- #### 1.5.6:
214
-
215
- - update claire core
216
- - fix ServerSocket
217
-
218
- #### 1.5.4:
219
-
220
- - run middleware before socket authentication
221
-
222
- #### 1.5.2:
223
-
224
- - add websocket support in ExpressWrapper
225
-
226
- #### 1.5.1:
227
-
228
- - update claire core
229
-
230
- #### 1.5.0:
231
-
232
- - revert back to 1.3.38
233
-
234
- #### 1.3.38:
235
-
236
- - export QueryCondition
237
-
238
- #### 1.3.37:
239
-
240
- - return error name instead of TRANSACTION_ERROR
241
- - update claire core
242
-
243
- #### 1.3.36:
244
-
245
- - fix missing down script of unique constraint in database migrator
246
- - add rollback to database migrator
247
-
248
- #### 1.3.34:
249
-
250
- - export AbstractDatabaseMigrator
251
- - fix DefaultSqlDatabaseMigrator not generate new unique constraints for new field
252
-
253
- #### 1.3.32:
254
-
255
- - fix DefaultSqlDatabaseMigrator missing foreign constraint check when add/remove fields
256
-
257
- #### 1.3.31:
258
-
259
- - update server modify
260
-
261
- #### 1.3.30:
262
-
263
- - adjust body raw parser in ExpressWrapper
264
-
265
- #### 1.3.28:
266
-
267
- - fix not supply HttpResponse in Http handler
268
-
269
- #### 1.3.27:
270
-
271
- - add body parser raw middleware
272
-
273
- #### 1.3.26:
274
-
275
- - modify express wrapper send result
276
-
277
- #### 1.3.25:
278
-
279
- - add request options mapper in LambdaWrapper
280
-
281
- #### 1.3.24:
282
-
283
- - add LambdaWrapper
284
-
285
- #### 1.3.23:
286
-
287
- - add ExpressWrapper
288
-
289
- #### 1.3.22:
290
-
291
- - merge accessConditions in CrudHttpController
292
-
293
- #### 1.3.21:
294
-
295
- - DefaultSqlDatabaseMigrator will no longer generate remove table query.
296
-
297
- #### 1.3.20:
298
-
299
- - add permissionGroup and displayName metadata for EndpointMetadata
300
-
301
- #### 1.3.16:
302
-
303
- - update claire core
304
- - allow empty records for CrudHttpController createMany
305
-
306
- #### 1.3.15:
307
-
308
- - fix incorrect parse Http params
309
-
310
- #### 1.3.13:
311
-
312
- - update claire core
313
-
314
- #### 1.3.12:
315
-
316
- - re-introduce terser plugin
317
- - update claire core
318
-
319
- #### 1.3.10:
320
-
321
- - emit source map
322
-
323
- #### 1.3.9:
324
-
325
- - update claire core
326
-
327
- #### 1.3.8:
328
-
329
- - fix missing HttpResponse export
330
-
331
- #### 1.3.7:
332
-
333
- - upgrade Clairejs/core
334
-
335
- #### 1.3.6:
336
-
337
- - upgrade Clairejs/core
338
-
339
- - interpret @ServerTime and @Timestamp
340
-
341
- #### 1.3.2 (Breaking change):
342
-
343
- - re-introduce http response to controller
344
-
345
- #### 1.2.6:
346
-
347
- - add unaccent operators (uSUBSTR, iuSUBSTR)
348
-
349
- #### 1.2.5:
350
-
351
- - allow multiple calls to boot
352
-
353
- #### 1.2.4:
354
-
355
- - fix http request handler parse get and delete request body
356
-
357
- #### 1.2.2:
358
-
359
- - split database migrator
360
- - rework of ClaireServer to be request handler
361
- - remove dependency of expressjs and its middleware
362
-
363
- #### 1.1.9:
364
-
365
- - revert 1.1.8
366
-
367
- #### 1.1.8:
368
-
369
- - init app when getExpressApp
370
-
371
- #### 1.1.7:
372
-
373
- - add pg-hstore as dependency
374
-
375
- #### 1.1.6:
376
-
377
- - fix autoCommit in @Transactional
378
-
379
- #### 1.1.5:
380
-
381
- - use AbstractModel id field for primary key query
382
-
383
- #### 1.1.3:
384
-
385
- - fix returning ids for updateMany and deleteMany
386
-
387
- #### 1.1.2:
388
-
389
- - fix not auto generate migration when changing cascade of @FK
390
- - set build target es6
391
-
392
- #### 1.1.0:
393
-
394
- - fix foreign key cascase delete
395
- - fix auto commit of crud http controller
396
- - return array of ids when updateMany or deleteMany
397
-
398
- #### 1.0.22:
399
-
400
- - CrudHttpController exposes static validators
401
-
402
- #### 1.0.21:
403
-
404
- - update Clairejs Core
405
-
406
- #### 1.0.20:
407
-
408
- - update CrudHttpController for query change
409
-
410
- #### 1.0.17:
411
-
412
- - perform json parsing for fields of request params and queries
413
-
414
- #### 1.0.15:
415
-
416
- - fix @Searchable in CrudHttpController
417
-
418
- #### 1.0.13:
419
-
420
- - add iSUBSTR operator to search for case insensitive string
421
-
422
- #### 1.0.9:
423
-
424
- - fix CrudHttpController endpoint naming
425
-
426
- #### 1.0.8:
427
-
428
- - fix DefaultHttpRequestHandler upgrade Http
429
-
430
- #### 1.0.6:
431
-
432
- - fix DefaultHttpRequestHandler cannot return request body when no validator is provided
1
+ ## Change Log
2
+
3
+ #### 3.0.3: http method decorator return type check
4
+ - add @ApiResponse decorator to store response body validator
5
+ - add TypedPropertyDescriptor in HTTP method decorator to validate function return type (Promise<HttpResponse<any>>>)
6
+
7
+
8
+ #### 3.0.2: improve http response
9
+
10
+ - add binary response
11
+
12
+ #### 3.0.0:
13
+
14
+ - update claire core 3.0
15
+ - controller function param decorators
16
+ - ResponseBuilder
17
+ - remove ops in getMany
18
+
19
+ #### 2.3.13:
20
+
21
+ - update raw query function signature
22
+
23
+ #### 2.3.12:
24
+
25
+ - fix & export CrudService
26
+
27
+ #### 2.3.10:
28
+
29
+ - Array & Object model field persist & parse
30
+
31
+ #### 2.3.9:
32
+
33
+ - @TextField will default to Sequelize.TEXT if length is not specified
34
+
35
+ #### 2.3.6:
36
+
37
+ - fix missing beforeCreate call when update nesting
38
+
39
+ #### 2.3.1:
40
+
41
+ - fix returning nested uris
42
+
43
+ #### 2.3.0:
44
+
45
+ - introduce CrudService
46
+ - CrudHttpController support @HasMany
47
+
48
+ #### 2.2.12:
49
+
50
+ - fix isIntegral default
51
+
52
+ #### 2.2.10:
53
+
54
+ - update `CrudHttpController` Update and Delete to return `Partial<T>`
55
+
56
+ #### 2.2.2:
57
+
58
+ - fix `@CurrentUser` decorator
59
+ - implement `@CurrentUser` decorator
60
+
61
+ #### 2.2.0:
62
+
63
+ - add `AbstractFileUploadHandler` and handle file upload in `CrudHttpController`
64
+ - fix migration contraint remove order
65
+
66
+ #### 2.1.20:
67
+
68
+ - extends IPrincipal
69
+
70
+ #### 2.1.19:
71
+
72
+ - fix crud http controller not init database adapter
73
+
74
+ #### 2.1.18:
75
+
76
+ - downgrade webpack
77
+
78
+ #### 2.1.16:
79
+
80
+ - add pg-hstore
81
+
82
+ #### 2.1.15:
83
+
84
+ - add optional injection for socket manager
85
+
86
+ #### 2.1.14:
87
+
88
+ - AwsSocketManger needs always to be fed by JSON object
89
+
90
+ #### 2.1.13:
91
+
92
+ - correct json parsing when hanling aws socket message
93
+
94
+ #### 2.1.11:
95
+
96
+ - adjust getMany and getRecords to return Pick type based on projection
97
+ - add getRecords for IQuery to return just the records
98
+
99
+ #### 2.1.9:
100
+
101
+ - fix CrudHttpController updateMany FilterField condition check
102
+
103
+ #### 2.1.8:
104
+
105
+ - fix server socket remove not delete its redis info
106
+ - add socket created timestamp info
107
+ - add get all alive sockets to remove stale sockets in server
108
+
109
+ #### 2.1.5:
110
+
111
+ - support model defualt value in db migrator & adapter
112
+
113
+ #### 2.1.3:
114
+
115
+ - add test for cascade delete
116
+
117
+ #### 2.1.2:
118
+
119
+ - update claire core
120
+ - fix converting QueryCondition use "and" as default operator
121
+
122
+ #### 2.1.1:
123
+
124
+ - update claire core
125
+ - update implementation of FileLogMedium
126
+
127
+ #### 2.0.26:
128
+
129
+ - parse client socket data
130
+ - add more debug log
131
+ - fix ExpressWrapper AWS GW socket http integration
132
+
133
+ #### 2.0.17:
134
+
135
+ - add AWS API GW socket request parser for express
136
+
137
+ #### 2.0.16:
138
+
139
+ - add log to http request handler
140
+ - refactor to allow AwsSocketManager to be used with ExpressWrapper
141
+
142
+ #### 2.0.14:
143
+
144
+ - fix express socket unique id
145
+
146
+ #### 2.0.13:
147
+
148
+ - update error code from claire core
149
+
150
+ #### 2.0.12:
151
+
152
+ - export Get, Post, Put, Del decorators
153
+
154
+ #### 2.0.11:
155
+
156
+ - add log in http request handler
157
+ - fix AbstractAccessCondition signature
158
+
159
+ #### 2.0.9:
160
+
161
+ - fix AccessCondition (to use injection)
162
+ - fix ExpressWrapper & LambdaWrapper to resolve AbstractServerSocketManager
163
+ - remove getMountedEndpointInfo from AbstractHttpRequestHandler, move to ServerGlobalStore
164
+ - fix property assignment in isolated transactional object
165
+ - add log for AwsSocketManager, fix connection problem to redis
166
+
167
+ #### 2.0.1:
168
+
169
+ - fix some import redundancies
170
+
171
+ #### 2.0.0:
172
+
173
+ - Upgrade with claire core 2.0.0
174
+
175
+ #### 1.6.4:
176
+
177
+ - Add pong socket response
178
+
179
+ #### 1.6.3:
180
+
181
+ - AbstractDatabaseMigrator: supply migration directory to migrate and rollback functions
182
+ - fix migrator cli path
183
+
184
+ #### 1.6.1:
185
+
186
+ - AbstractPrincipal -> IPrincipal (for serialization)
187
+
188
+ #### 1.5.51:
189
+
190
+ - fix AwsSocketManager not release redis connection, add more log
191
+ - fix ExpressWrapper unhandled socket promise exception
192
+
193
+ #### 1.5.39 (Breaking change):
194
+
195
+ - fix properties null check
196
+ - socket multiplex
197
+
198
+ #### 1.5.28:
199
+
200
+ - fix server socket authId => authInfo
201
+
202
+ #### 1.5.26:
203
+
204
+ - add OwnedResourceAccessCondition
205
+
206
+ #### 1.5.24:
207
+
208
+ - replace HttpRequest.getPrincipalId by HttpRequest.getAuthInfo
209
+
210
+ #### 1.5.23:
211
+
212
+ - fix ServerSocket
213
+ - fix not remove disconnect socket from socket manager
214
+
215
+ #### 1.5.15 (Breaking change):
216
+
217
+ - remove getValue / setValue in HttpRequest
218
+ - add setPrincipalId / getPrincipalId in HttpRequest
219
+ - adjust Socket Server
220
+
221
+ #### 1.5.12:
222
+
223
+ - handle socket in lambda wrapper
224
+
225
+ #### 1.5.11:
226
+
227
+ - fix ServerSocket
228
+
229
+ #### 1.5.6:
230
+
231
+ - update claire core
232
+ - fix ServerSocket
233
+
234
+ #### 1.5.4:
235
+
236
+ - run middleware before socket authentication
237
+
238
+ #### 1.5.2:
239
+
240
+ - add websocket support in ExpressWrapper
241
+
242
+ #### 1.5.1:
243
+
244
+ - update claire core
245
+
246
+ #### 1.5.0:
247
+
248
+ - revert back to 1.3.38
249
+
250
+ #### 1.3.38:
251
+
252
+ - export QueryCondition
253
+
254
+ #### 1.3.37:
255
+
256
+ - return error name instead of TRANSACTION_ERROR
257
+ - update claire core
258
+
259
+ #### 1.3.36:
260
+
261
+ - fix missing down script of unique constraint in database migrator
262
+ - add rollback to database migrator
263
+
264
+ #### 1.3.34:
265
+
266
+ - export AbstractDatabaseMigrator
267
+ - fix DefaultSqlDatabaseMigrator not generate new unique constraints for new field
268
+
269
+ #### 1.3.32:
270
+
271
+ - fix DefaultSqlDatabaseMigrator missing foreign constraint check when add/remove fields
272
+
273
+ #### 1.3.31:
274
+
275
+ - update server modify
276
+
277
+ #### 1.3.30:
278
+
279
+ - adjust body raw parser in ExpressWrapper
280
+
281
+ #### 1.3.28:
282
+
283
+ - fix not supply HttpResponse in Http handler
284
+
285
+ #### 1.3.27:
286
+
287
+ - add body parser raw middleware
288
+
289
+ #### 1.3.26:
290
+
291
+ - modify express wrapper send result
292
+
293
+ #### 1.3.25:
294
+
295
+ - add request options mapper in LambdaWrapper
296
+
297
+ #### 1.3.24:
298
+
299
+ - add LambdaWrapper
300
+
301
+ #### 1.3.23:
302
+
303
+ - add ExpressWrapper
304
+
305
+ #### 1.3.22:
306
+
307
+ - merge accessConditions in CrudHttpController
308
+
309
+ #### 1.3.21:
310
+
311
+ - DefaultSqlDatabaseMigrator will no longer generate remove table query.
312
+
313
+ #### 1.3.20:
314
+
315
+ - add permissionGroup and displayName metadata for EndpointMetadata
316
+
317
+ #### 1.3.16:
318
+
319
+ - update claire core
320
+ - allow empty records for CrudHttpController createMany
321
+
322
+ #### 1.3.15:
323
+
324
+ - fix incorrect parse Http params
325
+
326
+ #### 1.3.13:
327
+
328
+ - update claire core
329
+
330
+ #### 1.3.12:
331
+
332
+ - re-introduce terser plugin
333
+ - update claire core
334
+
335
+ #### 1.3.10:
336
+
337
+ - emit source map
338
+
339
+ #### 1.3.9:
340
+
341
+ - update claire core
342
+
343
+ #### 1.3.8:
344
+
345
+ - fix missing HttpResponse export
346
+
347
+ #### 1.3.7:
348
+
349
+ - upgrade Clairejs/core
350
+
351
+ #### 1.3.6:
352
+
353
+ - upgrade Clairejs/core
354
+
355
+ - interpret @ServerTime and @Timestamp
356
+
357
+ #### 1.3.2 (Breaking change):
358
+
359
+ - re-introduce http response to controller
360
+
361
+ #### 1.2.6:
362
+
363
+ - add unaccent operators (uSUBSTR, iuSUBSTR)
364
+
365
+ #### 1.2.5:
366
+
367
+ - allow multiple calls to boot
368
+
369
+ #### 1.2.4:
370
+
371
+ - fix http request handler parse get and delete request body
372
+
373
+ #### 1.2.2:
374
+
375
+ - split database migrator
376
+ - rework of ClaireServer to be request handler
377
+ - remove dependency of expressjs and its middleware
378
+
379
+ #### 1.1.9:
380
+
381
+ - revert 1.1.8
382
+
383
+ #### 1.1.8:
384
+
385
+ - init app when getExpressApp
386
+
387
+ #### 1.1.7:
388
+
389
+ - add pg-hstore as dependency
390
+
391
+ #### 1.1.6:
392
+
393
+ - fix autoCommit in @Transactional
394
+
395
+ #### 1.1.5:
396
+
397
+ - use AbstractModel id field for primary key query
398
+
399
+ #### 1.1.3:
400
+
401
+ - fix returning ids for updateMany and deleteMany
402
+
403
+ #### 1.1.2:
404
+
405
+ - fix not auto generate migration when changing cascade of @FK
406
+ - set build target es6
407
+
408
+ #### 1.1.0:
409
+
410
+ - fix foreign key cascase delete
411
+ - fix auto commit of crud http controller
412
+ - return array of ids when updateMany or deleteMany
413
+
414
+ #### 1.0.22:
415
+
416
+ - CrudHttpController exposes static validators
417
+
418
+ #### 1.0.21:
419
+
420
+ - update Clairejs Core
421
+
422
+ #### 1.0.20:
423
+
424
+ - update CrudHttpController for query change
425
+
426
+ #### 1.0.17:
427
+
428
+ - perform json parsing for fields of request params and queries
429
+
430
+ #### 1.0.15:
431
+
432
+ - fix @Searchable in CrudHttpController
433
+
434
+ #### 1.0.13:
435
+
436
+ - add iSUBSTR operator to search for case insensitive string
437
+
438
+ #### 1.0.9:
439
+
440
+ - fix CrudHttpController endpoint naming
441
+
442
+ #### 1.0.8:
443
+
444
+ - fix DefaultHttpRequestHandler upgrade Http
445
+
446
+ #### 1.0.6:
447
+
448
+ - fix DefaultHttpRequestHandler cannot return request body when no validator is provided