@acorex/connectivity 20.6.0-next.6 → 20.6.0-next.7

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 CHANGED
@@ -9,6 +9,8 @@ import { AXPApplicationLoader, AXPApplication, AXPFeatureLoader, AXPFeature, AXP
9
9
  import * as i3 from '@acorex/connectivity/utils';
10
10
  import * as i1 from '@acorex/platform/runtime';
11
11
  import { Observable } from 'rxjs';
12
+ import * as _acorex_modules_report_management from '@acorex/modules/report-management';
13
+ import { AXPReportCategoryProvider, AXPReportCategory, AXPReportDefinitionProvider, AXPReportDefinition } from '@acorex/modules/report-management';
12
14
 
13
15
  declare class AXCApiEntityStorageService implements AXPEntityStorageService<string, any> {
14
16
  private http;
@@ -234,5 +236,192 @@ declare class APIGoogleStrategy extends AXPAuthStrategy {
234
236
  static ɵprov: i0.ɵɵInjectableDeclaration<APIGoogleStrategy>;
235
237
  }
236
238
 
237
- export { APIGoogleStrategy, AXCAPIOidcStrategy, AXCApiEntityStorageService, AXCApiModule, AXCReportManagementApiModule, AXMConfigurationService, AXMOidcApplicationLoader, AXMOidcFeatureLoader, AXMOidcPermissionLoader, AXMOidcTenantLoader };
238
- export type { AXPOAuthExternalCredentials, AXPUserPassCredentials, ApplicationConfiguration, Auth, Culture, IAuthenticationDataModel, Language, Localization, NameValue, Resource };
239
+ /**
240
+ * Execute Report DTO - Response from report execution API
241
+ */
242
+ interface AXPExecuteReportDto {
243
+ type: string;
244
+ items: Record<string, unknown>[];
245
+ totalCount: number;
246
+ }
247
+ /**
248
+ * API Response for Category endpoint
249
+ * Used by: GET /api/v1/global/report-management/category
250
+ * GET /api/v1/global/report-management/category/{parentId}
251
+ */
252
+ interface AXCReportCategoryApiResponse {
253
+ totalCount: number;
254
+ items: AXCReportCategoryApiItem[];
255
+ }
256
+ /**
257
+ * Category Item with recursive structure
258
+ * Each category can contain child categories (folderItems) and reports (reportDefinitionItems)
259
+ */
260
+ interface AXCReportCategoryApiItem {
261
+ reportCategoryParentId: string | null;
262
+ name: string;
263
+ title: string;
264
+ description: string | null;
265
+ folderCount: number;
266
+ itemCount: number;
267
+ isArchived: boolean;
268
+ reportDefinitionItems: AXCReportDefinitionApiItem[];
269
+ folderItems: AXCReportCategoryApiItem[];
270
+ id: string;
271
+ }
272
+ /**
273
+ * Report Definition Item (in category list, without full layout)
274
+ */
275
+ interface AXCReportDefinitionApiItem {
276
+ categoryIds: string[];
277
+ name: string;
278
+ title: string;
279
+ description: string | null;
280
+ isArchived: boolean;
281
+ id: string;
282
+ }
283
+ /**
284
+ * Full Report Definition with complete details including layouts
285
+ * Used by: GET /api/v1/global/report-management/report/{reportId}
286
+ */
287
+ interface AXCReportDefinitionApiResponse {
288
+ id: string;
289
+ name: string;
290
+ title: string;
291
+ description: string | null;
292
+ categoryIds: string[];
293
+ parameterGroups: AXCReportParameterGroup[];
294
+ layouts: AXCReportLayoutDefinition[];
295
+ defaultLayoutId: string;
296
+ }
297
+ /**
298
+ * Parameter Group for report parameters
299
+ */
300
+ interface AXCReportParameterGroup {
301
+ name: string;
302
+ title: string;
303
+ parameters: AXCReportParameter[];
304
+ }
305
+ /**
306
+ * Report Parameter definition
307
+ */
308
+ interface AXCReportParameter {
309
+ path: string;
310
+ title: string;
311
+ description?: string;
312
+ widget: {
313
+ type: string;
314
+ path?: string | null;
315
+ options?: any;
316
+ valueTransforms?: any;
317
+ };
318
+ }
319
+ /**
320
+ * Layout Definition for report display
321
+ */
322
+ interface AXCReportLayoutDefinition {
323
+ id: string;
324
+ title: string;
325
+ layout: any;
326
+ dataSource?: {
327
+ type: string;
328
+ name?: string;
329
+ provider?: string;
330
+ };
331
+ export?: {
332
+ fileNameTemplate: string;
333
+ pdf?: any;
334
+ excel?: any;
335
+ csv?: any;
336
+ };
337
+ isDefault?: boolean;
338
+ }
339
+ declare class AXCReportManagementDataService {
340
+ private readonly http;
341
+ private readonly configs;
342
+ private readonly baseUrl;
343
+ private categoryDataCache;
344
+ private rootCategoriesCache;
345
+ private pendingRequests;
346
+ private pendingRootCategoriesRequest;
347
+ /**
348
+ * Fetch root categories (no parent). Only root categories without reports and children.
349
+ * Uses cache and pending requests to avoid duplicate API calls.
350
+ */
351
+ getRootCategories(): Promise<AXCReportCategoryApiItem[]>;
352
+ /**
353
+ * Fetch category data for a given parentId.
354
+ * Returns the parent category with its FolderItems (children) and ReportDefinitionItems (reports).
355
+ * Uses cache to avoid duplicate API calls.
356
+ */
357
+ getCategoryData(parentId: string): Promise<AXCReportCategoryApiItem | undefined>;
358
+ /**
359
+ * Fetch both child categories and reports for a given parentId.
360
+ * This method ensures only one API call is made and both results are returned.
361
+ */
362
+ getCategoryChildrenAndReports(parentId: string): Promise<{
363
+ categories: AXCReportCategoryApiItem[];
364
+ reports: AXCReportDefinitionApiItem[];
365
+ }>;
366
+ /**
367
+ * Fetch child categories of a given parent.
368
+ * Uses getCategoryData to get FolderItems (children) from the parent category.
369
+ */
370
+ getChildCategories(parentId: string): Promise<AXCReportCategoryApiItem[]>;
371
+ /**
372
+ * Fetch report definitions that belong to a specific category.
373
+ * Uses getCategoryData to get ReportDefinitionItems (reports) from the category.
374
+ */
375
+ getCategoryReports(categoryId: string): Promise<AXCReportDefinitionApiItem[]>;
376
+ /**
377
+ * Fetch a single category by id.
378
+ * First checks cache, then uses getCategoryData if not found in cache.
379
+ */
380
+ getCategoryById(id: string): Promise<AXCReportCategoryApiItem | undefined>;
381
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCReportManagementDataService, never>;
382
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXCReportManagementDataService>;
383
+ }
384
+ /**
385
+ * Category provider that uses the shared data service.
386
+ * Both providers use the same dataService instance which ensures proper caching.
387
+ */
388
+ declare class AXCReportCategoryApiProvider implements AXPReportCategoryProvider {
389
+ private readonly dataService;
390
+ getList(parentId?: string): Promise<AXPReportCategory[]>;
391
+ getById(id: string): Promise<AXPReportCategory | undefined>;
392
+ private mapApiCategoryToReportCategory;
393
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCReportCategoryApiProvider, never>;
394
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXCReportCategoryApiProvider>;
395
+ }
396
+ /**
397
+ * Definition provider that uses the shared data service.
398
+ * Both providers use the same dataService instance which ensures proper caching.
399
+ */
400
+ declare class AXCReportDefinitionApiProvider implements AXPReportDefinitionProvider {
401
+ private readonly dataService;
402
+ private readonly http;
403
+ getList(categoryId: string): Promise<AXPReportDefinition[]>;
404
+ getById(id: string): Promise<AXPReportDefinition | undefined>;
405
+ private mapApiReportDefinitionItemToReportDefinition;
406
+ private mapApiReportDefinitionToReportDefinition;
407
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCReportDefinitionApiProvider, never>;
408
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXCReportDefinitionApiProvider>;
409
+ }
410
+ /**
411
+ * Both providers use the same dataService instance (which is a singleton),
412
+ * ensuring they share the same cache and only one API call is made when both
413
+ * getCategories and getReportsByCategoryId are called for the same categoryId.
414
+ */
415
+ declare const AXC_REPORT_CATEGORY_API_PROVIDER: {
416
+ provide: i0.InjectionToken<_acorex_modules_report_management.AXPReportCategoryProviderToken[]>;
417
+ useClass: typeof AXCReportCategoryApiProvider;
418
+ multi: boolean;
419
+ };
420
+ declare const AXC_REPORT_DEFINITION_API_PROVIDER: {
421
+ provide: i0.InjectionToken<_acorex_modules_report_management.AXPReportDefinitionProviderToken[]>;
422
+ useClass: typeof AXCReportDefinitionApiProvider;
423
+ multi: boolean;
424
+ };
425
+
426
+ export { APIGoogleStrategy, AXCAPIOidcStrategy, AXCApiEntityStorageService, AXCApiModule, AXCReportCategoryApiProvider, AXCReportDefinitionApiProvider, AXCReportManagementApiModule, AXCReportManagementDataService, AXC_REPORT_CATEGORY_API_PROVIDER, AXC_REPORT_DEFINITION_API_PROVIDER, AXMConfigurationService, AXMOidcApplicationLoader, AXMOidcFeatureLoader, AXMOidcPermissionLoader, AXMOidcTenantLoader };
427
+ export type { AXCReportCategoryApiItem, AXCReportCategoryApiResponse, AXCReportDefinitionApiItem, AXCReportDefinitionApiResponse, AXCReportLayoutDefinition, AXCReportParameter, AXCReportParameterGroup, AXPExecuteReportDto, AXPOAuthExternalCredentials, AXPUserPassCredentials, ApplicationConfiguration, Auth, Culture, IAuthenticationDataModel, Language, Localization, NameValue, Resource };
@@ -839,26 +839,142 @@ class AXCReportManagementDataService {
839
839
  this.http = inject(HttpClient);
840
840
  this.configs = inject(AXP_ROOT_CONFIG_TOKEN);
841
841
  this.baseUrl = this.configs.baseUrl;
842
- // Shared cache for all categories data
843
- this.allCategoriesData = [];
844
- this.dataLoaded = false;
845
- }
846
- async getAllCategoriesData() {
847
- if (!this.dataLoaded) {
848
- await this.loadAllCategories();
842
+ // Cache for category data to avoid duplicate API calls
843
+ this.categoryDataCache = new Map();
844
+ this.rootCategoriesCache = null;
845
+ this.pendingRequests = new Map();
846
+ this.pendingRootCategoriesRequest = null;
847
+ }
848
+ //#region ---- Lazy Category/Report Fetching ----
849
+ /**
850
+ * Fetch root categories (no parent). Only root categories without reports and children.
851
+ * Uses cache and pending requests to avoid duplicate API calls.
852
+ */
853
+ async getRootCategories() {
854
+ // Check if already cached
855
+ if (this.rootCategoriesCache !== null) {
856
+ return this.rootCategoriesCache;
849
857
  }
850
- return this.allCategoriesData;
851
- }
852
- async loadAllCategories() {
853
- const url = `${this.baseUrl}/v1/global/report-management/category`;
854
- const params = { Skip: 0, Take: 1000 };
855
- const response = await firstValueFrom(this.http.get(url, { params }));
856
- this.allCategoriesData = response.items;
857
- this.dataLoaded = true;
858
+ // Check if there's already a pending request
859
+ if (this.pendingRootCategoriesRequest !== null) {
860
+ return this.pendingRootCategoriesRequest;
861
+ }
862
+ // Create the request and cache it
863
+ const requestPromise = (async () => {
864
+ try {
865
+ const url = `${this.baseUrl}/v1/global/report-management/category`;
866
+ const params = { Skip: 0, Take: 1000 };
867
+ const response = await firstValueFrom(this.http.get(url, { params }));
868
+ const all = response.items ?? [];
869
+ const rootCategories = all.filter((i) => !i.reportCategoryParentId);
870
+ // Cache the result
871
+ this.rootCategoriesCache = rootCategories;
872
+ return rootCategories;
873
+ }
874
+ finally {
875
+ // Remove from pending requests after completion
876
+ this.pendingRootCategoriesRequest = null;
877
+ }
878
+ })();
879
+ this.pendingRootCategoriesRequest = requestPromise;
880
+ return requestPromise;
881
+ }
882
+ /**
883
+ * Fetch category data for a given parentId.
884
+ * Returns the parent category with its FolderItems (children) and ReportDefinitionItems (reports).
885
+ * Uses cache to avoid duplicate API calls.
886
+ */
887
+ async getCategoryData(parentId) {
888
+ // Check if already cached
889
+ if (this.categoryDataCache.has(parentId)) {
890
+ return this.categoryDataCache.get(parentId);
891
+ }
892
+ // Check if there's already a pending request for this category
893
+ if (this.pendingRequests.has(parentId)) {
894
+ return this.pendingRequests.get(parentId);
895
+ }
896
+ // Create the request and cache it
897
+ const requestPromise = (async () => {
898
+ try {
899
+ const url = `${this.baseUrl}/v1/global/report-management/category/${parentId}`;
900
+ const response = await firstValueFrom(this.http.get(url));
901
+ const categoryData = response.items?.[0];
902
+ // Cache the result
903
+ this.categoryDataCache.set(parentId, categoryData);
904
+ return categoryData;
905
+ }
906
+ catch {
907
+ const undefinedResult = undefined;
908
+ this.categoryDataCache.set(parentId, undefinedResult);
909
+ return undefinedResult;
910
+ }
911
+ finally {
912
+ // Remove from pending requests after completion
913
+ this.pendingRequests.delete(parentId);
914
+ }
915
+ })();
916
+ this.pendingRequests.set(parentId, requestPromise);
917
+ return requestPromise;
918
+ }
919
+ /**
920
+ * Fetch both child categories and reports for a given parentId.
921
+ * This method ensures only one API call is made and both results are returned.
922
+ */
923
+ async getCategoryChildrenAndReports(parentId) {
924
+ const categoryData = await this.getCategoryData(parentId);
925
+ return {
926
+ categories: categoryData?.folderItems ?? [],
927
+ reports: categoryData?.reportDefinitionItems ?? [],
928
+ };
858
929
  }
859
- clearCache() {
860
- this.allCategoriesData = [];
861
- this.dataLoaded = false;
930
+ /**
931
+ * Fetch child categories of a given parent.
932
+ * Uses getCategoryData to get FolderItems (children) from the parent category.
933
+ */
934
+ async getChildCategories(parentId) {
935
+ const categoryData = await this.getCategoryData(parentId);
936
+ return categoryData?.folderItems ?? [];
937
+ }
938
+ /**
939
+ * Fetch report definitions that belong to a specific category.
940
+ * Uses getCategoryData to get ReportDefinitionItems (reports) from the category.
941
+ */
942
+ async getCategoryReports(categoryId) {
943
+ const categoryData = await this.getCategoryData(categoryId);
944
+ return categoryData?.reportDefinitionItems ?? [];
945
+ }
946
+ /**
947
+ * Fetch a single category by id.
948
+ * First checks cache, then uses getCategoryData if not found in cache.
949
+ */
950
+ async getCategoryById(id) {
951
+ // First check if it's in cache (from previous getCategoryData calls)
952
+ if (this.categoryDataCache.has(id)) {
953
+ return this.categoryDataCache.get(id);
954
+ }
955
+ // Try to get from category data endpoint (which will cache it)
956
+ const categoryData = await this.getCategoryData(id);
957
+ if (categoryData) {
958
+ return categoryData;
959
+ }
960
+ // Fallback: search in root categories cache
961
+ if (this.rootCategoriesCache) {
962
+ const found = this.rootCategoriesCache.find((c) => c.id === id);
963
+ if (found) {
964
+ return found;
965
+ }
966
+ }
967
+ // Last resort: search in all categories (but this should rarely happen)
968
+ try {
969
+ const url = `${this.baseUrl}/v1/global/report-management/category`;
970
+ const params = { Skip: 0, Take: 1000 };
971
+ const response = await firstValueFrom(this.http.get(url, { params }));
972
+ const all = response.items ?? [];
973
+ return all.find((c) => c.id === id);
974
+ }
975
+ catch {
976
+ return undefined;
977
+ }
862
978
  }
863
979
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportManagementDataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
864
980
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportManagementDataService }); }
@@ -868,34 +984,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImpo
868
984
  }] });
869
985
  //#endregion
870
986
  //#region ---- API Providers ----
987
+ /**
988
+ * Category provider that uses the shared data service.
989
+ * Both providers use the same dataService instance which ensures proper caching.
990
+ */
871
991
  class AXCReportCategoryApiProvider {
872
992
  constructor() {
873
993
  this.dataService = inject(AXCReportManagementDataService);
874
- // Cache to store processed categories
875
- this.categoriesCache = new Map();
876
994
  }
877
995
  async getList(parentId) {
878
- // Check cache first
879
- if (this.categoriesCache.has(parentId)) {
880
- return this.categoriesCache.get(parentId);
881
- }
882
996
  try {
883
- // Get data from shared service
884
- const allCategoriesData = await this.dataService.getAllCategoriesData();
885
- // Filter categories based on parentId
886
- let filteredItems;
997
+ // For root level, get root categories (each category includes folderItems in API response)
887
998
  if (!parentId) {
888
- // Root categories (no parent)
889
- filteredItems = allCategoriesData.filter((item) => !item.reportCategoryParentId);
890
- }
891
- else {
892
- // Child categories
893
- filteredItems = allCategoriesData.filter((item) => item.reportCategoryParentId === parentId);
999
+ const filteredItems = await this.dataService.getRootCategories();
1000
+ // Each root category has folderItems in the API response, but we only return the root categories themselves
1001
+ // The folderItems are preserved in the API response structure, similar to child state
1002
+ return filteredItems.map((item) => this.mapApiCategoryToReportCategory(item));
894
1003
  }
895
- const categories = filteredItems.map((item) => this.mapApiCategoryToReportCategory(item));
896
- // Cache the result
897
- this.categoriesCache.set(parentId, categories);
898
- return categories;
1004
+ // For child level, get categories from category data (which includes folderItems)
1005
+ // This ensures we use the same API response that getList for definitions will use
1006
+ // The folderItems structure is preserved, similar to root state
1007
+ const categoryData = await this.dataService.getCategoryData(parentId);
1008
+ const filteredItems = categoryData?.folderItems ?? [];
1009
+ return filteredItems.map((item) => this.mapApiCategoryToReportCategory(item));
899
1010
  }
900
1011
  catch (error) {
901
1012
  console.error('Error fetching report categories:', error);
@@ -904,9 +1015,7 @@ class AXCReportCategoryApiProvider {
904
1015
  }
905
1016
  async getById(id) {
906
1017
  try {
907
- // Get data from shared service
908
- const allCategoriesData = await this.dataService.getAllCategoriesData();
909
- const apiItem = allCategoriesData.find((item) => item.id === id);
1018
+ const apiItem = await this.dataService.getCategoryById(id);
910
1019
  if (!apiItem) {
911
1020
  return undefined;
912
1021
  }
@@ -927,48 +1036,32 @@ class AXCReportCategoryApiProvider {
927
1036
  hasReport: apiItem.itemCount > 0, // reportDefinitionItems = files
928
1037
  };
929
1038
  }
930
- // Method to clear cache when needed
931
- clearCache() {
932
- this.categoriesCache.clear();
933
- this.dataService.clearCache();
934
- }
935
1039
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportCategoryApiProvider, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
936
1040
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportCategoryApiProvider }); }
937
1041
  }
938
1042
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportCategoryApiProvider, decorators: [{
939
1043
  type: Injectable
940
1044
  }] });
1045
+ /**
1046
+ * Definition provider that uses the shared data service.
1047
+ * Both providers use the same dataService instance which ensures proper caching.
1048
+ */
941
1049
  class AXCReportDefinitionApiProvider {
942
1050
  constructor() {
943
1051
  this.dataService = inject(AXCReportManagementDataService);
944
1052
  this.http = inject(HttpClient);
945
- // Cache to store report definitions by category to avoid unnecessary API calls
946
- this.reportDefinitionsCache = new Map();
947
1053
  }
948
1054
  async getList(categoryId) {
949
- // Check cache first
950
- if (this.reportDefinitionsCache.has(categoryId)) {
951
- return this.reportDefinitionsCache.get(categoryId);
952
- }
953
1055
  try {
954
- // Get data from shared service
955
- const allCategoriesData = await this.dataService.getAllCategoriesData();
956
- // Find the specific category and extract its report definitions
957
- const categoryItem = allCategoriesData.find((item) => item.id === categoryId);
958
- if (!categoryItem) {
959
- // Cache empty result to avoid repeated API calls
960
- this.reportDefinitionsCache.set(categoryId, []);
961
- return [];
962
- }
963
- const reportDefinitions = categoryItem.reportDefinitionItems.map((item) => this.mapApiReportDefinitionItemToReportDefinition(item));
964
- // Cache the result
965
- this.reportDefinitionsCache.set(categoryId, reportDefinitions);
1056
+ // Use getCategoryData which is cached and shared with getCategories
1057
+ // This ensures only one API call is made when both getCategories and getReportsByCategoryId are called
1058
+ const categoryData = await this.dataService.getCategoryData(categoryId);
1059
+ const defs = categoryData?.reportDefinitionItems ?? [];
1060
+ const reportDefinitions = defs.map((item) => this.mapApiReportDefinitionItemToReportDefinition(item));
966
1061
  return reportDefinitions;
967
1062
  }
968
1063
  catch (error) {
969
1064
  console.error('Error fetching report definitions:', error);
970
- // Cache empty result to avoid repeated failed API calls
971
- this.reportDefinitionsCache.set(categoryId, []);
972
1065
  return [];
973
1066
  }
974
1067
  }
@@ -1027,11 +1120,6 @@ class AXCReportDefinitionApiProvider {
1027
1120
  };
1028
1121
  return res;
1029
1122
  }
1030
- // Method to clear cache when needed
1031
- clearCache() {
1032
- this.reportDefinitionsCache.clear();
1033
- this.dataService.clearCache();
1034
- }
1035
1123
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportDefinitionApiProvider, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1036
1124
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportDefinitionApiProvider }); }
1037
1125
  }
@@ -1039,7 +1127,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImpo
1039
1127
  type: Injectable
1040
1128
  }] });
1041
1129
  //#endregion
1130
+ //#endregion
1042
1131
  //#region ---- Provider Exports ----
1132
+ /**
1133
+ * Both providers use the same dataService instance (which is a singleton),
1134
+ * ensuring they share the same cache and only one API call is made when both
1135
+ * getCategories and getReportsByCategoryId are called for the same categoryId.
1136
+ */
1043
1137
  const AXC_REPORT_CATEGORY_API_PROVIDER = {
1044
1138
  provide: AXP_REPORT_CATEGORY_PROVIDER,
1045
1139
  useClass: AXCReportCategoryApiProvider,
@@ -1451,5 +1545,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImpo
1451
1545
  * Generated bundle index. Do not edit.
1452
1546
  */
1453
1547
 
1454
- export { APIGoogleStrategy, AXCAPIOidcStrategy, AXCApiEntityStorageService, AXCApiModule, AXCReportManagementApiModule, AXMConfigurationService, AXMOidcApplicationLoader, AXMOidcFeatureLoader, AXMOidcPermissionLoader, AXMOidcTenantLoader };
1548
+ export { APIGoogleStrategy, AXCAPIOidcStrategy, AXCApiEntityStorageService, AXCApiModule, AXCReportCategoryApiProvider, AXCReportDefinitionApiProvider, AXCReportManagementApiModule, AXCReportManagementDataService, AXC_REPORT_CATEGORY_API_PROVIDER, AXC_REPORT_DEFINITION_API_PROVIDER, AXMConfigurationService, AXMOidcApplicationLoader, AXMOidcFeatureLoader, AXMOidcPermissionLoader, AXMOidcTenantLoader };
1455
1549
  //# sourceMappingURL=acorex-connectivity-api.mjs.map