@acorex/connectivity 19.3.3-next.1 → 19.3.5

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.
@@ -24,7 +24,7 @@ import { firstValueFrom, of, delay } from 'rxjs';
24
24
  import { AXFileService } from '@acorex/core/file';
25
25
  import { RootConfig as RootConfig$9 } from '@acorex/modules/project-management';
26
26
  import { RootConfig as RootConfig$a } from '@acorex/modules/scheduler-job-management';
27
- import { convertArrayToDataSource } from '@acorex/components/common';
27
+ import { convertArrayToDataSource } from '@acorex/cdk/common';
28
28
  import { RootConfig as RootConfig$b } from '@acorex/modules/text-template-management';
29
29
  import { RootConfig as RootConfig$c } from '@acorex/modules/training-management';
30
30
 
@@ -278,10 +278,10 @@ class AXCApplicationTemplateDataSeeder {
278
278
  const properties = this.storageService.initial(PROPERTY_SOURCE_NAME, PROPERTIES);
279
279
  await Promise.all([applications, modules, entities, features, permissions, editions, properties]);
280
280
  }
281
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCApplicationTemplateDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
282
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCApplicationTemplateDataSeeder }); }
281
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCApplicationTemplateDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
282
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCApplicationTemplateDataSeeder }); }
283
283
  }
284
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCApplicationTemplateDataSeeder, decorators: [{
284
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCApplicationTemplateDataSeeder, decorators: [{
285
285
  type: Injectable
286
286
  }] });
287
287
 
@@ -367,10 +367,10 @@ class AXCModuleDesignerService {
367
367
  async createPermission(payload) { }
368
368
  async updatePermission(payload) { }
369
369
  async deletePermission(permissionId) { }
370
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCModuleDesignerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
371
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCModuleDesignerService, providedIn: 'root' }); }
370
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCModuleDesignerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
371
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCModuleDesignerService, providedIn: 'root' }); }
372
372
  }
373
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCModuleDesignerService, decorators: [{
373
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCModuleDesignerService, decorators: [{
374
374
  type: Injectable,
375
375
  args: [{
376
376
  providedIn: 'root',
@@ -608,6 +608,7 @@ function generateBarChartWidget() {
608
608
  cornerRadius: 4,
609
609
  animationDuration: 800,
610
610
  animationEasing: 'cubic-out',
611
+ showDataLabels: false,
611
612
  };
612
613
  return {
613
614
  config: {
@@ -807,9 +808,7 @@ function generateDonutChartWidget() {
807
808
  cornerRadius: 4,
808
809
  animationDuration: 1000,
809
810
  animationEasing: 'cubic-out',
810
- // Non-standard options for the wrapper widget
811
- showLegend: true,
812
- legendPosition: 'right',
811
+ showDataLabels: false,
813
812
  };
814
813
  return {
815
814
  config: {
@@ -841,6 +840,7 @@ function generateGaugeChartWidget() {
841
840
  label: 'KPI',
842
841
  showValue: true,
843
842
  animationDuration: 1500,
843
+ showTooltip: false,
844
844
  animationEasing: 'cubic-out',
845
845
  // Optional color thresholds
846
846
  thresholds: [
@@ -1082,7 +1082,14 @@ function generateRandomDashboard() {
1082
1082
  const generator = getWidgetGenerator(type);
1083
1083
  return generator();
1084
1084
  });
1085
- const user = AXPDataGenerator.pick(mockUsers);
1085
+ const creator = AXPDataGenerator.pick(mockUsers);
1086
+ const updater = AXPDataGenerator.boolean()
1087
+ ? AXPDataGenerator.pick(mockUsers.filter((u) => u.id !== creator.id))
1088
+ : undefined;
1089
+ const createdAt = new Date(Date.now() - AXPDataGenerator.number(1, 30) * 24 * 60 * 60 * 1000); // Random date in last 30 days
1090
+ const updatedAt = updater
1091
+ ? new Date(createdAt.getTime() + AXPDataGenerator.number(1, 10) * 24 * 60 * 60 * 1000)
1092
+ : undefined;
1086
1093
  const titleTemplates = [
1087
1094
  `Sales Dashboard`,
1088
1095
  `Project Overview`,
@@ -1095,7 +1102,7 @@ function generateRandomDashboard() {
1095
1102
  `Marketing Insights`,
1096
1103
  `Operations Panel`,
1097
1104
  ];
1098
- const userFullName = `${user.firstName} ${user.lastName}`;
1105
+ const userFullName = `${creator.firstName} ${creator.lastName}`;
1099
1106
  const titleTemplate = AXPDataGenerator.pick(titleTemplates);
1100
1107
  const title = titleTemplate.replace('{user}', userFullName);
1101
1108
  return {
@@ -1104,8 +1111,13 @@ function generateRandomDashboard() {
1104
1111
  title: title,
1105
1112
  description: `This is a sample dashboard for ${title}`,
1106
1113
  widgets: widgets,
1107
- createdAt: AXPDataGenerator.date(new Date(2023, 0, 1), new Date()),
1108
- createdBy: userFullName,
1114
+ roleIds: creator.roleIds.map((r) => r.id),
1115
+ isDeleted: AXPDataGenerator.boolean(),
1116
+ createdAt: createdAt,
1117
+ updatedAt: updatedAt,
1118
+ createdBy: creator.id,
1119
+ updatedBy: updater ? updater.id : undefined,
1120
+ scope: Math.random() < 0.5 ? 'U' : 'T',
1109
1121
  };
1110
1122
  }
1111
1123
  // Generate a Charts Dashboard with one of each chart type
@@ -1116,14 +1128,22 @@ function generateChartsDashboard() {
1116
1128
  generateGaugeChartWidget(),
1117
1129
  generateLineChartWidget(),
1118
1130
  ];
1131
+ // Find an admin user for the charts dashboard
1132
+ const adminUser = mockUsers.find((user) => user.roleIds.some((role) => role.id === '1001')) || mockUsers[0];
1133
+ const createdAt = new Date(Date.now() - 15 * 24 * 60 * 60 * 1000); // Created 15 days ago
1119
1134
  return {
1120
1135
  id: AXPDataGenerator.uuid(),
1121
1136
  name: 'charts-dashboard',
1122
1137
  title: 'Charts Dashboard',
1123
1138
  description: 'A dashboard containing all available chart widgets for data visualization.',
1124
1139
  widgets: chartWidgets,
1125
- createdAt: new Date(),
1126
- createdBy: 'System',
1140
+ roleIds: ['1001', '1002'], // Accessible by admins and managers
1141
+ isDeleted: true, // Make charts dashboard public by default
1142
+ createdAt: createdAt,
1143
+ createdBy: adminUser.id,
1144
+ updatedAt: undefined,
1145
+ updatedBy: undefined,
1146
+ scope: Math.random() < 0.5 ? 'U' : 'T',
1127
1147
  };
1128
1148
  }
1129
1149
  // Generate a Utility Dashboard with utility widgets
@@ -1135,14 +1155,25 @@ function generateUtilityDashboard() {
1135
1155
  generateNotificationWidget(),
1136
1156
  generateTaskListWidget(),
1137
1157
  ];
1158
+ // Find a developer user for the utility dashboard
1159
+ const devUser = mockUsers.find((user) => user.roleIds.some((role) => role.id === '1008')) || mockUsers[0];
1160
+ const createdAt = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000); // Created 7 days ago
1161
+ const updatedAt = new Date(createdAt.getTime() + 2 * 24 * 60 * 60 * 1000); // Updated 2 days after creation
1162
+ // Find a manager to be the updater
1163
+ const managerUser = mockUsers.find((user) => user.roleIds.some((role) => role.id === '1002') && user.id !== devUser.id);
1138
1164
  return {
1139
1165
  id: AXPDataGenerator.uuid(),
1140
1166
  name: 'utility-dashboard',
1141
1167
  title: 'Utility Dashboard',
1142
1168
  description: 'A dashboard containing useful utility widgets for daily productivity.',
1143
1169
  widgets: utilityWidgets,
1144
- createdAt: new Date(),
1145
- createdBy: 'System',
1170
+ roleIds: ['1003', '1008'], // Accessible by regular users and developers
1171
+ isDeleted: false, // Make utility dashboard private by default
1172
+ createdAt: createdAt,
1173
+ createdBy: `${devUser.firstName} ${devUser.lastName}`,
1174
+ updatedAt: updatedAt,
1175
+ updatedBy: managerUser ? `${managerUser.firstName} ${managerUser.lastName}` : undefined,
1176
+ scope: Math.random() < 0.5 ? 'U' : 'T',
1146
1177
  };
1147
1178
  }
1148
1179
  // Create dashboards: predefined + some random ones
@@ -1155,10 +1186,10 @@ class AXPDashboardDataSeeder {
1155
1186
  async seed() {
1156
1187
  await this.storageService.initial(`${RootConfig.module.name}.${RootConfig.entities.dashboard.name}`, DASHBOARDS);
1157
1188
  }
1158
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPDashboardDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1159
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPDashboardDataSeeder }); }
1189
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPDashboardDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1190
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPDashboardDataSeeder }); }
1160
1191
  }
1161
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPDashboardDataSeeder, decorators: [{
1192
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPDashboardDataSeeder, decorators: [{
1162
1193
  type: Injectable
1163
1194
  }] });
1164
1195
 
@@ -1210,10 +1241,10 @@ class AXPChatDataSeeder {
1210
1241
  async seed() {
1211
1242
  await this.storageService.initial(`${AXMConverstionModuleConst.moduleName}.${AXMConverstionModuleConst.chatName}`, CHAT);
1212
1243
  }
1213
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPChatDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1214
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPChatDataSeeder }); }
1244
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPChatDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1245
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPChatDataSeeder }); }
1215
1246
  }
1216
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPChatDataSeeder, decorators: [{
1247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPChatDataSeeder, decorators: [{
1217
1248
  type: Injectable
1218
1249
  }] });
1219
1250
 
@@ -1228,10 +1259,10 @@ class AXMChatMockService extends AXMChatServiceImpl {
1228
1259
  await super.updateOne(roomId, { ...oldChat, unreadCount: 0 });
1229
1260
  return;
1230
1261
  }
1231
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMChatMockService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
1232
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMChatMockService }); }
1262
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMChatMockService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
1263
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMChatMockService }); }
1233
1264
  }
1234
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMChatMockService, decorators: [{
1265
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMChatMockService, decorators: [{
1235
1266
  type: Injectable
1236
1267
  }] });
1237
1268
 
@@ -1314,10 +1345,10 @@ class AXPCommentDataSeeder {
1314
1345
  async seed() {
1315
1346
  await this.storageService.initial(`${AXMConverstionModuleConst.moduleName}.${AXMConverstionModuleConst.commentName}`, COMMENTS);
1316
1347
  }
1317
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPCommentDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1318
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPCommentDataSeeder }); }
1348
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPCommentDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1349
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPCommentDataSeeder }); }
1319
1350
  }
1320
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPCommentDataSeeder, decorators: [{
1351
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPCommentDataSeeder, decorators: [{
1321
1352
  type: Injectable
1322
1353
  }] });
1323
1354
 
@@ -1392,17 +1423,17 @@ class AXMCommentMockService extends AXMCommentServiceImpl {
1392
1423
  }
1393
1424
  return 'done';
1394
1425
  }
1395
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMCommentMockService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
1396
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMCommentMockService }); }
1426
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMCommentMockService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
1427
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMCommentMockService }); }
1397
1428
  }
1398
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMCommentMockService, decorators: [{
1429
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMCommentMockService, decorators: [{
1399
1430
  type: Injectable
1400
1431
  }] });
1401
1432
 
1402
1433
  class AXCConversationMockModule {
1403
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCConversationMockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1404
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXCConversationMockModule, imports: [i1.AXMChatModule] }); }
1405
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCConversationMockModule, providers: [
1434
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCConversationMockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1435
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AXCConversationMockModule, imports: [i1.AXMChatModule] }); }
1436
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCConversationMockModule, providers: [
1406
1437
  {
1407
1438
  provide: AXP_DATA_SEEDER_TOKEN,
1408
1439
  useClass: AXPChatDataSeeder,
@@ -1430,7 +1461,7 @@ class AXCConversationMockModule {
1430
1461
  ],
1431
1462
  })] }); }
1432
1463
  }
1433
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCConversationMockModule, decorators: [{
1464
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCConversationMockModule, decorators: [{
1434
1465
  type: NgModule,
1435
1466
  args: [{
1436
1467
  imports: [
@@ -1652,10 +1683,10 @@ class AXCDocumentTypeDataSeeder {
1652
1683
  async seed() {
1653
1684
  await this.storageService.initial(`${RootConfig$1.module.name}.${RootConfig$1.entities.documentType.name}`, DOCUMENT_TYPES);
1654
1685
  }
1655
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCDocumentTypeDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1656
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCDocumentTypeDataSeeder }); }
1686
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCDocumentTypeDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1687
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCDocumentTypeDataSeeder }); }
1657
1688
  }
1658
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCDocumentTypeDataSeeder, decorators: [{
1689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCDocumentTypeDataSeeder, decorators: [{
1659
1690
  type: Injectable
1660
1691
  }] });
1661
1692
 
@@ -2293,10 +2324,10 @@ class AXCFolderDataSeeder {
2293
2324
  await this.storageService.initial(`${RootConfig$1.module.name}.${RootConfig$1.entities.folder.name}`, FOLDER_MOCK_DATA);
2294
2325
  await this.storageService.initial(`${RootConfig$1.module.name}.${RootConfig$1.entities.document.name}`, FILE_MOCK_DATA);
2295
2326
  }
2296
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFolderDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2297
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFolderDataSeeder }); }
2327
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFolderDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2328
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFolderDataSeeder }); }
2298
2329
  }
2299
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFolderDataSeeder, decorators: [{
2330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFolderDataSeeder, decorators: [{
2300
2331
  type: Injectable
2301
2332
  }] });
2302
2333
 
@@ -2445,17 +2476,17 @@ class AXPFormTemplateCategoryDataSeeder {
2445
2476
  await this.storageService.initial(`${RootConfig$2.module.name}.${RootConfig$2.entities.category.name}`, TEMPLATE_CATEGORIES);
2446
2477
  await this.storageService.initial(`${RootConfig$2.module.name}.${RootConfig$2.entities.template.name}`, TEMPLATE_FORM_TEMPLATES);
2447
2478
  }
2448
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPFormTemplateCategoryDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2449
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPFormTemplateCategoryDataSeeder }); }
2479
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPFormTemplateCategoryDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2480
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPFormTemplateCategoryDataSeeder }); }
2450
2481
  }
2451
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPFormTemplateCategoryDataSeeder, decorators: [{
2482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPFormTemplateCategoryDataSeeder, decorators: [{
2452
2483
  type: Injectable
2453
2484
  }] });
2454
2485
 
2455
2486
  class AXCFormTemplateManagementMockModule {
2456
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFormTemplateManagementMockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2457
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXCFormTemplateManagementMockModule }); }
2458
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFormTemplateManagementMockModule, providers: [
2487
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFormTemplateManagementMockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2488
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AXCFormTemplateManagementMockModule }); }
2489
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFormTemplateManagementMockModule, providers: [
2459
2490
  // {
2460
2491
  // provide: AXP_WIDGET_DATASOURCE_PROVIDER,
2461
2492
  // useClass: AXPMockWidgetDataSourceProvider,
@@ -2468,7 +2499,7 @@ class AXCFormTemplateManagementMockModule {
2468
2499
  },
2469
2500
  ] }); }
2470
2501
  }
2471
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFormTemplateManagementMockModule, decorators: [{
2502
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFormTemplateManagementMockModule, decorators: [{
2472
2503
  type: NgModule,
2473
2504
  args: [{
2474
2505
  imports: [],
@@ -2633,10 +2664,10 @@ class AXMLogDataSeeder {
2633
2664
  async seed() {
2634
2665
  await this.storageService.initial(`${RootConfig$4.module.name}.${RootConfig$4.entities.axpLog.name}`, projectMock$1);
2635
2666
  }
2636
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMLogDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2637
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMLogDataSeeder }); }
2667
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMLogDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2668
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMLogDataSeeder }); }
2638
2669
  }
2639
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMLogDataSeeder, decorators: [{
2670
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMLogDataSeeder, decorators: [{
2640
2671
  type: Injectable
2641
2672
  }] });
2642
2673
 
@@ -2720,10 +2751,10 @@ class MOCKStrategy {
2720
2751
  },
2721
2752
  };
2722
2753
  }
2723
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MOCKStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2724
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MOCKStrategy }); }
2754
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MOCKStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2755
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MOCKStrategy }); }
2725
2756
  }
2726
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MOCKStrategy, decorators: [{
2757
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MOCKStrategy, decorators: [{
2727
2758
  type: Injectable
2728
2759
  }], ctorParameters: () => [] });
2729
2760
 
@@ -2756,10 +2787,10 @@ class AXMMockNotificationService {
2756
2787
  const notification = payload || generateNotification();
2757
2788
  await this.storageService.insertOne(this.name, notification);
2758
2789
  }
2759
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMMockNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2760
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMMockNotificationService, providedIn: 'root' }); }
2790
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMMockNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2791
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMMockNotificationService, providedIn: 'root' }); }
2761
2792
  }
2762
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMMockNotificationService, decorators: [{
2793
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXMMockNotificationService, decorators: [{
2763
2794
  type: Injectable,
2764
2795
  args: [{
2765
2796
  providedIn: 'root',
@@ -2819,10 +2850,10 @@ class AXCNotificationTemplateDataSeeder {
2819
2850
  async seed() {
2820
2851
  await this.storageService.initial(`${RootConfig$6.module.name}.${RootConfig$6.entities.template.name}`, NOTIFICATION_TEMPLATES);
2821
2852
  }
2822
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCNotificationTemplateDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2823
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCNotificationTemplateDataSeeder }); }
2853
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCNotificationTemplateDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2854
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCNotificationTemplateDataSeeder }); }
2824
2855
  }
2825
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCNotificationTemplateDataSeeder, decorators: [{
2856
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCNotificationTemplateDataSeeder, decorators: [{
2826
2857
  type: Injectable
2827
2858
  }] });
2828
2859
 
@@ -3364,6 +3395,607 @@ const PERSIAN_COMPANY_ORGANIZATION = {
3364
3395
  },
3365
3396
  ],
3366
3397
  };
3398
+ // export const SKILLS_CATEGORY_MOCK = [
3399
+ // // {
3400
+ // // id: AXPDataGenerator.uuid(),
3401
+ // // title: 'Technical Skills',
3402
+ // // parentId: null,
3403
+ // // description: 'All software development and IT-related competencies',
3404
+ // // },
3405
+ // {
3406
+ // id: AXPDataGenerator.uuid(),
3407
+ // title: 'Technical Skills',
3408
+ // parentId: null,
3409
+ // description: 'All software development related competencies',
3410
+ // },
3411
+ // {
3412
+ // id: AXPDataGenerator.uuid(),
3413
+ // title: 'Programming Languages',
3414
+ // parentId: 'AXPDataGenerator.uuid()', // References Technical Skills
3415
+ // description: 'Core coding languages and frameworks',
3416
+ // },
3417
+ // {
3418
+ // id: 'AXPDataGenerator.uuid()',
3419
+ // title: 'Frontend Development',
3420
+ // parentId: 'AXPDataGenerator.uuid()', // References Programming Languages
3421
+ // description: 'Client-side technologies',
3422
+ // },
3423
+ // {
3424
+ // id: 'AXPDataGenerator.uuid()',
3425
+ // title: 'JavaScript',
3426
+ // parentId: 'AXPDataGenerator.uuid()', // References Frontend Development
3427
+ // description: 'Core web scripting language',
3428
+ // },
3429
+ // {
3430
+ // id: 'AXPDataGenerator.uuid()',
3431
+ // title: 'React.js',
3432
+ // parentId: 'AXPDataGenerator.uuid()', // References Frontend Development
3433
+ // description: 'Popular UI component library',
3434
+ // },
3435
+ // {
3436
+ // id: 'AXPDataGenerator.uuid()',
3437
+ // title: 'Backend Development',
3438
+ // parentId: 'AXPDataGenerator.uuid()', // References Programming Languages
3439
+ // description: 'Server-side technologies',
3440
+ // },
3441
+ // {
3442
+ // id: 'AXPDataGenerator.uuid()',
3443
+ // title: 'Node.js',
3444
+ // parentId: 'AXPDataGenerator.uuid()', // References Backend Development
3445
+ // description: 'JavaScript runtime environment',
3446
+ // },
3447
+ // {
3448
+ // id: 'AXPDataGenerator.uuid()',
3449
+ // title: 'Business Skills',
3450
+ // parentId: null,
3451
+ // description: 'Administrative and organizational competencies',
3452
+ // },
3453
+ // {
3454
+ // id: 'AXPDataGenerator.uuid()',
3455
+ // title: 'Project Management',
3456
+ // parentId: 'AXPDataGenerator.uuid()', // References Business Skills
3457
+ // description: 'Planning and executing projects',
3458
+ // },
3459
+ // {
3460
+ // id: 'AXPDataGenerator.uuid()',
3461
+ // title: 'Scrum',
3462
+ // parentId: 'AXPDataGenerator.uuid()', // References Project Management
3463
+ // description: 'Agile project management framework',
3464
+ // },
3465
+ // ];
3466
+ // export const SKILLS_MOCK = [
3467
+ // {
3468
+ // id: AXPDataGenerator.uuid(),
3469
+ // description: 'asda',
3470
+ // title: 'Skill',
3471
+ // categories: [SKILLS_CATEGORY_MOCK[0], SKILLS_CATEGORY_MOCK[1]],
3472
+ // categoryIds: [SKILLS_CATEGORY_MOCK[0].id, SKILLS_CATEGORY_MOCK[1].id],
3473
+ // },
3474
+ // {
3475
+ // id: AXPDataGenerator.uuid(),
3476
+ // description: 'asda',
3477
+ // title: 'Skill',
3478
+ // categories: [SKILLS_CATEGORY_MOCK[0]],
3479
+ // categoryIds: [SKILLS_CATEGORY_MOCK[0].id],
3480
+ // },
3481
+ // {
3482
+ // id: AXPDataGenerator.uuid(),
3483
+ // description: 'asda',
3484
+ // title: 'Skill',
3485
+ // categories: [SKILLS_CATEGORY_MOCK[0]],
3486
+ // categoryIds: [SKILLS_CATEGORY_MOCK[0].id],
3487
+ // },
3488
+ // {
3489
+ // id: AXPDataGenerator.uuid(),
3490
+ // description: 'asda',
3491
+ // title: 'Skill',
3492
+ // categories: [SKILLS_CATEGORY_MOCK[0]],
3493
+ // categoryIds: [SKILLS_CATEGORY_MOCK[0].id],
3494
+ // },
3495
+ // ];
3496
+
3497
+ function generateResponsibilitiesCategory() {
3498
+ const responsibilitiesCategory = [];
3499
+ const rootCategory = [
3500
+ 'Technical Responsibilities',
3501
+ 'Management Responsibilities',
3502
+ 'Operational Responsibilities',
3503
+ 'Business Responsibilities',
3504
+ 'Administrative Responsibilities',
3505
+ ];
3506
+ rootCategory.forEach((title) => {
3507
+ responsibilitiesCategory.push({ id: AXPDataGenerator.uuid(), description: '', title: title, childCount: 0 });
3508
+ });
3509
+ const childResponsibilyCategory = [
3510
+ {
3511
+ parent: 'Technical Responsibilities',
3512
+ children: ['Development', 'Testing', 'Deployment', 'Maintenance'],
3513
+ },
3514
+ {
3515
+ parent: 'Management Responsibilities',
3516
+ children: ['Team Management', 'Project Management', 'Product Management'],
3517
+ },
3518
+ {
3519
+ parent: 'Operational Responsibilities',
3520
+ children: ['IT Operations', 'Customer Support', 'Security'],
3521
+ },
3522
+ {
3523
+ parent: 'Business Responsibilities',
3524
+ children: ['Sales', 'Marketing', 'Client Relations'],
3525
+ },
3526
+ {
3527
+ parent: 'Administrative Responsibilities',
3528
+ children: ['HR', 'Finance', 'Legal'],
3529
+ },
3530
+ ];
3531
+ childResponsibilyCategory.forEach((child) => {
3532
+ const parent = responsibilitiesCategory.find((parent) => parent.title === child.parent);
3533
+ if (parent) {
3534
+ child.children.forEach((title) => {
3535
+ responsibilitiesCategory.push({
3536
+ description: '',
3537
+ id: AXPDataGenerator.uuid(),
3538
+ title: title,
3539
+ parentId: parent.id,
3540
+ childCount: 0,
3541
+ });
3542
+ });
3543
+ parent.childCount = child.children.length;
3544
+ }
3545
+ });
3546
+ return responsibilitiesCategory;
3547
+ }
3548
+ const RESPONSIBILITIES_CATEGORY_MOCK = generateResponsibilitiesCategory();
3549
+ function generateResponsibility() {
3550
+ const responsibilities = [];
3551
+ const responsibilitiesCategory = RESPONSIBILITIES_CATEGORY_MOCK;
3552
+ const childResponsibilities = [
3553
+ {
3554
+ parent: 'Development',
3555
+ children: [
3556
+ 'Implement new features',
3557
+ 'Write clean and efficient code',
3558
+ 'Debug and troubleshoot issues',
3559
+ 'Optimize application performance',
3560
+ ],
3561
+ },
3562
+ {
3563
+ parent: 'Testing',
3564
+ children: [
3565
+ 'Write unit tests',
3566
+ 'Conduct integration testing',
3567
+ 'Perform regression testing',
3568
+ 'Document test cases',
3569
+ ],
3570
+ },
3571
+ {
3572
+ parent: 'Team Management',
3573
+ children: [
3574
+ 'Conduct performance reviews',
3575
+ 'Mentor junior team members',
3576
+ 'Coordinate team tasks',
3577
+ 'Facilitate team meetings',
3578
+ ],
3579
+ },
3580
+ {
3581
+ parent: 'Project Management',
3582
+ children: [
3583
+ 'Create project timelines',
3584
+ 'Manage project resources',
3585
+ 'Track project progress',
3586
+ 'Mitigate project risks',
3587
+ ],
3588
+ },
3589
+ {
3590
+ parent: 'IT Operations',
3591
+ children: [
3592
+ 'Monitor system health',
3593
+ 'Manage server infrastructure',
3594
+ 'Handle backup operations',
3595
+ 'Respond to system outages',
3596
+ ],
3597
+ },
3598
+ {
3599
+ parent: 'Sales',
3600
+ children: [
3601
+ 'Identify new business opportunities',
3602
+ 'Negotiate contracts',
3603
+ 'Maintain client relationships',
3604
+ 'Achieve sales targets',
3605
+ ],
3606
+ },
3607
+ {
3608
+ parent: 'HR',
3609
+ children: [
3610
+ 'Recruit new employees',
3611
+ 'Manage employee benefits',
3612
+ 'Organize training programs',
3613
+ 'Handle employee relations',
3614
+ ],
3615
+ },
3616
+ ];
3617
+ childResponsibilities.forEach(({ parent, children }) => {
3618
+ const parentObj = responsibilitiesCategory.find((el) => el.title === parent);
3619
+ if (parentObj) {
3620
+ children.forEach((responsibility) => {
3621
+ responsibilities.push({
3622
+ description: '',
3623
+ id: AXPDataGenerator.uuid(),
3624
+ title: responsibility,
3625
+ categoryIds: [parentObj.id],
3626
+ });
3627
+ });
3628
+ }
3629
+ });
3630
+ return responsibilities;
3631
+ }
3632
+ const RESPONSIBILITIES_MOCK = generateResponsibility();
3633
+
3634
+ function generateSkillsCategory() {
3635
+ const skillsCategory = [];
3636
+ const rootCategory = [
3637
+ 'Software Development',
3638
+ 'Information Technology',
3639
+ 'Product Management',
3640
+ 'Customer Success',
3641
+ 'Corporate Operations',
3642
+ 'Research & Innovation',
3643
+ ];
3644
+ rootCategory.forEach((title) => {
3645
+ skillsCategory.push({ id: AXPDataGenerator.uuid(), description: '', title: title, childCount: 0 });
3646
+ });
3647
+ const childSkillCategory = [
3648
+ {
3649
+ parent: 'Software Development',
3650
+ children: ['Frontend Development', 'Backend Development', 'Mobile Development', 'Quality Assurance'],
3651
+ },
3652
+ {
3653
+ parent: 'Information Technology',
3654
+ children: ['Infrastructure Team', 'DevOps Team', 'Cybersecurity Team', 'IT Support'],
3655
+ },
3656
+ {
3657
+ parent: 'Product Management',
3658
+ children: [
3659
+ 'Business Analysis',
3660
+ 'Project Management Office',
3661
+ 'Scrum Masters',
3662
+ 'Cybersecurity Team',
3663
+ 'Product Owner',
3664
+ ],
3665
+ },
3666
+ ];
3667
+ childSkillCategory.forEach((child) => {
3668
+ const parent = skillsCategory.find((parent) => parent.title === child.parent);
3669
+ if (parent) {
3670
+ child.children.forEach((title) => {
3671
+ skillsCategory.push({
3672
+ description: '',
3673
+ id: AXPDataGenerator.uuid(),
3674
+ title: title,
3675
+ parentId: parent.id,
3676
+ childCount: 0,
3677
+ });
3678
+ });
3679
+ parent.childCount = child.children.length;
3680
+ }
3681
+ });
3682
+ return skillsCategory;
3683
+ }
3684
+ const SKILLS_CATEGORY_MOCK = generateSkillsCategory();
3685
+ function generateSkill() {
3686
+ const skills = [];
3687
+ const skillsCategory = SKILLS_CATEGORY_MOCK;
3688
+ const childSkills = [
3689
+ {
3690
+ parent: 'Frontend Development',
3691
+ children: ['React Team', 'Angular Team', 'UI/UX Team'],
3692
+ },
3693
+ {
3694
+ parent: 'Backend Development',
3695
+ children: ['Node.js Team', 'Python Team', 'Microservices Team'],
3696
+ },
3697
+ {
3698
+ parent: 'Mobile Development',
3699
+ children: ['iOS Team', 'Android Team', 'React Native Team'],
3700
+ },
3701
+ {
3702
+ parent: 'Quality Assurance',
3703
+ children: ['Automation Testing', 'Manual Testing', 'QA Engineering'],
3704
+ },
3705
+ {
3706
+ parent: 'Information Technology',
3707
+ children: ['Infrastructure Team', 'DevOps Team', 'Cybersecurity Team', 'IT Support'],
3708
+ },
3709
+ {
3710
+ parent: 'Product Management',
3711
+ children: ['Business Analysis', 'Project Management Office', 'Scrum Masters', 'Product Owners'],
3712
+ },
3713
+ {
3714
+ parent: 'Customer Success',
3715
+ children: ['Technical Support', 'Implementation Team', 'Customer Education'],
3716
+ },
3717
+ {
3718
+ parent: 'Human Resources',
3719
+ children: ['Talent Acquisition', 'Employee Development', 'Compensation & Benefits'],
3720
+ },
3721
+ {
3722
+ parent: 'Finance',
3723
+ children: ['Accounting', 'Financial Planning', 'Billing & Payments'],
3724
+ },
3725
+ {
3726
+ parent: 'Sales & Marketing',
3727
+ children: ['Digital Marketing', 'Business Development', 'Customer Relationship Management'],
3728
+ },
3729
+ {
3730
+ parent: 'Executive Leadership',
3731
+ children: ['C-Suite Executives', 'Board of Directors', 'Corporate Strategy'],
3732
+ },
3733
+ {
3734
+ parent: 'Research & Innovation',
3735
+ children: ['R&D Labs', 'Emerging Technologies', 'Innovation Incubator'],
3736
+ },
3737
+ ];
3738
+ childSkills.forEach(({ parent, children }) => {
3739
+ const parentObj = skillsCategory.find((el) => el.title === parent);
3740
+ if (parentObj) {
3741
+ children.forEach((skill) => {
3742
+ skills.push({ description: '', id: AXPDataGenerator.uuid(), title: skill, categoryIds: [parentObj.id] });
3743
+ });
3744
+ }
3745
+ });
3746
+ return skills;
3747
+ }
3748
+ const SKILLS_MOCK = generateSkill();
3749
+
3750
+ function generatePositionsCategory() {
3751
+ const positionsCategory = [];
3752
+ const rootCategory = [
3753
+ 'Engineering Positions',
3754
+ 'Technical Leadership',
3755
+ 'Product Positions',
3756
+ 'Operations',
3757
+ 'Business Functions',
3758
+ 'Executive Leadership',
3759
+ ];
3760
+ rootCategory.forEach((title) => {
3761
+ positionsCategory.push({ id: AXPDataGenerator.uuid(), description: '', title: title, childCount: 0 });
3762
+ });
3763
+ const childPositionCategory = [
3764
+ {
3765
+ parent: 'Engineering Positions',
3766
+ children: ['Frontend Engineering', 'Backend Engineering', 'Mobile Engineering', 'Quality Engineering'],
3767
+ },
3768
+ {
3769
+ parent: 'Technical Leadership',
3770
+ children: ['Engineering Management', 'Technical Architecture', 'DevOps Leadership'],
3771
+ },
3772
+ {
3773
+ parent: 'Product Positions',
3774
+ children: ['Product Management', 'UX/UI Design', 'Product Analytics'],
3775
+ },
3776
+ {
3777
+ parent: 'Operations',
3778
+ children: ['IT Operations', 'Technical Support', 'Security Operations'],
3779
+ },
3780
+ {
3781
+ parent: 'Business Functions',
3782
+ children: ['Sales', 'Marketing', 'Business Development'],
3783
+ },
3784
+ {
3785
+ parent: 'Executive Leadership',
3786
+ children: ['C-Suite', 'Board Members', 'Corporate Strategy'],
3787
+ },
3788
+ ];
3789
+ childPositionCategory.forEach((child) => {
3790
+ const parent = positionsCategory.find((parent) => parent.title === child.parent);
3791
+ if (parent) {
3792
+ child.children.forEach((title) => {
3793
+ positionsCategory.push({
3794
+ description: '',
3795
+ id: AXPDataGenerator.uuid(),
3796
+ title: title,
3797
+ parentId: parent.id,
3798
+ childCount: 0,
3799
+ });
3800
+ });
3801
+ parent.childCount = child.children.length;
3802
+ }
3803
+ });
3804
+ return positionsCategory;
3805
+ }
3806
+ const POSITIONS_CATEGORY_MOCK = generatePositionsCategory();
3807
+ function generatePosition() {
3808
+ const positions = [];
3809
+ const positionsCategory = POSITIONS_CATEGORY_MOCK;
3810
+ const childPositions = [
3811
+ {
3812
+ parent: 'Frontend Engineering',
3813
+ children: ['Junior Frontend Engineer', 'Frontend Engineer', 'Senior Frontend Engineer', 'Frontend Architect'],
3814
+ },
3815
+ {
3816
+ parent: 'Backend Engineering',
3817
+ children: ['Junior Backend Engineer', 'Backend Engineer', 'Senior Backend Engineer', 'Backend Architect'],
3818
+ },
3819
+ {
3820
+ parent: 'Mobile Engineering',
3821
+ children: ['Junior Mobile Developer', 'Mobile Developer', 'Senior Mobile Developer', 'Mobile Architect'],
3822
+ },
3823
+ {
3824
+ parent: 'Quality Engineering',
3825
+ children: ['QA Analyst', 'QA Engineer', 'Senior QA Engineer', 'QA Manager'],
3826
+ },
3827
+ {
3828
+ parent: 'Engineering Management',
3829
+ children: ['Engineering Team Lead', 'Engineering Manager', 'Director of Engineering', 'VP of Engineering'],
3830
+ },
3831
+ {
3832
+ parent: 'Product Management',
3833
+ children: ['Associate Product Manager', 'Product Manager', 'Senior Product Manager', 'Director of Product'],
3834
+ },
3835
+ {
3836
+ parent: 'UX/UI Design',
3837
+ children: ['UX Designer', 'UI Designer', 'Senior UX Designer', 'UX Design Manager'],
3838
+ },
3839
+ {
3840
+ parent: 'IT Operations',
3841
+ children: ['IT Support Specialist', 'Systems Administrator', 'IT Manager', 'Director of IT'],
3842
+ },
3843
+ {
3844
+ parent: 'Sales',
3845
+ children: ['Sales Associate', 'Account Executive', 'Sales Manager', 'VP of Sales'],
3846
+ },
3847
+ {
3848
+ parent: 'C-Suite',
3849
+ children: ['CTO', 'CEO', 'CFO', 'COO'],
3850
+ },
3851
+ {
3852
+ parent: 'DevOps Leadership',
3853
+ children: ['DevOps Engineer', 'Senior DevOps Engineer', 'DevOps Manager', 'Director of DevOps'],
3854
+ },
3855
+ ];
3856
+ childPositions.forEach(({ parent, children }) => {
3857
+ const parentObj = positionsCategory.find((el) => el.title === parent);
3858
+ if (parentObj) {
3859
+ children.forEach((position) => {
3860
+ positions.push({
3861
+ description: '',
3862
+ id: AXPDataGenerator.uuid(),
3863
+ title: position,
3864
+ categoryIds: [parentObj.id],
3865
+ skillId: SKILLS_MOCK[1].id,
3866
+ skill: SKILLS_MOCK[1],
3867
+ responsibilityId: RESPONSIBILITIES_MOCK[0].id,
3868
+ responsibility: RESPONSIBILITIES_MOCK[0],
3869
+ });
3870
+ });
3871
+ }
3872
+ });
3873
+ return positions;
3874
+ }
3875
+ const POSITIONS_MOCK = generatePosition();
3876
+
3877
+ function generateRolesCategory() {
3878
+ const rolesCategory = [];
3879
+ const rootCategory = ['Technology Leadership', 'Engineering', 'Product', 'Operations', 'Business', 'Administrative'];
3880
+ rootCategory.forEach((title) => {
3881
+ rolesCategory.push({ id: AXPDataGenerator.uuid(), description: '', title: title, childCount: 0 });
3882
+ });
3883
+ const childRoleCategory = [
3884
+ {
3885
+ parent: 'Technology',
3886
+ children: ['Development', 'DevOps', 'QA', 'IT', 'Security'],
3887
+ },
3888
+ {
3889
+ parent: 'Product',
3890
+ children: ['Product Management', 'UX/UI', 'Data Analysis'],
3891
+ },
3892
+ {
3893
+ parent: 'Operations',
3894
+ children: ['Customer Support', 'Technical Support', 'Office Management'],
3895
+ },
3896
+ {
3897
+ parent: 'Business',
3898
+ children: ['Sales', 'Marketing', 'Business Development'],
3899
+ },
3900
+ {
3901
+ parent: 'Administration',
3902
+ children: ['HR', 'Finance', 'Legal'],
3903
+ },
3904
+ ];
3905
+ childRoleCategory.forEach((child) => {
3906
+ const parent = rolesCategory.find((parent) => parent.title === child.parent);
3907
+ if (parent) {
3908
+ child.children.forEach((title) => {
3909
+ rolesCategory.push({
3910
+ description: '',
3911
+ id: AXPDataGenerator.uuid(),
3912
+ title: title,
3913
+ parentId: parent.id,
3914
+ childCount: 0,
3915
+ });
3916
+ });
3917
+ parent.childCount = child.children.length;
3918
+ }
3919
+ });
3920
+ return rolesCategory;
3921
+ }
3922
+ const ROLES_CATEGORY_MOCK = generateRolesCategory();
3923
+ function generateRole() {
3924
+ const roles = [];
3925
+ const rolesCategory = ROLES_CATEGORY_MOCK;
3926
+ const childRoles = [
3927
+ {
3928
+ parent: 'CTO Office',
3929
+ children: ['Chief Technology Officer', 'VP of Engineering', 'Technical Fellow'],
3930
+ },
3931
+ {
3932
+ parent: 'Frontend Engineering',
3933
+ children: ['Frontend Engineer I', 'Frontend Engineer II', 'Senior Frontend Engineer', 'Frontend Architect'],
3934
+ },
3935
+ {
3936
+ parent: 'Backend Engineering',
3937
+ children: [
3938
+ 'Backend Engineer I',
3939
+ 'Backend Engineer II',
3940
+ 'Senior Backend Engineer',
3941
+ 'Distributed Systems Engineer',
3942
+ ],
3943
+ },
3944
+ {
3945
+ parent: 'DevOps',
3946
+ children: ['DevOps Engineer', 'Site Reliability Engineer', 'Cloud Infrastructure Engineer'],
3947
+ },
3948
+ {
3949
+ parent: 'Product Management',
3950
+ children: ['Product Manager', 'Senior Product Manager', 'Director of Product', 'Chief Product Officer'],
3951
+ },
3952
+ {
3953
+ parent: 'Quality Engineering',
3954
+ children: ['QA Engineer', 'Test Automation Engineer', 'Quality Assurance Manager'],
3955
+ },
3956
+ {
3957
+ parent: 'IT Operations',
3958
+ children: ['IT Support Specialist', 'Systems Administrator', 'Network Engineer'],
3959
+ },
3960
+ {
3961
+ parent: 'Human Resources',
3962
+ children: ['HR Business Partner', 'Talent Acquisition Specialist', 'Compensation Analyst'],
3963
+ },
3964
+ {
3965
+ parent: 'Finance',
3966
+ children: ['Financial Analyst', 'Controller', 'Chief Financial Officer'],
3967
+ },
3968
+ {
3969
+ parent: 'Sales',
3970
+ children: ['Account Executive', 'Sales Engineer', 'VP of Sales'],
3971
+ },
3972
+ {
3973
+ parent: 'Engineering Management',
3974
+ children: ['Engineering Manager', 'Director of Engineering', 'VP of Engineering'],
3975
+ },
3976
+ {
3977
+ parent: 'Security Operations',
3978
+ children: ['Security Analyst', 'Security Engineer', 'Chief Information Security Officer'],
3979
+ },
3980
+ ];
3981
+ childRoles.forEach(({ parent, children }) => {
3982
+ const parentObj = rolesCategory.find((el) => el.title === parent);
3983
+ if (parentObj) {
3984
+ children.forEach((role) => {
3985
+ roles.push({
3986
+ description: '',
3987
+ id: AXPDataGenerator.uuid(),
3988
+ title: role,
3989
+ categoryIds: [parentObj.id],
3990
+ skillId: SKILLS_MOCK[2].id,
3991
+ skill: SKILLS_MOCK[2],
3992
+ });
3993
+ });
3994
+ }
3995
+ });
3996
+ return roles;
3997
+ }
3998
+ const ROLES_MOCK = generateRole();
3367
3999
 
3368
4000
  class AXCOrganizationManagementDataSeeder {
3369
4001
  constructor() {
@@ -3523,62 +4155,14 @@ class AXCOrganizationManagementDataSeeder {
3523
4155
  description: 'The Asia-Pacific branch located in Tokyo, managing operations in the APAC region.',
3524
4156
  },
3525
4157
  ]);
4158
+ // Positions Category
4159
+ await this.storageService.initial(RootConfig$7.entities.positionCategory.source, POSITIONS_CATEGORY_MOCK);
3526
4160
  // Positions
3527
- await this.storageService.initial(RootConfig$7.entities.position.source, [
3528
- {
3529
- id: uuid(),
3530
- title: 'Backend Developer',
3531
- description: 'A role responsible for server-side logic and integration with databases.',
3532
- },
3533
- {
3534
- id: uuid(),
3535
- title: 'Frontend Developer',
3536
- description: 'A role focused on crafting engaging user interfaces and client-side features.',
3537
- },
3538
- {
3539
- id: uuid(),
3540
- title: 'Sales Manager',
3541
- description: 'A leadership position overseeing sales strategies and team performance.',
3542
- },
3543
- {
3544
- id: uuid(),
3545
- title: 'Sales Representative',
3546
- description: 'A role tasked with building client relationships and closing sales deals.',
3547
- },
3548
- {
3549
- id: uuid(),
3550
- title: 'Call Center Representative',
3551
- description: 'A position dedicated to managing inbound and outbound customer calls.',
3552
- },
3553
- {
3554
- id: uuid(),
3555
- title: 'Technical Support Specialist',
3556
- description: 'A role providing specialized technical assistance and problem resolution.',
3557
- },
3558
- ]);
3559
- // Roles
3560
- await this.storageService.initial(RootConfig$7.entities.role.source, [
3561
- {
3562
- id: uuid(),
3563
- title: 'Software Engineer',
3564
- description: 'Responsible for developing and maintaining software applications.',
3565
- },
3566
- {
3567
- id: uuid(),
3568
- title: 'Project Manager',
3569
- description: 'Oversees project execution, ensures timely delivery, and manages team coordination.',
3570
- },
3571
- {
3572
- id: uuid(),
3573
- title: 'HR Manager',
3574
- description: 'Handles recruitment, employee relations, and organizational policies.',
3575
- },
3576
- {
3577
- id: uuid(),
3578
- title: 'System Administrator',
3579
- description: 'Manages IT infrastructure, ensures security, and maintains system performance.',
3580
- },
3581
- ]);
4161
+ await this.storageService.initial(RootConfig$7.entities.position.source, POSITIONS_MOCK);
4162
+ // Role Category
4163
+ await this.storageService.initial(RootConfig$7.entities.roleCategory.source, ROLES_CATEGORY_MOCK);
4164
+ // Role
4165
+ await this.storageService.initial(RootConfig$7.entities.role.source, ROLES_MOCK);
3582
4166
  // Employment Types
3583
4167
  await this.storageService.initial(RootConfig$7.entities.employmentType.source, [
3584
4168
  {
@@ -3785,18 +4369,26 @@ class AXCOrganizationManagementDataSeeder {
3785
4369
  data: SOFTWARE_COMPANY_ORGANIZATION,
3786
4370
  },
3787
4371
  ]);
3788
- }
3789
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCOrganizationManagementDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3790
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCOrganizationManagementDataSeeder }); }
4372
+ // Skill Category
4373
+ await this.storageService.initial(RootConfig$7.entities.skillCategory.source, SKILLS_CATEGORY_MOCK);
4374
+ // Skill
4375
+ await this.storageService.initial(RootConfig$7.entities.skill.source, SKILLS_MOCK);
4376
+ // Responsibility Category
4377
+ await this.storageService.initial(RootConfig$7.entities.responsibilityCategory.source, RESPONSIBILITIES_CATEGORY_MOCK);
4378
+ // Responsibility
4379
+ await this.storageService.initial(RootConfig$7.entities.responsibility.source, RESPONSIBILITIES_MOCK);
4380
+ }
4381
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCOrganizationManagementDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4382
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCOrganizationManagementDataSeeder }); }
3791
4383
  }
3792
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCOrganizationManagementDataSeeder, decorators: [{
4384
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCOrganizationManagementDataSeeder, decorators: [{
3793
4385
  type: Injectable
3794
4386
  }] });
3795
4387
 
3796
4388
  class AXCFOrganizationManagementMockModule {
3797
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFOrganizationManagementMockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
3798
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXCFOrganizationManagementMockModule }); }
3799
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFOrganizationManagementMockModule, providers: [
4389
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFOrganizationManagementMockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
4390
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AXCFOrganizationManagementMockModule }); }
4391
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFOrganizationManagementMockModule, providers: [
3800
4392
  {
3801
4393
  provide: AXP_DATA_SEEDER_TOKEN,
3802
4394
  useClass: AXCOrganizationManagementDataSeeder,
@@ -3804,7 +4396,7 @@ class AXCFOrganizationManagementMockModule {
3804
4396
  },
3805
4397
  ] }); }
3806
4398
  }
3807
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFOrganizationManagementMockModule, decorators: [{
4399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFOrganizationManagementMockModule, decorators: [{
3808
4400
  type: NgModule,
3809
4401
  args: [{
3810
4402
  imports: [],
@@ -3847,50 +4439,6 @@ You are responsible for maintaining the confidentiality of your login credential
3847
4439
  You must notify us immediately of any unauthorized access to your account.
3848
4440
  We are not liable for any losses incurred due to unauthorized access caused by your failure to secure your account.
3849
4441
 
3850
- <b>4. Transactions & Banking Services</b>
3851
- All transactions made through the App are subject to verification and approval.
3852
- Transaction limits, fees, and processing times may vary based on your account type and applicable regulations.
3853
- You agree to provide accurate transaction details and maintain sufficient funds for transactions.
3854
-
3855
- <b>5. Fees & Charges</b>
3856
- Certain transactions and services may be subject to fees.
3857
- We reserve the right to modify or introduce new fees with prior notice.
3858
- Users will be responsible for any government-imposed taxes on transactions.
3859
-
3860
- <b>6. Privacy & Data Protection</b>
3861
- Your privacy is important to us. Our Privacy Policy outlines how we collect, use, and protect your personal and financial information.
3862
-
3863
- <b>7. Security & Fraud Prevention</b>
3864
- We implement industry-standard security measures to protect your data and transactions.
3865
- Users must not engage in fraudulent activities, including identity theft, money laundering, or unauthorized transactions.
3866
- Any suspicious activity may result in account suspension, investigation, or legal action.
3867
-
3868
- <b>8. Account Suspension & Termination</b>
3869
- We reserve the right to suspend or terminate your account if:
3870
- You violate these Terms and Conditions.
3871
- We detect suspicious or fraudulent activities.
3872
- Required by law enforcement or regulatory authorities.
3873
-
3874
- <b>9. Liability & Disclaimers</b>
3875
- The App is provided on an "as is" and "as available" basis.
3876
- We do not guarantee uninterrupted service, and we are not responsible for losses due to service outages.
3877
- We are not liable for third-party actions, including fraudulent transactions made by other users.
3878
-
3879
- <b>10. Third-Party Services</b>
3880
- The App may integrate with third-party services for payments and other banking functions.
3881
- We are not responsible for the privacy, security, or functionality of third-party services.
3882
-
3883
- <b>11. Changes to Terms</b>
3884
- We may update these Terms and Conditions periodically.
3885
- Changes will be effective upon posting, and continued use of the App indicates acceptance of the revised terms.
3886
-
3887
- <b>12. Governing Law & Dispute Resolution</b>
3888
- These Terms shall be governed by and construed in accordance with the laws of [Your Country/State].
3889
- Any disputes shall be resolved through arbitration or legal proceedings in the appropriate jurisdiction.
3890
-
3891
- <b>13. Contact Us</b>
3892
- For any inquiries, support, or concerns regarding these Terms and Conditions, please contact us at [your contact email].
3893
-
3894
4442
  By using <b>[Your Banking App]</b>, you acknowledge that you have read, understood, and agreed to these Terms and Conditions.`,
3895
4443
  effectiveDate: publishDate.toString(),
3896
4444
  notifyUser: true,
@@ -3906,10 +4454,10 @@ class AXCAppTermDataSeeder {
3906
4454
  async seed() {
3907
4455
  await this.storageService.initial(`${RootConfig$8.module.name}.${RootConfig$8.entities.appTerm.name}`, APP_TERMS);
3908
4456
  }
3909
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCAppTermDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3910
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCAppTermDataSeeder }); }
4457
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCAppTermDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4458
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCAppTermDataSeeder }); }
3911
4459
  }
3912
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCAppTermDataSeeder, decorators: [{
4460
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCAppTermDataSeeder, decorators: [{
3913
4461
  type: Injectable
3914
4462
  }] });
3915
4463
 
@@ -3927,7 +4475,7 @@ const APP_VERSIONS = Array.from({ length: 10 }).map((element, i) => {
3927
4475
  publishDate.setDate(publishDate.getDate() - i * 7); // Subtract i weeks from the current date
3928
4476
  return {
3929
4477
  id: AXPDataGenerator.uuid(),
3930
- versionNumber: `1.6.0${i}`,
4478
+ versionNumber: `1.6.9${i}`,
3931
4479
  changeLog: changeLog[i],
3932
4480
  publishDate: publishDate.toString(),
3933
4481
  showFirstTimePopup: true,
@@ -3941,10 +4489,10 @@ class AXCAppVersionDataSeeder {
3941
4489
  async seed() {
3942
4490
  await this.storageService.initial(`${RootConfig$8.module.name}.${RootConfig$8.entities.appVersion.name}`, APP_VERSIONS);
3943
4491
  }
3944
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCAppVersionDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3945
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCAppVersionDataSeeder }); }
4492
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCAppVersionDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4493
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCAppVersionDataSeeder }); }
3946
4494
  }
3947
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCAppVersionDataSeeder, decorators: [{
4495
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCAppVersionDataSeeder, decorators: [{
3948
4496
  type: Injectable
3949
4497
  }] });
3950
4498
 
@@ -3972,10 +4520,10 @@ class AXCGlobalVariablesDataSeeder {
3972
4520
  async seed() {
3973
4521
  await this.storageService.initial(`${RootConfig$8.module.name}.${RootConfig$8.entities.globalVariable.name}`, GLOBAL_VARIABLES);
3974
4522
  }
3975
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCGlobalVariablesDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3976
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCGlobalVariablesDataSeeder }); }
4523
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCGlobalVariablesDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4524
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCGlobalVariablesDataSeeder }); }
3977
4525
  }
3978
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCGlobalVariablesDataSeeder, decorators: [{
4526
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCGlobalVariablesDataSeeder, decorators: [{
3979
4527
  type: Injectable
3980
4528
  }] });
3981
4529
 
@@ -4192,10 +4740,10 @@ class AXCFileStorageService {
4192
4740
  .catch((error) => console.error('Error during cleanup:', error));
4193
4741
  }, 5 * 60 * 1000); // Runs every 5 minutes
4194
4742
  }
4195
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFileStorageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4196
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFileStorageService }); }
4743
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFileStorageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4744
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFileStorageService }); }
4197
4745
  }
4198
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCFileStorageService, decorators: [{
4746
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCFileStorageService, decorators: [{
4199
4747
  type: Injectable
4200
4748
  }], ctorParameters: () => [] });
4201
4749
 
@@ -4306,10 +4854,10 @@ class AXCMetaDataDefinitionDataSeeder {
4306
4854
  await this.storageService.initial(`${RootConfig$8.module.name}.${RootConfig$8.entities.metaDataDefinitionCategory.name}`, METADATA_CATEGORY_MOCK);
4307
4855
  await this.storageService.initial(`${RootConfig$8.module.name}.${RootConfig$8.entities.metaDataDefinition.name}`, METADATA_MOCK);
4308
4856
  }
4309
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCMetaDataDefinitionDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4310
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCMetaDataDefinitionDataSeeder }); }
4857
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCMetaDataDefinitionDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4858
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCMetaDataDefinitionDataSeeder }); }
4311
4859
  }
4312
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCMetaDataDefinitionDataSeeder, decorators: [{
4860
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCMetaDataDefinitionDataSeeder, decorators: [{
4313
4861
  type: Injectable
4314
4862
  }] });
4315
4863
 
@@ -4344,10 +4892,10 @@ class AXCProjectclientDataSeeder {
4344
4892
  async seed() {
4345
4893
  await this.storageService.initial(`${RootConfig$9.module.name}.${RootConfig$9.entities.client.name}`, ClientMock);
4346
4894
  }
4347
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectclientDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4348
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectclientDataSeeder }); }
4895
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectclientDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4896
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectclientDataSeeder }); }
4349
4897
  }
4350
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectclientDataSeeder, decorators: [{
4898
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectclientDataSeeder, decorators: [{
4351
4899
  type: Injectable
4352
4900
  }] });
4353
4901
 
@@ -4446,10 +4994,10 @@ class AXCProjectMemberDataSeeder {
4446
4994
  async seed() {
4447
4995
  await this.storageService.initial(`${RootConfig$9.module.name}.${RootConfig$9.entities.projectMemeber.name}`, projectMemberMock);
4448
4996
  }
4449
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectMemberDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4450
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectMemberDataSeeder }); }
4997
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectMemberDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4998
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectMemberDataSeeder }); }
4451
4999
  }
4452
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectMemberDataSeeder, decorators: [{
5000
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectMemberDataSeeder, decorators: [{
4453
5001
  type: Injectable
4454
5002
  }] });
4455
5003
 
@@ -4461,10 +5009,10 @@ class AXCProjectRoleMemberDataSeeder {
4461
5009
  await this.storageService.initial(`${RootConfig$9.module.name}.${RootConfig$9.entities.projectType.name}`, projectTypeMock);
4462
5010
  await this.storageService.initial(`${RootConfig$9.module.name}.${RootConfig$9.entities.projectRoleMember.name}`, projectRoleMemberMock);
4463
5011
  }
4464
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectRoleMemberDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4465
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectRoleMemberDataSeeder }); }
5012
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectRoleMemberDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5013
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectRoleMemberDataSeeder }); }
4466
5014
  }
4467
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectRoleMemberDataSeeder, decorators: [{
5015
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectRoleMemberDataSeeder, decorators: [{
4468
5016
  type: Injectable
4469
5017
  }] });
4470
5018
 
@@ -4475,10 +5023,10 @@ class AXCProjectDataSeeder {
4475
5023
  async seed() {
4476
5024
  await this.storageService.initial(`${RootConfig$9.module.name}.${RootConfig$9.entities.project.name}`, projectMock);
4477
5025
  }
4478
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4479
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectDataSeeder }); }
5026
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5027
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectDataSeeder }); }
4480
5028
  }
4481
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCProjectDataSeeder, decorators: [{
5029
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCProjectDataSeeder, decorators: [{
4482
5030
  type: Injectable
4483
5031
  }] });
4484
5032
 
@@ -4519,10 +5067,10 @@ class AXCsprintDataSeeder {
4519
5067
  async seed() {
4520
5068
  await this.storageService.initial(`${RootConfig$9.module.name}.${RootConfig$9.entities.sprint.name}`, sprintMock);
4521
5069
  }
4522
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCsprintDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4523
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCsprintDataSeeder }); }
5070
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCsprintDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5071
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCsprintDataSeeder }); }
4524
5072
  }
4525
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCsprintDataSeeder, decorators: [{
5073
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCsprintDataSeeder, decorators: [{
4526
5074
  type: Injectable
4527
5075
  }] });
4528
5076
 
@@ -4557,10 +5105,10 @@ class AXCTaskTypeDataSeeder {
4557
5105
  async seed() {
4558
5106
  await this.storageService.initial(`${RootConfig$9.module.name}.${RootConfig$9.entities.taskType.name}`, taskTypeMock);
4559
5107
  }
4560
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTaskTypeDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4561
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTaskTypeDataSeeder }); }
5108
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTaskTypeDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5109
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTaskTypeDataSeeder }); }
4562
5110
  }
4563
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTaskTypeDataSeeder, decorators: [{
5111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTaskTypeDataSeeder, decorators: [{
4564
5112
  type: Injectable
4565
5113
  }] });
4566
5114
 
@@ -4626,10 +5174,10 @@ class AXCTaskDataSeeder {
4626
5174
  async seed() {
4627
5175
  await this.storageService.initial(`${RootConfig$9.module.name}.${RootConfig$9.entities.task.name}`, taskMock);
4628
5176
  }
4629
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTaskDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4630
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTaskDataSeeder }); }
5177
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTaskDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5178
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTaskDataSeeder }); }
4631
5179
  }
4632
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTaskDataSeeder, decorators: [{
5180
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTaskDataSeeder, decorators: [{
4633
5181
  type: Injectable
4634
5182
  }] });
4635
5183
 
@@ -4640,10 +5188,10 @@ class AXCWorkSiteSeeder {
4640
5188
  async seed() {
4641
5189
  await this.storageService.initial(`${RootConfig$9.module.name}.${RootConfig$9.entities.workSite.name}`, workSiteMock);
4642
5190
  }
4643
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCWorkSiteSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4644
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCWorkSiteSeeder }); }
5191
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCWorkSiteSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5192
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCWorkSiteSeeder }); }
4645
5193
  }
4646
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCWorkSiteSeeder, decorators: [{
5194
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCWorkSiteSeeder, decorators: [{
4647
5195
  type: Injectable
4648
5196
  }] });
4649
5197
 
@@ -4671,10 +5219,10 @@ class AXCSchedulerJobDataSeeder {
4671
5219
  async seed() {
4672
5220
  await this.storageService.initial(`${RootConfig$a.module.name}.${RootConfig$a.entities.schedulerJob.name}`, SCHEDULER_JOB);
4673
5221
  }
4674
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCSchedulerJobDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4675
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCSchedulerJobDataSeeder }); }
5222
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCSchedulerJobDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5223
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCSchedulerJobDataSeeder }); }
4676
5224
  }
4677
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCSchedulerJobDataSeeder, decorators: [{
5225
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCSchedulerJobDataSeeder, decorators: [{
4678
5226
  type: Injectable
4679
5227
  }] });
4680
5228
 
@@ -4789,10 +5337,10 @@ class AXPSecurityManagementRoleDataSeeder {
4789
5337
  }));
4790
5338
  await this.storageService.initial(`${RootConfig$5.module.name}.${RootConfig$5.entities.roles.name}`, roles);
4791
5339
  }
4792
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPSecurityManagementRoleDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4793
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPSecurityManagementRoleDataSeeder }); }
5340
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSecurityManagementRoleDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5341
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSecurityManagementRoleDataSeeder }); }
4794
5342
  }
4795
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPSecurityManagementRoleDataSeeder, decorators: [{
5343
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSecurityManagementRoleDataSeeder, decorators: [{
4796
5344
  type: Injectable
4797
5345
  }] });
4798
5346
 
@@ -4815,10 +5363,10 @@ class AXPSecurityManagementUserDataSeeder {
4815
5363
  roles: user.roleIds,
4816
5364
  }));
4817
5365
  }
4818
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPSecurityManagementUserDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4819
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPSecurityManagementUserDataSeeder }); }
5366
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSecurityManagementUserDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5367
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSecurityManagementUserDataSeeder }); }
4820
5368
  }
4821
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPSecurityManagementUserDataSeeder, decorators: [{
5369
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSecurityManagementUserDataSeeder, decorators: [{
4822
5370
  type: Injectable
4823
5371
  }] });
4824
5372
 
@@ -4942,10 +5490,10 @@ class AXPSecurityManagementDeviceSessionDataSeeder {
4942
5490
  }
4943
5491
  return deviceSessions;
4944
5492
  }
4945
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPSecurityManagementDeviceSessionDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4946
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPSecurityManagementDeviceSessionDataSeeder }); }
5493
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSecurityManagementDeviceSessionDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5494
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSecurityManagementDeviceSessionDataSeeder }); }
4947
5495
  }
4948
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPSecurityManagementDeviceSessionDataSeeder, decorators: [{
5496
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXPSecurityManagementDeviceSessionDataSeeder, decorators: [{
4949
5497
  type: Injectable
4950
5498
  }] });
4951
5499
 
@@ -5073,10 +5621,10 @@ class AXCTextTemplateCategoryDataSeeder {
5073
5621
  async seed() {
5074
5622
  await this.storageService.initial(`${RootConfig$b.module.name}.${RootConfig$b.entities.category.name}`, TEXT_TEMPLATE_CATEGORY);
5075
5623
  }
5076
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTextTemplateCategoryDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5077
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTextTemplateCategoryDataSeeder }); }
5624
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTextTemplateCategoryDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5625
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTextTemplateCategoryDataSeeder }); }
5078
5626
  }
5079
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTextTemplateCategoryDataSeeder, decorators: [{
5627
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTextTemplateCategoryDataSeeder, decorators: [{
5080
5628
  type: Injectable
5081
5629
  }] });
5082
5630
 
@@ -5087,10 +5635,10 @@ class AXCTextTemplateDataSeeder {
5087
5635
  async seed() {
5088
5636
  await this.storageService.initial(`${RootConfig$b.module.name}.${RootConfig$b.entities.template.name}`, TEXT_TEMPLATES);
5089
5637
  }
5090
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTextTemplateDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5091
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTextTemplateDataSeeder }); }
5638
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTextTemplateDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5639
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTextTemplateDataSeeder }); }
5092
5640
  }
5093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTextTemplateDataSeeder, decorators: [{
5641
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTextTemplateDataSeeder, decorators: [{
5094
5642
  type: Injectable
5095
5643
  }] });
5096
5644
 
@@ -5113,10 +5661,10 @@ class MockTenantLoader {
5113
5661
  return of([demo_tenant]).pipe(delay(500));
5114
5662
  }
5115
5663
  }
5116
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MockTenantLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5117
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MockTenantLoader }); }
5664
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MockTenantLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5665
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MockTenantLoader }); }
5118
5666
  }
5119
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MockTenantLoader, decorators: [{
5667
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MockTenantLoader, decorators: [{
5120
5668
  type: Injectable
5121
5669
  }] });
5122
5670
 
@@ -5143,10 +5691,10 @@ class MockApplicationLoader {
5143
5691
  return of([demo_app]).pipe(delay(500));
5144
5692
  }
5145
5693
  }
5146
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MockApplicationLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5147
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MockApplicationLoader }); }
5694
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MockApplicationLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5695
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MockApplicationLoader }); }
5148
5696
  }
5149
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MockApplicationLoader, decorators: [{
5697
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MockApplicationLoader, decorators: [{
5150
5698
  type: Injectable
5151
5699
  }] });
5152
5700
 
@@ -5169,10 +5717,10 @@ class MockPermissionLoader {
5169
5717
  return of(this.userPermissions);
5170
5718
  }
5171
5719
  }
5172
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MockPermissionLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5173
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MockPermissionLoader }); }
5720
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MockPermissionLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5721
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MockPermissionLoader }); }
5174
5722
  }
5175
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: MockPermissionLoader, decorators: [{
5723
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: MockPermissionLoader, decorators: [{
5176
5724
  type: Injectable
5177
5725
  }] });
5178
5726
 
@@ -5359,10 +5907,10 @@ class AXCCourseDataSeeder {
5359
5907
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.courseLocation.name}`, courseLocationMock);
5360
5908
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.coursePeriod.name}`, coursePeriodMockData);
5361
5909
  }
5362
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCCourseDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5363
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCCourseDataSeeder }); }
5910
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCCourseDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5911
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCCourseDataSeeder }); }
5364
5912
  }
5365
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCCourseDataSeeder, decorators: [{
5913
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCCourseDataSeeder, decorators: [{
5366
5914
  type: Injectable
5367
5915
  }] });
5368
5916
 
@@ -5373,10 +5921,10 @@ class AXCPeriodDataSeeder {
5373
5921
  async seed() {
5374
5922
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.period.name}`, periodMock);
5375
5923
  }
5376
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCPeriodDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5377
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCPeriodDataSeeder }); }
5924
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCPeriodDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5925
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCPeriodDataSeeder }); }
5378
5926
  }
5379
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCPeriodDataSeeder, decorators: [{
5927
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCPeriodDataSeeder, decorators: [{
5380
5928
  type: Injectable
5381
5929
  }] });
5382
5930
 
@@ -5423,10 +5971,10 @@ class AXCTrainigTypeDataSeeder {
5423
5971
  async seed() {
5424
5972
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.trainingType.name}`, trainingTypeMockData);
5425
5973
  }
5426
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainigTypeDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5427
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainigTypeDataSeeder }); }
5974
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainigTypeDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5975
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainigTypeDataSeeder }); }
5428
5976
  }
5429
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainigTypeDataSeeder, decorators: [{
5977
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainigTypeDataSeeder, decorators: [{
5430
5978
  type: Injectable
5431
5979
  }] });
5432
5980
 
@@ -5499,10 +6047,10 @@ class AXCTrainingDataSeeder {
5499
6047
  async seed() {
5500
6048
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.training.name}`, trainingMock);
5501
6049
  }
5502
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainingDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5503
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainingDataSeeder }); }
6050
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainingDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6051
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainingDataSeeder }); }
5504
6052
  }
5505
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainingDataSeeder, decorators: [{
6053
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainingDataSeeder, decorators: [{
5506
6054
  type: Injectable
5507
6055
  }] });
5508
6056
 
@@ -5513,10 +6061,10 @@ class AXCCertificateDataSeeder {
5513
6061
  async seed() {
5514
6062
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.certificate.name}`, certificateMock);
5515
6063
  }
5516
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCCertificateDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5517
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCCertificateDataSeeder }); }
6064
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCCertificateDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6065
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCCertificateDataSeeder }); }
5518
6066
  }
5519
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCCertificateDataSeeder, decorators: [{
6067
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCCertificateDataSeeder, decorators: [{
5520
6068
  type: Injectable
5521
6069
  }] });
5522
6070
 
@@ -5561,10 +6109,10 @@ class AXCTrainingFacilitatorDataSeeder {
5561
6109
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.facilitatorType.name}`, facilitatorTypeMock);
5562
6110
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.trainingFacilitator.name}`, trainingFacilitatorMock);
5563
6111
  }
5564
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainingFacilitatorDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5565
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainingFacilitatorDataSeeder }); }
6112
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainingFacilitatorDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6113
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainingFacilitatorDataSeeder }); }
5566
6114
  }
5567
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainingFacilitatorDataSeeder, decorators: [{
6115
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainingFacilitatorDataSeeder, decorators: [{
5568
6116
  type: Injectable
5569
6117
  }] });
5570
6118
 
@@ -5594,10 +6142,10 @@ class AXCTrainingParticipantDataSeeder {
5594
6142
  async seed() {
5595
6143
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.trainingParticipant.name}`, trainingParticipantMockData);
5596
6144
  }
5597
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainingParticipantDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5598
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainingParticipantDataSeeder }); }
6145
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainingParticipantDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6146
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainingParticipantDataSeeder }); }
5599
6147
  }
5600
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCTrainingParticipantDataSeeder, decorators: [{
6148
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCTrainingParticipantDataSeeder, decorators: [{
5601
6149
  type: Injectable
5602
6150
  }] });
5603
6151
 
@@ -5608,10 +6156,10 @@ class AXCLocationDataSeeder {
5608
6156
  async seed() {
5609
6157
  await this.storageService.initial(`${RootConfig$c.module.name}.${RootConfig$c.entities.location.name}`, locationMockData);
5610
6158
  }
5611
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCLocationDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5612
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCLocationDataSeeder }); }
6159
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCLocationDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6160
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCLocationDataSeeder }); }
5613
6161
  }
5614
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCLocationDataSeeder, decorators: [{
6162
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCLocationDataSeeder, decorators: [{
5615
6163
  type: Injectable
5616
6164
  }] });
5617
6165
 
@@ -5627,11 +6175,11 @@ class AXCMockModule {
5627
6175
  }
5628
6176
  });
5629
6177
  }
5630
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCMockModule, deps: [{ token: i1$1.AXPAppStartUpService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.NgModule }); }
5631
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXCMockModule, imports: [i2.AXPAuthModule, AXCFormTemplateManagementMockModule,
6178
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCMockModule, deps: [{ token: i1$1.AXPAppStartUpService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.NgModule }); }
6179
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.10", ngImport: i0, type: AXCMockModule, imports: [i2.AXPAuthModule, AXCFormTemplateManagementMockModule,
5632
6180
  AXCFOrganizationManagementMockModule,
5633
6181
  AXCConversationMockModule] }); }
5634
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCMockModule, providers: [
6182
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCMockModule, providers: [
5635
6183
  AXPDexieEntityStorageService,
5636
6184
  {
5637
6185
  provide: AXMNotificationEntityService,
@@ -5858,7 +6406,7 @@ class AXCMockModule {
5858
6406
  AXCFOrganizationManagementMockModule,
5859
6407
  AXCConversationMockModule] }); }
5860
6408
  }
5861
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXCMockModule, decorators: [{
6409
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.10", ngImport: i0, type: AXCMockModule, decorators: [{
5862
6410
  type: NgModule,
5863
6411
  args: [{
5864
6412
  imports: [
@@ -6099,5 +6647,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImpor
6099
6647
  * Generated bundle index. Do not edit.
6100
6648
  */
6101
6649
 
6102
- export { AXCMockModule, AXPDexieEntityStorageService, MOCKStrategy };
6650
+ export { AXCFileStorageService, AXCMockModule, AXPDexieEntityStorageService, MOCKStrategy };
6103
6651
  //# sourceMappingURL=acorex-connectivity-mock.mjs.map