@acorex/connectivity 20.4.2 → 20.5.0-next.1
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.
|
@@ -3,7 +3,7 @@ import * as i2$1 from '@acorex/platform/auth';
|
|
|
3
3
|
import { AXPAuthStrategy, AXP_TENANT_LOADER, AXP_APPLICATION_LOADER, AXP_FEATURE_LOADER, AXP_PERMISSION_LOADER, AXPSessionService, AXPAuthModule } from '@acorex/platform/auth';
|
|
4
4
|
import * as i1$1 from '@acorex/platform/core';
|
|
5
5
|
import { AXPDataGenerator, AXPActivityLogProvider, AXP_ACTIVITY_LOG_PROVIDER, AXP_DATASOURCE_DEFINITION_PROVIDER, objectKeyValueTransforms, AXP_DISTRIBUTED_EVENT_LISTENER_PROVIDER, AXPSystemActionType, applySortArray, applyFilterArray, AXPExpressionEvaluatorService } from '@acorex/platform/core';
|
|
6
|
-
import { AXPEntityDefinitionRegistryService, AXPEntityStorageService, AXP_DATA_SEEDER_TOKEN, AXMEntityCrudServiceImpl, AXP_ENTITY_STORAGE_BACKEND, AXPMiddlewareAbortError,
|
|
6
|
+
import { AXPEntityDefinitionRegistryService, AXPEntityStorageService, AXP_DATA_SEEDER_TOKEN, AXMEntityCrudServiceImpl, AXP_ENTITY_STORAGE_BACKEND, AXPMiddlewareAbortError, AXP_ENTITY_STORAGE_MIDDLEWARE, eventDispatchMiddleware, AXPDataSeederService } from '@acorex/platform/layout/entity';
|
|
7
7
|
import * as i0 from '@angular/core';
|
|
8
8
|
import { inject, Injectable, NgModule, Injector, runInInjectionContext } from '@angular/core';
|
|
9
9
|
import { AXMDeviceSessionsService, AXMSessionStatusTypes, AXMDeviceSessionsServiceImpl, AXM_AUTH_CONFIG_TOKEN } from '@acorex/modules/auth';
|
|
@@ -1734,7 +1734,7 @@ class AXCCommonMockModule {
|
|
|
1734
1734
|
{
|
|
1735
1735
|
provide: AXPVersioningService,
|
|
1736
1736
|
useClass: VersioningService,
|
|
1737
|
-
}
|
|
1737
|
+
},
|
|
1738
1738
|
] }); }
|
|
1739
1739
|
}
|
|
1740
1740
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: AXCCommonMockModule, decorators: [{
|
|
@@ -1765,7 +1765,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
1765
1765
|
{
|
|
1766
1766
|
provide: AXPVersioningService,
|
|
1767
1767
|
useClass: VersioningService,
|
|
1768
|
-
}
|
|
1768
|
+
},
|
|
1769
1769
|
],
|
|
1770
1770
|
}]
|
|
1771
1771
|
}] });
|
|
@@ -5859,6 +5859,150 @@ var categoryMetadataInheritance_query = /*#__PURE__*/Object.freeze({
|
|
|
5859
5859
|
AXCQueryCategoryMetadataInheritanceQuery: AXCQueryCategoryMetadataInheritanceQuery
|
|
5860
5860
|
});
|
|
5861
5861
|
|
|
5862
|
+
//#endregion
|
|
5863
|
+
//#region ---- Tag Mock Data ----
|
|
5864
|
+
const TAGS_MOCK = [
|
|
5865
|
+
// System Tags
|
|
5866
|
+
{
|
|
5867
|
+
id: AXPDataGenerator.uuid(),
|
|
5868
|
+
title: 'Important',
|
|
5869
|
+
color: '#F44336', // Red - Material Design
|
|
5870
|
+
description: 'Marks items as important',
|
|
5871
|
+
scope: 'system',
|
|
5872
|
+
createdAt: new Date('2024-01-01'),
|
|
5873
|
+
},
|
|
5874
|
+
{
|
|
5875
|
+
id: AXPDataGenerator.uuid(),
|
|
5876
|
+
title: 'Urgent',
|
|
5877
|
+
color: '#FF9800', // Orange - Material Design
|
|
5878
|
+
description: 'Marks items as urgent',
|
|
5879
|
+
scope: 'system',
|
|
5880
|
+
createdAt: new Date('2024-01-01'),
|
|
5881
|
+
},
|
|
5882
|
+
{
|
|
5883
|
+
id: AXPDataGenerator.uuid(),
|
|
5884
|
+
title: 'To Do',
|
|
5885
|
+
color: '#2196F3', // Blue - Material Design
|
|
5886
|
+
description: 'Items pending action',
|
|
5887
|
+
scope: 'system',
|
|
5888
|
+
createdAt: new Date('2024-01-01'),
|
|
5889
|
+
},
|
|
5890
|
+
{
|
|
5891
|
+
id: AXPDataGenerator.uuid(),
|
|
5892
|
+
title: 'In Progress',
|
|
5893
|
+
color: '#03A9F4', // Light Blue - Material Design
|
|
5894
|
+
description: 'Currently being worked on',
|
|
5895
|
+
scope: 'system',
|
|
5896
|
+
createdAt: new Date('2024-01-01'),
|
|
5897
|
+
},
|
|
5898
|
+
{
|
|
5899
|
+
id: AXPDataGenerator.uuid(),
|
|
5900
|
+
title: 'Completed',
|
|
5901
|
+
color: '#4CAF50', // Green - Material Design
|
|
5902
|
+
description: 'Finished items',
|
|
5903
|
+
scope: 'system',
|
|
5904
|
+
createdAt: new Date('2024-01-01'),
|
|
5905
|
+
},
|
|
5906
|
+
{
|
|
5907
|
+
id: AXPDataGenerator.uuid(),
|
|
5908
|
+
title: 'Blocked',
|
|
5909
|
+
color: '#FF5722', // Deep Orange - Material Design
|
|
5910
|
+
description: 'Items that are blocked',
|
|
5911
|
+
scope: 'system',
|
|
5912
|
+
createdAt: new Date('2024-01-01'),
|
|
5913
|
+
},
|
|
5914
|
+
{
|
|
5915
|
+
id: AXPDataGenerator.uuid(),
|
|
5916
|
+
title: 'Review',
|
|
5917
|
+
color: '#FFC107', // Amber - Material Design
|
|
5918
|
+
description: 'Items pending review',
|
|
5919
|
+
scope: 'system',
|
|
5920
|
+
createdAt: new Date('2024-01-01'),
|
|
5921
|
+
},
|
|
5922
|
+
{
|
|
5923
|
+
id: AXPDataGenerator.uuid(),
|
|
5924
|
+
title: 'Bug',
|
|
5925
|
+
color: '#E91E63', // Pink - Material Design
|
|
5926
|
+
description: 'Bug reports',
|
|
5927
|
+
scope: 'system',
|
|
5928
|
+
createdAt: new Date('2024-01-01'),
|
|
5929
|
+
},
|
|
5930
|
+
{
|
|
5931
|
+
id: AXPDataGenerator.uuid(),
|
|
5932
|
+
title: 'Feature',
|
|
5933
|
+
color: '#009688', // Teal - Material Design
|
|
5934
|
+
description: 'New feature requests',
|
|
5935
|
+
scope: 'system',
|
|
5936
|
+
createdAt: new Date('2024-01-01'),
|
|
5937
|
+
},
|
|
5938
|
+
{
|
|
5939
|
+
id: AXPDataGenerator.uuid(),
|
|
5940
|
+
title: 'Documentation',
|
|
5941
|
+
color: '#00BCD4', // Cyan - Material Design
|
|
5942
|
+
description: 'Documentation related',
|
|
5943
|
+
scope: 'system',
|
|
5944
|
+
createdAt: new Date('2024-01-01'),
|
|
5945
|
+
},
|
|
5946
|
+
// Tenant Tags
|
|
5947
|
+
{
|
|
5948
|
+
id: AXPDataGenerator.uuid(),
|
|
5949
|
+
title: 'High Priority',
|
|
5950
|
+
color: '#9C27B0', // Purple - Material Design
|
|
5951
|
+
description: 'High priority items for this organization',
|
|
5952
|
+
scope: 'tenant',
|
|
5953
|
+
createdAt: new Date('2024-06-01'),
|
|
5954
|
+
},
|
|
5955
|
+
{
|
|
5956
|
+
id: AXPDataGenerator.uuid(),
|
|
5957
|
+
title: 'Q4 Project',
|
|
5958
|
+
color: '#3F51B5', // Indigo - Material Design
|
|
5959
|
+
description: 'Related to Q4 projects',
|
|
5960
|
+
scope: 'tenant',
|
|
5961
|
+
createdAt: new Date('2024-09-01'),
|
|
5962
|
+
},
|
|
5963
|
+
{
|
|
5964
|
+
id: AXPDataGenerator.uuid(),
|
|
5965
|
+
title: 'Customer Facing',
|
|
5966
|
+
color: '#8BC34A', // Light Green - Material Design
|
|
5967
|
+
description: 'Customer-facing tasks and items',
|
|
5968
|
+
scope: 'tenant',
|
|
5969
|
+
createdAt: new Date('2024-07-01'),
|
|
5970
|
+
},
|
|
5971
|
+
// User Tags
|
|
5972
|
+
{
|
|
5973
|
+
id: AXPDataGenerator.uuid(),
|
|
5974
|
+
title: 'Personal Project',
|
|
5975
|
+
color: '#673AB7', // Deep Purple - Material Design
|
|
5976
|
+
description: 'My personal projects',
|
|
5977
|
+
scope: 'user',
|
|
5978
|
+
createdAt: new Date('2024-10-01'),
|
|
5979
|
+
},
|
|
5980
|
+
{
|
|
5981
|
+
id: AXPDataGenerator.uuid(),
|
|
5982
|
+
title: 'Learning',
|
|
5983
|
+
color: '#CDDC39', // Lime - Material Design
|
|
5984
|
+
description: 'Items to learn or study',
|
|
5985
|
+
scope: 'user',
|
|
5986
|
+
createdAt: new Date('2024-10-15'),
|
|
5987
|
+
},
|
|
5988
|
+
];
|
|
5989
|
+
//#endregion
|
|
5990
|
+
|
|
5991
|
+
//#region ---- Tag Data Seeder ----
|
|
5992
|
+
class AXMTagDataSeeder {
|
|
5993
|
+
constructor() {
|
|
5994
|
+
this.storageService = inject(AXPEntityStorageService);
|
|
5995
|
+
}
|
|
5996
|
+
async seed() {
|
|
5997
|
+
await this.storageService.initial(RootConfig$6.entities.tag.source, TAGS_MOCK);
|
|
5998
|
+
}
|
|
5999
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: AXMTagDataSeeder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
6000
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: AXMTagDataSeeder }); }
|
|
6001
|
+
}
|
|
6002
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: AXMTagDataSeeder, decorators: [{
|
|
6003
|
+
type: Injectable
|
|
6004
|
+
}] });
|
|
6005
|
+
|
|
5862
6006
|
class AXCDataManagementMockModule {
|
|
5863
6007
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: AXCDataManagementMockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5864
6008
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.4", ngImport: i0, type: AXCDataManagementMockModule }); }
|
|
@@ -5873,6 +6017,11 @@ class AXCDataManagementMockModule {
|
|
|
5873
6017
|
useClass: AXCMetaDataDefinitionDataSeeder,
|
|
5874
6018
|
multi: true,
|
|
5875
6019
|
},
|
|
6020
|
+
{
|
|
6021
|
+
provide: AXP_DATA_SEEDER_TOKEN,
|
|
6022
|
+
useClass: AXMTagDataSeeder,
|
|
6023
|
+
multi: true,
|
|
6024
|
+
},
|
|
5876
6025
|
provideQuerySetups([
|
|
5877
6026
|
{
|
|
5878
6027
|
key: 'DataManagement:Metadata:GetCategoryWithItems',
|
|
@@ -5902,6 +6051,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
5902
6051
|
useClass: AXCMetaDataDefinitionDataSeeder,
|
|
5903
6052
|
multi: true,
|
|
5904
6053
|
},
|
|
6054
|
+
{
|
|
6055
|
+
provide: AXP_DATA_SEEDER_TOKEN,
|
|
6056
|
+
useClass: AXMTagDataSeeder,
|
|
6057
|
+
multi: true,
|
|
6058
|
+
},
|
|
5905
6059
|
provideQuerySetups([
|
|
5906
6060
|
{
|
|
5907
6061
|
key: 'DataManagement:Metadata:GetCategoryWithItems',
|
|
@@ -38310,6 +38464,55 @@ const createFileCastMiddleware = {
|
|
|
38310
38464
|
},
|
|
38311
38465
|
};
|
|
38312
38466
|
|
|
38467
|
+
const historyLoggerMiddleware = {
|
|
38468
|
+
target: { ops: ['create', 'update', 'delete'], order: 80 },
|
|
38469
|
+
execute: async (ctx, next) => {
|
|
38470
|
+
const sessionService = inject(AXPSessionService);
|
|
38471
|
+
const versioning = inject(VersioningService);
|
|
38472
|
+
// Capture previous for update/delete
|
|
38473
|
+
if (ctx.op === 'update' || ctx.op === 'delete') {
|
|
38474
|
+
try {
|
|
38475
|
+
ctx.previous = await ctx.backend.getOne(ctx.entityName, ctx.id);
|
|
38476
|
+
}
|
|
38477
|
+
catch { /* ignore */ }
|
|
38478
|
+
}
|
|
38479
|
+
await next();
|
|
38480
|
+
// Prepare versioning payload
|
|
38481
|
+
const entityType = ctx.entityName;
|
|
38482
|
+
const changedBy = sessionService.user?.id ?? 'system';
|
|
38483
|
+
if (ctx.op === 'create') {
|
|
38484
|
+
const createdId = String(ctx.result);
|
|
38485
|
+
const snapshot = { ...ctx.data, id: createdId };
|
|
38486
|
+
const changes = computeDiff(undefined, snapshot);
|
|
38487
|
+
await versioning.createVersion(entityType, createdId, snapshot, changes, {
|
|
38488
|
+
changeType: AXVChangeType.Create,
|
|
38489
|
+
changedBy,
|
|
38490
|
+
summary: 'Created',
|
|
38491
|
+
});
|
|
38492
|
+
}
|
|
38493
|
+
else if (ctx.op === 'update') {
|
|
38494
|
+
const referenceId = String(ctx.id);
|
|
38495
|
+
const snapshot = ctx.result;
|
|
38496
|
+
const changes = computeDiff(ctx.previous, snapshot);
|
|
38497
|
+
await versioning.createVersion(entityType, referenceId, snapshot, changes, {
|
|
38498
|
+
changeType: AXVChangeType.Update,
|
|
38499
|
+
changedBy,
|
|
38500
|
+
summary: 'Updated',
|
|
38501
|
+
});
|
|
38502
|
+
}
|
|
38503
|
+
else if (ctx.op === 'delete') {
|
|
38504
|
+
const referenceId = String(ctx.id);
|
|
38505
|
+
const snapshot = ctx.previous;
|
|
38506
|
+
const changes = computeDiff(snapshot, null);
|
|
38507
|
+
await versioning.createVersion(entityType, referenceId, snapshot, changes, {
|
|
38508
|
+
changeType: AXVChangeType.Delete,
|
|
38509
|
+
changedBy,
|
|
38510
|
+
summary: 'Deleted',
|
|
38511
|
+
});
|
|
38512
|
+
}
|
|
38513
|
+
},
|
|
38514
|
+
};
|
|
38515
|
+
|
|
38313
38516
|
const identifierCommitMiddleware = {
|
|
38314
38517
|
target: { ops: ['create'], order: 30 },
|
|
38315
38518
|
execute: async (ctx, next) => {
|
|
@@ -39163,55 +39366,6 @@ const primaryMiddleware = {
|
|
|
39163
39366
|
},
|
|
39164
39367
|
};
|
|
39165
39368
|
|
|
39166
|
-
const historyLoggerMiddleware = {
|
|
39167
|
-
target: { ops: ['create', 'update', 'delete'], order: 80 },
|
|
39168
|
-
execute: async (ctx, next) => {
|
|
39169
|
-
const sessionService = inject(AXPSessionService);
|
|
39170
|
-
const versioning = inject(VersioningService);
|
|
39171
|
-
// Capture previous for update/delete
|
|
39172
|
-
if (ctx.op === 'update' || ctx.op === 'delete') {
|
|
39173
|
-
try {
|
|
39174
|
-
ctx.previous = await ctx.backend.getOne(ctx.entityName, ctx.id);
|
|
39175
|
-
}
|
|
39176
|
-
catch { /* ignore */ }
|
|
39177
|
-
}
|
|
39178
|
-
await next();
|
|
39179
|
-
// Prepare versioning payload
|
|
39180
|
-
const entityType = ctx.entityName;
|
|
39181
|
-
const changedBy = sessionService.user?.id ?? 'system';
|
|
39182
|
-
if (ctx.op === 'create') {
|
|
39183
|
-
const createdId = String(ctx.result);
|
|
39184
|
-
const snapshot = { ...ctx.data, id: createdId };
|
|
39185
|
-
const changes = computeDiff(undefined, snapshot);
|
|
39186
|
-
await versioning.createVersion(entityType, createdId, snapshot, changes, {
|
|
39187
|
-
changeType: AXVChangeType.Create,
|
|
39188
|
-
changedBy,
|
|
39189
|
-
summary: 'Created',
|
|
39190
|
-
});
|
|
39191
|
-
}
|
|
39192
|
-
else if (ctx.op === 'update') {
|
|
39193
|
-
const referenceId = String(ctx.id);
|
|
39194
|
-
const snapshot = ctx.result;
|
|
39195
|
-
const changes = computeDiff(ctx.previous, snapshot);
|
|
39196
|
-
await versioning.createVersion(entityType, referenceId, snapshot, changes, {
|
|
39197
|
-
changeType: AXVChangeType.Update,
|
|
39198
|
-
changedBy,
|
|
39199
|
-
summary: 'Updated',
|
|
39200
|
-
});
|
|
39201
|
-
}
|
|
39202
|
-
else if (ctx.op === 'delete') {
|
|
39203
|
-
const referenceId = String(ctx.id);
|
|
39204
|
-
const snapshot = ctx.previous;
|
|
39205
|
-
const changes = computeDiff(snapshot, null);
|
|
39206
|
-
await versioning.createVersion(entityType, referenceId, snapshot, changes, {
|
|
39207
|
-
changeType: AXVChangeType.Delete,
|
|
39208
|
-
changedBy,
|
|
39209
|
-
summary: 'Deleted',
|
|
39210
|
-
});
|
|
39211
|
-
}
|
|
39212
|
-
},
|
|
39213
|
-
};
|
|
39214
|
-
|
|
39215
39369
|
/**
|
|
39216
39370
|
* Signature Loader Middleware
|
|
39217
39371
|
*
|
|
@@ -39301,8 +39455,6 @@ class AXCMiddlewaresModule {
|
|
|
39301
39455
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: AXCMiddlewaresModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
39302
39456
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.4", ngImport: i0, type: AXCMiddlewaresModule }); }
|
|
39303
39457
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: AXCMiddlewaresModule, providers: [
|
|
39304
|
-
// Bind the middleware wrapper as the public storage service
|
|
39305
|
-
{ provide: AXPEntityStorageService, useClass: AXPMiddlewareEntityStorageService },
|
|
39306
39458
|
// Provide the concrete backend and middlewares
|
|
39307
39459
|
{ provide: AXP_ENTITY_STORAGE_BACKEND, useClass: AXCDexieEntityStorageService },
|
|
39308
39460
|
// Middlewares
|
|
@@ -39328,8 +39480,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImpor
|
|
|
39328
39480
|
exports: [],
|
|
39329
39481
|
declarations: [],
|
|
39330
39482
|
providers: [
|
|
39331
|
-
// Bind the middleware wrapper as the public storage service
|
|
39332
|
-
{ provide: AXPEntityStorageService, useClass: AXPMiddlewareEntityStorageService },
|
|
39333
39483
|
// Provide the concrete backend and middlewares
|
|
39334
39484
|
{ provide: AXP_ENTITY_STORAGE_BACKEND, useClass: AXCDexieEntityStorageService },
|
|
39335
39485
|
// Middlewares
|
|
@@ -39866,5 +40016,5 @@ const AXCMockEntityLogListener = {
|
|
|
39866
40016
|
* Generated bundle index. Do not edit.
|
|
39867
40017
|
*/
|
|
39868
40018
|
|
|
39869
|
-
export { APPLICATIONS, AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCApplicationDataSeeder, AXCApplicationManagementMockModule, AXCAuthMockModule, AXCCalendarDataSeeder, AXCCalendarEventDataSeeder, AXCCalendarManagementMockModule, AXCCommonMockModule, AXCContactManagementMockModule, AXCContentManagementMockModule, AXCConversationMockModule, AXCCustomerManagementMockModule, AXCDashboardManagementMockModule, AXCDataManagementMockModule, AXCDexieEntityStorageService, AXCDocumentManagementMockModule, AXCEditionDataSeeder, AXCFeatureDataSeeder, AXCFileStorageService, AXCFormTemplateManagementMockModule, AXCGlobalVariablesDataSeeder, AXCGoogleStrategyMock, AXCHelpDeskMockModule, AXCHumanCapitalManagementMockModule, AXCIdentifierManagementMockModule, AXCJsaSeeder, AXCLocaleManagementMockModule, AXCLocationManagementMockModule, AXCLockService, AXCLogManagementMockModule, AXCLogReportCategoryProvider, AXCLogReportDefinitionProvider, AXCMeetingManagementMockModule, AXCMetaDataDefinitionDataSeeder, AXCMiddlewaresModule, AXCMockEntityLogListener, AXCMockModule, AXCModuleDataSeeder, AXCNotificationManagementMockModule, AXCOrganizationManagementMockModule, AXCPartyManagementMockModule, AXCPlatformManagementMockModule, AXCProjectManagementMockModule, AXCQueryCategoryMetadataInheritanceQuery, AXCReportManagementMockModule, AXCSchedulerJobDataSeeder, AXCSchedulerJobManagementMockModule, AXCSecurityManagementMockModule, AXCTaskManagementMockModule, AXCTextTemplateCategoryDataSeeder, AXCTextTemplateDataSeeder, AXCTextTemplateManagementMockModule, AXCTrainingManagementMockModule, AXCUserPassStrategyMock, AXCVersionDB, AXCWorkflowManagementMockModule, AXC_LOG_REPORT_CATEGORY_PROVIDER, AXC_LOG_REPORT_DEFINITION_PROVIDER, AXMAiResponderService, AXMBusinessUnitDataSeeder, AXMCalendarEventTypeSeeder, AXMEmployeeDataSeeder, AXMEmployeeSkillDataSeeder, AXMEmployeeSkillsCategoryProvider, AXMEmployeeSkillsReportDefinitionProvider, AXMEmploymentTypeDataSeeder, AXMFormDataSourcesProvider, AXMIndustryDataSeeder, AXMLeaveRequestDataSeeder, AXMMeetingDataSeeder, AXMMeetingFilesDataSeeder, AXMMeetingParticipantDataSeeder, AXMMeetingRoleTypeDataSeeder, AXMMeetingSessionDataSeeder, AXMMeetingTypeDataSeeder, AXMMeetingTypeFileTemplateDataSeeder, AXMPositionAssignmentDataSeeder, AXMPositionDataSeeder, AXMReportCategoryDataSeeder, AXMReportDefinitionDataSeeder, AXMReportExecuteCommand, AXMReportMockDataService, AXMResponsibilityDataSeeder, AXMRoleDataSeeder, AXMSkillDataSeeder, AXMSkillLevelDataSeeder, AXMTeamDataSeeder, AXM_EMPLOYEE_SKILLS_CATEGORY_PROVIDER, AXM_EMPLOYEE_SKILLS_DEFINITION_PROVIDER, AXPDashboardDataSeeder, AXPIdentifierDB, AXPMessageDataSeeder, AXPMockChecksumProvider, AXPMockClockProvider, AXPMockIdentifierService, AXPMockLookupProvider, AXPMockPolicyProvider, AXPMockSequenceProvider, AXPRoomDataSeeder, AXPSecurityManagementRoleDataSeeder, AXPSecurityManagementUserDataSeeder, AXPTaskBoardPlatformManagementTaskProvider, AXPTaskBoardProjectManagementTaskProvider, AXQEmployeeSkillsLevelPercentagesQuery, AXQEmployeeSkillsLevelsQuery, AXQEmployeeSkillsListQuery, AXQEmployeeSkillsSkillPercentagesQuery, AXQEmployeeSkillsStatsQuery, AXQEmployeeSkillsTrendQuery, AXVChangeType, BUSINESS_UNITS_MOCK, DASHBOARDS, EDITIONS, EMPLOYEES_MOCK, EMPLOYEE_SKILLS_MOCK, EMPLOYMENT_TYPES_MOCK, FEATURES, GLOBAL_VARIABLES, LEAVE_REQUESTS_MOCK, MODULES, POSITIONS_CATEGORY_MOCK, POSITIONS_MOCK, POSITION_ASSIGNMENTS_MOCK, RESPONSIBILITIES_CATEGORY_MOCK, RESPONSIBILITIES_MOCK, ROLES_CATEGORY_MOCK, ROLES_MOCK, SKILLS_CATEGORY_MOCK, SKILLS_MOCK, SKILL_LEVELS_MOCK, TASKS, TASK_STATUSES, TASK_TEMPLATES, TASK_TYPES, TEAMS_MOCK, TEXT_TEMPLATES, TEXT_TEMPLATE_CATEGORY, VersioningService, applications, auditLoggerMiddleware, axVersionDB, calendarEventMock, calendarEventTypeMockData, calendarMock, childCountMiddleware, computeDiff, createAndSaveDashboardForUser, createDashboardForUser, createFileCastMiddleware, findContactMethod, findEmployeeById, findPartyById, generateUserDashboard, historyLoggerMiddleware, identifierCommitMiddleware, lookupResolverMiddleware, meetingFilesMock, meetingIds, meetingMock, meetingParticipantMock, meetingRoleTypeMock, meetingSessionMock, meetingTimeSlotMock, meetingTypeFileTemplateMock, meetingTypeMock, mergeDetailRelationMiddleware, mockRoleDefinitions, mockUsers, normalizeAnyFileArrayForView, normalizeSnapshotFileFieldsForView, participantIds, primaryMiddleware, signatureLoaderMiddleware, tenantsMock, toUiRows };
|
|
40019
|
+
export { APPLICATIONS, AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCApplicationDataSeeder, AXCApplicationManagementMockModule, AXCAuthMockModule, AXCCalendarDataSeeder, AXCCalendarEventDataSeeder, AXCCalendarManagementMockModule, AXCCommonMockModule, AXCContactManagementMockModule, AXCContentManagementMockModule, AXCConversationMockModule, AXCCustomerManagementMockModule, AXCDashboardManagementMockModule, AXCDataManagementMockModule, AXCDexieEntityStorageService, AXCDocumentManagementMockModule, AXCEditionDataSeeder, AXCFeatureDataSeeder, AXCFileStorageService, AXCFormTemplateManagementMockModule, AXCGlobalVariablesDataSeeder, AXCGoogleStrategyMock, AXCHelpDeskMockModule, AXCHumanCapitalManagementMockModule, AXCIdentifierManagementMockModule, AXCJsaSeeder, AXCLocaleManagementMockModule, AXCLocationManagementMockModule, AXCLockService, AXCLogManagementMockModule, AXCLogReportCategoryProvider, AXCLogReportDefinitionProvider, AXCMeetingManagementMockModule, AXCMetaDataDefinitionDataSeeder, AXCMiddlewaresModule, AXCMockEntityLogListener, AXCMockModule, AXCModuleDataSeeder, AXCNotificationManagementMockModule, AXCOrganizationManagementMockModule, AXCPartyManagementMockModule, AXCPlatformManagementMockModule, AXCProjectManagementMockModule, AXCQueryCategoryMetadataInheritanceQuery, AXCReportManagementMockModule, AXCSchedulerJobDataSeeder, AXCSchedulerJobManagementMockModule, AXCSecurityManagementMockModule, AXCTaskManagementMockModule, AXCTextTemplateCategoryDataSeeder, AXCTextTemplateDataSeeder, AXCTextTemplateManagementMockModule, AXCTrainingManagementMockModule, AXCUserPassStrategyMock, AXCVersionDB, AXCWorkflowManagementMockModule, AXC_LOG_REPORT_CATEGORY_PROVIDER, AXC_LOG_REPORT_DEFINITION_PROVIDER, AXMAiResponderService, AXMBusinessUnitDataSeeder, AXMCalendarEventTypeSeeder, AXMEmployeeDataSeeder, AXMEmployeeSkillDataSeeder, AXMEmployeeSkillsCategoryProvider, AXMEmployeeSkillsReportDefinitionProvider, AXMEmploymentTypeDataSeeder, AXMFormDataSourcesProvider, AXMIndustryDataSeeder, AXMLeaveRequestDataSeeder, AXMMeetingDataSeeder, AXMMeetingFilesDataSeeder, AXMMeetingParticipantDataSeeder, AXMMeetingRoleTypeDataSeeder, AXMMeetingSessionDataSeeder, AXMMeetingTypeDataSeeder, AXMMeetingTypeFileTemplateDataSeeder, AXMPositionAssignmentDataSeeder, AXMPositionDataSeeder, AXMReportCategoryDataSeeder, AXMReportDefinitionDataSeeder, AXMReportExecuteCommand, AXMReportMockDataService, AXMResponsibilityDataSeeder, AXMRoleDataSeeder, AXMSkillDataSeeder, AXMSkillLevelDataSeeder, AXMTagDataSeeder, AXMTeamDataSeeder, AXM_EMPLOYEE_SKILLS_CATEGORY_PROVIDER, AXM_EMPLOYEE_SKILLS_DEFINITION_PROVIDER, AXPDashboardDataSeeder, AXPIdentifierDB, AXPMessageDataSeeder, AXPMockChecksumProvider, AXPMockClockProvider, AXPMockIdentifierService, AXPMockLookupProvider, AXPMockPolicyProvider, AXPMockSequenceProvider, AXPRoomDataSeeder, AXPSecurityManagementRoleDataSeeder, AXPSecurityManagementUserDataSeeder, AXPTaskBoardPlatformManagementTaskProvider, AXPTaskBoardProjectManagementTaskProvider, AXQEmployeeSkillsLevelPercentagesQuery, AXQEmployeeSkillsLevelsQuery, AXQEmployeeSkillsListQuery, AXQEmployeeSkillsSkillPercentagesQuery, AXQEmployeeSkillsStatsQuery, AXQEmployeeSkillsTrendQuery, AXVChangeType, BUSINESS_UNITS_MOCK, DASHBOARDS, EDITIONS, EMPLOYEES_MOCK, EMPLOYEE_SKILLS_MOCK, EMPLOYMENT_TYPES_MOCK, FEATURES, GLOBAL_VARIABLES, LEAVE_REQUESTS_MOCK, MODULES, POSITIONS_CATEGORY_MOCK, POSITIONS_MOCK, POSITION_ASSIGNMENTS_MOCK, RESPONSIBILITIES_CATEGORY_MOCK, RESPONSIBILITIES_MOCK, ROLES_CATEGORY_MOCK, ROLES_MOCK, SKILLS_CATEGORY_MOCK, SKILLS_MOCK, SKILL_LEVELS_MOCK, TAGS_MOCK, TASKS, TASK_STATUSES, TASK_TEMPLATES, TASK_TYPES, TEAMS_MOCK, TEXT_TEMPLATES, TEXT_TEMPLATE_CATEGORY, VersioningService, applications, auditLoggerMiddleware, axVersionDB, calendarEventMock, calendarEventTypeMockData, calendarMock, childCountMiddleware, computeDiff, createAndSaveDashboardForUser, createDashboardForUser, createFileCastMiddleware, findContactMethod, findEmployeeById, findPartyById, generateUserDashboard, historyLoggerMiddleware, identifierCommitMiddleware, lookupResolverMiddleware, meetingFilesMock, meetingIds, meetingMock, meetingParticipantMock, meetingRoleTypeMock, meetingSessionMock, meetingTimeSlotMock, meetingTypeFileTemplateMock, meetingTypeMock, mergeDetailRelationMiddleware, mockRoleDefinitions, mockUsers, normalizeAnyFileArrayForView, normalizeSnapshotFileFieldsForView, participantIds, primaryMiddleware, signatureLoaderMiddleware, tenantsMock, toUiRows };
|
|
39870
40020
|
//# sourceMappingURL=acorex-connectivity-mock.mjs.map
|