@acorex/connectivity 19.2.17 → 19.2.19

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.
@@ -1,2 +1,3 @@
1
1
  import { AXMDocumentManagementDocumentTypeEntityModel } from '@acorex/modules/document-management';
2
- export declare const DocumentTypeMocks: AXMDocumentManagementDocumentTypeEntityModel[];
2
+ import { Injector } from '@angular/core';
3
+ export declare function DocumentTypeMockGenerator(injector: Injector): Promise<AXMDocumentManagementDocumentTypeEntityModel[]>;
@@ -1,6 +1,7 @@
1
1
  import { AXPDataSeeder } from '@acorex/platform/layout/entity';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class AXCDocumentTypeDataSeeder implements AXPDataSeeder {
4
+ private injector;
4
5
  private storageService;
5
6
  seed(): Promise<void>;
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<AXCDocumentTypeDataSeeder, never>;
@@ -1,43 +1,3 @@
1
1
  import { AXMDocumentManagementDocumentEntityModel, AXMDocumentManagementFolderEntityModel } from '@acorex/modules/document-management';
2
- import { Injector } from '@angular/core';
3
- /**
4
- * Document Management Mock Data Service Class
5
- * Manages simulated data for document management folders and files
6
- */
7
- export declare class DocumentManagementMockDataService {
8
- private injector;
9
- /**
10
- *
11
- */
12
- constructor(injector: Injector);
13
- protected _folders: AXMDocumentManagementFolderEntityModel[];
14
- protected _files: AXMDocumentManagementDocumentEntityModel[];
15
- protected _initialized: boolean;
16
- private http;
17
- private fileStorage;
18
- /**
19
- * Access to simulated folders
20
- */
21
- get folders(): AXMDocumentManagementFolderEntityModel[];
22
- /**
23
- * Access to simulated files
24
- */
25
- get files(): AXMDocumentManagementDocumentEntityModel[];
26
- /**
27
- * Check initialization status
28
- */
29
- get isInitialized(): boolean;
30
- /**
31
- * Initialize mock data without parameters
32
- * Uses dependency injection for services
33
- */
34
- initialize(): Promise<void>;
35
- /**
36
- * Fetch file as Blob
37
- */
38
- private fetchFileAsBlob;
39
- /**
40
- * Create mock data
41
- */
42
- private createMockData;
43
- }
2
+ export declare const FOLDER_MOCK_DATA: AXMDocumentManagementFolderEntityModel[];
3
+ export declare const FILE_MOCK_DATA: AXMDocumentManagementDocumentEntityModel[];
@@ -2,7 +2,6 @@ import { AXPDataSeeder } from '@acorex/platform/layout/entity';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class AXCFolderDataSeeder implements AXPDataSeeder {
4
4
  private storageService;
5
- private injector;
6
5
  seed(): Promise<void>;
7
6
  static ɵfac: i0.ɵɵFactoryDeclaration<AXCFolderDataSeeder, never>;
8
7
  static ɵprov: i0.ɵɵInjectableDeclaration<AXCFolderDataSeeder>;
@@ -1,2 +1,3 @@
1
- import { AXMPlatformManagementMetaDataDefinitionEntityModel } from '@acorex/modules/platform-management';
1
+ import { AXMMetaDataDefinitionCategoryEntityModel, AXMPlatformManagementMetaDataDefinitionEntityModel } from '@acorex/modules/platform-management';
2
+ export declare const METADATA_CATEGORY_MOCK: AXMMetaDataDefinitionCategoryEntityModel[];
2
3
  export declare const METADATA_MOCK: AXMPlatformManagementMetaDataDefinitionEntityModel[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/connectivity",
3
- "version": "19.2.17",
3
+ "version": "19.2.19",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"