gamma-app-controller 1.0.1

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.
Files changed (120) hide show
  1. package/README.md +24 -0
  2. package/esm2020/gamma-app-controller.mjs +2 -0
  3. package/esm2020/lib/application-controller/app.http.service.mjs +24 -0
  4. package/esm2020/lib/application-controller/application-content.service.mjs +482 -0
  5. package/esm2020/lib/application-controller/application-controller.module.mjs +324 -0
  6. package/esm2020/lib/application-controller/application-dataset-call.service.mjs +321 -0
  7. package/esm2020/lib/application-controller/application-dataset-component/application-dataset/application-dataset.component.mjs +390 -0
  8. package/esm2020/lib/application-controller/application-dataset-component/create-dataset/create-dataset.component.mjs +349 -0
  9. package/esm2020/lib/application-controller/application-dataset-component/create-dataset-json/create-dataset-json.component.mjs +148 -0
  10. package/esm2020/lib/application-controller/application-dataset-component/create-dataset-sql/create-dataset-sql.component.mjs +167 -0
  11. package/esm2020/lib/application-controller/application-dataset-component/create-dataset-sql/sqlFormatter.mjs +17 -0
  12. package/esm2020/lib/application-controller/application-dataset-component/dataset-mongo/dataset-mongo.component.mjs +57 -0
  13. package/esm2020/lib/application-controller/application-dataset-component/dataset-query-bulder/dataset-query-bulder.component.mjs +409 -0
  14. package/esm2020/lib/application-controller/application-dataset-component/dataset-rest-api/dataset-rest-api.component.mjs +61 -0
  15. package/esm2020/lib/application-controller/application-filter/application-filter.component.mjs +186 -0
  16. package/esm2020/lib/application-controller/application-view-components/application-views/application-views.component.mjs +134 -0
  17. package/esm2020/lib/application-controller/application-view-components/create-comp-view/create-comp-view.component.mjs +559 -0
  18. package/esm2020/lib/application-controller/common-header/common-header.component.mjs +33 -0
  19. package/esm2020/lib/application-controller/common.mjs +1207 -0
  20. package/esm2020/lib/application-controller/environment.mjs +26 -0
  21. package/esm2020/lib/application-controller/kpi-comon-service.mjs +537 -0
  22. package/esm2020/lib/application-controller/kpi-service.mjs +108 -0
  23. package/esm2020/lib/application-controller/loading/loading.component.mjs +16 -0
  24. package/esm2020/lib/application-controller/loading/loadingModule.mjs +28 -0
  25. package/esm2020/lib/application-controller/moment-helper.mjs +4 -0
  26. package/esm2020/lib/application-controller/page-controller/page-config/page-config.component.mjs +977 -0
  27. package/esm2020/lib/application-controller/page-controller/page-controller/page-controller.component.mjs +172 -0
  28. package/esm2020/lib/application-controller/page-templates/cdr-config/cdr-config.component.mjs +227 -0
  29. package/esm2020/lib/application-controller/page-templates/dynamic-route-service.mjs +22 -0
  30. package/esm2020/lib/application-controller/shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component.mjs +118 -0
  31. package/esm2020/lib/application-controller/shared/advanced-component/app-advance-header/app-header.component.mjs +181 -0
  32. package/esm2020/lib/application-controller/shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component.mjs +71 -0
  33. package/esm2020/lib/application-controller/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.mjs +266 -0
  34. package/esm2020/lib/application-controller/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.mjs +159 -0
  35. package/esm2020/lib/application-controller/shared/advanced-component/gamma-table-clumn-bar-chart/gamma-table-clumn-bar-chart.component.mjs +144 -0
  36. package/esm2020/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/contentSafeHtml.mjs +20 -0
  37. package/esm2020/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component.mjs +168 -0
  38. package/esm2020/lib/application-controller/shared/advanced-component/gamma-today-previous/gamma-today-previous.component.mjs +74 -0
  39. package/esm2020/lib/application-controller/shared/advanced-component/google-geo-map/google-geo-map.component.mjs +118 -0
  40. package/esm2020/lib/application-controller/shared/api.service.mjs +117 -0
  41. package/esm2020/lib/application-controller/shared/app-title/app-title.component.mjs +67 -0
  42. package/esm2020/lib/application-controller/shared/gamam-widget/gamam-widget.component.mjs +37 -0
  43. package/esm2020/lib/application-controller/shared/gamma-advance-filter/gamma-advance-filter.component.mjs +229 -0
  44. package/esm2020/lib/application-controller/shared/gamma-bread-crumbs/bread-crumbs.component.mjs +144 -0
  45. package/esm2020/lib/application-controller/shared/kpi-comon-service.mjs +537 -0
  46. package/esm2020/lib/application-controller/shared/loader/loader.component.mjs +14 -0
  47. package/esm2020/lib/application-controller/shared/loading/loading.component.mjs +16 -0
  48. package/esm2020/lib/application-controller/shared/loading/loadingModule.mjs +28 -0
  49. package/esm2020/lib/application-controller/shared/safeHtmlPipe.mjs +20 -0
  50. package/esm2020/lib/application-controller/support-components/dash-chart/dash-chart.component.mjs +294 -0
  51. package/esm2020/lib/application-controller/support-components/dash-table/dash-table.component.mjs +287 -0
  52. package/esm2020/lib/application-controller/support-components/geo-map/geo-map.component.mjs +255 -0
  53. package/esm2020/lib/application-controller/support-components/table-with-bar/table-with-bar.component.mjs +269 -0
  54. package/esm2020/lib/gamma-app-controller.component.mjs +16 -0
  55. package/esm2020/lib/gamma-app-controller.module.mjs +43 -0
  56. package/esm2020/lib/gamma-app-controller.service.mjs +20 -0
  57. package/esm2020/lib/icons.module.mjs +23 -0
  58. package/esm2020/public-api.mjs +49 -0
  59. package/fesm2015/gamma-app-controller.mjs +10250 -0
  60. package/fesm2015/gamma-app-controller.mjs.map +1 -0
  61. package/fesm2020/gamma-app-controller.mjs +10248 -0
  62. package/fesm2020/gamma-app-controller.mjs.map +1 -0
  63. package/index.d.ts +2 -0
  64. package/lib/application-controller/app.http.service.d.ts +15 -0
  65. package/lib/application-controller/application-content.service.d.ts +79 -0
  66. package/lib/application-controller/application-controller.module.d.ts +51 -0
  67. package/lib/application-controller/application-dataset-call.service.d.ts +20 -0
  68. package/lib/application-controller/application-dataset-component/application-dataset/application-dataset.component.d.ts +55 -0
  69. package/lib/application-controller/application-dataset-component/create-dataset/create-dataset.component.d.ts +121 -0
  70. package/lib/application-controller/application-dataset-component/create-dataset-json/create-dataset-json.component.d.ts +38 -0
  71. package/lib/application-controller/application-dataset-component/create-dataset-sql/create-dataset-sql.component.d.ts +42 -0
  72. package/lib/application-controller/application-dataset-component/create-dataset-sql/sqlFormatter.d.ts +7 -0
  73. package/lib/application-controller/application-dataset-component/dataset-mongo/dataset-mongo.component.d.ts +21 -0
  74. package/lib/application-controller/application-dataset-component/dataset-query-bulder/dataset-query-bulder.component.d.ts +62 -0
  75. package/lib/application-controller/application-dataset-component/dataset-rest-api/dataset-rest-api.component.d.ts +22 -0
  76. package/lib/application-controller/application-filter/application-filter.component.d.ts +36 -0
  77. package/lib/application-controller/application-view-components/application-views/application-views.component.d.ts +47 -0
  78. package/lib/application-controller/application-view-components/create-comp-view/create-comp-view.component.d.ts +73 -0
  79. package/lib/application-controller/common-header/common-header.component.d.ts +15 -0
  80. package/lib/application-controller/common.d.ts +148 -0
  81. package/lib/application-controller/environment.d.ts +25 -0
  82. package/lib/application-controller/kpi-comon-service.d.ts +14 -0
  83. package/lib/application-controller/kpi-service.d.ts +6 -0
  84. package/lib/application-controller/loading/loading.component.d.ts +9 -0
  85. package/lib/application-controller/loading/loadingModule.d.ts +10 -0
  86. package/lib/application-controller/moment-helper.d.ts +3 -0
  87. package/lib/application-controller/page-controller/page-config/page-config.component.d.ts +188 -0
  88. package/lib/application-controller/page-controller/page-controller/page-controller.component.d.ts +47 -0
  89. package/lib/application-controller/page-templates/cdr-config/cdr-config.component.d.ts +44 -0
  90. package/lib/application-controller/page-templates/dynamic-route-service.d.ts +8 -0
  91. package/lib/application-controller/shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component.d.ts +33 -0
  92. package/lib/application-controller/shared/advanced-component/app-advance-header/app-header.component.d.ts +43 -0
  93. package/lib/application-controller/shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component.d.ts +20 -0
  94. package/lib/application-controller/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.d.ts +51 -0
  95. package/lib/application-controller/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.d.ts +32 -0
  96. package/lib/application-controller/shared/advanced-component/gamma-table-clumn-bar-chart/gamma-table-clumn-bar-chart.component.d.ts +31 -0
  97. package/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/contentSafeHtml.d.ts +10 -0
  98. package/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component.d.ts +26 -0
  99. package/lib/application-controller/shared/advanced-component/gamma-today-previous/gamma-today-previous.component.d.ts +21 -0
  100. package/lib/application-controller/shared/advanced-component/google-geo-map/google-geo-map.component.d.ts +29 -0
  101. package/lib/application-controller/shared/api.service.d.ts +26 -0
  102. package/lib/application-controller/shared/app-title/app-title.component.d.ts +28 -0
  103. package/lib/application-controller/shared/gamam-widget/gamam-widget.component.d.ts +20 -0
  104. package/lib/application-controller/shared/gamma-advance-filter/gamma-advance-filter.component.d.ts +45 -0
  105. package/lib/application-controller/shared/gamma-bread-crumbs/bread-crumbs.component.d.ts +32 -0
  106. package/lib/application-controller/shared/kpi-comon-service.d.ts +14 -0
  107. package/lib/application-controller/shared/loader/loader.component.d.ts +8 -0
  108. package/lib/application-controller/shared/loading/loading.component.d.ts +9 -0
  109. package/lib/application-controller/shared/loading/loadingModule.d.ts +10 -0
  110. package/lib/application-controller/shared/safeHtmlPipe.d.ts +10 -0
  111. package/lib/application-controller/support-components/dash-chart/dash-chart.component.d.ts +83 -0
  112. package/lib/application-controller/support-components/dash-table/dash-table.component.d.ts +67 -0
  113. package/lib/application-controller/support-components/geo-map/geo-map.component.d.ts +70 -0
  114. package/lib/application-controller/support-components/table-with-bar/table-with-bar.component.d.ts +70 -0
  115. package/lib/gamma-app-controller.component.d.ts +5 -0
  116. package/lib/gamma-app-controller.module.d.ts +10 -0
  117. package/lib/gamma-app-controller.service.d.ts +7 -0
  118. package/lib/icons.module.d.ts +11 -0
  119. package/package.json +33 -0
  120. package/public-api.d.ts +48 -0
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ /// <amd-module name="gamma-app-controller" />
2
+ export * from './public-api';
@@ -0,0 +1,15 @@
1
+ import { Observable } from 'rxjs';
2
+ import { HttpClient, HttpHeaders } from '@angular/common/http';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AppHttpService {
5
+ http: HttpClient;
6
+ headers: HttpHeaders;
7
+ options: {
8
+ headers: HttpHeaders;
9
+ withCredentials: boolean;
10
+ };
11
+ constructor(http: HttpClient);
12
+ handleError(error: any): Observable<Response>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppHttpService, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppHttpService>;
15
+ }
@@ -0,0 +1,79 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { AppHttpService } from './app.http.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ApplicationContentService extends AppHttpService {
6
+ private httpClient;
7
+ constructor(httpClient: HttpClient);
8
+ private kpiFilter;
9
+ userkpiFilter$: Observable<any>;
10
+ private datasets;
11
+ updateDatssets$: Observable<any>;
12
+ getFilterForKpi(pins: any): void;
13
+ getCurrentKpiFilterValue(): any;
14
+ setCurrentDatasetValue(data: any): void;
15
+ getDataSet(): any;
16
+ getComponentDataConfigSet(): any;
17
+ listColumnEnrichmentFunctions(): any;
18
+ validateAggregatePaginatedQuery(transformedObject: any): any;
19
+ getKpiBrowserConfigById(id: any): any;
20
+ getData(body: any, requestID: any): any;
21
+ getSimpleApiPostRequest(requestApi: any, body: any): any;
22
+ getSimpleApiGetRequest(requestApi: any): any;
23
+ getJsonDatasetPayload(requestApi: any): any;
24
+ genericSqlQueryResponse(requestApi: any, body: any): any;
25
+ createAppDataset(body: any): any;
26
+ updateAppDatasetConfig(body: any): any;
27
+ deleteAppDatasetConfig(datasetId: any): any;
28
+ getAppDatasetConfigs(): any;
29
+ getAppDatasetConfig(datasetId: any): any;
30
+ createAppViewConfig(body: any): any;
31
+ updateAppViewConfig(body: any): any;
32
+ getAppViewConfigs(): any;
33
+ getAppViewConfig(viewId: any): any;
34
+ deleteAppViewConfig(datasetId: any): any;
35
+ createAppFilterConfig(body: any): any;
36
+ editAppFilterConfig(body: any): any;
37
+ getAppFilterConfigs(): any;
38
+ deleteAppFilterConfig(filterId: any): any;
39
+ getMapData(body: any, requestID: any): any;
40
+ getDashBoardJson(): any;
41
+ getAppPageConfigs(): any;
42
+ createAppPageConfig(body: any): any;
43
+ editAppPageConfig(body: any): any;
44
+ deleteAppPageConfig(pageId: any): any;
45
+ createAppWidgetConfig(body: any): any;
46
+ editAppWidgetConfig(body: any): any;
47
+ getAppPageDetailConfig(pageId: any): any;
48
+ deleteAppWidgetConfig(filterId: any): any;
49
+ getAppFilterConfig(filterId: any): any;
50
+ getKPIReferenceEndPoints(): any;
51
+ loadKpiBrowser(): any;
52
+ getlistKpiBrowser(): any;
53
+ getBookmarkedResource(): any;
54
+ bookmarkResource(body: any): any;
55
+ configureKpiBrowserConfig(body: any): any;
56
+ getCreateKpi(body: any): any;
57
+ uploadDatasetJsonPayload(formData: any): any;
58
+ getKpiData(): any;
59
+ getGroupDetails(): any;
60
+ loadtableName(): any;
61
+ getSearchResultForDatasource(body: any): any;
62
+ ajaxSelfPrevActivityLogs(): any;
63
+ getCdrBrowserActivityLogs(startDate: any, endDate: any): any;
64
+ getAvailableTables(): any;
65
+ getTableMetadata(tableName: any): any;
66
+ getCdrBrowserOperations(): any;
67
+ getSearchDatasourceDetails(): any;
68
+ saveDatasourceConfig(body: any): any;
69
+ editDatasourceConfig(body: any): any;
70
+ deleteDatasourceConfig(tableName: any): any;
71
+ getKpiConfigaration(): any;
72
+ getlistKpiBrowserTwo(): any;
73
+ getfilterData(): any;
74
+ genericDetailDataResponse(body: any): any;
75
+ getUniqueData(api: any): Observable<Response>;
76
+ getFilterDataByDrillDown(apiName: any): any;
77
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationContentService, never>;
78
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationContentService>;
79
+ }
@@ -0,0 +1,51 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./application-dataset-component/application-dataset/application-dataset.component";
3
+ import * as i2 from "./application-view-components/application-views/application-views.component";
4
+ import * as i3 from "./application-dataset-component/dataset-mongo/dataset-mongo.component";
5
+ import * as i4 from "./application-dataset-component/dataset-query-bulder/dataset-query-bulder.component";
6
+ import * as i5 from "./application-dataset-component/dataset-rest-api/dataset-rest-api.component";
7
+ import * as i6 from "./support-components/geo-map/geo-map.component";
8
+ import * as i7 from "./application-view-components/create-comp-view/create-comp-view.component";
9
+ import * as i8 from "./support-components/dash-chart/dash-chart.component";
10
+ import * as i9 from "./support-components/dash-table/dash-table.component";
11
+ import * as i10 from "./application-filter/application-filter.component";
12
+ import * as i11 from "./page-controller/page-config/page-config.component";
13
+ import * as i12 from "./page-controller/page-controller/page-controller.component";
14
+ import * as i13 from "./page-templates/cdr-config/cdr-config.component";
15
+ import * as i14 from "./application-dataset-component/create-dataset/create-dataset.component";
16
+ import * as i15 from "./support-components/table-with-bar/table-with-bar.component";
17
+ import * as i16 from "./application-dataset-component/create-dataset-sql/create-dataset-sql.component";
18
+ import * as i17 from "./application-dataset-component/create-dataset-json/create-dataset-json.component";
19
+ import * as i18 from "./shared/app-title/app-title.component";
20
+ import * as i19 from "./shared/loader/loader.component";
21
+ import * as i20 from "./shared/gamam-widget/gamam-widget.component";
22
+ import * as i21 from "./shared/gamma-advance-filter/gamma-advance-filter.component";
23
+ import * as i22 from "./shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component";
24
+ import * as i23 from "./shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component";
25
+ import * as i24 from "./shared/advanced-component/app-advance-header/app-header.component";
26
+ import * as i25 from "./shared/advanced-component/gamma-today-previous/gamma-today-previous.component";
27
+ import * as i26 from "./shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component";
28
+ import * as i27 from "./shared/advanced-component/gamma-table-with-percentage/contentSafeHtml";
29
+ import * as i28 from "./shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component";
30
+ import * as i29 from "./shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component";
31
+ import * as i30 from "./shared/gamma-bread-crumbs/bread-crumbs.component";
32
+ import * as i31 from "./application-dataset-component/create-dataset-sql/sqlFormatter";
33
+ import * as i32 from "./shared/safeHtmlPipe";
34
+ import * as i33 from "./common-header/common-header.component";
35
+ import * as i34 from "./shared/advanced-component/google-geo-map/google-geo-map.component";
36
+ import * as i35 from "./shared/advanced-component/gamma-table-clumn-bar-chart/gamma-table-clumn-bar-chart.component";
37
+ import * as i36 from "@angular/common";
38
+ import * as i37 from "@angular/router";
39
+ import * as i38 from "devextreme-angular";
40
+ import * as i39 from "@angular/forms";
41
+ import * as i40 from "@angular/material/icon";
42
+ import * as i41 from "@angular/material/tooltip";
43
+ import * as i42 from "@angular/material/button";
44
+ import * as i43 from "@angular/material/divider";
45
+ import * as i44 from "@angular/material/menu";
46
+ import * as i45 from "./shared/loading/loadingModule";
47
+ export declare class PackageApplicationControllerModule {
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<PackageApplicationControllerModule, never>;
49
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PackageApplicationControllerModule, [typeof i1.ApplicationDatasetComponent, typeof i2.ApplicationViewsComponent, typeof i3.DatasetMongoComponent, typeof i4.DatasetQueryBulderComponent, typeof i5.DatasetRestApiComponent, typeof i6.GeoMapComponent, typeof i7.CreateCompViewComponent, typeof i8.DashChartComponent, typeof i9.DashTableComponent, typeof i10.ApplicationFilterComponent, typeof i11.PageConfigComponent, typeof i12.PageControlerComponent, typeof i13.CdrConfigComponent, typeof i14.CreateDatasetComponent, typeof i15.TableWithBarComponent, typeof i16.CreateDatasetSqlComponent, typeof i17.CreateDatasetJsonComponent, typeof i18.AppTitleComponent, typeof i19.LoaderComponent, typeof i20.GamamWidgetComponent, typeof i21.GammaAdvanceFilterComponent, typeof i22.GammaAdvanceChartComponent, typeof i23.GammaAdvanceOperatorTableComponent, typeof i24.AppAdvanceHeaderComponent, typeof i25.GammaTodayPreviousComponent, typeof i26.GammaTableWithPercentageComponent, typeof i27.contentSafeHtml, typeof i28.GammSingleNumberCardComponent, typeof i29.AdvanceWidgetHeaderFilterComponent, typeof i30.BreadCrumbsComponent, typeof i31.SqlPipe, typeof i32.SafeHtmlPipe, typeof i33.CommonHeaderComponent, typeof i34.GoogleGeoMapComponent, typeof i35.GammaTableClumnBarChartComponent], [typeof i36.CommonModule, typeof i37.RouterModule, typeof i38.DevExtremeModule, typeof i38.DxButtonModule, typeof i38.DxCheckBoxModule, typeof i38.DxNumberBoxModule, typeof i38.DxDataGridModule, typeof i38.DxDropDownBoxModule, typeof i38.DxTreeViewModule, typeof i38.DxScrollViewModule, typeof i38.DxFormModule, typeof i38.DxAccordionModule, typeof i39.FormsModule, typeof i38.DxTagBoxModule, typeof i39.ReactiveFormsModule, typeof i40.MatIconModule, typeof i38.DxHtmlEditorModule, typeof i38.DxBulletModule, typeof i38.DxChartModule, typeof i38.DxDateBoxModule, typeof i38.DxLoadPanelModule, typeof i38.DxLookupModule, typeof i38.DxPivotGridModule, typeof i38.DxTemplateModule, typeof i38.DxTextAreaModule, typeof i38.DxValidationSummaryModule, typeof i38.DxValidatorModule, typeof i38.DxCalendarModule, typeof i38.DxTooltipModule, typeof i38.DxContextMenuModule, typeof i38.DxLoadIndicatorModule, typeof i41.MatTooltipModule, typeof i38.DxPopupModule, typeof i38.DxSelectBoxModule, typeof i38.DxTextBoxModule, typeof i38.DxTreeViewModule, typeof i42.MatButtonModule, typeof i43.MatDividerModule, typeof i44.MatMenuModule, typeof i40.MatIconModule, typeof i45.LoadingModule], [typeof i37.RouterModule, typeof i8.DashChartComponent, typeof i9.DashTableComponent, typeof i10.ApplicationFilterComponent, typeof i14.CreateDatasetComponent, typeof i18.AppTitleComponent, typeof i19.LoaderComponent, typeof i20.GamamWidgetComponent, typeof i21.GammaAdvanceFilterComponent, typeof i22.GammaAdvanceChartComponent, typeof i23.GammaAdvanceOperatorTableComponent, typeof i24.AppAdvanceHeaderComponent, typeof i25.GammaTodayPreviousComponent, typeof i26.GammaTableWithPercentageComponent, typeof i27.contentSafeHtml, typeof i28.GammSingleNumberCardComponent, typeof i29.AdvanceWidgetHeaderFilterComponent, typeof i30.BreadCrumbsComponent, typeof i33.CommonHeaderComponent, typeof i6.GeoMapComponent, typeof i32.SafeHtmlPipe, typeof i34.GoogleGeoMapComponent, typeof i35.GammaTableClumnBarChartComponent]>;
50
+ static ɵinj: i0.ɵɵInjectorDeclaration<PackageApplicationControllerModule>;
51
+ }
@@ -0,0 +1,20 @@
1
+ import { ApplicationContentService } from './application-content.service';
2
+ import { kpicommonService } from './kpi-comon-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ApplicationDatssetsCall {
5
+ private service;
6
+ private kpiService;
7
+ uniqueDataSetObject: {};
8
+ constructor(service: ApplicationContentService, kpiService: kpicommonService);
9
+ getDataFromDataSet(dataset: any, datasetId: any, filters: any): Promise<void>;
10
+ getDataSetForMongo(dataset: any, datasetId: any): Promise<void>;
11
+ getDatasetForImpala(dataset: any, datasetId: any, filters: any): Promise<void>;
12
+ transformDataForMFilter(filterdata: any, mapData: any): any[];
13
+ getDatasetForSimpleApiImpala(dataset: any, datasetId: string, filters: any): Promise<void>;
14
+ getDatasetForPlainJson(dataset: any, datasetId: any, filter: any): Promise<void>;
15
+ getDatasetForSqlTemplate(dataset: any, datasetId: any, filters: any): Promise<void>;
16
+ transformDataForMFilterForSQl(filterdata: any, mapData: any): any[];
17
+ getUniqueDataSetObject(): {};
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationDatssetsCall, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationDatssetsCall>;
20
+ }
@@ -0,0 +1,55 @@
1
+ import { ElementRef, OnInit } from '@angular/core';
2
+ import { ToastrService } from 'ngx-toastr';
3
+ import { Title } from "@angular/platform-browser";
4
+ import { ActivatedRoute, Router } from '@angular/router';
5
+ import { ApplicationContentService } from '../../application-content.service';
6
+ import { CommonService } from '../../common';
7
+ import { kpicommonService } from '../../kpi-service';
8
+ import * as i0 from "@angular/core";
9
+ export declare class ApplicationDatasetComponent implements OnInit {
10
+ private service;
11
+ commonService: CommonService;
12
+ private toastr;
13
+ private activatedRoute;
14
+ private router;
15
+ private title;
16
+ private kpiService;
17
+ dataSettableDataSource: any;
18
+ isLoader: boolean;
19
+ isDuplidateView: boolean;
20
+ isNewDataSetCreateView: boolean;
21
+ pageViewId: boolean;
22
+ pageConfigId: boolean;
23
+ scrollToElement: ElementRef;
24
+ defaultStartDate: any;
25
+ defaultEndDate: any;
26
+ isDatasetPreview: boolean;
27
+ isFilterInputs: boolean;
28
+ isDatasetloader: boolean;
29
+ dataSourceModal: any;
30
+ selectedDataSet: any;
31
+ constructor(service: ApplicationContentService, commonService: CommonService, toastr: ToastrService, activatedRoute: ActivatedRoute, router: Router, title: Title, kpiService: kpicommonService);
32
+ ngOnInit(): void;
33
+ getDataSet(): void;
34
+ getCreateNewDataset(): void;
35
+ duplicateDataset(data: any): void;
36
+ editDataset(data: any): void;
37
+ deleteDataset(data: any): void;
38
+ backToView(): void;
39
+ backToPage(): void;
40
+ gotoViews(): void;
41
+ getCapitalize(item: string): any;
42
+ getFilter(item: any): boolean;
43
+ startDateChange(e: any, item: any): void;
44
+ testDataset(data: any): void;
45
+ getDataPreview(): void;
46
+ getDataSetForMongo(dataset: any): void;
47
+ getDatasetForImpala(dataset: any): void;
48
+ transformDataForMFilter(filterdata: any, mapData: any): any[];
49
+ getDatasetForSimpleApiImpala(dataset: any): void;
50
+ getDatasetForPlainJson(dataset: any): void;
51
+ getDatasetForSqlTemplate(dataset: any): void;
52
+ transformDataForMFilterForSQl(mapData: any): any[];
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationDatasetComponent, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<ApplicationDatasetComponent, "app-application-dataset", never, {}, {}, never, never, false>;
55
+ }
@@ -0,0 +1,121 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ApplicationContentService } from '../../application-content.service';
3
+ import { ToastrService } from 'ngx-toastr';
4
+ import { ActivatedRoute, Router } from '@angular/router';
5
+ import { CommonService } from '../../common';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CreateDatasetComponent implements OnInit {
8
+ private service;
9
+ private toastr;
10
+ commonService: CommonService;
11
+ private router;
12
+ private activatedRoute;
13
+ loadingModal: boolean;
14
+ isDuplidateView: boolean;
15
+ creatDatasetObject: {
16
+ datasetName: string;
17
+ datasetType: string;
18
+ };
19
+ dataSetTypeContainer: {
20
+ name: string;
21
+ value: string;
22
+ }[];
23
+ mongoDataset: {
24
+ api: string;
25
+ serviceId: string;
26
+ apiType: string;
27
+ filterItems: {
28
+ apiName: string;
29
+ label: string;
30
+ filterType: string;
31
+ operatorName: string;
32
+ defaultFilterType: string;
33
+ defaultFilterValue: string;
34
+ momentFunction: string;
35
+ momentFormate: string;
36
+ }[];
37
+ fixOperationLevles: any[];
38
+ };
39
+ queryBulderDataset: {
40
+ api: string;
41
+ apiType: string;
42
+ serviceId: string;
43
+ queryConfig: {
44
+ mapedFilters: {
45
+ localColumn: string;
46
+ serverColumn: string;
47
+ operatorName: string;
48
+ defaultValue: string;
49
+ dataType: string;
50
+ }[];
51
+ sorters: any[];
52
+ reqFields: any[];
53
+ measures: any[];
54
+ filter: any[];
55
+ havings: any[];
56
+ commonConfig: {};
57
+ columns: any[];
58
+ };
59
+ };
60
+ restApiDataset: {
61
+ api: string;
62
+ apiType: string;
63
+ serviceId: string;
64
+ queryConfig: {
65
+ mapedFilters: {
66
+ localColumn: string;
67
+ serverColumn: string;
68
+ operatorName: string;
69
+ defaultValue: string;
70
+ dataType: string;
71
+ }[];
72
+ };
73
+ };
74
+ sqlApiDataset: {
75
+ api: string;
76
+ apiType: string;
77
+ serviceId: string;
78
+ queryConfig: {
79
+ templateQuery: string;
80
+ databaseName: string;
81
+ dbConfig: string;
82
+ enrichments: any[];
83
+ mapedFilters: {
84
+ localColumn: string;
85
+ serverColumn: string;
86
+ operatorName: string;
87
+ defaultValue: string;
88
+ dataType: string;
89
+ }[];
90
+ };
91
+ };
92
+ jsonDataset: {
93
+ api: string;
94
+ apiType: string;
95
+ serviceId: string;
96
+ queryConfig: {
97
+ mapedFilters: {
98
+ localColumn: string;
99
+ serverColumn: string;
100
+ operatorName: string;
101
+ defaultValue: string;
102
+ dataType: string;
103
+ }[];
104
+ };
105
+ };
106
+ inputDatasetID: any;
107
+ isHeader: boolean;
108
+ set selectedDatasetId(value: any);
109
+ constructor(service: ApplicationContentService, toastr: ToastrService, commonService: CommonService, router: Router, activatedRoute: ActivatedRoute);
110
+ ngOnInit(): void;
111
+ createMongoServiceDataSet(data: any): void;
112
+ createQueryBuilderDataSet(data: any): void;
113
+ createSqlQueryBuilderDataSet(data: any): void;
114
+ createRestApiDataSet(data: any): void;
115
+ createNeDataSetConfig(): void;
116
+ updataNewDataSetCongig(): void;
117
+ gotoAllDatasets(): void;
118
+ createDataSetWithJson(data: any): void;
119
+ static ɵfac: i0.ɵɵFactoryDeclaration<CreateDatasetComponent, never>;
120
+ static ɵcmp: i0.ɵɵComponentDeclaration<CreateDatasetComponent, "app-create-dataset", never, { "isHeader": "isHeader"; "selectedDatasetId": "selectedDatasetId"; }, {}, never, never, false>;
121
+ }
@@ -0,0 +1,38 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ToastrService } from 'ngx-toastr';
3
+ import { ApplicationContentService } from '../../application-content.service';
4
+ import { ActivatedRoute } from '@angular/router';
5
+ import { CommonService } from '../../common';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CreateDatasetJsonComponent implements OnInit {
8
+ private toastr;
9
+ commonService: CommonService;
10
+ private service;
11
+ private activatedRoute;
12
+ kpi_function: any;
13
+ kpi_operator: any;
14
+ getJsonDataset: EventEmitter<any>;
15
+ apiBulderDataset: any;
16
+ jsonContent: string;
17
+ selectedJsonfile: any;
18
+ isJsonEditor: boolean;
19
+ uploadedFileData: any;
20
+ validationMessage: string;
21
+ contentType: any;
22
+ set jsonDataset(value: any);
23
+ constructor(toastr: ToastrService, commonService: CommonService, service: ApplicationContentService, activatedRoute: ActivatedRoute);
24
+ ngOnInit(): void;
25
+ addFilterMapingColumns(): void;
26
+ deleteFilterMapingColumns(i: any): void;
27
+ saveColumnMaping(): void;
28
+ moveItemForColumns(index: number, direction: 'up' | 'down'): void;
29
+ createDataSet(): boolean;
30
+ onjsonFileSelected(event: any): void;
31
+ viewJsonEditor(): void;
32
+ uploadSelectedJsonFile(): void;
33
+ downloadJsonFile(): void;
34
+ exportJsonFile(item: any): void;
35
+ jsonValidator(): void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<CreateDatasetJsonComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<CreateDatasetJsonComponent, "app-create-dataset-json", never, { "jsonDataset": "jsonDataset"; }, { "getJsonDataset": "getJsonDataset"; }, never, never, false>;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ToastrService } from 'ngx-toastr';
3
+ import { SqlPipe } from './sqlFormatter';
4
+ import { ApplicationContentService } from '../../application-content.service';
5
+ import { CommonService } from '../../common';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CreateDatasetSqlComponent implements OnInit {
8
+ private toastr;
9
+ commonService: CommonService;
10
+ private sqlFormatter;
11
+ private service;
12
+ kpi_function: any;
13
+ kpi_operator: any;
14
+ getSqlQueryBulbderDataSet: EventEmitter<any>;
15
+ apiBulderDataset: any;
16
+ queryStringData: string;
17
+ sqlString: string;
18
+ validateArgumentError: boolean;
19
+ formatButtonStatus: boolean;
20
+ validateStatus: boolean;
21
+ isValidate: boolean;
22
+ isNotValidate: boolean;
23
+ argumentData: any;
24
+ duplicateMatches: any;
25
+ matches: any;
26
+ kpi_enrichment_name: any;
27
+ set sqlBulderDataset(value: any);
28
+ constructor(toastr: ToastrService, commonService: CommonService, sqlFormatter: SqlPipe, service: ApplicationContentService);
29
+ ngOnInit(): void;
30
+ addFilterMapingColumns(): void;
31
+ deleteFilterMapingColumns(i: any): void;
32
+ saveColumnMaping(): void;
33
+ moveItemForColumns(index: number, direction: 'up' | 'down'): void;
34
+ format(): any;
35
+ validateNewReport(): void;
36
+ moveItemForMeasuresColumns(index: number, direction: 'up' | 'down'): void;
37
+ addColumns(): void;
38
+ deleteColumns(i: any): void;
39
+ createDataSet(): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<CreateDatasetSqlComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<CreateDatasetSqlComponent, "app-create-dataset-sql", never, { "sqlBulderDataset": "sqlBulderDataset"; }, { "getSqlQueryBulbderDataSet": "getSqlQueryBulbderDataSet"; }, never, never, false>;
42
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SqlPipe implements PipeTransform {
4
+ transform(value: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SqlPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<SqlPipe, "sql", false>;
7
+ }
@@ -0,0 +1,21 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { CommonService } from '../../common';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DatasetMongoComponent implements OnInit {
5
+ commonService: CommonService;
6
+ mongoDataset: any;
7
+ filter_type: string[];
8
+ defaultFilterTypeDataSource: string[];
9
+ momentFunction: string[];
10
+ fixOperationArray: any;
11
+ getMongoServiceDataSet: EventEmitter<any>;
12
+ constructor(commonService: CommonService);
13
+ ngOnInit(): void;
14
+ addFilter(): void;
15
+ deleteFilters(i: any): void;
16
+ deleteFixoperation(i: any): void;
17
+ addFixOperation(): void;
18
+ createDataSet(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatasetMongoComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatasetMongoComponent, "app-dataset-mongo", never, { "mongoDataset": "mongoDataset"; }, { "getMongoServiceDataSet": "getMongoServiceDataSet"; }, never, never, false>;
21
+ }
@@ -0,0 +1,62 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ToastrService } from 'ngx-toastr';
3
+ import { ApplicationContentService } from '../../application-content.service';
4
+ import { CommonService } from '../../common';
5
+ import * as i0 from "@angular/core";
6
+ export declare class DatasetQueryBulderComponent implements OnInit {
7
+ commonService: CommonService;
8
+ private toastr;
9
+ private service;
10
+ reqFieldsDataSource: any;
11
+ isreqFields: boolean;
12
+ iscdrParams: boolean;
13
+ cdrFieldsDataSource: any;
14
+ kpi_function: any;
15
+ kpi_operator: any;
16
+ kpi_enrichment_name: any;
17
+ reqShortDataSource: any;
18
+ filterMapingDatasource: any;
19
+ query_data: any;
20
+ isModelVisible: boolean;
21
+ isSqlCopiedText: boolean;
22
+ queryBulderDataset: any;
23
+ isReconColume: boolean;
24
+ getQueryBulbderDataSet: EventEmitter<any>;
25
+ reconColumeDatasource: any[];
26
+ selectedDataSource: any;
27
+ isQueryTypeSelect: boolean;
28
+ set bulderDataset(value: any);
29
+ constructor(commonService: CommonService, toastr: ToastrService, service: ApplicationContentService);
30
+ ngOnInit(): void;
31
+ processParamsformatData(data: any): any;
32
+ addColumns(): void;
33
+ deleteColumns(i: any): void;
34
+ addReconColume(): void;
35
+ deleteReconColume(i: any): void;
36
+ saveReconsColume(): void;
37
+ saveColumnsAndMasures(): void;
38
+ saveDataToStore(): void;
39
+ transformColumnsForMesurs(inputColumns: any): any[];
40
+ addFilter(): void;
41
+ deleteFilter(i: any): void;
42
+ addParams(): void;
43
+ deleteParams(i: any): void;
44
+ addShortColumns(): void;
45
+ deleteShortColumns(i: any): void;
46
+ saveParams(): void;
47
+ addFilterMapingColumns(): void;
48
+ deleteFilterMapingColumns(i: any): void;
49
+ moveItemForColumns(index: number, direction: 'up' | 'down'): void;
50
+ moveItemForMeasuresColumns(index: number, direction: 'up' | 'down'): void;
51
+ checkForQuery(): void;
52
+ closeModalVisibleModal(): void;
53
+ transformDataForMFilter(mapfilter: any): any[];
54
+ copySqlFromModal(): void;
55
+ createDataSet(): void;
56
+ getQueryForDetailsData(e: any): void;
57
+ getDataConfig(e: any): void;
58
+ addHavingsColume(): void;
59
+ deleteHavingsColume(i: any): void;
60
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatasetQueryBulderComponent, never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatasetQueryBulderComponent, "app-dataset-query-bulder", never, { "bulderDataset": "bulderDataset"; }, { "getQueryBulbderDataSet": "getQueryBulbderDataSet"; }, never, never, false>;
62
+ }
@@ -0,0 +1,22 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ToastrService } from 'ngx-toastr';
3
+ import { CommonService } from '../../common';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DatasetRestApiComponent implements OnInit {
6
+ private toastr;
7
+ commonService: CommonService;
8
+ kpi_function: any;
9
+ kpi_operator: any;
10
+ getRestApiBulbderDataSet: EventEmitter<any>;
11
+ apiBulderDataset: any;
12
+ set restApiDataset(value: any);
13
+ constructor(toastr: ToastrService, commonService: CommonService);
14
+ ngOnInit(): void;
15
+ addFilterMapingColumns(): void;
16
+ deleteFilterMapingColumns(i: any): void;
17
+ saveColumnMaping(): void;
18
+ moveItemForColumns(index: number, direction: 'up' | 'down'): void;
19
+ createDataSet(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatasetRestApiComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatasetRestApiComponent, "app-dataset-rest-api", never, { "restApiDataset": "restApiDataset"; }, { "getRestApiBulbderDataSet": "getRestApiBulbderDataSet"; }, never, never, false>;
22
+ }
@@ -0,0 +1,36 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ApplicationContentService } from '../application-content.service';
3
+ import { ToastrService } from 'ngx-toastr';
4
+ import { Router } from '@angular/router';
5
+ import { CommonService } from '../common';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ApplicationFilterComponent implements OnInit {
8
+ private service;
9
+ commonService: CommonService;
10
+ private toastr;
11
+ private router;
12
+ filterDataSource: any;
13
+ isNewFilterCreate: boolean;
14
+ isLoader: boolean;
15
+ creatFilterObject: any;
16
+ filter_type: string[];
17
+ defaultFilterTypeDataSource: string[];
18
+ momentFunction: string[];
19
+ kpiFilterConfigService: any;
20
+ constructor(service: ApplicationContentService, commonService: CommonService, toastr: ToastrService, router: Router);
21
+ ngOnInit(): void;
22
+ getFilterDataSet(): void;
23
+ addFilter(): void;
24
+ deleteFilters(i: any): void;
25
+ getCreateNewFilter(): void;
26
+ editFilter(data: any): void;
27
+ deleteFilter(item: any): void;
28
+ createFilterItems(): void;
29
+ getKPIReferenceEndPoints(): void;
30
+ gotoViews(): void;
31
+ gotoPages(): void;
32
+ gotoFilters(): void;
33
+ gotoDataSets(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationFilterComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<ApplicationFilterComponent, "app-application-filter", never, {}, {}, never, never, false>;
36
+ }
@@ -0,0 +1,47 @@
1
+ import { ElementRef, OnInit } from '@angular/core';
2
+ import { ToastrService } from 'ngx-toastr';
3
+ import { Title } from "@angular/platform-browser";
4
+ import { ActivatedRoute, Router } from '@angular/router';
5
+ import { ApplicationContentService } from '../../application-content.service';
6
+ import { CommonService } from '../../common';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ApplicationViewsComponent implements OnInit {
9
+ private service;
10
+ commonService: CommonService;
11
+ private toastr;
12
+ private title;
13
+ private activatedRoute;
14
+ private router;
15
+ componentViewTableDataSource: any;
16
+ dataSettableDataSource: any;
17
+ isLoader: boolean;
18
+ isEditClick: boolean;
19
+ isFilterInputs: boolean;
20
+ isNewComponentViewCreate: boolean;
21
+ isDuplidateView: boolean;
22
+ isCreateViewFromKpi: boolean;
23
+ isCreateViewFromKpiLoader: boolean;
24
+ isCreateNewView: boolean;
25
+ treeListForSearchBox: any;
26
+ selectedDataSet: any;
27
+ viewId: any;
28
+ pageId: any;
29
+ componentNamesOthers: {
30
+ compName: string;
31
+ item: string;
32
+ }[];
33
+ componentName: any;
34
+ scrollToElement: ElementRef;
35
+ constructor(service: ApplicationContentService, commonService: CommonService, toastr: ToastrService, title: Title, activatedRoute: ActivatedRoute, router: Router);
36
+ ngOnInit(): void;
37
+ createNewComponentView(): void;
38
+ getComponentViewSet(): void;
39
+ editViews(data: any): void;
40
+ duplicateViews(data: any): void;
41
+ deleteDataset(data: any): void;
42
+ getCapitalize(item: string): any;
43
+ backToPage(): void;
44
+ gotoDataset(): void;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationViewsComponent, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<ApplicationViewsComponent, "app-application-views", never, {}, {}, never, never, false>;
47
+ }