@acorex/connectivity 21.0.0-next.12 → 21.0.0-next.13
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.
- package/fesm2022/acorex-connectivity-mock-assign-to-manager.command-T6-ao4e9.mjs +66 -0
- package/fesm2022/acorex-connectivity-mock-assign-to-manager.command-T6-ao4e9.mjs.map +1 -0
- package/fesm2022/acorex-connectivity-mock-check-permission.command-C-AZTcHP.mjs +53 -0
- package/fesm2022/acorex-connectivity-mock-check-permission.command-C-AZTcHP.mjs.map +1 -0
- package/fesm2022/acorex-connectivity-mock.mjs +17936 -2391
- package/fesm2022/acorex-connectivity-mock.mjs.map +1 -1
- package/mock/index.d.ts +101 -58
- package/package.json +2 -2
package/mock/index.d.ts
CHANGED
|
@@ -15,13 +15,14 @@ import { AXMSecurityManagementRolesEntityModel, AXMSecurityManagementUsersEntity
|
|
|
15
15
|
import { AXPSpreadsheetData } from '@acorex/platform/layout/components';
|
|
16
16
|
import * as _acorex_platform_common from '@acorex/platform/common';
|
|
17
17
|
import { AXPLockService, AXPLockRequest, AXPLockInfo, AXPUnLockRequest, AXPLockGetInfoRequest, AXPFileStorageService, AXPFileStorageCreateRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileStorageFindRequest, AXPFileManyStorageInfo, CanonicalChange as CanonicalChange$1, AXPVersioningService, AXPVersionEntry as AXPVersionEntry$1, AXVChangeType as AXVChangeType$1 } from '@acorex/platform/common';
|
|
18
|
+
import { AXPWorkflowDefinition, AXPActivityCategory, AXPActivityDefinition, AXPWorkflowCategory, AXPWorkflowInstance, AXPWorkflowEngine, AXPStartWorkflowRequest, AXPStartWorkflowResponse, AXPResumeWorkflowRequest, AXPResumeWorkflowResponse, AXPGetWorkflowStateRequest, AXPWorkflowInstanceState, AXPFrontActivityCompleteRequest, AXPFrontActivityCompleteResponse } from '@acorex/platform/workflow';
|
|
18
19
|
import { AXMWorkflowManagementWorkflowDefinitionEntityModel } from '@acorex/modules/workflow-management';
|
|
19
|
-
import { AXPActivityCategory, AXPActivityDefinition, AXPWorkflowCategory, AXPWorkflowCategoryProvider, AXPWorkflowInstance, AXPWorkflowEngine, AXPStartWorkflowRequest, AXPStartWorkflowResponse, AXPResumeWorkflowRequest, AXPResumeWorkflowResponse, AXPGetWorkflowStateRequest, AXPWorkflowInstanceState, AXPFrontActivityCompleteRequest, AXPFrontActivityCompleteResponse, AXPWorkflowDefinition } from '@acorex/platform/workflow';
|
|
20
20
|
import { AXPWorkflowTaskProvider, AXPTaskFilter, AXPTask, AXPExtraField, AXPTaskStatus } from '@acorex/modules/task-management';
|
|
21
|
+
import { AXMMetaDataDefinitionEntityModel, AXMMetaDataSelectorValue, AXMDataManagementEquipmentEntityModel } from '@acorex/modules/data-management';
|
|
22
|
+
import { AXPWidgetNode } from '@acorex/platform/layout/widget-core';
|
|
21
23
|
import { AXMCommonDashboardEntityModel } from '@acorex/modules/dashboard-management';
|
|
22
24
|
import * as _acorex_modules_calendar_management from '@acorex/modules/calendar-management';
|
|
23
25
|
import { AXMCalendarManagementCalendarEventTypeEntityModel } from '@acorex/modules/calendar-management';
|
|
24
|
-
import { AXPWidgetNode } from '@acorex/platform/layout/widget-core';
|
|
25
26
|
import { AXPIdentifierRule, AXPClockProvider, AXPChecksumProvider, AXPPolicyProvider, AXPLookupProvider, AXPSequenceProvider, AXPIdentifierService, AXPIdentifierRequest, AXPIdentifierResult, AXPIdentifierPeekResult } from '@acorex/modules/identifier-management';
|
|
26
27
|
|
|
27
28
|
declare class AXCCommonMockModule {
|
|
@@ -1391,10 +1392,16 @@ interface TaskTemplate {
|
|
|
1391
1392
|
declare const TASK_TEMPLATES: TaskTemplate[];
|
|
1392
1393
|
|
|
1393
1394
|
/**
|
|
1394
|
-
* Mock workflow
|
|
1395
|
+
* Mock workflow definitions for testing and demonstration.
|
|
1396
|
+
* Used by workflow-definition provider and entity list.
|
|
1395
1397
|
*/
|
|
1398
|
+
declare const workflowDefinitionMock: AXPWorkflowDefinition[];
|
|
1399
|
+
declare const workflowDefinitionIds: {
|
|
1400
|
+
createLeaveRequest: string;
|
|
1401
|
+
};
|
|
1396
1402
|
/**
|
|
1397
|
-
* Mock workflow definition entities for the entity list.
|
|
1403
|
+
* Mock workflow definition entities for the entity list and seeder.
|
|
1404
|
+
* Attach Staff category directly to entity (similar to other mocks that bind category in data).
|
|
1398
1405
|
*/
|
|
1399
1406
|
declare const workflowDefinitionEntityMock: AXMWorkflowManagementWorkflowDefinitionEntityModel[];
|
|
1400
1407
|
|
|
@@ -1405,6 +1412,14 @@ declare class AXCWorkflowDefinitionDataSeeder implements AXPDataSeeder {
|
|
|
1405
1412
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXCWorkflowDefinitionDataSeeder>;
|
|
1406
1413
|
}
|
|
1407
1414
|
|
|
1415
|
+
/**
|
|
1416
|
+
* Activity categories with stable IDs (same pattern as metadata-category).
|
|
1417
|
+
* Uses childrenCount & itemsCount for performance:
|
|
1418
|
+
* - childrenCount: Direct child categories (for lazy loading)
|
|
1419
|
+
* - itemsCount: Direct activities in this category
|
|
1420
|
+
*/
|
|
1421
|
+
declare const activityCategoryMocks: AXPActivityCategory[];
|
|
1422
|
+
/** @deprecated Use activityCategoryMocks. Kept for backward compatibility (seeder, etc.). */
|
|
1408
1423
|
declare const ACTIVITY_CATEGORIES: AXPActivityCategory[];
|
|
1409
1424
|
|
|
1410
1425
|
declare class AXCActivityCategorySeeder implements AXPDataSeeder {
|
|
@@ -1423,18 +1438,21 @@ declare class AXCActivityDefinitionSeeder implements AXPDataSeeder {
|
|
|
1423
1438
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXCActivityDefinitionSeeder>;
|
|
1424
1439
|
}
|
|
1425
1440
|
|
|
1441
|
+
/**
|
|
1442
|
+
* Single workflow category for company: Staff.
|
|
1443
|
+
* Workflow provider maps this category to Leave Request workflow.
|
|
1444
|
+
*/
|
|
1426
1445
|
declare const WORKFLOW_CATEGORIES: AXPWorkflowCategory[];
|
|
1427
1446
|
|
|
1428
1447
|
/**
|
|
1429
|
-
*
|
|
1430
|
-
*
|
|
1431
|
-
* Provides workflow categories from mock data.
|
|
1448
|
+
* Seeds workflow categories into entity storage.
|
|
1449
|
+
* Module’s AXMWorkflowCategoryProvider reads from this key (same pattern as report categories).
|
|
1432
1450
|
*/
|
|
1433
|
-
declare class
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
1437
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
1451
|
+
declare class AXCWorkflowCategorySeeder implements AXPDataSeeder {
|
|
1452
|
+
private readonly storageService;
|
|
1453
|
+
seed(): Promise<void>;
|
|
1454
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCWorkflowCategorySeeder, never>;
|
|
1455
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCWorkflowCategorySeeder>;
|
|
1438
1456
|
}
|
|
1439
1457
|
|
|
1440
1458
|
type extraFields$1 = {
|
|
@@ -1610,6 +1628,59 @@ declare class AXCMetadataCategorySeeder implements AXPDataSeeder {
|
|
|
1610
1628
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXCMetadataCategorySeeder>;
|
|
1611
1629
|
}
|
|
1612
1630
|
|
|
1631
|
+
interface MetadataElectricityMockDto extends AXMMetaDataDefinitionEntityModel, AXPCategorizedEntityDto {
|
|
1632
|
+
id: string;
|
|
1633
|
+
name: string;
|
|
1634
|
+
title: string;
|
|
1635
|
+
defaultValue: string;
|
|
1636
|
+
interface: AXPWidgetNode;
|
|
1637
|
+
}
|
|
1638
|
+
/** Single category for all electricity metadata (تجهیزات) */
|
|
1639
|
+
declare const EQUIPMENT_CATEGORY_ID = "equipment";
|
|
1640
|
+
declare const metadataElectricityCategoryMocks: AXPCategoryEntity<string>[];
|
|
1641
|
+
declare const METADATA_ELECTRICITY_MOCK: MetadataElectricityMockDto[];
|
|
1642
|
+
|
|
1643
|
+
declare class AXCMetaDataDefinitionElectricityDataSeeder implements AXPDataSeeder {
|
|
1644
|
+
private storageService;
|
|
1645
|
+
seed(): Promise<void>;
|
|
1646
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCMetaDataDefinitionElectricityDataSeeder, never>;
|
|
1647
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCMetaDataDefinitionElectricityDataSeeder>;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
declare class AXCMetadataElectricityCategorySeeder implements AXPDataSeeder {
|
|
1651
|
+
private readonly storageService;
|
|
1652
|
+
seed(): Promise<void>;
|
|
1653
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCMetadataElectricityCategorySeeder, never>;
|
|
1654
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCMetadataElectricityCategorySeeder>;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
/**
|
|
1658
|
+
* Equipment categories built from equipment-type-meta-data-list.json.
|
|
1659
|
+
* Each entry has typeCode, categoryId, and metaDataList (groups with fields).
|
|
1660
|
+
*/
|
|
1661
|
+
type EquipmentCategoryMockDto = AXPCategoryEntity & {
|
|
1662
|
+
icon?: string;
|
|
1663
|
+
color?: string;
|
|
1664
|
+
metaDataList?: AXMMetaDataSelectorValue;
|
|
1665
|
+
};
|
|
1666
|
+
declare const equipmentCategoryMocks: EquipmentCategoryMockDto[];
|
|
1667
|
+
|
|
1668
|
+
declare class AXCEquipmentCategorySeeder implements AXPDataSeeder {
|
|
1669
|
+
private readonly storageService;
|
|
1670
|
+
seed(): Promise<void>;
|
|
1671
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCEquipmentCategorySeeder, never>;
|
|
1672
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCEquipmentCategorySeeder>;
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
declare const equipmentMocks: AXMDataManagementEquipmentEntityModel[];
|
|
1676
|
+
|
|
1677
|
+
declare class AXCEquipmentSeeder implements AXPDataSeeder {
|
|
1678
|
+
private readonly storageService;
|
|
1679
|
+
seed(): Promise<void>;
|
|
1680
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCEquipmentSeeder, never>;
|
|
1681
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCEquipmentSeeder>;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1613
1684
|
interface AXMTag {
|
|
1614
1685
|
id: string;
|
|
1615
1686
|
title: string;
|
|
@@ -2336,6 +2407,8 @@ declare class AXCWorkflowEngine implements AXPWorkflowEngine {
|
|
|
2336
2407
|
private readonly entityStorageService;
|
|
2337
2408
|
private readonly activityDefinitionService;
|
|
2338
2409
|
private readonly workflowProviders;
|
|
2410
|
+
private readonly expressionScopeService;
|
|
2411
|
+
private readonly expressionEvaluator;
|
|
2339
2412
|
/**
|
|
2340
2413
|
* Get workflow definition by name using workflow providers.
|
|
2341
2414
|
* Falls back to entity storage query by name if providers fail.
|
|
@@ -2379,6 +2452,11 @@ declare class AXCWorkflowEngine implements AXPWorkflowEngine {
|
|
|
2379
2452
|
* Find activity in Graph by ID.
|
|
2380
2453
|
*/
|
|
2381
2454
|
private findActivityInGraph;
|
|
2455
|
+
/**
|
|
2456
|
+
* Ensure value is a plain object for use as scope.outputs.
|
|
2457
|
+
* Each step overwrites outputs; the next activity's input sees this as outputs.id, outputs.xxx, etc.
|
|
2458
|
+
*/
|
|
2459
|
+
private ensureOutputsForScope;
|
|
2382
2460
|
/**
|
|
2383
2461
|
* Resume a suspended workflow instance.
|
|
2384
2462
|
*
|
|
@@ -2417,20 +2495,10 @@ declare class AXCWorkflowEngine implements AXPWorkflowEngine {
|
|
|
2417
2495
|
* @returns Promise of execution mode: 'frontend', 'backend', or 'both'
|
|
2418
2496
|
*/
|
|
2419
2497
|
private determineExecutionMode;
|
|
2420
|
-
/**
|
|
2421
|
-
* Evaluate expressions in activity inputs.
|
|
2422
|
-
* Supports ${var} and ${path.to.value} syntax.
|
|
2423
|
-
* Handles nested objects and arrays.
|
|
2424
|
-
* Supports mixed strings: "Hello ${user.name}"
|
|
2425
|
-
*
|
|
2426
|
-
* @param inputs - Activity inputs (may contain expressions)
|
|
2427
|
-
* @param context - Context object with variables (workflow input, variables, output)
|
|
2428
|
-
* @returns Evaluated inputs with expressions replaced
|
|
2429
|
-
*/
|
|
2430
|
-
private evaluateActivityInputs;
|
|
2431
2498
|
/**
|
|
2432
2499
|
* Create a task from a workflow activity.
|
|
2433
2500
|
* Inspired by Temporal's Activity Task and Elsa's Bookmark pattern.
|
|
2501
|
+
* Uses same expression scope (inputs, variables, outputs, context.eval) as backend execution.
|
|
2434
2502
|
*/
|
|
2435
2503
|
private createTaskFromActivity;
|
|
2436
2504
|
/**
|
|
@@ -2446,11 +2514,16 @@ declare class AXCWorkflowEngine implements AXPWorkflowEngine {
|
|
|
2446
2514
|
* Execute backend activities locally using CommandBus.
|
|
2447
2515
|
*
|
|
2448
2516
|
* Backend activities are registered as Commands and executed via CommandService.
|
|
2449
|
-
*
|
|
2450
|
-
*
|
|
2451
|
-
*
|
|
2517
|
+
* Uses WorkflowExpressionScopeService + AXPExpressionEvaluatorService for expression
|
|
2518
|
+
* evaluation (inputs, variables, outputs, context.eval) so backend activities get the
|
|
2519
|
+
* same expression handling as the platform ActivityExecutor.
|
|
2452
2520
|
*/
|
|
2453
2521
|
private executeBackendActivityLocally;
|
|
2522
|
+
/**
|
|
2523
|
+
* Build variable updates from activity output using activity's outputToVariables (BPMN-style: activity → variable).
|
|
2524
|
+
* For each entry in activity.outputToVariables, sets variables[variableName] = output[outputPath].
|
|
2525
|
+
*/
|
|
2526
|
+
private getVariableUpdatesFromOutput;
|
|
2454
2527
|
/**
|
|
2455
2528
|
* Set variable activity - stores value in workflow state.
|
|
2456
2529
|
*/
|
|
@@ -2471,23 +2544,6 @@ declare class AXCWorkflowEngine implements AXPWorkflowEngine {
|
|
|
2471
2544
|
* @returns Bookmark ID
|
|
2472
2545
|
*/
|
|
2473
2546
|
private createBookmark;
|
|
2474
|
-
/**
|
|
2475
|
-
* Create a work item from a bookmark (only for human-task activities).
|
|
2476
|
-
*
|
|
2477
|
-
* @param instanceId - Workflow instance ID
|
|
2478
|
-
* @param activityId - Activity ID
|
|
2479
|
-
* @param bookmarkId - Bookmark ID
|
|
2480
|
-
* @param activityDef - Activity definition (optional, for title)
|
|
2481
|
-
*/
|
|
2482
|
-
private createWorkItemFromBookmark;
|
|
2483
|
-
/**
|
|
2484
|
-
* Update work items entity reference after entity is created.
|
|
2485
|
-
*/
|
|
2486
|
-
private updateWorkItemsEntityRef;
|
|
2487
|
-
/**
|
|
2488
|
-
* Update work item assignee from entity data (e.g., employee.manager.userId for leave requests).
|
|
2489
|
-
*/
|
|
2490
|
-
private updateWorkItemAssigneeFromEntity;
|
|
2491
2547
|
/**
|
|
2492
2548
|
* Consume (mark as consumed) a bookmark for a workflow instance.
|
|
2493
2549
|
*
|
|
@@ -2553,19 +2609,6 @@ declare class AXCWorkflowEngine implements AXPWorkflowEngine {
|
|
|
2553
2609
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXCWorkflowEngine>;
|
|
2554
2610
|
}
|
|
2555
2611
|
|
|
2556
|
-
/**
|
|
2557
|
-
* Mock workflow definitions for testing and demonstration.
|
|
2558
|
-
*/
|
|
2559
|
-
declare const workflowDefinitionMock: AXPWorkflowDefinition[];
|
|
2560
|
-
/**
|
|
2561
|
-
* Export definitionId list for easy access
|
|
2562
|
-
*/
|
|
2563
|
-
declare const workflowDefinitionIds: {
|
|
2564
|
-
createUser: string;
|
|
2565
|
-
welcome: string;
|
|
2566
|
-
dataProcessing: string;
|
|
2567
|
-
};
|
|
2568
|
-
|
|
2569
2612
|
declare const titleInterface: AXPWidgetNode;
|
|
2570
2613
|
declare const descriptionInterface: AXPWidgetNode;
|
|
2571
2614
|
declare const versionInterface: AXPWidgetNode;
|
|
@@ -2888,5 +2931,5 @@ declare function bypassAllFilters<T extends AXPQueryRequest>(request: T): T;
|
|
|
2888
2931
|
|
|
2889
2932
|
declare const AXCMockEntityLogListener: AXPDistributedEventListenerProvider<any>;
|
|
2890
2933
|
|
|
2891
|
-
export { ACTIVITY_CATEGORIES, ACTIVITY_DEFINITIONS, APPLICATIONS, AXCActivityCategorySeeder, AXCActivityDefinitionSeeder, AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCApplicationDataSeeder, AXCApplicationManagementMockModule, AXCAssessmentManagementMockModule, AXCAssetManagementMockModule, AXCAuthMockModule, AXCCalendarDataSeeder, AXCCalendarEventDataSeeder, AXCCalendarManagementMockModule, AXCCommonMockModule, AXCContactManagementMockModule, AXCContentManagementMockModule, AXCConversationMockModule, AXCCustomerManagementMockModule, AXCDashboardManagementMockModule, AXCDataManagementMockModule, AXCDexieEntityStorageService, AXCDocumentManagementMockModule, AXCEditionDataSeeder, AXCFileStorageService, AXCFinancialCoreMockModule, AXCFormTemplateManagementMockModule, AXCGoogleStrategyMock, AXCHelpDeskMockModule, AXCHumanCapitalManagementMockModule, AXCIdentifierManagementMockModule, AXCImageCaptchaChallengeProviderMock, AXCJsaSeeder, AXCLearningManagementMockModule, AXCLocaleManagementMockModule, AXCLocationManagementMockModule, AXCLockService, AXCMeasurementCoreMockModule, AXCMeetingManagementMockModule, AXCMetaDataDefinitionDataSeeder, AXCMetadataCategorySeeder, AXCMiddlewaresModule, AXCMockCaptchaChallengeComponent, AXCMockEntityLogListener, AXCMockModule, AXCNotificationManagementMockModule, AXCOrderManagementMockModule, AXCOrganizationManagementMockModule, AXCPersonManagementMockModule, AXCPlatformManagementMockModule, AXCProcurementManagementMockModule, AXCProductCatalogMockModule, AXCProjectManagementMockModule, AXCQueryCategoryMetadataInheritanceQuery, AXCReportManagementMockModule, AXCSecurityManagementMockModule, AXCSubscriptionManagementMockModule, AXCSupplierManagementMockModule, AXCTaskManagementMockModule, AXCTenantManagementMockModule, AXCTenantSeeder, AXCTokensDataSeeder, AXCUserPassStrategyMock, AXCVersionDB, AXCVersioningService,
|
|
2892
|
-
export type { AXCBookmarkEntity, AXCBusinessUnitMockDto, AXCLeaveRequestMockDto, AXCPositionAssignmentMockDto, AXCTeamMemberMockDto, AXCTeamMemberRoleMockDto, AXCTeamMockDto, AXMTag, AXPLogRow, AXPRuleRow, AXPSeqRow, AXPVersionChange, AXPVersionEntry, AXPVersionStream, CanonicalChange, CanonicalChangeOp, CategoryMetadataInheritanceGroupResult, CategoryMetadataInheritanceQueryParams, CategoryMetadataInheritanceResult, JobDefinitionMockDto, JobLevelMockDto, MockUserPassCredentials, PersonMockData, PositionMockDto, QuestionBankItemMockDto, QuestionnaireMockDto, ResponsibilityMockDto, Task, TaskStatus, TaskTemplate, TaskType, UIDiffRow, VersionedFileInfo };
|
|
2934
|
+
export { ACTIVITY_CATEGORIES, ACTIVITY_DEFINITIONS, APPLICATIONS, AXCActivityCategorySeeder, AXCActivityDefinitionSeeder, AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCApplicationDataSeeder, AXCApplicationManagementMockModule, AXCAssessmentManagementMockModule, AXCAssetManagementMockModule, AXCAuthMockModule, AXCCalendarDataSeeder, AXCCalendarEventDataSeeder, AXCCalendarManagementMockModule, AXCCommonMockModule, AXCContactManagementMockModule, AXCContentManagementMockModule, AXCConversationMockModule, AXCCustomerManagementMockModule, AXCDashboardManagementMockModule, AXCDataManagementMockModule, AXCDexieEntityStorageService, AXCDocumentManagementMockModule, AXCEditionDataSeeder, AXCEquipmentCategorySeeder, AXCEquipmentSeeder, AXCFileStorageService, AXCFinancialCoreMockModule, AXCFormTemplateManagementMockModule, AXCGoogleStrategyMock, AXCHelpDeskMockModule, AXCHumanCapitalManagementMockModule, AXCIdentifierManagementMockModule, AXCImageCaptchaChallengeProviderMock, AXCJsaSeeder, AXCLearningManagementMockModule, AXCLocaleManagementMockModule, AXCLocationManagementMockModule, AXCLockService, AXCMeasurementCoreMockModule, AXCMeetingManagementMockModule, AXCMetaDataDefinitionDataSeeder, AXCMetaDataDefinitionElectricityDataSeeder, AXCMetadataCategorySeeder, AXCMetadataElectricityCategorySeeder, AXCMiddlewaresModule, AXCMockCaptchaChallengeComponent, AXCMockEntityLogListener, AXCMockModule, AXCNotificationManagementMockModule, AXCOrderManagementMockModule, AXCOrganizationManagementMockModule, AXCPersonManagementMockModule, AXCPlatformManagementMockModule, AXCProcurementManagementMockModule, AXCProductCatalogMockModule, AXCProjectManagementMockModule, AXCQueryCategoryMetadataInheritanceQuery, AXCReportManagementMockModule, AXCSecurityManagementMockModule, AXCSubscriptionManagementMockModule, AXCSupplierManagementMockModule, AXCTaskManagementMockModule, AXCTenantManagementMockModule, AXCTenantSeeder, AXCTokensDataSeeder, AXCUserPassStrategyMock, AXCVersionDB, AXCVersioningService, AXCWorkflowCategorySeeder, AXCWorkflowDefinitionDataSeeder, AXCWorkflowEngine, AXCWorkflowExecutionDB, AXCWorkflowManagementMockModule, AXMAiResponderService, AXMAssessmentCaseDataSeeder, AXMAssessmentSessionDataSeeder, AXMBusinessUnitDataSeeder, AXMCalendarEventTypeSeeder, AXMEmployeeDataSeeder, AXMEmploymentTypeDataSeeder, AXMFormDataSourcesProvider, AXMJobDefinitionDataSeeder, AXMJobLevelDataSeeder, AXMLeaveRequestDataSeeder, AXMMeetingDataSeeder, AXMMeetingFilesDataSeeder, AXMMeetingParticipantDataSeeder, AXMMeetingRoleTypeDataSeeder, AXMMeetingSessionDataSeeder, AXMMeetingTypeDataSeeder, AXMMeetingTypeFileTemplateDataSeeder, AXMPositionAssignmentDataSeeder, AXMPositionDataSeeder, AXMQuestionBankItemCategoryDataSeeder, AXMQuestionBankItemDataSeeder, AXMQuestionnaireCategoryDataSeeder, AXMQuestionnaireDataSeeder, AXMResponsibilityDataSeeder, AXMTagDataSeeder, AXMTeamDataSeeder, AXMTeamMemberDataSeeder, AXMTeamMemberRoleDataSeeder, AXPDashboardDataSeeder, AXPIdentifierDB, AXPMessageDataSeeder, AXPMockChecksumProvider, AXPMockClockProvider, AXPMockIdentifierService, AXPMockLookupProvider, AXPMockPolicyProvider, AXPMockSequenceProvider, AXPRoomDataSeeder, AXPSecurityManagementRoleDataSeeder, AXPSecurityManagementUserDataSeeder, AXPTaskBoardPlatformManagementTaskProvider, AXPTaskBoardProjectManagementTaskProvider, AXVChangeType, BUSINESS_UNITS_MOCK, COSTMANAGER_ENTERPRISE, COSTMANAGER_PROFESSIONAL, COSTMANAGER_STANDARD, CRM_ENTERPRISE, DASHBOARDS, EDITIONS, EMPLOYEES_MOCK, EMPLOYMENT_TYPES_MOCK, EQUIPMENT_CATEGORY_ID, FINANCE_BASIC, FINANCE_ENTERPRISE, FINANCE_PRO, HR_ENTERPRISE, JOB_DEFINITIONS_CATEGORY_MOCK, JOB_DEFINITIONS_MOCK, JOB_LEVELS_MOCK, LASER_PLUMBING_TENANT_ID, LEAVE_REQUESTS_MOCK, METADATA_ELECTRICITY_MOCK, ORDERING_BASIC, ORDERING_ENTERPRISE, ORDERING_STANDARD, OWNERSHIP_FILTER_BYPASS, PLATFORM_CONSOLE, PLATFORM_TENANT_ID, POSITIONS_CATEGORY_MOCK, POSITIONS_MOCK, POSITION_ASSIGNMENTS_MOCK, QUESTIONNAIRE_CATEGORY_MOCK, QUESTION_BANK_ITEM_CATEGORY_MOCK, RESPONSIBILITIES_CATEGORY_MOCK, RESPONSIBILITIES_MOCK, SAFETYMINDER_BASIC, SAFETYMINDER_ENTERPRISE, SAFETYMINDER_PROFESSIONAL, SHOP_BASIC, SHOP_ENTERPRISE, SHOP_PRO, TAGS_MOCK, TASKS, TASK_STATUSES, TASK_TEMPLATES, TASK_TYPES, TEAMS_MOCK, TEAM_MEMBERS_MOCK, TEAM_MEMBER_ROLES_MOCK, TIMEPLICITY_TENANT_ID, TOKENS, VISIBILITY_FILTER_BYPASS, WORKFLOW_CATEGORIES, activityCategoryMocks, assessmentCaseMock, assessmentSessionMock, auditLoggerMiddleware, avatarInterface, axVersionDB, axWorkflowExecutionDB, bypassAllFilters, bypassOwnershipFilter, bypassVisibilityFilter, calendarEventMock, calendarEventTypeMockData, calendarMock, checkboxInterface, childCountMiddleware, colorInterface, computeDiff, contactInterface, createAndSaveDashboardForUser, createDashboardForUser, createFileCastMiddleware, dateInterface, dateTimeInterface, descriptionInterface, emailInterface, equipmentCategoryMocks, equipmentMocks, fileUploaderInterface, findEmployeeById, findPersonById, generateUserDashboard, groupOrderItemCalculatorMiddleware, historyLoggerMiddleware, identifierCommitMiddleware, imageInterface, lockGuardMiddleware, longTextAnswerInterface, lookupInterface, lookupResolverMiddleware, mapInterface, meetingFilesMock, meetingIds, meetingMock, meetingParticipantMock, meetingRoleTypeMock, meetingSessionMock, meetingTimeSlotMock, meetingTypeFileTemplateMock, meetingTypeMock, mergeDetailRelationMiddleware, metadataCategoryMocks, metadataElectricityCategoryMocks, mockRoleDefinitions, mockUsers, multipleChoiceInterface, multipleSelectInterface, normalizeAnyFileArrayForView, normalizeSnapshotFileFieldsForView, numberInterface, participantIds, passwordInterface, phoneInterface, primaryMiddleware, qrcodeInterface, questionBankItemMock, questionnaireMock, ratingInterface, richTextInterface, scaleInterface, selectInterface, selectionListInterface, signatureInterface, signatureLoaderMiddleware, tagInterface, tenantMocks, textAreaInterface, textInterface, timeDurationInterface, titleInterface, toUiRows, toggleInterface, urlInterface, versionInterface, visibilityFilterMiddleware, workflowDefinitionEntityMock, workflowDefinitionIds, workflowDefinitionMock, yesNoInterface };
|
|
2935
|
+
export type { AXCBookmarkEntity, AXCBusinessUnitMockDto, AXCLeaveRequestMockDto, AXCPositionAssignmentMockDto, AXCTeamMemberMockDto, AXCTeamMemberRoleMockDto, AXCTeamMockDto, AXMTag, AXPLogRow, AXPRuleRow, AXPSeqRow, AXPVersionChange, AXPVersionEntry, AXPVersionStream, CanonicalChange, CanonicalChangeOp, CategoryMetadataInheritanceGroupResult, CategoryMetadataInheritanceQueryParams, CategoryMetadataInheritanceResult, JobDefinitionMockDto, JobLevelMockDto, MetadataElectricityMockDto, MockUserPassCredentials, PersonMockData, PositionMockDto, QuestionBankItemMockDto, QuestionnaireMockDto, ResponsibilityMockDto, Task, TaskStatus, TaskTemplate, TaskType, UIDiffRow, VersionedFileInfo };
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/connectivity",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.13",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@acorex/modules": "21.0.0-next.
|
|
5
|
+
"@acorex/modules": "21.0.0-next.13"
|
|
6
6
|
},
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"module": "fesm2022/acorex-connectivity.mjs",
|