tango-app-ui-shared 3.7.3-dev14 → 3.7.3-dev16

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 (40) hide show
  1. package/esm2022/lib/modules/layout/header/brands-header/brands-header.component.mjs +18 -0
  2. package/esm2022/lib/modules/layout/header/header-banner/header-banner.component.mjs +12 -0
  3. package/esm2022/lib/modules/layout/header/header-menu/header-menu.component.mjs +3 -3
  4. package/esm2022/lib/modules/layout/header/header.component.mjs +216 -11
  5. package/esm2022/lib/modules/layout/header/plano-header/plano-header.component.mjs +12 -0
  6. package/esm2022/lib/modules/layout/header/stores-header/stores-header.component.mjs +61 -0
  7. package/esm2022/lib/modules/layout/layout/layout.component.mjs +62 -24
  8. package/esm2022/lib/modules/layout/layout.module.mjs +27 -4
  9. package/esm2022/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.mjs +3 -3
  10. package/esm2022/lib/modules/layout/sidebar/sidebar.component.mjs +3 -3
  11. package/esm2022/lib/modules/layout/toolbar/toolbar.component.mjs +3 -3
  12. package/esm2022/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.mjs +312 -225
  13. package/esm2022/lib/modules/layout/toolbar/traffic-nob/traffic-nob.component.mjs +53 -3
  14. package/esm2022/lib/modules/layout/toolbar/trax-header/trax-header.component.mjs +58 -7
  15. package/esm2022/lib/modules/layout/toolbar/trax-withoutdate/trax-withoutdate.component.mjs +57 -7
  16. package/esm2022/lib/routes/route-wraper-modules/eyetest-wrapper.module.mjs +18 -0
  17. package/esm2022/lib/routes/routing.mjs +6 -6
  18. package/esm2022/lib/services/auth.service.mjs +34 -7
  19. package/fesm2022/tango-app-ui-shared-eyetest-wrapper.module-CfO814JB.mjs +21 -0
  20. package/fesm2022/tango-app-ui-shared-eyetest-wrapper.module-CfO814JB.mjs.map +1 -0
  21. package/fesm2022/{tango-app-ui-shared-intro.module-DYh4ZRha.mjs → tango-app-ui-shared-intro.module-DyE2keRn.mjs} +6 -4
  22. package/fesm2022/{tango-app-ui-shared-intro.module-DYh4ZRha.mjs.map → tango-app-ui-shared-intro.module-DyE2keRn.mjs.map} +1 -1
  23. package/fesm2022/{tango-app-ui-shared-notification.module-C5ZmCf8U.mjs → tango-app-ui-shared-notification.module-C1uJuY1m.mjs} +6 -4
  24. package/fesm2022/{tango-app-ui-shared-notification.module-C5ZmCf8U.mjs.map → tango-app-ui-shared-notification.module-C1uJuY1m.mjs.map} +1 -1
  25. package/fesm2022/tango-app-ui-shared.mjs +6542 -5937
  26. package/fesm2022/tango-app-ui-shared.mjs.map +1 -1
  27. package/lib/modules/layout/header/brands-header/brands-header.component.d.ts +8 -0
  28. package/lib/modules/layout/header/header-banner/header-banner.component.d.ts +5 -0
  29. package/lib/modules/layout/header/header.component.d.ts +46 -3
  30. package/lib/modules/layout/header/plano-header/plano-header.component.d.ts +5 -0
  31. package/lib/modules/layout/header/stores-header/stores-header.component.d.ts +17 -0
  32. package/lib/modules/layout/layout/layout.component.d.ts +6 -2
  33. package/lib/modules/layout/layout.module.d.ts +16 -10
  34. package/lib/modules/layout/toolbar/traffic-header/traffic-header/traffic-header.component.d.ts +22 -1
  35. package/lib/modules/layout/toolbar/traffic-nob/traffic-nob.component.d.ts +7 -0
  36. package/lib/modules/layout/toolbar/trax-header/trax-header.component.d.ts +7 -0
  37. package/lib/modules/layout/toolbar/trax-withoutdate/trax-withoutdate.component.d.ts +7 -0
  38. package/lib/routes/route-wraper-modules/eyetest-wrapper.module.d.ts +7 -0
  39. package/lib/services/auth.service.d.ts +5 -2
  40. package/package.json +1 -1
@@ -0,0 +1,8 @@
1
+ import { GlobalStateService } from 'tango-app-ui-global';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BrandsHeaderComponent {
4
+ gs: GlobalStateService;
5
+ constructor(gs: GlobalStateService);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BrandsHeaderComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<BrandsHeaderComponent, "lib-brands-header", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class HeaderBannerComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBannerComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderBannerComponent, "lib-header-banner", never, {}, {}, never, never, false, never>;
5
+ }
@@ -1,11 +1,17 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
- import { ILayout, LayoutType } from 'tango-app-ui-global';
3
+ import { Subscription } from 'rxjs';
4
+ import { GlobalStateService, ILayout, LayoutType } from 'tango-app-ui-global';
4
5
  import { LayoutService } from 'tango-app-ui-global';
6
+ import { AuthService } from '../../../services/auth.service';
7
+ import { MatTooltip } from '@angular/material/tooltip';
5
8
  import * as i0 from "@angular/core";
6
9
  export declare class HeaderComponent implements OnInit, OnDestroy {
7
10
  private layout;
11
+ private cd;
8
12
  private router;
13
+ gs: GlobalStateService;
14
+ private service;
9
15
  private unsubscribe;
10
16
  currentLayoutType: LayoutType | null;
11
17
  appHeaderDisplay: boolean;
@@ -20,11 +26,48 @@ export declare class HeaderComponent implements OnInit, OnDestroy {
20
26
  appHeaderDefaultContent: string;
21
27
  appHeaderDefaulMenuDisplay: boolean;
22
28
  appPageTitleDisplay: boolean;
23
- constructor(layout: LayoutService, router: Router);
29
+ storeDetails: any;
30
+ storeAppId: any;
31
+ storeProfileData: any;
32
+ storeSpocDetails: any;
33
+ constructor(layout: LayoutService, cd: ChangeDetectorRef, router: Router, gs: GlobalStateService, service: AuthService);
34
+ appPageTitleBreadcrumb: boolean;
35
+ appPageTitleDescription: boolean;
36
+ appPageTitleCSSClass: string;
24
37
  updateProps(config: ILayout): void;
38
+ headerFilter: any;
39
+ users: any;
40
+ storeIdarray: any;
41
+ routerSubscription: Subscription;
42
+ url: any[];
43
+ private readonly destroy$;
44
+ appPageTitleDirection: string;
25
45
  ngOnInit(): void;
26
46
  routingChanges(): void;
47
+ getClientValue: any;
48
+ getClientInfo(): void;
49
+ dataStoreMap: any;
50
+ getStoreMap(): void;
27
51
  ngOnDestroy(): void;
52
+ showClientInfo: boolean;
53
+ toggleClientInfo(): void;
54
+ toggleClientInfoStores(): void;
55
+ onClickOutside(event: MouseEvent): void;
56
+ mainUrl: any;
57
+ initializeComponent(): void;
58
+ get headerType(): 'brands' | 'stores' | 'manage' | undefined;
59
+ isCopied: boolean;
60
+ clipboard: any;
61
+ tooltip: MatTooltip;
62
+ copyButton: ElementRef;
63
+ copyText(text: any): void;
64
+ storeName: any;
65
+ getStoresInfo(id: any): void;
66
+ getAllClientValue: any;
67
+ showClient: boolean;
68
+ toggleClient(): void;
69
+ get storeInitials(): string;
70
+ get csmInitials(): string;
28
71
  static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
29
72
  static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "lib-header", never, {}, {}, never, never, false, never>;
30
73
  }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class PlanoHeaderComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlanoHeaderComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<PlanoHeaderComponent, "lib-plano-header", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,17 @@
1
+ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
+ import { GlobalStateService } from 'tango-app-ui-global';
3
+ import * as i0 from "@angular/core";
4
+ export declare class StoresHeaderComponent implements OnInit {
5
+ gs: GlobalStateService;
6
+ private cd;
7
+ users: any;
8
+ storeId: any;
9
+ headerData: any;
10
+ storeIdarray: any;
11
+ dataStoreMap: any;
12
+ private destroy$;
13
+ constructor(gs: GlobalStateService, cd: ChangeDetectorRef);
14
+ ngOnInit(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<StoresHeaderComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<StoresHeaderComponent, "lib-stores-header", never, {}, {}, never, never, false, never>;
17
+ }
@@ -62,21 +62,25 @@ export declare class LayoutComponent implements OnInit, OnDestroy {
62
62
  appFooterContainerCSSClass: string;
63
63
  appFooterFixedDesktop: boolean;
64
64
  appFooterFixedMobile: boolean;
65
+ appHeaderBannerDisplay: boolean;
66
+ appHeaderBannerCSSClass: string;
65
67
  scrolltopDisplay: boolean;
66
68
  ktAside: ElementRef;
67
69
  ktHeaderMobile: ElementRef;
68
70
  ktHeader: ElementRef;
69
71
  constructor(initService: LayoutInitService, layout: LayoutService, router: Router, activatedRoute: ActivatedRoute, authService: AuthService, toastService: ToastService, gs: GlobalStateService);
72
+ routerSubscription: any;
70
73
  ngOnInit(): void;
74
+ url: any;
75
+ initializeComponent(): void;
71
76
  updateProps(config: ILayout): void;
72
77
  updateSidebar(config: ILayout): void;
73
78
  updateHeader(config: ILayout): void;
74
79
  updateFooter(config: ILayout): void;
75
80
  updateToolbar(config: ILayout): void;
76
81
  ngOnDestroy(): void;
82
+ get headerType(): 'trax' | 'manage' | 'plano' | 'stores' | null;
77
83
  previousScroll: number;
78
- isToolbarFixed: boolean;
79
- onScroll(): void;
80
84
  static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
81
85
  static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "lib-layout", never, {}, {}, never, never, false, never>;
82
86
  }
@@ -33,17 +33,23 @@ import * as i31 from "./toolbar/trax-withoutdate/trax-withoutdate.component";
33
33
  import * as i32 from "./toolbar/traffic-nob/traffic-nob.component";
34
34
  import * as i33 from "./toolbar/metrics-header/metrics-header.component";
35
35
  import * as i34 from "./toolbar/single-clientstore-date/single-clientstore-date.component";
36
- import * as i35 from "@angular/common";
37
- import * as i36 from "@angular/router";
38
- import * as i37 from "../../i18n/translation.module";
39
- import * as i38 from "ng-inline-svg-2";
40
- import * as i39 from "@ng-bootstrap/ng-bootstrap";
41
- import * as i40 from "@ngx-translate/core";
42
- import * as i41 from "../common/common-shared.module";
43
- import * as i42 from "@angular/forms";
44
- import * as i43 from "ngx-daterangepicker-material";
36
+ import * as i35 from "./header/header-banner/header-banner.component";
37
+ import * as i36 from "./header/brands-header/brands-header.component";
38
+ import * as i37 from "./header/plano-header/plano-header.component";
39
+ import * as i38 from "./header/stores-header/stores-header.component";
40
+ import * as i39 from "@angular/common";
41
+ import * as i40 from "@angular/router";
42
+ import * as i41 from "../../i18n/translation.module";
43
+ import * as i42 from "ng-inline-svg-2";
44
+ import * as i43 from "@ng-bootstrap/ng-bootstrap";
45
+ import * as i44 from "@angular/material/tooltip";
46
+ import * as i45 from "ngx-clipboard";
47
+ import * as i46 from "@ngx-translate/core";
48
+ import * as i47 from "../common/common-shared.module";
49
+ import * as i48 from "@angular/forms";
50
+ import * as i49 from "ngx-daterangepicker-material";
45
51
  export declare class LayoutModule {
46
52
  static ɵfac: i0.ɵɵFactoryDeclaration<LayoutModule, never>;
47
- static ɵmod: i0.ɵɵNgModuleDeclaration<LayoutModule, [typeof i1.LayoutComponent, typeof i2.HeaderComponent, typeof i3.ContentComponent, typeof i4.FooterComponent, typeof i5.ScriptsInitComponent, typeof i6.ToolbarComponent, typeof i7.PageTitleComponent, typeof i8.HeaderMenuComponent, typeof i9.SidebarComponent, typeof i10.SidebarLogoComponent, typeof i11.SidebarMenuComponent, typeof i12.SidebarFooterComponent, typeof i13.NavbarComponent, typeof i14.AccountingComponent, typeof i15.ClassicComponent, typeof i16.ExtendedComponent, typeof i17.ReportsComponent, typeof i18.SaasComponent, typeof i19.KeeniconComponent, typeof i20.LayoutScrollTopComponent, typeof i21.ClientSettingsComponent, typeof i22.DatepickerComponent, typeof i23.DateSingleSelectComponent, typeof i24.SingleStoreComponent, typeof i25.NotificationsInnerComponent, typeof i26.CsmAssignConfirmationComponent, typeof i27.TrafficHeaderComponent, typeof i28.TraxHeaderComponent, typeof i29.SingleStoredateComponent, typeof i30.StoresingleComponent, typeof i31.TraxWithoutdateComponent, typeof i32.TrafficNobComponent, typeof i33.MetricsHeaderComponent, typeof i34.SingleClientstoreDateComponent], [typeof i35.CommonModule, typeof i36.RouterModule, typeof i37.TranslationModule, typeof i38.InlineSVGModule, typeof i39.NgbDropdownModule, typeof i39.NgbProgressbarModule, typeof i39.NgbTooltipModule, typeof i40.TranslateModule, typeof i41.CommonSharedModule, typeof i42.FormsModule, typeof i43.NgxDaterangepickerMd], [typeof i36.RouterModule]>;
53
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LayoutModule, [typeof i1.LayoutComponent, typeof i2.HeaderComponent, typeof i3.ContentComponent, typeof i4.FooterComponent, typeof i5.ScriptsInitComponent, typeof i6.ToolbarComponent, typeof i7.PageTitleComponent, typeof i8.HeaderMenuComponent, typeof i9.SidebarComponent, typeof i10.SidebarLogoComponent, typeof i11.SidebarMenuComponent, typeof i12.SidebarFooterComponent, typeof i13.NavbarComponent, typeof i14.AccountingComponent, typeof i15.ClassicComponent, typeof i16.ExtendedComponent, typeof i17.ReportsComponent, typeof i18.SaasComponent, typeof i19.KeeniconComponent, typeof i20.LayoutScrollTopComponent, typeof i21.ClientSettingsComponent, typeof i22.DatepickerComponent, typeof i23.DateSingleSelectComponent, typeof i24.SingleStoreComponent, typeof i25.NotificationsInnerComponent, typeof i26.CsmAssignConfirmationComponent, typeof i27.TrafficHeaderComponent, typeof i28.TraxHeaderComponent, typeof i29.SingleStoredateComponent, typeof i30.StoresingleComponent, typeof i31.TraxWithoutdateComponent, typeof i32.TrafficNobComponent, typeof i33.MetricsHeaderComponent, typeof i34.SingleClientstoreDateComponent, typeof i35.HeaderBannerComponent, typeof i36.BrandsHeaderComponent, typeof i37.PlanoHeaderComponent, typeof i38.StoresHeaderComponent], [typeof i39.CommonModule, typeof i40.RouterModule, typeof i41.TranslationModule, typeof i42.InlineSVGModule, typeof i43.NgbDropdownModule, typeof i43.NgbProgressbarModule, typeof i43.NgbAccordionModule, typeof i43.NgbCollapseModule, typeof i44.MatTooltipModule, typeof i45.ClipboardModule, typeof i43.NgbTooltipModule, typeof i46.TranslateModule, typeof i47.CommonSharedModule, typeof i48.FormsModule, typeof i49.NgxDaterangepickerMd], [typeof i40.RouterModule]>;
48
54
  static ɵinj: i0.ɵɵInjectorDeclaration<LayoutModule>;
49
55
  }
@@ -55,18 +55,21 @@ export declare class TrafficHeaderComponent implements OnInit {
55
55
  getLocations(): void;
56
56
  isAllLocationsSelected(): boolean;
57
57
  selectedLocationsLabel(): string;
58
+ selectedLocationsLabel1(): string;
58
59
  removeLocation(): void;
59
60
  getGroups(): void;
60
- toggleDropdown(type: "country" | "location" | "group" | "store" | "status"): void;
61
+ toggleDropdown(type: 'country' | 'location' | 'group' | 'store' | 'status'): void;
61
62
  handleGroupDropdownClick(): void;
62
63
  resetSelectedGroups(): void;
63
64
  selectedGroupsLabel(): string;
65
+ selectedGroupsLabel1(): string;
64
66
  removeGroup(): void;
65
67
  isAllGroupsSelected(): boolean;
66
68
  getStore(): void;
67
69
  private clearStoresState;
68
70
  resetSelectedStores(): void;
69
71
  selectedStoresLabel(): string;
72
+ selectedStoresLabel1(): string;
70
73
  isAllStoresSelected(): boolean;
71
74
  updateSelectedStores(): void;
72
75
  toggleSelectAllLocations(event: any): void;
@@ -82,17 +85,35 @@ export declare class TrafficHeaderComponent implements OnInit {
82
85
  clickOutside(event: MouseEvent): void;
83
86
  getCountry(): void;
84
87
  selectedCountriesLabel(): string;
88
+ selectedCountriesLabel1(): string;
85
89
  filterCountries(): void;
86
90
  isAllCountriesSelected(): boolean;
87
91
  toggleSelectAllCountries(event: any): void;
88
92
  updateSelectedCountries(): void;
89
93
  removeCountry(): void;
90
94
  Apply(): void;
95
+ getSelectedCount(type: string): string;
96
+ activeDropdown: string;
97
+ showDropdown(type: string): void;
98
+ showClick(type: any, e: MouseEvent): void;
99
+ downtimeOptions: {
100
+ label: string;
101
+ value: string;
102
+ checked: boolean;
103
+ }[];
104
+ selectedDowntimeValues: string[];
105
+ isAllDowntimeSelected(): boolean;
106
+ toggleSelectAllDowntime(event: any): void;
107
+ updateSelectedDowntime(): void;
108
+ downtimeData: any[];
109
+ downtimeApi(): void;
110
+ restoreDowntimeFromStorage(): void;
91
111
  statusVal: any;
92
112
  searchStatusText: any;
93
113
  filteredStatus: any;
94
114
  getStatus(): void;
95
115
  selectedStatusLabel(): string;
116
+ selectedStatusLabel1(): string;
96
117
  filterStatus(): void;
97
118
  isAllStatusSelected(): boolean;
98
119
  toggleSelectAllStatus(event: any): void;
@@ -75,6 +75,13 @@ export declare class TrafficNobComponent implements OnInit {
75
75
  filterStores(): void;
76
76
  closeDropdown(): void;
77
77
  clickOutside(event: MouseEvent): void;
78
+ selectedLocationsLabel1(): string;
79
+ selectedGroupsLabel1(): string;
80
+ selectedStoresLabel1(): string;
81
+ getSelectedCount(type: string): string;
82
+ activeDropdown: string;
83
+ showDropdown(type: string): void;
84
+ showClick(type: any, e: MouseEvent): void;
78
85
  static ɵfac: i0.ɵɵFactoryDeclaration<TrafficNobComponent, never>;
79
86
  static ɵcmp: i0.ɵɵComponentDeclaration<TrafficNobComponent, "lib-traffic-nob", never, {}, {}, never, never, false, never>;
80
87
  }
@@ -53,17 +53,20 @@ export declare class TraxHeaderComponent implements OnInit {
53
53
  getLocations(): void;
54
54
  isAllLocationsSelected(): boolean;
55
55
  selectedLocationsLabel(): string;
56
+ selectedLocationsLabel1(): string;
56
57
  removeLocation(): void;
57
58
  getGroups(): void;
58
59
  toggleDropdown(type: 'location' | 'group' | 'store'): void;
59
60
  handleGroupDropdownClick(): void;
60
61
  resetSelectedGroups(): void;
61
62
  selectedGroupsLabel(): string;
63
+ selectedGroupsLabel1(): string;
62
64
  removeGroup(): void;
63
65
  isAllGroupsSelected(): boolean;
64
66
  getStore(): void;
65
67
  resetSelectedStores(): void;
66
68
  selectedStoresLabel(): string;
69
+ selectedStoresLabel1(): string;
67
70
  isAllStoresSelected(): boolean;
68
71
  updateSelectedStores(): void;
69
72
  toggleSelectAllLocations(event: any): void;
@@ -76,8 +79,12 @@ export declare class TraxHeaderComponent implements OnInit {
76
79
  filterLocations(): void;
77
80
  filterGroups(): void;
78
81
  filterStores(): void;
82
+ showClick(type: any, e: MouseEvent): void;
79
83
  closeDropdown(): void;
80
84
  clickOutside(event: MouseEvent): void;
85
+ getSelectedCount(type: string): string;
86
+ activeDropdown: string;
87
+ showDropdown(type: string): void;
81
88
  static ɵfac: i0.ɵɵFactoryDeclaration<TraxHeaderComponent, never>;
82
89
  static ɵcmp: i0.ɵɵComponentDeclaration<TraxHeaderComponent, "lib-trax-header", never, {}, {}, never, never, false, never>;
83
90
  }
@@ -69,6 +69,13 @@ export declare class TraxWithoutdateComponent implements OnInit {
69
69
  filterStores(): void;
70
70
  closeDropdown(): void;
71
71
  clickOutside(event: MouseEvent): void;
72
+ selectedLocationsLabel1(): string;
73
+ selectedGroupsLabel1(): string;
74
+ selectedStoresLabel1(): string;
75
+ getSelectedCount(type: string): string;
76
+ activeDropdown: string;
77
+ showDropdown(type: string): void;
78
+ showClick(type: any, e: MouseEvent): void;
72
79
  static ɵfac: i0.ɵɵFactoryDeclaration<TraxWithoutdateComponent, never>;
73
80
  static ɵcmp: i0.ɵɵComponentDeclaration<TraxWithoutdateComponent, "lib-trax-withoutdate", never, {}, {}, never, never, false, never>;
74
81
  }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "tango-app-ui-eyetest-copilot";
3
+ export declare class EyetestWrapperModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<EyetestWrapperModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<EyetestWrapperModule, never, [typeof i1.TangoEyetestCopilotModule], never>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<EyetestWrapperModule>;
7
+ }
@@ -37,8 +37,6 @@ export declare class AuthService {
37
37
  getClientProducts(clientId: string): Observable<any>;
38
38
  getLocation(data: any): Observable<any>;
39
39
  getGroups(data: any): Observable<any>;
40
- getTraxLocation(data: any): Observable<any>;
41
- getTraxGroups(data: any): Observable<any>;
42
40
  getHeaderStores(data: any): Observable<any>;
43
41
  getHeadertraxStores(data: any): Observable<any>;
44
42
  getBrandDetails(id: any): Observable<Object>;
@@ -46,6 +44,11 @@ export declare class AuthService {
46
44
  getCountry(data: any): Observable<any>;
47
45
  getPlanoUsers(): Observable<Object>;
48
46
  getHeaderZone(data: any): Observable<any>;
47
+ getClientInfo(client?: any): Observable<any>;
48
+ getStoreMapData(params: any): Observable<any>;
49
+ getStoreLogData(data: any, id: any): Observable<Object>;
50
+ getAllClientInfo(): Observable<any>;
51
+ getDowntimeHeader(data: any): Observable<any>;
49
52
  static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
50
53
  static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
51
54
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-shared",
3
- "version": "3.7.3-dev14",
3
+ "version": "3.7.3-dev16",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0"