@acorex/connectivity 20.0.9 → 20.0.10
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/mock/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import Dexie from 'dexie';
|
2
2
|
import { AXPQueryRequest, AXPPagedListResult, AXPAppStartUpService } from '@acorex/platform/core';
|
3
|
-
import { AXPEntityStorageService, AXPEntityDefinitionRegistryService } from '@acorex/platform/layout/entity';
|
3
|
+
import { AXPEntityStorageService, AXPEntityDefinitionRegistryService, AXPDataSeeder } from '@acorex/platform/layout/entity';
|
4
4
|
import * as i1 from '@acorex/platform/auth';
|
5
5
|
import { AXPSessionService, AXPBaseCredentials, AXPAuthStrategy, AXPSignInResult, AXPSessionContext, AXPRefreshTokenResult } from '@acorex/platform/auth';
|
6
6
|
import { AXPLockService, AXPFileStorageService, AXPFileStorageCreateRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileStorageFindRequest } from '@acorex/platform/common';
|
@@ -136,10 +136,16 @@ declare class AXCLogManagementMockModule {
|
|
136
136
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXCLogManagementMockModule>;
|
137
137
|
}
|
138
138
|
|
139
|
+
declare class AXCDataManagementMockModule {
|
140
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCDataManagementMockModule, never>;
|
141
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXCDataManagementMockModule, never, never, never>;
|
142
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXCDataManagementMockModule>;
|
143
|
+
}
|
144
|
+
|
139
145
|
declare class AXCMockModule {
|
140
146
|
constructor(appInitService: AXPAppStartUpService, injector: Injector);
|
141
147
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCMockModule, never>;
|
142
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXCMockModule, never, [typeof i1.AXPAuthModule, typeof AXCFormTemplateManagementMockModule, typeof AXCFOrganizationManagementMockModule, typeof AXCReportManagementMockModule, typeof AXCContactManagementMockModule, typeof AXCDashboardManagementMockModule, typeof AXCConversationMockModule, typeof AXCAuthMockModule, typeof AXCPlatformManagementMockModule, typeof AXCTextTemplateManagementMockModule, typeof AXCSecurityManagementMockModule, typeof AXCSchedulerJobManagementMockModule, typeof AXCNotificationManagementMockModule, typeof AXCApplicationManagementMockModule, typeof AXCTrainingManagementMockModule, typeof AXCProjectManagementMockModule, typeof AXCDocumentManagementMockModule, typeof AXCIssueManagementMockModule, typeof AXCLogManagementMockModule], never>;
|
148
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXCMockModule, never, [typeof i1.AXPAuthModule, typeof AXCFormTemplateManagementMockModule, typeof AXCFOrganizationManagementMockModule, typeof AXCReportManagementMockModule, typeof AXCContactManagementMockModule, typeof AXCDashboardManagementMockModule, typeof AXCConversationMockModule, typeof AXCAuthMockModule, typeof AXCPlatformManagementMockModule, typeof AXCTextTemplateManagementMockModule, typeof AXCSecurityManagementMockModule, typeof AXCSchedulerJobManagementMockModule, typeof AXCNotificationManagementMockModule, typeof AXCApplicationManagementMockModule, typeof AXCTrainingManagementMockModule, typeof AXCProjectManagementMockModule, typeof AXCDocumentManagementMockModule, typeof AXCIssueManagementMockModule, typeof AXCLogManagementMockModule, typeof AXCDataManagementMockModule], never>;
|
143
149
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXCMockModule>;
|
144
150
|
}
|
145
151
|
|
@@ -158,6 +164,42 @@ declare class MOCKStrategy implements AXPAuthStrategy {
|
|
158
164
|
static ɵprov: i0.ɵɵInjectableDeclaration<MOCKStrategy>;
|
159
165
|
}
|
160
166
|
|
167
|
+
declare class AXCAppTermDataSeeder implements AXPDataSeeder {
|
168
|
+
private storageService;
|
169
|
+
seed(): Promise<void>;
|
170
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCAppTermDataSeeder, never>;
|
171
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCAppTermDataSeeder>;
|
172
|
+
}
|
173
|
+
|
174
|
+
declare class AXCAppVersionDataSeeder implements AXPDataSeeder {
|
175
|
+
private storageService;
|
176
|
+
seed(): Promise<void>;
|
177
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCAppVersionDataSeeder, never>;
|
178
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCAppVersionDataSeeder>;
|
179
|
+
}
|
180
|
+
|
181
|
+
declare class AXCGlobalVariablesDataSeeder implements AXPDataSeeder {
|
182
|
+
private storageService;
|
183
|
+
seed(): Promise<void>;
|
184
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCGlobalVariablesDataSeeder, never>;
|
185
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCGlobalVariablesDataSeeder>;
|
186
|
+
}
|
187
|
+
|
188
|
+
declare const GLOBAL_VARIABLES: {
|
189
|
+
id: string;
|
190
|
+
name: string;
|
191
|
+
title: string;
|
192
|
+
dataType: string;
|
193
|
+
value: string;
|
194
|
+
}[];
|
195
|
+
|
196
|
+
declare class AXCMetaDataDefinitionDataSeeder implements AXPDataSeeder {
|
197
|
+
private storageService;
|
198
|
+
seed(): Promise<void>;
|
199
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCMetaDataDefinitionDataSeeder, never>;
|
200
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCMetaDataDefinitionDataSeeder>;
|
201
|
+
}
|
202
|
+
|
161
203
|
declare class AXCFileStorageService implements AXPFileStorageService {
|
162
204
|
private fileService;
|
163
205
|
private mapToFileStorageInfo;
|
@@ -175,5 +217,5 @@ declare class AXCFileStorageService implements AXPFileStorageService {
|
|
175
217
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXCFileStorageService>;
|
176
218
|
}
|
177
219
|
|
178
|
-
export { AXCFileStorageService, AXCMockModule, AXPDexieEntityStorageService, MOCKStrategy };
|
220
|
+
export { AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCFileStorageService, AXCGlobalVariablesDataSeeder, AXCMetaDataDefinitionDataSeeder, AXCMockModule, AXPDexieEntityStorageService, GLOBAL_VARIABLES, MOCKStrategy };
|
179
221
|
export type { MockUserPassCredentials };
|