@acorex/modules 18.0.15 → 18.1.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.
Files changed (114) hide show
  1. package/application-management/index.d.ts +9 -7
  2. package/application-management/lib/actions/index.d.ts +1 -0
  3. package/application-management/lib/actions/show-detail.action.d.ts +8 -0
  4. package/application-management/lib/application-management-mock-data.d.ts +3 -18
  5. package/application-management/lib/application-management.module.d.ts +12 -2
  6. package/application-management/lib/application-management.service.d.ts +2 -0
  7. package/application-management/lib/entities/property.entity.d.ts +3 -0
  8. package/application-management/lib/layouts/index.d.ts +1 -0
  9. package/application-management/lib/layouts/module-entity-detail-view/module-entity-detail-view.component.d.ts +15 -0
  10. package/application-management/lib/module-designer/module-designer.component.d.ts +32 -0
  11. package/application-management/lib/module-designer/module-designer.service.d.ts +34 -0
  12. package/application-management/lib/module-designer/module-designer.type.d.ts +1 -0
  13. package/application-management/lib/services/context-menu.service.d.ts +26 -0
  14. package/application-management/lib/workflows/create-module-entity.workflow.d.ts +2 -0
  15. package/application-management/lib/workflows/index.d.ts +2 -0
  16. package/application-management/lib/workflows/show-module-entity-details.workflow.d.ts +2 -0
  17. package/auth/lib/error-handler.d.ts +1 -1
  18. package/backend/lib/data/api/comment.service.d.ts +15 -0
  19. package/backend/lib/data/api/module-designer.service.d.ts +43 -0
  20. package/backend/lib/data/index.d.ts +2 -1
  21. package/backend/lib/data/local/local-data-provider.d.ts +1 -2
  22. package/esm2022/application-management/index.mjs +10 -8
  23. package/esm2022/application-management/lib/actions/index.mjs +2 -0
  24. package/esm2022/application-management/lib/actions/show-detail.action.mjs +25 -0
  25. package/esm2022/application-management/lib/application-management-mock-data.mjs +4 -4
  26. package/esm2022/application-management/lib/application-management.module.mjs +94 -7
  27. package/esm2022/application-management/lib/application-management.service.mjs +8 -2
  28. package/esm2022/application-management/lib/entities/application-module.entity.mjs +273 -0
  29. package/esm2022/application-management/lib/entities/applications.entity.mjs +311 -0
  30. package/esm2022/application-management/lib/entities/edition.entity.mjs +284 -0
  31. package/esm2022/application-management/lib/entities/entity.entity.mjs +284 -0
  32. package/esm2022/application-management/lib/entities/feature.entity.mjs +284 -0
  33. package/esm2022/application-management/lib/entities/modules.entity.mjs +324 -0
  34. package/esm2022/application-management/lib/entities/permission.entity.mjs +284 -0
  35. package/esm2022/application-management/lib/entities/property.entity.mjs +449 -0
  36. package/esm2022/application-management/lib/layouts/index.mjs +2 -0
  37. package/esm2022/application-management/lib/layouts/module-entity-detail-view/module-entity-detail-view.component.mjs +77 -0
  38. package/esm2022/application-management/lib/module-designer/module-designer.component.mjs +142 -0
  39. package/esm2022/application-management/lib/module-designer/module-designer.service.mjs +3 -0
  40. package/esm2022/application-management/lib/module-designer/module-designer.type.mjs +2 -0
  41. package/esm2022/application-management/lib/services/context-menu.service.mjs +168 -0
  42. package/esm2022/application-management/lib/workflows/create-module-entity.workflow.mjs +42 -0
  43. package/esm2022/application-management/lib/workflows/index.mjs +3 -0
  44. package/esm2022/application-management/lib/workflows/show-module-entity-details.workflow.mjs +9 -0
  45. package/esm2022/auth/lib/error-handler.mjs +6 -6
  46. package/esm2022/backend/lib/backend.module.mjs +23 -5
  47. package/esm2022/backend/lib/data/api/comment.service.mjs +48 -0
  48. package/esm2022/backend/lib/data/api/data-provider.mjs +2 -2
  49. package/esm2022/backend/lib/data/api/module-designer.service.mjs +95 -0
  50. package/esm2022/backend/lib/data/index.mjs +3 -2
  51. package/esm2022/backend/lib/data/local/local-data-provider.mjs +2 -2
  52. package/esm2022/form-management/acorex-modules-form-management.mjs +5 -0
  53. package/esm2022/form-management/index.mjs +2 -0
  54. package/esm2022/form-management/lib/designer/designer.page.mjs +24 -0
  55. package/esm2022/form-management/lib/form-management.module.mjs +29 -0
  56. package/fesm2022/acorex-modules-application-management-module-designer.component-CDZZ-5pF.mjs +323 -0
  57. package/fesm2022/acorex-modules-application-management-module-designer.component-CDZZ-5pF.mjs.map +1 -0
  58. package/fesm2022/acorex-modules-application-management.mjs +722 -21
  59. package/fesm2022/acorex-modules-application-management.mjs.map +1 -1
  60. package/fesm2022/{acorex-modules-auth-acorex-modules-auth-BD7I4S8c.mjs → acorex-modules-auth-acorex-modules-auth-D09VaQPe.mjs} +12 -12
  61. package/fesm2022/acorex-modules-auth-acorex-modules-auth-D09VaQPe.mjs.map +1 -0
  62. package/fesm2022/{acorex-modules-auth-app-chooser.component-Cfl1D1Cw.mjs → acorex-modules-auth-app-chooser.component-DN1ZJiZs.mjs} +2 -2
  63. package/fesm2022/{acorex-modules-auth-app-chooser.component-Cfl1D1Cw.mjs.map → acorex-modules-auth-app-chooser.component-DN1ZJiZs.mjs.map} +1 -1
  64. package/fesm2022/{acorex-modules-auth-login.module-BQG4ObmU.mjs → acorex-modules-auth-login.module-CGA5aTg2.mjs} +5 -5
  65. package/fesm2022/{acorex-modules-auth-login.module-BQG4ObmU.mjs.map → acorex-modules-auth-login.module-CGA5aTg2.mjs.map} +1 -1
  66. package/fesm2022/{acorex-modules-auth-master.layout-DoPCP7C0.mjs → acorex-modules-auth-master.layout-ZJWzjLrb.mjs} +2 -2
  67. package/fesm2022/{acorex-modules-auth-master.layout-DoPCP7C0.mjs.map → acorex-modules-auth-master.layout-ZJWzjLrb.mjs.map} +1 -1
  68. package/fesm2022/{acorex-modules-auth-password.component-fyMD7oKR.mjs → acorex-modules-auth-password.component-C4yqf342.mjs} +3 -3
  69. package/fesm2022/{acorex-modules-auth-password.component-fyMD7oKR.mjs.map → acorex-modules-auth-password.component-C4yqf342.mjs.map} +1 -1
  70. package/fesm2022/{acorex-modules-auth-password.component-CfhiS2hO.mjs → acorex-modules-auth-password.component-MJhNk3UI.mjs} +2 -2
  71. package/fesm2022/{acorex-modules-auth-password.component-CfhiS2hO.mjs.map → acorex-modules-auth-password.component-MJhNk3UI.mjs.map} +1 -1
  72. package/fesm2022/{acorex-modules-auth-routes-95DQOnjS.mjs → acorex-modules-auth-routes-DhORV1Js.mjs} +2 -2
  73. package/fesm2022/{acorex-modules-auth-routes-95DQOnjS.mjs.map → acorex-modules-auth-routes-DhORV1Js.mjs.map} +1 -1
  74. package/fesm2022/{acorex-modules-auth-two-factor.module-BkErlA-n.mjs → acorex-modules-auth-two-factor.module-BWKP0_jO.mjs} +3 -3
  75. package/fesm2022/{acorex-modules-auth-two-factor.module-BkErlA-n.mjs.map → acorex-modules-auth-two-factor.module-BWKP0_jO.mjs.map} +1 -1
  76. package/fesm2022/acorex-modules-auth.mjs +4 -4
  77. package/fesm2022/acorex-modules-backend.mjs +154 -137
  78. package/fesm2022/acorex-modules-backend.mjs.map +1 -1
  79. package/fesm2022/acorex-modules-form-management-designer.page-SoPH2V7i.mjs +27 -0
  80. package/fesm2022/acorex-modules-form-management-designer.page-SoPH2V7i.mjs.map +1 -0
  81. package/fesm2022/acorex-modules-form-management.mjs +36 -0
  82. package/fesm2022/acorex-modules-form-management.mjs.map +1 -0
  83. package/form-management/README.md +4 -0
  84. package/form-management/index.d.ts +1 -0
  85. package/form-management/lib/designer/designer.page.d.ts +5 -0
  86. package/form-management/lib/form-management.module.d.ts +7 -0
  87. package/package.json +6 -6
  88. package/backend/lib/data/local/data-Conditioner.d.ts +0 -6
  89. package/esm2022/application-management/lib/application-module.entity.mjs +0 -273
  90. package/esm2022/application-management/lib/applications.entity.mjs +0 -311
  91. package/esm2022/application-management/lib/edition.entity.mjs +0 -284
  92. package/esm2022/application-management/lib/entity.entity.mjs +0 -284
  93. package/esm2022/application-management/lib/feature.entity.mjs +0 -284
  94. package/esm2022/application-management/lib/modules.entity.mjs +0 -324
  95. package/esm2022/application-management/lib/permission.entity.mjs +0 -284
  96. package/esm2022/backend/lib/data/local/data-Conditioner.mjs +0 -138
  97. package/esm2022/log-management/acorex-modules-log-management.mjs +0 -5
  98. package/esm2022/log-management/index.mjs +0 -3
  99. package/esm2022/log-management/lib/audit-logs.entity.mjs +0 -391
  100. package/esm2022/log-management/lib/log-management.module.mjs +0 -16
  101. package/fesm2022/acorex-modules-auth-acorex-modules-auth-BD7I4S8c.mjs.map +0 -1
  102. package/fesm2022/acorex-modules-log-management.mjs +0 -414
  103. package/fesm2022/acorex-modules-log-management.mjs.map +0 -1
  104. package/log-management/README.md +0 -4
  105. package/log-management/index.d.ts +0 -2
  106. package/log-management/lib/audit-logs.entity.d.ts +0 -3
  107. package/log-management/lib/log-management.module.d.ts +0 -6
  108. /package/application-management/lib/{application-module.entity.d.ts → entities/application-module.entity.d.ts} +0 -0
  109. /package/application-management/lib/{applications.entity.d.ts → entities/applications.entity.d.ts} +0 -0
  110. /package/application-management/lib/{edition.entity.d.ts → entities/edition.entity.d.ts} +0 -0
  111. /package/application-management/lib/{entity.entity.d.ts → entities/entity.entity.d.ts} +0 -0
  112. /package/application-management/lib/{feature.entity.d.ts → entities/feature.entity.d.ts} +0 -0
  113. /package/application-management/lib/{modules.entity.d.ts → entities/modules.entity.d.ts} +0 -0
  114. /package/application-management/lib/{permission.entity.d.ts → entities/permission.entity.d.ts} +0 -0
@@ -1,414 +0,0 @@
1
- import { widgetSchemas, convertPropertiesToColumns, AXPDataProvider } from '@acorex/platform/common';
2
- import * as i0 from '@angular/core';
3
- import { NgModule } from '@angular/core';
4
-
5
- const properties = [
6
- {
7
- name: 'executionTime',
8
- title: 'Execution Time',
9
- schema: widgetSchemas.dateTime,
10
- canEdit: false,
11
- canInsert: true,
12
- formats: {
13
- default: 'HH:mm:ss dd MMM YYYY',
14
- },
15
- canInlineFilter: true,
16
- validationRules: [],
17
- },
18
- {
19
- name: 'httpMethod',
20
- title: 'HTTP Method',
21
- schema: widgetSchemas.text,
22
- canEdit: false,
23
- canInsert: true,
24
- canInlineFilter: true,
25
- validationRules: [],
26
- },
27
- {
28
- name: 'url',
29
- title: 'URL',
30
- schema: widgetSchemas.text,
31
- canEdit: false,
32
- canInsert: true,
33
- canInlineFilter: true,
34
- validationRules: [],
35
- },
36
- {
37
- name: 'httpStatusCode',
38
- title: 'HTTP Status Code',
39
- schema: widgetSchemas.number,
40
- canEdit: false,
41
- canInsert: true,
42
- canInlineFilter: true,
43
- validationRules: [],
44
- },
45
- {
46
- name: 'exceptions',
47
- title: 'Exceptions',
48
- schema: widgetSchemas.largetext,
49
- canEdit: false,
50
- canInsert: true,
51
- canInlineFilter: true,
52
- validationRules: [],
53
- },
54
- {
55
- name: 'browserInfo',
56
- title: 'Browser Info',
57
- schema: widgetSchemas.text,
58
- canEdit: false,
59
- canInsert: true,
60
- canInlineFilter: true,
61
- validationRules: [],
62
- },
63
- {
64
- name: 'comments',
65
- title: 'Comments',
66
- schema: widgetSchemas.text,
67
- canEdit: true,
68
- canInsert: true,
69
- canInlineFilter: true,
70
- validationRules: [],
71
- },
72
- {
73
- name: 'applicationName',
74
- title: 'Application Name',
75
- schema: widgetSchemas.text,
76
- canEdit: true,
77
- canInsert: true,
78
- canInlineFilter: true,
79
- validationRules: [],
80
- },
81
- {
82
- name: 'axApplicationName',
83
- title: 'AX Application Name',
84
- schema: widgetSchemas.text,
85
- canEdit: true,
86
- canInsert: true,
87
- canInlineFilter: true,
88
- validationRules: [],
89
- },
90
- {
91
- name: 'executionDuration',
92
- title: 'Execution Duration',
93
- schema: widgetSchemas.number,
94
- canEdit: false,
95
- canInsert: true,
96
- canInlineFilter: true,
97
- validationRules: [],
98
- },
99
- {
100
- name: 'clientIpAddress',
101
- title: 'Client IP Address',
102
- schema: widgetSchemas.text,
103
- canEdit: false,
104
- canInsert: true,
105
- canInlineFilter: true,
106
- validationRules: [],
107
- },
108
- {
109
- name: 'correlationId',
110
- title: 'Correlation ID',
111
- schema: widgetSchemas.text,
112
- canEdit: false,
113
- canInsert: true,
114
- canInlineFilter: true,
115
- validationRules: [],
116
- },
117
- {
118
- name: 'entityChanges',
119
- title: 'Entity Changes',
120
- schema: widgetSchemas.richText,
121
- canEdit: true,
122
- canInsert: true,
123
- canInlineFilter: true,
124
- validationRules: [],
125
- component: {
126
- common: {
127
- options: {
128
- reference: 'entityChanges',
129
- referenceField: 'entityChangeId',
130
- textField: 'changeType',
131
- valueField: 'id',
132
- multiple: true,
133
- },
134
- },
135
- },
136
- },
137
- {
138
- name: 'actions',
139
- title: 'Actions',
140
- schema: widgetSchemas.richText,
141
- canEdit: true,
142
- canInsert: true,
143
- canInlineFilter: true,
144
- validationRules: [],
145
- component: {
146
- common: {
147
- options: {
148
- reference: 'actions',
149
- referenceField: 'actionId',
150
- textField: 'methodName',
151
- valueField: 'id',
152
- multiple: true,
153
- },
154
- },
155
- },
156
- },
157
- {
158
- name: 'userId',
159
- title: 'User ID',
160
- schema: widgetSchemas.text,
161
- canEdit: false,
162
- canInsert: false,
163
- canInlineFilter: true,
164
- validationRules: [],
165
- },
166
- {
167
- name: 'userName',
168
- title: 'Username',
169
- schema: widgetSchemas.text,
170
- canEdit: false,
171
- canInsert: true,
172
- canInlineFilter: true,
173
- validationRules: [
174
- {
175
- rule: 'required',
176
- },
177
- ],
178
- },
179
- {
180
- name: 'tenantId',
181
- title: 'Tenant ID',
182
- schema: widgetSchemas.text,
183
- canEdit: false,
184
- canInsert: false,
185
- canInlineFilter: true,
186
- validationRules: [],
187
- },
188
- {
189
- name: 'tenantName',
190
- title: 'Tenant Name',
191
- schema: widgetSchemas.text,
192
- canEdit: true,
193
- canInsert: true,
194
- canInlineFilter: true,
195
- validationRules: [],
196
- },
197
- {
198
- name: 'impersonatorUserId',
199
- title: 'Impersonator User ID',
200
- schema: widgetSchemas.text,
201
- canEdit: false,
202
- canInsert: false,
203
- canInlineFilter: true,
204
- validationRules: [],
205
- },
206
- {
207
- name: 'impersonatorUserName',
208
- title: 'Impersonator Username',
209
- schema: widgetSchemas.text,
210
- canEdit: false,
211
- canInsert: true,
212
- canInlineFilter: true,
213
- validationRules: [],
214
- },
215
- {
216
- name: 'impersonatorTenantId',
217
- title: 'Impersonator Tenant ID',
218
- schema: widgetSchemas.text,
219
- canEdit: false,
220
- canInsert: false,
221
- canInlineFilter: true,
222
- validationRules: [],
223
- },
224
- {
225
- name: 'impersonatorTenantName',
226
- title: 'Impersonator Tenant Name',
227
- schema: widgetSchemas.text,
228
- canEdit: true,
229
- canInsert: true,
230
- canInlineFilter: true,
231
- validationRules: [],
232
- },
233
- {
234
- name: 'clientName',
235
- title: 'Client Name',
236
- schema: widgetSchemas.text,
237
- canEdit: false,
238
- canInsert: true,
239
- canInlineFilter: true,
240
- validationRules: [],
241
- },
242
- {
243
- name: 'clientId',
244
- title: 'Client ID',
245
- schema: widgetSchemas.text,
246
- canEdit: false,
247
- canInsert: true,
248
- canInlineFilter: true,
249
- validationRules: [],
250
- },
251
- {
252
- name: 'id',
253
- title: 'ID',
254
- schema: widgetSchemas.text,
255
- canEdit: false,
256
- canInsert: false,
257
- canInlineFilter: true,
258
- validationRules: [],
259
- },
260
- ];
261
- const columns = convertPropertiesToColumns(...properties);
262
- const entityName = 'logs';
263
- async function entityFactory(injector) {
264
- const dataService = injector.get(AXPDataProvider);
265
- const entity = {
266
- module: 'log-management',
267
- name: entityName,
268
- title: 'Logs',
269
- properties: properties,
270
- editOptions: {
271
- create: false,
272
- delete: false,
273
- update: false,
274
- },
275
- formats: {
276
- default: 'Log Information',
277
- },
278
- dataSource: {
279
- key: 'id',
280
- pageSize: 20,
281
- load: async (e) => {
282
- return dataService.getMany(entity, e);
283
- },
284
- byKey: async (id) => {
285
- return dataService.getOne(entity, id);
286
- },
287
- },
288
- views: {
289
- list: {
290
- title: 'Audit Logs',
291
- views: [
292
- {
293
- name: 'all',
294
- title: 'All Items',
295
- fixed: true,
296
- sorts: [
297
- {
298
- name: 'executionTime',
299
- dir: 'asc',
300
- },
301
- ],
302
- columns: columns.slice(0, 6),
303
- conditions: [],
304
- },
305
- ],
306
- },
307
- quickView: {
308
- root: {
309
- properties: [],
310
- sections: [
311
- {
312
- title: 'Execution Details',
313
- name: 'executionDetails',
314
- properties: properties.slice(0, 5).map((c) => c.name),
315
- },
316
- {
317
- title: 'Client Info',
318
- name: 'clientInfo',
319
- properties: properties.slice(5, 10).map((c) => c.name),
320
- },
321
- ],
322
- },
323
- },
324
- detailView: {
325
- root: {
326
- properties: [],
327
- sections: [
328
- {
329
- title: 'General Information',
330
- name: 'generalInformation',
331
- properties: [],
332
- sections: [
333
- {
334
- title: 'Identifier',
335
- name: 'identifier',
336
- properties: ['id'],
337
- },
338
- {
339
- title: 'Execution Details',
340
- description: 'Details about the execution of the audit log.',
341
- name: 'executionDetails',
342
- properties: ['executionTime', 'httpMethod', 'url', 'httpStatusCode', 'exceptions'],
343
- },
344
- {
345
- title: 'Client Info',
346
- description: 'Information about the client involved in the audit.',
347
- name: 'clientInfo',
348
- properties: ['browserInfo', 'comments', 'clientIpAddress', 'clientName', 'clientId'],
349
- },
350
- {
351
- title: 'Application Info',
352
- name: 'applicationInfo',
353
- properties: ['applicationName', 'axApplicationName'],
354
- },
355
- {
356
- title: 'Execution Metrics',
357
- name: 'executionMetrics',
358
- properties: ['executionDuration', 'correlationId'],
359
- },
360
- {
361
- title: 'User Info',
362
- name: 'userInfo',
363
- properties: ['userId', 'userName', 'tenantId', 'tenantName'],
364
- },
365
- {
366
- title: 'Impersonator Info',
367
- name: 'impersonatorInfo',
368
- properties: ['impersonatorUserId', 'impersonatorUserName', 'impersonatorTenantId', 'impersonatorTenantName'],
369
- },
370
- {
371
- title: 'Entity Changes',
372
- name: 'entityChanges',
373
- properties: ['entityChanges'],
374
- },
375
- {
376
- title: 'Actions',
377
- name: 'actions',
378
- properties: ['actions'],
379
- },
380
- ],
381
- },
382
- ],
383
- },
384
- },
385
- createView: {
386
- root: {
387
- properties: properties.map((c) => c.name),
388
- },
389
- },
390
- },
391
- };
392
- return entity;
393
- }
394
-
395
- class AXMLogManagementModule {
396
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMLogManagementModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
397
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXMLogManagementModule }); }
398
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMLogManagementModule }); }
399
- }
400
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMLogManagementModule, decorators: [{
401
- type: NgModule,
402
- args: [{
403
- imports: [],
404
- exports: [],
405
- declarations: [],
406
- }]
407
- }] });
408
-
409
- /**
410
- * Generated bundle index. Do not edit.
411
- */
412
-
413
- export { AXMLogManagementModule, entityFactory };
414
- //# sourceMappingURL=acorex-modules-log-management.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"acorex-modules-log-management.mjs","sources":["../../../../libs/modules/log-management/src/lib/audit-logs.entity.ts","../../../../libs/modules/log-management/src/lib/log-management.module.ts","../../../../libs/modules/log-management/src/acorex-modules-log-management.ts"],"sourcesContent":["import { AXDataSourceQuery } from '@acorex/components/common';\nimport { AXPDataProvider, AXPEntityConfig, AXPEntityListDisplayColumnConfig, AXPEntityPropertyConfig, convertPropertiesToColumns, widgetSchemas } from '@acorex/platform/common';\n\nimport { Injector } from '@angular/core';\n\nconst properties: AXPEntityPropertyConfig[] = [\n {\n name: 'executionTime',\n title: 'Execution Time',\n schema: widgetSchemas.dateTime,\n canEdit: false,\n canInsert: true,\n formats: {\n default: 'HH:mm:ss dd MMM YYYY',\n },\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'httpMethod',\n title: 'HTTP Method',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'url',\n title: 'URL',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'httpStatusCode',\n title: 'HTTP Status Code',\n schema: widgetSchemas.number,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'exceptions',\n title: 'Exceptions',\n schema: widgetSchemas.largetext,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'browserInfo',\n title: 'Browser Info',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'comments',\n title: 'Comments',\n schema: widgetSchemas.text,\n canEdit: true,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'applicationName',\n title: 'Application Name',\n schema: widgetSchemas.text,\n canEdit: true,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'axApplicationName',\n title: 'AX Application Name',\n schema: widgetSchemas.text,\n canEdit: true,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'executionDuration',\n title: 'Execution Duration',\n schema: widgetSchemas.number,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'clientIpAddress',\n title: 'Client IP Address',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n\n {\n name: 'correlationId',\n title: 'Correlation ID',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'entityChanges',\n title: 'Entity Changes',\n schema: widgetSchemas.richText,\n canEdit: true,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n component: {\n common: {\n options: {\n reference: 'entityChanges',\n referenceField: 'entityChangeId',\n textField: 'changeType',\n valueField: 'id',\n multiple: true,\n },\n },\n },\n },\n {\n name: 'actions',\n title: 'Actions',\n schema: widgetSchemas.richText,\n canEdit: true,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n component: {\n common: {\n options: {\n reference: 'actions',\n referenceField: 'actionId',\n textField: 'methodName',\n valueField: 'id',\n multiple: true,\n },\n },\n },\n },\n {\n name: 'userId',\n title: 'User ID',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: false,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'userName',\n title: 'Username',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [\n {\n rule: 'required',\n },\n ],\n },\n {\n name: 'tenantId',\n title: 'Tenant ID',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: false,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'tenantName',\n title: 'Tenant Name',\n schema: widgetSchemas.text,\n canEdit: true,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'impersonatorUserId',\n title: 'Impersonator User ID',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: false,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'impersonatorUserName',\n title: 'Impersonator Username',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'impersonatorTenantId',\n title: 'Impersonator Tenant ID',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: false,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'impersonatorTenantName',\n title: 'Impersonator Tenant Name',\n schema: widgetSchemas.text,\n canEdit: true,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'clientName',\n title: 'Client Name',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'clientId',\n title: 'Client ID',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: true,\n canInlineFilter: true,\n validationRules: [],\n },\n {\n name: 'id',\n title: 'ID',\n schema: widgetSchemas.text,\n canEdit: false,\n canInsert: false,\n canInlineFilter: true,\n validationRules: [],\n },\n];\n\nconst columns: AXPEntityListDisplayColumnConfig[] = convertPropertiesToColumns(...properties);\n\nconst entityName = 'logs';\n\nexport async function entityFactory(injector: Injector): Promise<AXPEntityConfig> {\n const dataService = injector.get(AXPDataProvider);\n\n const entity: AXPEntityConfig = {\n module: 'log-management',\n name: entityName,\n title: 'Logs',\n properties: properties,\n editOptions: {\n create: false,\n delete: false,\n update: false,\n },\n formats: {\n default: 'Log Information',\n },\n dataSource: {\n key: 'id',\n pageSize: 20,\n load: async (e: AXDataSourceQuery) => {\n return dataService.getMany(entity, e);\n },\n byKey: async (id: any) => {\n return dataService.getOne(entity, id);\n },\n },\n views: {\n list: {\n title: 'Audit Logs',\n views: [\n {\n name: 'all',\n title: 'All Items',\n fixed: true,\n sorts: [\n {\n name: 'executionTime',\n dir: 'asc',\n },\n ],\n columns: columns.slice(0, 6),\n conditions: [],\n },\n ],\n },\n quickView: {\n root: {\n properties: [],\n sections: [\n {\n title: 'Execution Details',\n name: 'executionDetails',\n properties: properties.slice(0, 5).map((c) => c.name),\n },\n {\n title: 'Client Info',\n name: 'clientInfo',\n properties: properties.slice(5, 10).map((c) => c.name),\n },\n ],\n },\n },\n detailView: {\n root: {\n properties: [],\n sections: [\n {\n title: 'General Information',\n name: 'generalInformation',\n properties: [],\n sections: [\n {\n title: 'Identifier',\n name: 'identifier',\n properties: ['id'],\n },\n {\n title: 'Execution Details',\n description: 'Details about the execution of the audit log.',\n name: 'executionDetails',\n properties: ['executionTime', 'httpMethod', 'url', 'httpStatusCode', 'exceptions'],\n },\n {\n title: 'Client Info',\n description: 'Information about the client involved in the audit.',\n name: 'clientInfo',\n properties: ['browserInfo', 'comments', 'clientIpAddress', 'clientName', 'clientId'],\n },\n {\n title: 'Application Info',\n name: 'applicationInfo',\n properties: ['applicationName', 'axApplicationName'],\n },\n {\n title: 'Execution Metrics',\n name: 'executionMetrics',\n properties: ['executionDuration', 'correlationId'],\n },\n {\n title: 'User Info',\n name: 'userInfo',\n properties: ['userId', 'userName', 'tenantId', 'tenantName'],\n },\n {\n title: 'Impersonator Info',\n name: 'impersonatorInfo',\n properties: ['impersonatorUserId', 'impersonatorUserName', 'impersonatorTenantId', 'impersonatorTenantName'],\n },\n {\n title: 'Entity Changes',\n name: 'entityChanges',\n properties: ['entityChanges'],\n },\n {\n title: 'Actions',\n name: 'actions',\n properties: ['actions'],\n },\n ],\n },\n ],\n },\n },\n createView: {\n root: {\n properties: properties.map((c) => c.name),\n },\n },\n },\n };\n return entity;\n}\n","import { NgModule } from \"@angular/core\";\n@NgModule({\n imports: [],\n exports: [],\n declarations: [],\n})\nexport class AXMLogManagementModule {\n}\n ","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -1,4 +0,0 @@
1
- # @acorex/modules/log-management
2
-
3
- Secondary entry point of `@acorex/modules`. It can be used by importing from `@acorex/modules/log-management`.
4
-
@@ -1,2 +0,0 @@
1
- export * from './lib/audit-logs.entity';
2
- export * from './lib/log-management.module';
@@ -1,3 +0,0 @@
1
- import { AXPEntityConfig } from '@acorex/platform/common';
2
- import { Injector } from '@angular/core';
3
- export declare function entityFactory(injector: Injector): Promise<AXPEntityConfig>;
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class AXMLogManagementModule {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<AXMLogManagementModule, never>;
4
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXMLogManagementModule, never, never, never>;
5
- static ɵinj: i0.ɵɵInjectorDeclaration<AXMLogManagementModule>;
6
- }