@clairejs/server 3.0.5 → 3.0.8

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