@acorex/connectivity 20.3.0-next.7 → 20.3.0-next.9
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/api/index.d.ts +13 -7
- package/fesm2022/acorex-connectivity-api-execute.command-CP4cZ_5M.mjs +86 -0
- package/fesm2022/acorex-connectivity-api-execute.command-CP4cZ_5M.mjs.map +1 -0
- package/fesm2022/acorex-connectivity-api.mjs +334 -12
- package/fesm2022/acorex-connectivity-api.mjs.map +1 -1
- package/fesm2022/acorex-connectivity-mock.mjs +2469 -392
- package/fesm2022/acorex-connectivity-mock.mjs.map +1 -1
- package/mock/index.d.ts +80 -6
- package/package.json +5 -5
package/mock/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import * as _acorex_modules_report_management from '@acorex/modules/report-manag
|
|
|
13
13
|
import { AXPReportCategoryProvider, AXPReportCategory, AXPReportDefinitionProvider, AXPReportDefinition, AXPExecutionReportCommand, AXPLayoutExecutionContext, AXPExecutionReportCommandResult } from '@acorex/modules/report-management';
|
|
14
14
|
import { AXPWorkflowTaskProvider, AXPTaskFilter, AXPTask, AXPExtraField, AXPTaskStatus } from '@acorex/platform/workflow';
|
|
15
15
|
import { AXMTextTemplateManagementTemplateEntityModel } from '@acorex/modules/text-template-management';
|
|
16
|
+
import { AXMMetaDataDefinitionEntityModel } from '@acorex/modules/data-management';
|
|
16
17
|
import { AXMCommonDashboardEntityModel } from '@acorex/modules/dashboard-management';
|
|
17
18
|
import * as _acorex_modules_calendar_management from '@acorex/modules/calendar-management';
|
|
18
19
|
import { AXMCalendarManagementCalendarEventTypeEntityModel } from '@acorex/modules/calendar-management';
|
|
@@ -276,6 +277,31 @@ declare class AXCDexieEntityStorageService extends Dexie implements AXPEntitySto
|
|
|
276
277
|
insertOne<T = any>(entityName: string, entity: T): Promise<string>;
|
|
277
278
|
getAll<T = any>(entityName: string): Promise<T[]>;
|
|
278
279
|
query<T = any>(entityName: string, request: AXPQueryRequest): Promise<AXPPagedListResult<T>>;
|
|
280
|
+
/**
|
|
281
|
+
* Check if the entity is a category entity (ends with 'Category')
|
|
282
|
+
*/
|
|
283
|
+
private isCategoryEntity;
|
|
284
|
+
/**
|
|
285
|
+
* Calculate childCount for each category entity
|
|
286
|
+
*/
|
|
287
|
+
private calculateChildCounts;
|
|
288
|
+
/**
|
|
289
|
+
* Get the count of direct children for a category
|
|
290
|
+
*/
|
|
291
|
+
private getDirectChildCount;
|
|
292
|
+
/**
|
|
293
|
+
* Check if the filter is a category filter (contains operator on categoryIds field)
|
|
294
|
+
* Handles both simple filters and compound filters
|
|
295
|
+
*/
|
|
296
|
+
private isCategoryFilter;
|
|
297
|
+
/**
|
|
298
|
+
* Apply recursive category filtering - finds entities that belong to the category or any of its children
|
|
299
|
+
*/
|
|
300
|
+
private applyRecursiveCategoryFilter;
|
|
301
|
+
/**
|
|
302
|
+
* Recursively gets all child category IDs including the parent category itself
|
|
303
|
+
*/
|
|
304
|
+
private getAllChildCategoryIds;
|
|
279
305
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCDexieEntityStorageService, never>;
|
|
280
306
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXCDexieEntityStorageService>;
|
|
281
307
|
}
|
|
@@ -453,6 +479,11 @@ interface AXCBusinessUnitMockDto {
|
|
|
453
479
|
id: string;
|
|
454
480
|
title: string;
|
|
455
481
|
} | null;
|
|
482
|
+
positionIds?: string[];
|
|
483
|
+
positions?: {
|
|
484
|
+
id: string;
|
|
485
|
+
title: string;
|
|
486
|
+
}[];
|
|
456
487
|
}
|
|
457
488
|
declare const BUSINESS_UNITS_MOCK: AXCBusinessUnitMockDto[];
|
|
458
489
|
|
|
@@ -533,7 +564,7 @@ interface PositionMockDto extends AXPCategorizedEntityDto {
|
|
|
533
564
|
}[];
|
|
534
565
|
isManager?: boolean;
|
|
535
566
|
}
|
|
536
|
-
declare const POSITIONS_CATEGORY_MOCK: AXPCategoryEntity[];
|
|
567
|
+
declare const POSITIONS_CATEGORY_MOCK: AXPCategoryEntity<string>[];
|
|
537
568
|
declare const POSITIONS_MOCK: PositionMockDto[];
|
|
538
569
|
|
|
539
570
|
declare class AXMPositionDataSeeder implements AXPDataSeeder {
|
|
@@ -563,7 +594,7 @@ interface RoleMockDto extends AXPCategorizedEntityDto {
|
|
|
563
594
|
title: string;
|
|
564
595
|
}[];
|
|
565
596
|
}
|
|
566
|
-
declare const ROLES_CATEGORY_MOCK: AXPCategoryEntity[];
|
|
597
|
+
declare const ROLES_CATEGORY_MOCK: AXPCategoryEntity<string>[];
|
|
567
598
|
declare const ROLES_MOCK: RoleMockDto[];
|
|
568
599
|
|
|
569
600
|
declare class AXMRoleDataSeeder implements AXPDataSeeder {
|
|
@@ -583,7 +614,7 @@ interface ResponsibilityMockDto extends AXPCategorizedEntityDto {
|
|
|
583
614
|
title: string;
|
|
584
615
|
}[];
|
|
585
616
|
}
|
|
586
|
-
declare const RESPONSIBILITIES_CATEGORY_MOCK: AXPCategoryEntity[];
|
|
617
|
+
declare const RESPONSIBILITIES_CATEGORY_MOCK: AXPCategoryEntity<string>[];
|
|
587
618
|
declare const RESPONSIBILITIES_MOCK: ResponsibilityMockDto[];
|
|
588
619
|
|
|
589
620
|
declare class AXMResponsibilityDataSeeder implements AXPDataSeeder {
|
|
@@ -632,7 +663,7 @@ interface SkillMockDto extends AXPCategorizedEntityDto {
|
|
|
632
663
|
title: string;
|
|
633
664
|
}[];
|
|
634
665
|
}
|
|
635
|
-
declare const SKILLS_CATEGORY_MOCK: AXPCategoryEntity[];
|
|
666
|
+
declare const SKILLS_CATEGORY_MOCK: AXPCategoryEntity<string>[];
|
|
636
667
|
declare const SKILLS_MOCK: SkillMockDto[];
|
|
637
668
|
|
|
638
669
|
declare class AXMSkillDataSeeder implements AXPDataSeeder {
|
|
@@ -1070,6 +1101,22 @@ declare class AXCMetaDataDefinitionDataSeeder implements AXPDataSeeder {
|
|
|
1070
1101
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXCMetaDataDefinitionDataSeeder>;
|
|
1071
1102
|
}
|
|
1072
1103
|
|
|
1104
|
+
interface CategoryMetadataInheritanceQueryParams {
|
|
1105
|
+
entityName: string;
|
|
1106
|
+
categoryId: string;
|
|
1107
|
+
}
|
|
1108
|
+
type CategoryMetadataInheritanceResult = AXMMetaDataDefinitionEntityModel[];
|
|
1109
|
+
declare class AXCQueryCategoryMetadataInheritanceQuery implements AXPQuery<CategoryMetadataInheritanceQueryParams, CategoryMetadataInheritanceResult> {
|
|
1110
|
+
private injector;
|
|
1111
|
+
private metaDataService;
|
|
1112
|
+
fetch(params: CategoryMetadataInheritanceQueryParams): Promise<CategoryMetadataInheritanceResult>;
|
|
1113
|
+
private findCategoryById;
|
|
1114
|
+
private buildCategoryHierarchy;
|
|
1115
|
+
private collectInheritedMetadata;
|
|
1116
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCQueryCategoryMetadataInheritanceQuery, never>;
|
|
1117
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCQueryCategoryMetadataInheritanceQuery>;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1073
1120
|
declare function generateUserDashboard(user: (typeof mockUsers)[0]): AXMCommonDashboardEntityModel;
|
|
1074
1121
|
declare function createDashboardForUser(dashboardName: string, userId: string, widgetTypesInput: string[]): AXMCommonDashboardEntityModel;
|
|
1075
1122
|
declare function createAndSaveDashboardForUser(params: {
|
|
@@ -1620,6 +1667,29 @@ declare class AXCFileStorageService implements AXPFileStorageService {
|
|
|
1620
1667
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXCFileStorageService>;
|
|
1621
1668
|
}
|
|
1622
1669
|
|
|
1670
|
+
declare class AXCLogReportCategoryProvider implements AXPReportCategoryProvider {
|
|
1671
|
+
getList(parentId?: string): Promise<AXPReportCategory[]>;
|
|
1672
|
+
getById(id: string): Promise<AXPReportCategory | undefined>;
|
|
1673
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCLogReportCategoryProvider, never>;
|
|
1674
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCLogReportCategoryProvider>;
|
|
1675
|
+
}
|
|
1676
|
+
declare class AXCLogReportDefinitionProvider implements AXPReportDefinitionProvider {
|
|
1677
|
+
getList(categoryId: string): Promise<AXPReportDefinition[]>;
|
|
1678
|
+
getById(id: string): Promise<AXPReportDefinition | undefined>;
|
|
1679
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCLogReportDefinitionProvider, never>;
|
|
1680
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCLogReportDefinitionProvider>;
|
|
1681
|
+
}
|
|
1682
|
+
declare const AXC_LOG_REPORT_CATEGORY_PROVIDER: {
|
|
1683
|
+
provide: i0.InjectionToken<_acorex_modules_report_management.AXPReportCategoryProviderToken[]>;
|
|
1684
|
+
useClass: typeof AXCLogReportCategoryProvider;
|
|
1685
|
+
multi: boolean;
|
|
1686
|
+
};
|
|
1687
|
+
declare const AXC_LOG_REPORT_DEFINITION_PROVIDER: {
|
|
1688
|
+
provide: i0.InjectionToken<_acorex_modules_report_management.AXPReportDefinitionProviderToken[]>;
|
|
1689
|
+
useClass: typeof AXCLogReportDefinitionProvider;
|
|
1690
|
+
multi: boolean;
|
|
1691
|
+
};
|
|
1692
|
+
|
|
1623
1693
|
interface AXPRuleRow extends AXPIdentifierRule {
|
|
1624
1694
|
}
|
|
1625
1695
|
interface AXPSeqRow {
|
|
@@ -1701,6 +1771,8 @@ declare class AXPMockIdentifierService extends AXPIdentifierService {
|
|
|
1701
1771
|
|
|
1702
1772
|
declare const auditLoggerMiddleware: AXPEntityStorageMiddleware;
|
|
1703
1773
|
|
|
1774
|
+
declare const childCountMiddleware: AXPEntityStorageMiddleware;
|
|
1775
|
+
|
|
1704
1776
|
/**
|
|
1705
1777
|
* File Cast Middleware - Handles file operations in entity storage
|
|
1706
1778
|
*
|
|
@@ -1725,7 +1797,9 @@ declare const identifierCommitMiddleware: AXPEntityStorageMiddleware;
|
|
|
1725
1797
|
|
|
1726
1798
|
declare const mergeDetailRelationMiddleware: AXPEntityStorageMiddleware;
|
|
1727
1799
|
|
|
1800
|
+
declare const primaryMiddleware: AXPEntityStorageMiddleware;
|
|
1801
|
+
|
|
1728
1802
|
declare const AXCMockEntityLogListener: AXPDistributedEventListenerProvider<any>;
|
|
1729
1803
|
|
|
1730
|
-
export { APPLICATIONS, APPLICATIONS_MODULES, AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCApplicationManagementMockModule, AXCApplicationTemplateDataSeeder, AXCAuthMockModule, AXCCalendarDataSeeder, AXCCalendarEventDataSeeder, AXCCalendarManagementMockModule, AXCCommonMockModule, AXCContactManagementMockModule, AXCContentManagementMockModule, AXCConversationMockModule, AXCCustomerManagementMockModule, AXCDashboardManagementMockModule, AXCDataManagementMockModule, AXCDexieEntityStorageService, AXCDocumentManagementMockModule, AXCFileStorageService, AXCFormTemplateManagementMockModule, AXCGlobalVariablesDataSeeder, AXCGoogleStrategyMock, AXCHelpDeskMockModule, AXCHumanCapitalManagementMockModule, AXCIdentifierManagementMockModule, AXCJsaSeeder, AXCLocaleManagementMockModule, AXCLocationManagementMockModule, AXCLockService, AXCLogManagementMockModule, AXCMeetingManagementMockModule, AXCMetaDataDefinitionDataSeeder, AXCMiddlewaresModule, AXCMockEntityLogListener, AXCMockModule, AXCNotificationManagementMockModule, AXCOrganizationManagementMockModule, AXCPartyManagementMockModule, AXCPlatformManagementMockModule, AXCProjectManagementMockModule, AXCReportManagementMockModule, AXCSchedulerJobDataSeeder, AXCSchedulerJobManagementMockModule, AXCSecurityManagementMockModule, AXCTaskManagementMockModule, AXCTextTemplateCategoryDataSeeder, AXCTextTemplateDataSeeder, AXCTextTemplateManagementMockModule, AXCTrainingManagementMockModule, AXCUserPassStrategyMock, AXCWorkflowManagementMockModule, 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, BUSINESS_UNITS_MOCK, DASHBOARDS, EDITIONS, EMPLOYEES_MOCK, EMPLOYEE_SKILLS_MOCK, EMPLOYMENT_TYPES_MOCK, ENTITIES, FEATURES, GLOBAL_VARIABLES, LEAVE_REQUESTS_MOCK, MODULES, PERMISSIONS, POSITIONS_CATEGORY_MOCK, POSITIONS_MOCK, POSITION_ASSIGNMENTS_MOCK, PROPERTIES, 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, applications, auditLoggerMiddleware, calendarEventMock, calendarEventTypeMockData, calendarMock, createAndSaveDashboardForUser, createDashboardForUser, createFileCastMiddleware, findContactMethod, findEmployeeById, findPartyById, generateUserDashboard, identifierCommitMiddleware, meetingFilesMock, meetingIds, meetingMock, meetingParticipantMock, meetingRoleTypeMock, meetingSessionMock, meetingTimeSlotMock, meetingTypeFileTemplateMock, meetingTypeMock, mergeDetailRelationMiddleware, mockRoleDefinitions, mockUsers, participantIds, tenantsMock };
|
|
1731
|
-
export type { AXCBusinessUnitMockDto, AXCEmployeeSkillMockDto, AXCLeaveRequestMockDto, AXCPositionAssignmentMockDto, AXCSkillLevelMockDto, AXCTeamMockDto, AXPLogRow, AXPRuleRow, AXPSeqRow, MockUserPassCredentials, PartyMockData, PositionMockDto, ResponsibilityMockDto, RoleMockDto, SkillMockDto, Task, TaskStatus, TaskTemplate, TaskType };
|
|
1804
|
+
export { APPLICATIONS, APPLICATIONS_MODULES, AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCApplicationManagementMockModule, AXCApplicationTemplateDataSeeder, AXCAuthMockModule, AXCCalendarDataSeeder, AXCCalendarEventDataSeeder, AXCCalendarManagementMockModule, AXCCommonMockModule, AXCContactManagementMockModule, AXCContentManagementMockModule, AXCConversationMockModule, AXCCustomerManagementMockModule, AXCDashboardManagementMockModule, AXCDataManagementMockModule, AXCDexieEntityStorageService, AXCDocumentManagementMockModule, AXCFileStorageService, AXCFormTemplateManagementMockModule, AXCGlobalVariablesDataSeeder, AXCGoogleStrategyMock, AXCHelpDeskMockModule, AXCHumanCapitalManagementMockModule, AXCIdentifierManagementMockModule, AXCJsaSeeder, AXCLocaleManagementMockModule, AXCLocationManagementMockModule, AXCLockService, AXCLogManagementMockModule, AXCLogReportCategoryProvider, AXCLogReportDefinitionProvider, AXCMeetingManagementMockModule, AXCMetaDataDefinitionDataSeeder, AXCMiddlewaresModule, AXCMockEntityLogListener, AXCMockModule, AXCNotificationManagementMockModule, AXCOrganizationManagementMockModule, AXCPartyManagementMockModule, AXCPlatformManagementMockModule, AXCProjectManagementMockModule, AXCQueryCategoryMetadataInheritanceQuery, AXCReportManagementMockModule, AXCSchedulerJobDataSeeder, AXCSchedulerJobManagementMockModule, AXCSecurityManagementMockModule, AXCTaskManagementMockModule, AXCTextTemplateCategoryDataSeeder, AXCTextTemplateDataSeeder, AXCTextTemplateManagementMockModule, AXCTrainingManagementMockModule, AXCUserPassStrategyMock, 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, BUSINESS_UNITS_MOCK, DASHBOARDS, EDITIONS, EMPLOYEES_MOCK, EMPLOYEE_SKILLS_MOCK, EMPLOYMENT_TYPES_MOCK, ENTITIES, FEATURES, GLOBAL_VARIABLES, LEAVE_REQUESTS_MOCK, MODULES, PERMISSIONS, POSITIONS_CATEGORY_MOCK, POSITIONS_MOCK, POSITION_ASSIGNMENTS_MOCK, PROPERTIES, 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, applications, auditLoggerMiddleware, calendarEventMock, calendarEventTypeMockData, calendarMock, childCountMiddleware, createAndSaveDashboardForUser, createDashboardForUser, createFileCastMiddleware, findContactMethod, findEmployeeById, findPartyById, generateUserDashboard, identifierCommitMiddleware, meetingFilesMock, meetingIds, meetingMock, meetingParticipantMock, meetingRoleTypeMock, meetingSessionMock, meetingTimeSlotMock, meetingTypeFileTemplateMock, meetingTypeMock, mergeDetailRelationMiddleware, mockRoleDefinitions, mockUsers, participantIds, primaryMiddleware, tenantsMock };
|
|
1805
|
+
export type { AXCBusinessUnitMockDto, AXCEmployeeSkillMockDto, AXCLeaveRequestMockDto, AXCPositionAssignmentMockDto, AXCSkillLevelMockDto, AXCTeamMockDto, AXPLogRow, AXPRuleRow, AXPSeqRow, CategoryMetadataInheritanceQueryParams, CategoryMetadataInheritanceResult, MockUserPassCredentials, PartyMockData, PositionMockDto, ResponsibilityMockDto, RoleMockDto, SkillMockDto, Task, TaskStatus, TaskTemplate, TaskType };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/connectivity",
|
|
3
|
-
"version": "20.3.0-next.
|
|
3
|
+
"version": "20.3.0-next.9",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@acorex/modules": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -15,10 +15,6 @@
|
|
|
15
15
|
"types": "./index.d.ts",
|
|
16
16
|
"default": "./fesm2022/acorex-connectivity.mjs"
|
|
17
17
|
},
|
|
18
|
-
"./api": {
|
|
19
|
-
"types": "./api/index.d.ts",
|
|
20
|
-
"default": "./fesm2022/acorex-connectivity-api.mjs"
|
|
21
|
-
},
|
|
22
18
|
"./mock": {
|
|
23
19
|
"types": "./mock/index.d.ts",
|
|
24
20
|
"default": "./fesm2022/acorex-connectivity-mock.mjs"
|
|
@@ -26,6 +22,10 @@
|
|
|
26
22
|
"./utils": {
|
|
27
23
|
"types": "./utils/index.d.ts",
|
|
28
24
|
"default": "./fesm2022/acorex-connectivity-utils.mjs"
|
|
25
|
+
},
|
|
26
|
+
"./api": {
|
|
27
|
+
"types": "./api/index.d.ts",
|
|
28
|
+
"default": "./fesm2022/acorex-connectivity-api.mjs"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|