@opengis/fastify-table 1.1.51 → 1.1.53

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 (218) hide show
  1. package/.eslintrc.cjs +42 -42
  2. package/.gitlab-ci.yml +18 -18
  3. package/Changelog.md +352 -352
  4. package/README.md +26 -26
  5. package/config.js +10 -10
  6. package/cron/controllers/cronApi.js +22 -22
  7. package/cron/controllers/utils/cronList.js +1 -1
  8. package/cron/funcs/addCron.js +132 -132
  9. package/cron/index.js +12 -10
  10. package/cron/schema.js +8 -0
  11. package/crud/controllers/deleteCrud.js +36 -36
  12. package/crud/controllers/insert.js +71 -71
  13. package/crud/controllers/update.js +76 -76
  14. package/crud/controllers/utils/xssInjection.js +72 -72
  15. package/crud/funcs/dataDelete.js +19 -19
  16. package/crud/funcs/dataInsert.js +30 -30
  17. package/crud/funcs/dataUpdate.js +48 -48
  18. package/crud/funcs/getAccess.js +46 -46
  19. package/crud/funcs/getOpt.js +10 -10
  20. package/crud/funcs/getToken.js +27 -27
  21. package/crud/funcs/isFileExists.js +13 -13
  22. package/crud/funcs/setOpt.js +16 -16
  23. package/crud/funcs/setToken.js +53 -53
  24. package/crud/funcs/utils/getFolder.js +9 -9
  25. package/crud/funcs/utils/logChanges.js +62 -62
  26. package/crud/index.js +31 -36
  27. package/crud/schema.js +11 -0
  28. package/docs/.vitepress/abbr.mjs +26 -26
  29. package/docs/.vitepress/config.mjs +127 -127
  30. package/docs/.vitepress/navigation.mjs +82 -82
  31. package/docs/.vitepress/theme/Layout.vue +17 -17
  32. package/docs/.vitepress/theme/components/NavigationLinks.vue +102 -102
  33. package/docs/.vitepress/theme/components/Panzoom.vue +169 -169
  34. package/docs/.vitepress/theme/index.mjs +15 -15
  35. package/docs/.vitepress/theme/style.scss +163 -163
  36. package/docs/abbr.json +4 -4
  37. package/docs/api/cron/cronApi.md +56 -56
  38. package/docs/api/crud/deleteCrud.md +58 -58
  39. package/docs/api/crud/insert.md +82 -82
  40. package/docs/api/crud/update.md +85 -85
  41. package/docs/api/index.md +47 -47
  42. package/docs/api/notification/testEmail.md +91 -91
  43. package/docs/api/table/card.md +73 -73
  44. package/docs/api/table/data.md +134 -134
  45. package/docs/api/table/export.md +60 -60
  46. package/docs/api/table/filter.md +104 -104
  47. package/docs/api/table/form.md +126 -126
  48. package/docs/api/table/search.md +123 -123
  49. package/docs/api/table/suggest.md +156 -156
  50. package/docs/api/table/table.md +107 -107
  51. package/docs/api/user/user.cls.id.md +77 -77
  52. package/docs/api/user/user.cls.md +49 -49
  53. package/docs/api/user/user.cls.post.md +62 -62
  54. package/docs/api/user/user.info.md +37 -37
  55. package/docs/api/utils/logger.file.md +60 -60
  56. package/docs/api/utils/next.id.md +34 -34
  57. package/docs/api/utils/properties.add.md +127 -127
  58. package/docs/api/utils/properties.get.md +73 -73
  59. package/docs/api/utils/status.monitor.md +36 -36
  60. package/docs/api/widget/widget.del.md +76 -76
  61. package/docs/api/widget/widget.get.md +233 -233
  62. package/docs/api/widget/widget.set.md +88 -88
  63. package/docs/db/admin.md +947 -947
  64. package/docs/db/crm.md +564 -564
  65. package/docs/db/index.md +9 -9
  66. package/docs/db/log.md +204 -204
  67. package/docs/hook/card/afterCard.md +20 -20
  68. package/docs/hook/card/preCard.md +25 -25
  69. package/docs/hook/data/afterData.md +26 -26
  70. package/docs/hook/data/preData.md +26 -26
  71. package/docs/hook/deleteCrud/afterDelete.md +21 -21
  72. package/docs/hook/deleteCrud/preDelete.md +26 -26
  73. package/docs/hook/form/afterForm.md +19 -19
  74. package/docs/hook/form/preForm.md +26 -26
  75. package/docs/hook/getTemplate/afterTemplate.md +24 -24
  76. package/docs/hook/getTemplate/preTemplate.md +29 -29
  77. package/docs/hook/index.md +45 -45
  78. package/docs/hook/insert/afterInsert.md +41 -41
  79. package/docs/hook/insert/preInsert.md +25 -25
  80. package/docs/hook/table/afterTable.md +20 -20
  81. package/docs/hook/table/preTable.md +25 -25
  82. package/docs/hook/update/afterUpdate.md +41 -41
  83. package/docs/hook/update/preUpdate.md +25 -25
  84. package/docs/index.md +42 -42
  85. package/docs/public/fastify-dark.svg +3 -3
  86. package/docs/public/logo-short-dark.svg +11 -11
  87. package/docs/public/logo-short.svg +10 -10
  88. package/docs/public/logo.svg +19 -19
  89. package/docs/readme/index.md +121 -121
  90. package/docs/templates/card.md +83 -83
  91. package/docs/templates/cls.md +29 -29
  92. package/docs/templates/filters.md +91 -91
  93. package/docs/templates/forms.md +139 -139
  94. package/docs/templates/index.md +28 -28
  95. package/docs/templates/select.md +90 -90
  96. package/docs/templates/table.md +162 -162
  97. package/docs/utils/cron/addCron.md +29 -29
  98. package/docs/utils/crud/dataInsert.md +51 -51
  99. package/docs/utils/crud/dataUpdate.md +52 -52
  100. package/docs/utils/crud/getOpt.md +33 -33
  101. package/docs/utils/crud/isFileExists.md +37 -37
  102. package/docs/utils/crud/setOpt.md +37 -37
  103. package/docs/utils/hook/addHook.md +74 -74
  104. package/docs/utils/hook/applyHook.md +64 -64
  105. package/docs/utils/index.md +47 -47
  106. package/docs/utils/notification/addNotification.md +28 -28
  107. package/docs/utils/notification/notification.md +41 -41
  108. package/docs/utils/pg/autoIndex.md +22 -22
  109. package/docs/utils/pg/getMeta.md +58 -58
  110. package/docs/utils/pg/getPG.md +34 -34
  111. package/docs/utils/pg/init.md +29 -29
  112. package/docs/utils/pg/pg.md +70 -70
  113. package/docs/utils/redis/getRedis.md +36 -36
  114. package/docs/utils/redis/rclient.md +74 -74
  115. package/docs/utils/table/getForm.md +68 -68
  116. package/docs/utils/table/getMeta.md +55 -55
  117. package/docs/utils/table/getSelect.md +38 -38
  118. package/docs/utils/table/getSelectMeta.md +46 -46
  119. package/docs/utils/table/getTable.md +77 -77
  120. package/helper.js +30 -30
  121. package/index.js +105 -105
  122. package/migration/exec.migrations.js +79 -79
  123. package/module/core/select/core.user_mentioned.sql +1 -1
  124. package/module/test/cls/itree.composition.json +25 -25
  125. package/module/test/table/test.rest_zone.table.json +265 -265
  126. package/notification/controllers/readNotifications.js +27 -30
  127. package/notification/controllers/testEmail.js +46 -50
  128. package/notification/controllers/userNotifications.js +61 -64
  129. package/notification/funcs/addNotification.js +21 -21
  130. package/notification/funcs/sendNotification.js +112 -112
  131. package/notification/index.js +3 -8
  132. package/notification/schema.js +10 -0
  133. package/package.json +41 -41
  134. package/pg/funcs/getMeta.js +29 -29
  135. package/pg/funcs/getPG.js +30 -30
  136. package/pg/pgClients.js +20 -20
  137. package/policy/funcs/checkPolicy.js +92 -92
  138. package/policy/funcs/sqlInjection.js +33 -33
  139. package/policy/index.js +14 -14
  140. package/redis/client.js +8 -8
  141. package/redis/funcs/getRedis.js +23 -23
  142. package/redis/funcs/redisClients.js +2 -2
  143. package/redis/index.js +19 -19
  144. package/server/migrations/0.sql +78 -78
  145. package/server/migrations/cls.sql +39 -39
  146. package/server/migrations/log.sql +80 -80
  147. package/server/migrations/properties.sql +144 -144
  148. package/server/migrations/roles.sql +172 -172
  149. package/server/migrations/users.sql +168 -168
  150. package/server.js +26 -26
  151. package/table/controllers/data.js +157 -150
  152. package/table/controllers/filter.js +61 -50
  153. package/table/controllers/form.js +42 -42
  154. package/table/controllers/search.js +76 -80
  155. package/table/controllers/suggest.js +79 -79
  156. package/table/controllers/table.js +83 -83
  157. package/table/controllers/utils/addTemplateDir.js +8 -8
  158. package/table/controllers/utils/getSelect.js +19 -19
  159. package/table/controllers/utils/getSelectMeta.js +66 -66
  160. package/table/controllers/utils/getTemplate_old.js +28 -28
  161. package/table/controllers/utils/getTemplates.js +18 -18
  162. package/table/controllers/utils/gisIRColumn.js +72 -67
  163. package/table/controllers/utils/loadTemplate.js +1 -1
  164. package/table/controllers/utils/loadTemplatePath.js +1 -1
  165. package/table/controllers/utils/userTemplateDir.js +1 -1
  166. package/table/funcs/getFilterSQL/index.js +94 -94
  167. package/table/funcs/getFilterSQL/util/formatValue.js +170 -170
  168. package/table/funcs/getFilterSQL/util/getCustomQuery.js +13 -13
  169. package/table/funcs/getFilterSQL/util/getFilterQuery.js +66 -66
  170. package/table/funcs/getFilterSQL/util/getOptimizedQuery.js +12 -12
  171. package/table/funcs/getFilterSQL/util/getTableSql.js +34 -34
  172. package/table/funcs/metaFormat/getSelectVal.js +21 -21
  173. package/table/funcs/metaFormat/index.js +28 -28
  174. package/table/index.js +37 -37
  175. package/table/schema.js +64 -54
  176. package/test/api/applyHook.test.js +95 -95
  177. package/test/api/crud.test.js +89 -89
  178. package/test/api/crud.xss.test.js +80 -80
  179. package/test/api/suggest.test.js +66 -66
  180. package/test/api/table.test.js +134 -134
  181. package/test/api/user.test.js +85 -85
  182. package/test/api/widget.test.js +117 -117
  183. package/test/config.example +18 -18
  184. package/test/funcs/pg.test.js +34 -34
  185. package/test/funcs/redis.test.js +19 -19
  186. package/test/helper/formatDate.test.js +62 -62
  187. package/test/templates/cls/test.json +9 -9
  188. package/test/templates/form/cp_building.form.json +32 -32
  189. package/test/templates/select/account_id.json +3 -3
  190. package/test/templates/select/storage.data.json +2 -2
  191. package/test/templates/select/test.storage.data.json +3 -3
  192. package/test/templates/select/test.suggest.ato_new.json +3 -3
  193. package/test/templates/select/test.suggest.ato_new.sql +25 -25
  194. package/test/templates/select/test.suggest.data.json +4 -4
  195. package/test/templates/select/test.suggest.parent.sql +1 -1
  196. package/test/templates/table/gis.dataset.table.json +20 -20
  197. package/user/controllers/user.cls.id.js +14 -14
  198. package/user/controllers/user.cls.js +71 -75
  199. package/user/controllers/user.cls.post.js +52 -55
  200. package/user/controllers/user.info.js +17 -21
  201. package/user/index.js +7 -36
  202. package/user/schema.js +17 -0
  203. package/util/controllers/logger.file.js +91 -91
  204. package/util/controllers/next.id.js +4 -4
  205. package/util/controllers/properties.add.js +56 -60
  206. package/util/controllers/properties.get.js +16 -19
  207. package/util/controllers/status.monitor.js +8 -8
  208. package/util/controllers/utils/checkUserAccess.js +20 -17
  209. package/util/controllers/utils/getRootDir.js +25 -25
  210. package/util/index.js +19 -23
  211. package/util/schema.js +19 -0
  212. package/utils.js +106 -104
  213. package/widget/controllers/utils/historyFormat.js +76 -76
  214. package/widget/controllers/utils/obj2db.js +13 -13
  215. package/widget/controllers/widget.del.js +41 -44
  216. package/widget/controllers/widget.get.js +96 -102
  217. package/widget/controllers/widget.set.js +74 -79
  218. package/widget/index.js +40 -40
package/Changelog.md CHANGED
@@ -1,352 +1,352 @@
1
- # fastify-table
2
-
3
- ## 1.1.51 - 24.10.2024
4
-
5
- - addHook params refactor
6
- - add getFolder, handlebars to utils
7
- - refactor getAccess for CRUD
8
- - add migrations
9
-
10
- ## 1.1.40 - 18.10.2024
11
-
12
- - fix migrations
13
-
14
- ## 1.1.31 - 11.10.2024
15
-
16
- - move notification api to admin
17
-
18
- ## 1.1.29 - 09.10.2024
19
-
20
- - add after crud hook
21
-
22
- ## 1.1.27 - 08.10.2024
23
-
24
- - add migrations
25
-
26
- ## 1.1.23 - 03.10.2024
27
-
28
- - add user API and unit tests
29
-
30
- ## 1.1.21 - 03.10.2024
31
-
32
- - add mention in comment notification hook
33
-
34
- ## 1.1.20 - 02.10.2024
35
-
36
- - code optimization
37
-
38
- ## 1.1.19 - 01.10.2024
39
-
40
- - custom hook support - addHook, applyHook
41
-
42
- ## 1.1.17 - 30.09.2024
43
-
44
- - add relkinds to pg
45
-
46
- ## 1.1.16 - 27.09.2024
47
-
48
- - add migrations
49
-
50
- ## 1.1.15 - 26.09.2024
51
-
52
- - fix update crud editor id/date + geom
53
-
54
- ## 1.1.6 - 19.09.2024
55
-
56
- - add more funcs to utils export
57
-
58
- ## 1.0.97 - 13.09.2024
59
-
60
- - add migrations
61
-
62
- ## 1.0.96 - 12.09.2024
63
-
64
- - minor refactor of email notifications
65
-
66
- ## 1.0.95 - 12.09.2024
67
-
68
- - add dbname to getFolder func
69
-
70
- ## 1.0.94 - 11.09.2024
71
-
72
- - fix getMeta (public schema)
73
-
74
- ## 1.0.93 - 05.09.2024
75
-
76
- - fix data API with sql columns filter
77
-
78
- ## 1.0.92 - 03.09.2024
79
-
80
- - fix getTemplate
81
-
82
- ## 1.0.91 - 30.08.2024
83
-
84
- - add CRUD and Auth logs
85
-
86
- ## 1.0.90 - 27.08.2024
87
-
88
- - logger file API to core
89
-
90
- ## 1.0.89 - 26.08.2024
91
-
92
- - data API meta bbox polyline support
93
-
94
- ## 1.0.87 - 26.08.2024
95
-
96
- - change of null handling method of update crud API
97
-
98
- ## 1.0.86 - 23.08.2024
99
-
100
- - data API meta cls support
101
-
102
- ## 1.0.84 - 22.08.2024
103
-
104
- - suggest table:column support
105
-
106
- ## 1.0.83 - 20.08.2024
107
-
108
- - code optimization
109
-
110
- ## 1.0.81 - 15.08.2024
111
-
112
- - refactor /table API
113
-
114
- ## 1.0.78 - 14.08.2024
115
-
116
- - add sqlColumns to /api/data/:table/?:id
117
-
118
- ## 1.0.77 - 13.08.2024
119
-
120
- - add statusMonitor API
121
-
122
- ## 1.0.75 - 12.08.2024
123
-
124
- - something do
125
-
126
- ## 1.0.71 - 01.08.2024
127
-
128
- - add compile settings to form
129
-
130
- ## 1.0.70 - 29.07.2024
131
-
132
- - add cron funcs and API
133
-
134
- ## 1.0.69 - 26.07.2024
135
-
136
- - add column classifier mode for data API
137
-
138
- ## 1.0.68 - 26.07.2024
139
-
140
- - code optimization
141
-
142
- ## 1.0.66 - 25.07.2024
143
-
144
- - add notification compile template from data params support
145
-
146
- ## 1.0.65 - 23.07.2024
147
-
148
- - add rest API token support
149
-
150
- ## 1.0.62 - 22.07.2024
151
-
152
- - add email notification func and test api
153
-
154
- ## 1.0.61 - 18.07.2024
155
-
156
- - add custom actions for table
157
-
158
- ## 1.0.60 - 12.07.2024
159
-
160
- - code optimization
161
-
162
- ## 1.0.59 - 12.07.2024
163
-
164
- - code optimization
165
-
166
- ## 1.0.58 - 08.07.2024
167
-
168
- - code optimization
169
-
170
- ## 1.0.57 - 04.07.2024
171
-
172
- - fix crud update boolean column
173
-
174
- ## 1.0.56 - 04.07.2024
175
-
176
- - code optimization
177
-
178
- ## 1.0.55 - 02.07.2024
179
-
180
- - callback support
181
-
182
- ## 1.0.54 - 01.07.2024
183
-
184
- - code optimization
185
-
186
- ## 1.0.53 - 28.06.2024
187
-
188
- - add migrations support
189
-
190
- ## 1.0.52 - 28.06.2024
191
-
192
- - add table get api
193
-
194
- ## 1.0.51 - 27.06.2024
195
-
196
- - add next-id api
197
-
198
- ## 1.0.50 - 27.06.2024
199
-
200
- - refactor search api
201
-
202
- ## 1.0.49 - 26.06.2024
203
-
204
- - refactor - npm settings
205
-
206
- ## 1.0.48 - 26.06.2024
207
-
208
- - search api no specified table mode support
209
-
210
- ## 1.0.47 - 25.06.2024
211
-
212
- - add extra properties support
213
-
214
- ## 1.0.46 - 24.06.2024
215
-
216
- - fix data api edit geometry
217
-
218
- ## 1.0.45 - 19.06.2024
219
-
220
- - fix data api table template order
221
-
222
- ## 1.0.44 - 18.06.2024
223
-
224
- - add extra data support (form DataTable)
225
-
226
- ## 1.0.43 - 14.06.2024
227
-
228
- - add settings api, funcs, migration
229
-
230
- ## 1.0.42 - 12.06.2024
231
-
232
- - table cardSql support
233
-
234
- ## 1.0.41 - 12.06.2024
235
-
236
- - cls to db (crm.cls)
237
-
238
- ## 1.0.40 - 12.06.2024
239
-
240
- - fix widget GET API
241
-
242
- ## 1.0.39 - 29.05.2024
243
-
244
- - add getFolder func
245
-
246
- ## 1.0.37 - 23.05.2024
247
-
248
- - add gallery widget
249
-
250
- ## 1.0.36 - 22.05.2024
251
-
252
- - fix filter api array processing
253
-
254
- ## 1.0.31 - 20.05.2024
255
-
256
- - widget db structure refactor
257
-
258
- ## 1.0.30 - 17.05.2024
259
-
260
- - code optimization
261
-
262
- ## 1.0.29 - 17.05.2024
263
-
264
- - widget api post (file)
265
-
266
- ## 1.0.28 - 14.05.2024
267
-
268
- - dblist api set
269
-
270
- ## 1.0.27 - 12.05.2024
271
-
272
- - code optimization
273
-
274
- ## 1.0.26 - 09.05.2024
275
-
276
- - fix getTableSql
277
-
278
- ## 1.0.25 - 08.05.2024
279
-
280
- - decorator to hook
281
-
282
- ## 1.0.24 - 07.05.2024
283
-
284
- - getTemplate page
285
-
286
- ## 1.0.23 - 07.05.2024
287
-
288
- - getTemplate funcs
289
- - dblist api
290
-
291
- ## 1.0.22 - 03.05.2024
292
-
293
- - getFilterSQL funcs
294
-
295
- ## 1.0.21 - 03.05.2024
296
-
297
- - fix widget db structure
298
-
299
- ## 1.0.20 - 03.05.2024
300
-
301
- - fix filter separator
302
-
303
- ## 1.0.19 - 02.05.2024
304
-
305
- - widget plugin
306
- - notification plugin
307
-
308
- ## 1.0.9 - 29.04.2024
309
-
310
- - crud token support
311
- - security - xss restriction
312
-
313
- ## 1.0.8 - 29.04.2024
314
-
315
- - filter fix
316
-
317
- ## 1.0.7 - 26.04.2024
318
-
319
- - code optimization
320
-
321
- ## 1.0.6 - 25.04.2024
322
-
323
- - code optimization
324
-
325
- ## 1.0.5 - 24.04.2024
326
-
327
- - code optimization
328
-
329
- ## 1.0.4 - 20.04.2024
330
-
331
- - data api - order
332
- - suggest api - db support
333
- - del api fix
334
-
335
- ## 1.0.3 - 17.04.2024
336
-
337
- - fix unit test
338
-
339
- ## 1.0.2 - 14.04.2024
340
-
341
- - fix redis
342
-
343
- ## 1.0.1 - 14.04.2024
344
-
345
- - fix redis
346
-
347
- ## 1.0.0 - 14.04.2024
348
-
349
- - crud
350
- - pg
351
- - redis
352
- - table
1
+ # fastify-table
2
+
3
+ ## 1.1.51 - 24.10.2024
4
+
5
+ - addHook params refactor
6
+ - add getFolder, handlebars to utils
7
+ - refactor getAccess for CRUD
8
+ - add migrations
9
+
10
+ ## 1.1.40 - 18.10.2024
11
+
12
+ - fix migrations
13
+
14
+ ## 1.1.31 - 11.10.2024
15
+
16
+ - move notification api to admin
17
+
18
+ ## 1.1.29 - 09.10.2024
19
+
20
+ - add after crud hook
21
+
22
+ ## 1.1.27 - 08.10.2024
23
+
24
+ - add migrations
25
+
26
+ ## 1.1.23 - 03.10.2024
27
+
28
+ - add user API and unit tests
29
+
30
+ ## 1.1.21 - 03.10.2024
31
+
32
+ - add mention in comment notification hook
33
+
34
+ ## 1.1.20 - 02.10.2024
35
+
36
+ - code optimization
37
+
38
+ ## 1.1.19 - 01.10.2024
39
+
40
+ - custom hook support - addHook, applyHook
41
+
42
+ ## 1.1.17 - 30.09.2024
43
+
44
+ - add relkinds to pg
45
+
46
+ ## 1.1.16 - 27.09.2024
47
+
48
+ - add migrations
49
+
50
+ ## 1.1.15 - 26.09.2024
51
+
52
+ - fix update crud editor id/date + geom
53
+
54
+ ## 1.1.6 - 19.09.2024
55
+
56
+ - add more funcs to utils export
57
+
58
+ ## 1.0.97 - 13.09.2024
59
+
60
+ - add migrations
61
+
62
+ ## 1.0.96 - 12.09.2024
63
+
64
+ - minor refactor of email notifications
65
+
66
+ ## 1.0.95 - 12.09.2024
67
+
68
+ - add dbname to getFolder func
69
+
70
+ ## 1.0.94 - 11.09.2024
71
+
72
+ - fix getMeta (public schema)
73
+
74
+ ## 1.0.93 - 05.09.2024
75
+
76
+ - fix data API with sql columns filter
77
+
78
+ ## 1.0.92 - 03.09.2024
79
+
80
+ - fix getTemplate
81
+
82
+ ## 1.0.91 - 30.08.2024
83
+
84
+ - add CRUD and Auth logs
85
+
86
+ ## 1.0.90 - 27.08.2024
87
+
88
+ - logger file API to core
89
+
90
+ ## 1.0.89 - 26.08.2024
91
+
92
+ - data API meta bbox polyline support
93
+
94
+ ## 1.0.87 - 26.08.2024
95
+
96
+ - change of null handling method of update crud API
97
+
98
+ ## 1.0.86 - 23.08.2024
99
+
100
+ - data API meta cls support
101
+
102
+ ## 1.0.84 - 22.08.2024
103
+
104
+ - suggest table:column support
105
+
106
+ ## 1.0.83 - 20.08.2024
107
+
108
+ - code optimization
109
+
110
+ ## 1.0.81 - 15.08.2024
111
+
112
+ - refactor /table API
113
+
114
+ ## 1.0.78 - 14.08.2024
115
+
116
+ - add sqlColumns to /api/data/:table/?:id
117
+
118
+ ## 1.0.77 - 13.08.2024
119
+
120
+ - add statusMonitor API
121
+
122
+ ## 1.0.75 - 12.08.2024
123
+
124
+ - something do
125
+
126
+ ## 1.0.71 - 01.08.2024
127
+
128
+ - add compile settings to form
129
+
130
+ ## 1.0.70 - 29.07.2024
131
+
132
+ - add cron funcs and API
133
+
134
+ ## 1.0.69 - 26.07.2024
135
+
136
+ - add column classifier mode for data API
137
+
138
+ ## 1.0.68 - 26.07.2024
139
+
140
+ - code optimization
141
+
142
+ ## 1.0.66 - 25.07.2024
143
+
144
+ - add notification compile template from data params support
145
+
146
+ ## 1.0.65 - 23.07.2024
147
+
148
+ - add rest API token support
149
+
150
+ ## 1.0.62 - 22.07.2024
151
+
152
+ - add email notification func and test api
153
+
154
+ ## 1.0.61 - 18.07.2024
155
+
156
+ - add custom actions for table
157
+
158
+ ## 1.0.60 - 12.07.2024
159
+
160
+ - code optimization
161
+
162
+ ## 1.0.59 - 12.07.2024
163
+
164
+ - code optimization
165
+
166
+ ## 1.0.58 - 08.07.2024
167
+
168
+ - code optimization
169
+
170
+ ## 1.0.57 - 04.07.2024
171
+
172
+ - fix crud update boolean column
173
+
174
+ ## 1.0.56 - 04.07.2024
175
+
176
+ - code optimization
177
+
178
+ ## 1.0.55 - 02.07.2024
179
+
180
+ - callback support
181
+
182
+ ## 1.0.54 - 01.07.2024
183
+
184
+ - code optimization
185
+
186
+ ## 1.0.53 - 28.06.2024
187
+
188
+ - add migrations support
189
+
190
+ ## 1.0.52 - 28.06.2024
191
+
192
+ - add table get api
193
+
194
+ ## 1.0.51 - 27.06.2024
195
+
196
+ - add next-id api
197
+
198
+ ## 1.0.50 - 27.06.2024
199
+
200
+ - refactor search api
201
+
202
+ ## 1.0.49 - 26.06.2024
203
+
204
+ - refactor - npm settings
205
+
206
+ ## 1.0.48 - 26.06.2024
207
+
208
+ - search api no specified table mode support
209
+
210
+ ## 1.0.47 - 25.06.2024
211
+
212
+ - add extra properties support
213
+
214
+ ## 1.0.46 - 24.06.2024
215
+
216
+ - fix data api edit geometry
217
+
218
+ ## 1.0.45 - 19.06.2024
219
+
220
+ - fix data api table template order
221
+
222
+ ## 1.0.44 - 18.06.2024
223
+
224
+ - add extra data support (form DataTable)
225
+
226
+ ## 1.0.43 - 14.06.2024
227
+
228
+ - add settings api, funcs, migration
229
+
230
+ ## 1.0.42 - 12.06.2024
231
+
232
+ - table cardSql support
233
+
234
+ ## 1.0.41 - 12.06.2024
235
+
236
+ - cls to db (crm.cls)
237
+
238
+ ## 1.0.40 - 12.06.2024
239
+
240
+ - fix widget GET API
241
+
242
+ ## 1.0.39 - 29.05.2024
243
+
244
+ - add getFolder func
245
+
246
+ ## 1.0.37 - 23.05.2024
247
+
248
+ - add gallery widget
249
+
250
+ ## 1.0.36 - 22.05.2024
251
+
252
+ - fix filter api array processing
253
+
254
+ ## 1.0.31 - 20.05.2024
255
+
256
+ - widget db structure refactor
257
+
258
+ ## 1.0.30 - 17.05.2024
259
+
260
+ - code optimization
261
+
262
+ ## 1.0.29 - 17.05.2024
263
+
264
+ - widget api post (file)
265
+
266
+ ## 1.0.28 - 14.05.2024
267
+
268
+ - dblist api set
269
+
270
+ ## 1.0.27 - 12.05.2024
271
+
272
+ - code optimization
273
+
274
+ ## 1.0.26 - 09.05.2024
275
+
276
+ - fix getTableSql
277
+
278
+ ## 1.0.25 - 08.05.2024
279
+
280
+ - decorator to hook
281
+
282
+ ## 1.0.24 - 07.05.2024
283
+
284
+ - getTemplate page
285
+
286
+ ## 1.0.23 - 07.05.2024
287
+
288
+ - getTemplate funcs
289
+ - dblist api
290
+
291
+ ## 1.0.22 - 03.05.2024
292
+
293
+ - getFilterSQL funcs
294
+
295
+ ## 1.0.21 - 03.05.2024
296
+
297
+ - fix widget db structure
298
+
299
+ ## 1.0.20 - 03.05.2024
300
+
301
+ - fix filter separator
302
+
303
+ ## 1.0.19 - 02.05.2024
304
+
305
+ - widget plugin
306
+ - notification plugin
307
+
308
+ ## 1.0.9 - 29.04.2024
309
+
310
+ - crud token support
311
+ - security - xss restriction
312
+
313
+ ## 1.0.8 - 29.04.2024
314
+
315
+ - filter fix
316
+
317
+ ## 1.0.7 - 26.04.2024
318
+
319
+ - code optimization
320
+
321
+ ## 1.0.6 - 25.04.2024
322
+
323
+ - code optimization
324
+
325
+ ## 1.0.5 - 24.04.2024
326
+
327
+ - code optimization
328
+
329
+ ## 1.0.4 - 20.04.2024
330
+
331
+ - data api - order
332
+ - suggest api - db support
333
+ - del api fix
334
+
335
+ ## 1.0.3 - 17.04.2024
336
+
337
+ - fix unit test
338
+
339
+ ## 1.0.2 - 14.04.2024
340
+
341
+ - fix redis
342
+
343
+ ## 1.0.1 - 14.04.2024
344
+
345
+ - fix redis
346
+
347
+ ## 1.0.0 - 14.04.2024
348
+
349
+ - crud
350
+ - pg
351
+ - redis
352
+ - table