@acorex/connectivity 20.0.11 → 20.0.12
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
@@ -3,9 +3,11 @@ import { AXPQueryRequest, AXPPagedListResult, AXPAppStartUpService } from '@acor
|
|
3
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
|
-
import { AXPLockService, AXPFileStorageService, AXPFileStorageCreateRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileStorageFindRequest } from '@acorex/platform/common';
|
6
|
+
import { AXPLockService, AXPFileStorageService, AXPFileStorageCreateRequest, AXPFileStorageInfo, AXPFileStorageUpdateRequest, AXPFileStorageFindRequest, AXPReportCategory, AXPReportDefinition } from '@acorex/platform/common';
|
7
7
|
import * as i0 from '@angular/core';
|
8
8
|
import { Injector } from '@angular/core';
|
9
|
+
import { AXMCommonDashboardEntityModel } from '@acorex/modules/dashboard-management';
|
10
|
+
import { AXMTextTemplateManagementTemplateEntityModel } from '@acorex/modules/text-template-management';
|
9
11
|
|
10
12
|
declare class AXPDexieEntityStorageService extends Dexie implements AXPEntityStorageService<string, any> {
|
11
13
|
protected sessionService: AXPSessionService;
|
@@ -217,5 +219,164 @@ declare class AXCFileStorageService implements AXPFileStorageService {
|
|
217
219
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXCFileStorageService>;
|
218
220
|
}
|
219
221
|
|
220
|
-
|
222
|
+
declare const APPLICATIONS: {
|
223
|
+
id: string;
|
224
|
+
name: string;
|
225
|
+
title: string;
|
226
|
+
isArchived: boolean;
|
227
|
+
}[];
|
228
|
+
declare const MODULES: {
|
229
|
+
id: string;
|
230
|
+
name: string;
|
231
|
+
title: string;
|
232
|
+
isArchived: boolean;
|
233
|
+
}[];
|
234
|
+
declare const APPLICATIONS_MODULES: {
|
235
|
+
id: string;
|
236
|
+
application: {
|
237
|
+
id: string;
|
238
|
+
name: string;
|
239
|
+
title: string;
|
240
|
+
isArchived: boolean;
|
241
|
+
};
|
242
|
+
module: {
|
243
|
+
id: string;
|
244
|
+
name: string;
|
245
|
+
title: string;
|
246
|
+
isArchived: boolean;
|
247
|
+
};
|
248
|
+
}[];
|
249
|
+
declare const EDITIONS: {
|
250
|
+
id: string;
|
251
|
+
application: {
|
252
|
+
id: string;
|
253
|
+
name: string;
|
254
|
+
title: string;
|
255
|
+
isArchived: boolean;
|
256
|
+
};
|
257
|
+
name: string;
|
258
|
+
title: string;
|
259
|
+
isArchived: boolean;
|
260
|
+
}[];
|
261
|
+
declare const FEATURES: {
|
262
|
+
id: string;
|
263
|
+
moduleId: string;
|
264
|
+
name: string;
|
265
|
+
title: string;
|
266
|
+
isArchived: boolean;
|
267
|
+
}[];
|
268
|
+
declare const ENTITIES: {
|
269
|
+
id: string;
|
270
|
+
moduleId: string;
|
271
|
+
name: string;
|
272
|
+
title: string;
|
273
|
+
isArchived: boolean;
|
274
|
+
}[];
|
275
|
+
declare const PERMISSIONS: {
|
276
|
+
id: string;
|
277
|
+
moduleId: string;
|
278
|
+
name: string;
|
279
|
+
title: string;
|
280
|
+
isArchived: boolean;
|
281
|
+
}[];
|
282
|
+
declare const PROPERTIES: {
|
283
|
+
id: string;
|
284
|
+
entityId: string;
|
285
|
+
name: string;
|
286
|
+
title: string;
|
287
|
+
path: string;
|
288
|
+
}[];
|
289
|
+
|
290
|
+
declare class AXCApplicationTemplateDataSeeder implements AXPDataSeeder {
|
291
|
+
private storageService;
|
292
|
+
seed(): Promise<void>;
|
293
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCApplicationTemplateDataSeeder, never>;
|
294
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCApplicationTemplateDataSeeder>;
|
295
|
+
}
|
296
|
+
|
297
|
+
declare class AXCCommonMockModule {
|
298
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCCommonMockModule, never>;
|
299
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXCCommonMockModule, never, never, never>;
|
300
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXCCommonMockModule>;
|
301
|
+
}
|
302
|
+
|
303
|
+
declare class AXMAiResponderService {
|
304
|
+
private readonly geminiApiKey;
|
305
|
+
getAIResponse(prompt: string): Promise<string>;
|
306
|
+
private getRandomReply;
|
307
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMAiResponderService, never>;
|
308
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMAiResponderService>;
|
309
|
+
}
|
310
|
+
|
311
|
+
declare class AXPMessageDataSeeder implements AXPDataSeeder {
|
312
|
+
private storageService;
|
313
|
+
private chatService;
|
314
|
+
private commentService;
|
315
|
+
private aiResponderService;
|
316
|
+
private usersService;
|
317
|
+
private sessionService;
|
318
|
+
private userNameCache;
|
319
|
+
private getUserName;
|
320
|
+
seed(): Promise<void>;
|
321
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPMessageDataSeeder, never>;
|
322
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPMessageDataSeeder>;
|
323
|
+
}
|
324
|
+
|
325
|
+
declare class AXPRoomDataSeeder implements AXPDataSeeder {
|
326
|
+
private storageService;
|
327
|
+
seed(): Promise<void>;
|
328
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPRoomDataSeeder, never>;
|
329
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPRoomDataSeeder>;
|
330
|
+
}
|
331
|
+
|
332
|
+
declare function generateRandomDashboard(): AXMCommonDashboardEntityModel;
|
333
|
+
declare const DASHBOARDS: AXMCommonDashboardEntityModel[];
|
334
|
+
|
335
|
+
declare class AXPDashboardDataSeeder implements AXPDataSeeder {
|
336
|
+
private storageService;
|
337
|
+
seed(): Promise<void>;
|
338
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPDashboardDataSeeder, never>;
|
339
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPDashboardDataSeeder>;
|
340
|
+
}
|
341
|
+
|
342
|
+
declare const REPORT_CATEGORIES: AXPReportCategory[];
|
343
|
+
declare const REPORT_DEFINITIONS: AXPReportDefinition[];
|
344
|
+
declare const CATEGORY_REPORT_MAPPING: Map<string, AXPReportDefinition[]>;
|
345
|
+
|
346
|
+
declare class AXPReportManagementDataSeeder implements AXPDataSeeder {
|
347
|
+
private storageService;
|
348
|
+
seed(): Promise<void>;
|
349
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPReportManagementDataSeeder, never>;
|
350
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPReportManagementDataSeeder>;
|
351
|
+
}
|
352
|
+
|
353
|
+
declare class AXCSchedulerJobDataSeeder implements AXPDataSeeder {
|
354
|
+
private storageService;
|
355
|
+
seed(): Promise<void>;
|
356
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCSchedulerJobDataSeeder, never>;
|
357
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCSchedulerJobDataSeeder>;
|
358
|
+
}
|
359
|
+
|
360
|
+
declare class AXCTextTemplateCategoryDataSeeder implements AXPDataSeeder {
|
361
|
+
private storageService;
|
362
|
+
seed(): Promise<void>;
|
363
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCTextTemplateCategoryDataSeeder, never>;
|
364
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCTextTemplateCategoryDataSeeder>;
|
365
|
+
}
|
366
|
+
|
367
|
+
declare class AXCTextTemplateDataSeeder implements AXPDataSeeder {
|
368
|
+
private storageService;
|
369
|
+
seed(): Promise<void>;
|
370
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCTextTemplateDataSeeder, never>;
|
371
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXCTextTemplateDataSeeder>;
|
372
|
+
}
|
373
|
+
|
374
|
+
declare const TEXT_TEMPLATE_CATEGORY: {
|
375
|
+
id: string;
|
376
|
+
name: string;
|
377
|
+
title: string;
|
378
|
+
}[];
|
379
|
+
declare const TEXT_TEMPLATES: AXMTextTemplateManagementTemplateEntityModel[];
|
380
|
+
|
381
|
+
export { APPLICATIONS, APPLICATIONS_MODULES, AXCAppTermDataSeeder, AXCAppVersionDataSeeder, AXCApplicationManagementMockModule, AXCApplicationTemplateDataSeeder, AXCAuthMockModule, AXCCommonMockModule, AXCContactManagementMockModule, AXCConversationMockModule, AXCDashboardManagementMockModule, AXCDataManagementMockModule, AXCDocumentManagementMockModule, AXCFOrganizationManagementMockModule, AXCFileStorageService, AXCFormTemplateManagementMockModule, AXCGlobalVariablesDataSeeder, AXCIssueManagementMockModule, AXCLogManagementMockModule, AXCMetaDataDefinitionDataSeeder, AXCMockModule, AXCNotificationManagementMockModule, AXCPlatformManagementMockModule, AXCProjectManagementMockModule, AXCReportManagementMockModule, AXCSchedulerJobDataSeeder, AXCSchedulerJobManagementMockModule, AXCTextTemplateCategoryDataSeeder, AXCTextTemplateDataSeeder, AXCTextTemplateManagementMockModule, AXCTrainingManagementMockModule, AXMAiResponderService, AXPDashboardDataSeeder, AXPDexieEntityStorageService, AXPMessageDataSeeder, AXPReportManagementDataSeeder, AXPRoomDataSeeder, CATEGORY_REPORT_MAPPING, DASHBOARDS, EDITIONS, ENTITIES, FEATURES, GLOBAL_VARIABLES, MOCKStrategy, MODULES, PERMISSIONS, PROPERTIES, REPORT_CATEGORIES, REPORT_DEFINITIONS, TEXT_TEMPLATES, TEXT_TEMPLATE_CATEGORY, generateRandomDashboard };
|
221
382
|
export type { MockUserPassCredentials };
|