@haloduck/core 2.0.12 → 2.1.0

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/index.d.ts DELETED
@@ -1,530 +0,0 @@
1
- import { CanActivateFn } from '@angular/router';
2
- import { HttpInterceptorFn, HttpClient } from '@angular/common/http';
3
- import * as rxjs from 'rxjs';
4
- import { Observable } from 'rxjs';
5
- import * as i0 from '@angular/core';
6
- import { PipeTransform, InjectionToken, Provider } from '@angular/core';
7
- import { ComponentStore } from '@ngrx/component-store';
8
- import * as _ngrx_store from '@ngrx/store';
9
- import * as _ngrx_effects from '@ngrx/effects';
10
- import * as _haloduck_core from '@haloduck/core';
11
-
12
- declare const authGuard: CanActivateFn;
13
-
14
- declare const dummyMemberIdInterceptor: HttpInterceptorFn;
15
-
16
- declare const groupIdInterceptor: HttpInterceptorFn;
17
-
18
- declare const idTokenInterceptor: HttpInterceptorFn;
19
-
20
- interface AclAction {
21
- [x: string]: any;
22
- view?: string[];
23
- create?: string[];
24
- edit?: string[];
25
- remove?: string[];
26
- }
27
- interface Acl {
28
- [key: string]: AclAction;
29
- }
30
-
31
- declare namespace SearchParams {
32
- interface IData {
33
- filter: Filter;
34
- sort: Sort[];
35
- page?: Page;
36
- }
37
- interface Filter {
38
- [key: string]: any;
39
- }
40
- const SortDirectionAsc = "asc";
41
- const SortDirectionDesc = "desc";
42
- type SortDirection = typeof SortDirectionAsc | typeof SortDirectionDesc | undefined;
43
- interface Sort {
44
- field: string | string[];
45
- direction: SortDirection;
46
- }
47
- interface Page {
48
- limit: number;
49
- searchAfter?: any;
50
- }
51
- }
52
-
53
- interface MenuItem {
54
- title: string;
55
- icon?: string;
56
- iconType?: 'image' | 'svg';
57
- link?: string;
58
- home?: boolean;
59
- group?: boolean;
60
- resource?: string;
61
- children?: MenuItem[];
62
- }
63
- interface MenuItemEx extends MenuItem {
64
- children: MenuItemEx[];
65
- isSelected: boolean;
66
- isExpanded: boolean;
67
- }
68
-
69
- interface ApiResponse {
70
- error: string;
71
- message?: string;
72
- data?: Acl | MenuItem[] | any;
73
- lastEvaluatedKey?: any;
74
- total?: number;
75
- }
76
- interface ApiError {
77
- error: string;
78
- message?: string;
79
- }
80
- declare function responseHandler(response: ApiResponse): ApiResponse;
81
- declare function errorHandler(err: ApiError): Observable<never>;
82
-
83
- interface LngLat {
84
- lat: number;
85
- lng: number;
86
- }
87
-
88
- interface TableRowProperty {
89
- isExpanded?: boolean;
90
- isSelected?: boolean;
91
- expandMode?: string;
92
- bgColor?: string;
93
- }
94
- interface IRow<TExpandMode> {
95
- id?: string;
96
- parentId?: string;
97
- children?: IRow<TExpandMode>[];
98
- expandMode?: TExpandMode;
99
- isExpanded?: boolean;
100
- isSelected?: boolean;
101
- }
102
- interface ITableStateParent {
103
- id: string;
104
- name: string;
105
- }
106
- declare const ITableStateStatusCreating = "creating";
107
- declare const ITableStateStatusCreated = "created";
108
- declare const ITableStateStatusFailedToCreate = "failedToCreate";
109
- declare const ITableStateStatusUpdating = "updating";
110
- declare const ITableStateStatusUpdated = "updated";
111
- declare const ITableStateStatusFailedToUpdate = "failedToUpdate";
112
- declare const ITableStateStatusDeleting = "deleting";
113
- declare const ITableStateStatusDeleted = "deleted";
114
- declare const ITableStateStatusFailedToDelete = "failedToDelete";
115
- declare const ITableStateStatusLoading = "loading";
116
- declare const ITableStateStatusLoaded = "loaded";
117
- declare const ITableStateStatusFailedToLoad = "failedToLoad";
118
- interface ITableState<TData> {
119
- status?: typeof ITableStateStatusCreating | typeof ITableStateStatusCreated | typeof ITableStateStatusFailedToCreate | typeof ITableStateStatusUpdating | typeof ITableStateStatusUpdated | typeof ITableStateStatusFailedToUpdate | typeof ITableStateStatusDeleting | typeof ITableStateStatusDeleted | typeof ITableStateStatusFailedToDelete | typeof ITableStateStatusLoading | typeof ITableStateStatusLoaded | typeof ITableStateStatusFailedToLoad;
120
- parent?: ITableStateParent;
121
- isLoading: boolean;
122
- filter: SearchParams.Filter;
123
- sort: SearchParams.Sort[];
124
- page: SearchParams.Page;
125
- listEntity: TData[];
126
- lastEvaluatedKey?: any;
127
- totalCount?: number;
128
- currentCount?: number;
129
- }
130
- declare class TableStore<TState extends ITableState<TData>, TData extends IRow<TExpandMode>, TExpandMode> extends ComponentStore<TState> {
131
- protected initialState: TState;
132
- protected apiService: any;
133
- readonly status$: rxjs.Observable<"creating" | "created" | "failedToCreate" | "updating" | "updated" | "failedToUpdate" | "deleting" | "deleted" | "failedToDelete" | "loading" | "loaded" | "failedToLoad" | undefined>;
134
- readonly parent$: rxjs.Observable<ITableStateParent | undefined>;
135
- readonly filter$: rxjs.Observable<SearchParams.Filter>;
136
- readonly sort$: rxjs.Observable<SearchParams.Sort[]>;
137
- readonly page$: rxjs.Observable<SearchParams.Page>;
138
- readonly listEntity$: rxjs.Observable<TData[]>;
139
- readonly totalCount$: rxjs.Observable<number | undefined>;
140
- readonly currentCount$: rxjs.Observable<number | undefined>;
141
- readonly isLoading$: rxjs.Observable<boolean>;
142
- readonly lastEvaluatedKey$: rxjs.Observable<any>;
143
- readonly loadListEntity: (observableOrValue?: void | rxjs.Observable<void> | undefined) => rxjs.Subscription;
144
- readonly createEntity: ((observableOrValue?: any) => rxjs.Subscription) | ((observableOrValue: any) => rxjs.Subscription);
145
- readonly getEntityById: (observableOrValue: string | rxjs.Observable<string>) => rxjs.Subscription;
146
- readonly updateEntityById: ((observableOrValue?: any) => rxjs.Subscription) | ((observableOrValue: any) => rxjs.Subscription);
147
- readonly deleteEntityById: (observableOrValue: string | rxjs.Observable<string>) => rxjs.Subscription;
148
- readonly updateEntity: TData extends void ? () => void : (observableOrValue: TData | rxjs.Observable<TData>) => rxjs.Subscription;
149
- readonly updateStatus: TState["status"] extends infer T ? T extends TState["status"] ? T extends void ? () => void : (observableOrValue: TState["status"] | rxjs.Observable<TState["status"]>) => rxjs.Subscription : never : never;
150
- readonly setParent: (() => void) | ((observableOrValue: ITableStateParent | rxjs.Observable<ITableStateParent | undefined> | undefined) => rxjs.Subscription);
151
- readonly updateSortField: (observableOrValue: SearchParams.Sort | rxjs.Observable<SearchParams.Sort>) => rxjs.Subscription;
152
- readonly updateFilter: (observableOrValue: SearchParams.Filter | rxjs.Observable<SearchParams.Filter>) => rxjs.Subscription;
153
- readonly updatePage: (observableOrValue: SearchParams.Page | rxjs.Observable<SearchParams.Page>) => rxjs.Subscription;
154
- readonly setExpandMode: (observableOrValue: {
155
- id?: string;
156
- mode?: TExpandMode;
157
- } | rxjs.Observable<{
158
- id?: string;
159
- mode?: TExpandMode;
160
- }>) => rxjs.Subscription;
161
- readonly toggleExpanded: (observableOrValue: {
162
- id?: string;
163
- } | rxjs.Observable<{
164
- id?: string;
165
- }>) => rxjs.Subscription;
166
- readonly showExpanded: (observableOrValue: {
167
- id?: string;
168
- } | rxjs.Observable<{
169
- id?: string;
170
- }>) => rxjs.Subscription;
171
- readonly hideExpanded: (observableOrValue: {
172
- id?: string;
173
- } | rxjs.Observable<{
174
- id?: string;
175
- }>) => rxjs.Subscription;
176
- readonly toggleSelected: (observableOrValue: {
177
- id?: string;
178
- } | rxjs.Observable<{
179
- id?: string;
180
- }>) => rxjs.Subscription;
181
- constructor(initialState: TState, apiService: any);
182
- static ɵfac: i0.ɵɵFactoryDeclaration<TableStore<any, any, any>, never>;
183
- static ɵprov: i0.ɵɵInjectableDeclaration<TableStore<any, any, any>>;
184
- }
185
-
186
- declare namespace Group {
187
- interface IData {
188
- id?: string;
189
- createdTimestamp?: Date;
190
- updatedTimestamp?: Date;
191
- deletedTimestamp?: Date;
192
- active?: boolean;
193
- organizationId?: string;
194
- organization?: any;
195
- type?: string;
196
- name: string;
197
- codePrefix?: string;
198
- timezone?: string;
199
- language?: string;
200
- pictureKey?: string;
201
- }
202
- interface IDataEx extends IData, TableRowProperty {
203
- isLoading?: boolean;
204
- }
205
- interface Filter {
206
- dateRange?: {
207
- from: Date;
208
- to: Date;
209
- };
210
- organizationId?: string[];
211
- id?: string[];
212
- type?: string[];
213
- active?: boolean | null;
214
- approved?: boolean | null;
215
- keyword?: string;
216
- }
217
- }
218
- declare class GroupStore extends TableStore<ITableState<Group.IData>, IRow<never>, never> {
219
- constructor();
220
- static ɵfac: i0.ɵɵFactoryDeclaration<GroupStore, never>;
221
- static ɵprov: i0.ɵɵInjectableDeclaration<GroupStore>;
222
- }
223
-
224
- declare namespace Member {
225
- type MemberType = 'systemMember' | 'systemAdmin';
226
- interface IData {
227
- id?: string;
228
- createdTimestamp?: Date;
229
- updatedTimestamp?: Date;
230
- active?: boolean;
231
- groupId?: string;
232
- group?: Group.IData;
233
- username?: string;
234
- role?: string;
235
- type?: string;
236
- fullName?: string;
237
- nickname: string;
238
- mobile?: string;
239
- email?: string;
240
- status?: string;
241
- pictureKey?: string;
242
- }
243
- interface IDataEx extends IData, TableRowProperty {
244
- isLoading?: boolean;
245
- }
246
- interface Filter {
247
- dateRange?: {
248
- from: Date;
249
- to: Date;
250
- };
251
- organizationId: string[];
252
- groupId: string[];
253
- type: string[];
254
- active: boolean | null;
255
- keyword: string;
256
- }
257
- }
258
- declare class MemberStore extends TableStore<ITableState<Member.IData>, IRow<never>, never> {
259
- constructor();
260
- static ɵfac: i0.ɵɵFactoryDeclaration<MemberStore, never>;
261
- static ɵprov: i0.ɵɵInjectableDeclaration<MemberStore>;
262
- }
263
-
264
- declare class DisplayNamePipe implements PipeTransform {
265
- transform(member: Member.IData | null | undefined): string;
266
- static ɵfac: i0.ɵɵFactoryDeclaration<DisplayNamePipe, never>;
267
- static ɵpipe: i0.ɵɵPipeDeclaration<DisplayNamePipe, "displayName", true>;
268
- }
269
-
270
- declare class AuthService<TM extends Member.IData, TG extends Group.IData> {
271
- private readonly globalStore;
272
- canActivate(resource: string, action: string, shouldStripTag?: boolean): Observable<boolean>;
273
- getProfile(): Observable<TM | undefined>;
274
- setProfile(profile: TM): void;
275
- isAuthenticated(): Observable<boolean>;
276
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthService<any, any>, never>;
277
- static ɵprov: i0.ɵɵInjectableDeclaration<AuthService<any, any>>;
278
- }
279
-
280
- interface ParentEntity {
281
- name: string;
282
- id: string;
283
- }
284
- declare class BaseEntityApiService<T> {
285
- private readonly coreService;
286
- protected http: HttpClient;
287
- protected apiUrl: string;
288
- createEntity(entity: T, parent?: ParentEntity): Observable<ApiResponse>;
289
- getListEntity(searchParams: SearchParams.IData, parent?: ParentEntity): Observable<ApiResponse>;
290
- getEntityById(id: string, parent?: ParentEntity): Observable<ApiResponse>;
291
- updateEntityById(id: string, entity: T, parent?: ParentEntity): Observable<ApiResponse>;
292
- deleteEntityById(id: string, parent?: ParentEntity): Observable<ApiResponse>;
293
- getEntityName(): string;
294
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseEntityApiService<any>, never>;
295
- static ɵprov: i0.ɵɵInjectableDeclaration<BaseEntityApiService<any>>;
296
- }
297
-
298
- declare class CdnApiService {
299
- private readonly coreService;
300
- private http;
301
- private apiUrl;
302
- upload(file: File, keyPrefix: string): Observable<string>;
303
- getPresignedPutUrl(key: string): Observable<ApiResponse>;
304
- uploadFile(presignedUrl: string, file: File): Observable<any>;
305
- getPresignedGetUrl(key: string): Observable<string>;
306
- static ɵfac: i0.ɵɵFactoryDeclaration<CdnApiService, never>;
307
- static ɵprov: i0.ɵɵInjectableDeclaration<CdnApiService>;
308
- }
309
-
310
- declare class GlobalApiService {
311
- private readonly coreService;
312
- private http;
313
- private apiUrl;
314
- getAcl(): Observable<ApiResponse>;
315
- getListMenuItem(): Observable<ApiResponse>;
316
- static ɵfac: i0.ɵɵFactoryDeclaration<GlobalApiService, never>;
317
- static ɵprov: i0.ɵɵInjectableDeclaration<GlobalApiService>;
318
- }
319
-
320
- declare class GroupApiService<T extends Group.IData> extends BaseEntityApiService<T> {
321
- getEntityName(): string;
322
- static ɵfac: i0.ɵɵFactoryDeclaration<GroupApiService<any>, never>;
323
- static ɵprov: i0.ɵɵInjectableDeclaration<GroupApiService<any>>;
324
- }
325
-
326
- declare class MemberApiService<T extends Member.IData> extends BaseEntityApiService<T> {
327
- getEntityName(): string;
328
- getProfile(): Observable<ApiResponse>;
329
- checkMemberByEmail(email: string): Observable<ApiResponse>;
330
- checkMemberByNickname(nickname: string): Observable<ApiResponse>;
331
- registration(member: T): Observable<ApiResponse>;
332
- static ɵfac: i0.ɵɵFactoryDeclaration<MemberApiService<any>, never>;
333
- static ɵprov: i0.ɵɵInjectableDeclaration<MemberApiService<any>>;
334
- }
335
-
336
- declare namespace Device {
337
- type DeviceType = 'printer';
338
- interface IData {
339
- id?: string;
340
- createdTimestamp?: Date;
341
- updatedTimestamp?: Date;
342
- campaignId?: string;
343
- type?: DeviceType;
344
- name: string;
345
- }
346
- interface IDataEx extends IData, TableRowProperty {
347
- isLoading?: boolean;
348
- }
349
- interface Filter {
350
- campaignId?: string;
351
- type?: DeviceType[];
352
- keyword?: string;
353
- }
354
- class DeviceStore extends TableStore<ITableState<IData>, IRow<never>, Filter> {
355
- constructor();
356
- static ɵfac: i0.ɵɵFactoryDeclaration<DeviceStore, never>;
357
- static ɵprov: i0.ɵɵInjectableDeclaration<DeviceStore>;
358
- }
359
- }
360
-
361
- declare class DeviceApiService<T extends Device.IData = Device.IData> extends BaseEntityApiService<T> {
362
- getEntityName(): string;
363
- static ɵfac: i0.ɵɵFactoryDeclaration<DeviceApiService<any>, never>;
364
- static ɵprov: i0.ɵɵInjectableDeclaration<DeviceApiService<any>>;
365
- }
366
-
367
- declare namespace GlobalActions {
368
- const markInitiated: _ngrx_store.ActionCreator<"[Global] Mark Initiated", (props: {
369
- initiated: boolean;
370
- }) => {
371
- initiated: boolean;
372
- } & _ngrx_store.Action<"[Global] Mark Initiated">>;
373
- const clearAuthentication: _ngrx_store.ActionCreator<"[Global] Clear Authentication", () => _ngrx_store.Action<"[Global] Clear Authentication">>;
374
- const setAuthenticated: _ngrx_store.ActionCreator<"[Global] Set Authenticated", (props: {
375
- isAuthenticated: boolean;
376
- }) => {
377
- isAuthenticated: boolean;
378
- } & _ngrx_store.Action<"[Global] Set Authenticated">>;
379
- const setProfile: _ngrx_store.ActionCreator<"[Global] Set Profile", (props: {
380
- profile: Member.IData & {
381
- [key: string]: any;
382
- };
383
- }) => {
384
- profile: Member.IData & {
385
- [key: string]: any;
386
- };
387
- } & _ngrx_store.Action<"[Global] Set Profile">>;
388
- const increaseLoadingReference: _ngrx_store.ActionCreator<"[Global] Increase Loading Reference", () => _ngrx_store.Action<"[Global] Increase Loading Reference">>;
389
- const decreaseLoadingReference: _ngrx_store.ActionCreator<"[Global] Decrease Loading Reference", () => _ngrx_store.Action<"[Global] Decrease Loading Reference">>;
390
- const setAcl: _ngrx_store.ActionCreator<"[Global] Set Acl", (props: {
391
- acl: Acl;
392
- }) => {
393
- acl: Acl;
394
- } & _ngrx_store.Action<"[Global] Set Acl">>;
395
- const setListMenuItem: _ngrx_store.ActionCreator<"[Global] Set List Menu Item", (props: {
396
- listMenuItem: MenuItem[];
397
- }) => {
398
- listMenuItem: MenuItem[];
399
- } & _ngrx_store.Action<"[Global] Set List Menu Item">>;
400
- const toggleSideMenu: _ngrx_store.ActionCreator<"[Global] Toggle Side Menu", () => _ngrx_store.Action<"[Global] Toggle Side Menu">>;
401
- const closeSideMenu: _ngrx_store.ActionCreator<"[Global] Close Side Menu", () => _ngrx_store.Action<"[Global] Close Side Menu">>;
402
- const setLanguage: _ngrx_store.ActionCreator<"[Global] Set Language", (props: {
403
- language: string;
404
- }) => {
405
- language: string;
406
- } & _ngrx_store.Action<"[Global] Set Language">>;
407
- const setCurrentGroup: _ngrx_store.ActionCreator<"[Global] Set Current Group", (props: {
408
- group: Group.IData & {
409
- [key: string]: any;
410
- };
411
- }) => {
412
- group: Group.IData & {
413
- [key: string]: any;
414
- };
415
- } & _ngrx_store.Action<"[Global] Set Current Group">>;
416
- }
417
-
418
- declare class GlobalEffects<TM extends Member.IData, TG extends Group.IData> {
419
- private actions$;
420
- private memberApiService;
421
- private globalApiService;
422
- private groupApiService;
423
- private store;
424
- setAuthenticated$: rxjs.Observable<({
425
- profile: Member.IData & {
426
- [key: string]: any;
427
- };
428
- } & _ngrx_store.Action<"[Global] Set Profile">) | ({
429
- acl: _haloduck_core.Acl;
430
- } & _ngrx_store.Action<"[Global] Set Acl">) | ({
431
- listMenuItem: _haloduck_core.MenuItem[];
432
- } & _ngrx_store.Action<"[Global] Set List Menu Item">) | ({
433
- group: Group.IData & {
434
- [key: string]: any;
435
- };
436
- } & _ngrx_store.Action<"[Global] Set Current Group">) | ({
437
- initiated: boolean;
438
- } & _ngrx_store.Action<"[Global] Mark Initiated">) | _ngrx_store.Action<"[Global] Clear Authentication">> & _ngrx_effects.CreateEffectMetadata;
439
- static ɵfac: i0.ɵɵFactoryDeclaration<GlobalEffects<any, any>, never>;
440
- static ɵprov: i0.ɵɵInjectableDeclaration<GlobalEffects<any, any>>;
441
- }
442
-
443
- declare const globalReducer: _ngrx_store.ActionReducer<_haloduck_core.GlobalStateEx, _ngrx_store.Action<string>>;
444
-
445
- interface GlobalState<TM extends Member.IData, TG extends Group.IData> {
446
- initiated: boolean;
447
- isAuthenticated: boolean;
448
- loadingReference: number;
449
- acl: Acl;
450
- listMenuItem: MenuItem[];
451
- isSideMenuOpen: boolean;
452
- language: string;
453
- profile?: TM;
454
- currentGroup?: TG;
455
- }
456
- type GlobalStateEx = GlobalState<Member.IData & {
457
- [key: string]: any;
458
- }, Group.IData & {
459
- [key: string]: any;
460
- }>;
461
- declare const initialState: GlobalStateEx;
462
-
463
- declare namespace GlobalSelectors {
464
- const selectGlobalState: _ngrx_store.MemoizedSelector<object, GlobalStateEx, _ngrx_store.DefaultProjectorFn<GlobalStateEx>>;
465
- const isInitiated: _ngrx_store.MemoizedSelector<object, boolean, (s1: GlobalStateEx) => boolean>;
466
- const selectIsAuthenticated: _ngrx_store.MemoizedSelector<object, boolean, (s1: GlobalStateEx) => boolean>;
467
- const selectProfile: _ngrx_store.MemoizedSelector<object, (_haloduck_core.Member.IData & {
468
- [key: string]: any;
469
- }) | undefined, (s1: GlobalStateEx) => (_haloduck_core.Member.IData & {
470
- [key: string]: any;
471
- }) | undefined>;
472
- const selectIsLoading: _ngrx_store.MemoizedSelector<object, boolean, (s1: GlobalStateEx) => boolean>;
473
- const selectAcl: _ngrx_store.MemoizedSelector<object, _haloduck_core.Acl, (s1: GlobalStateEx) => _haloduck_core.Acl>;
474
- const selectListMenuItem: _ngrx_store.MemoizedSelector<object, _haloduck_core.MenuItem[], (s1: GlobalStateEx) => _haloduck_core.MenuItem[]>;
475
- const selectIsSideMenuOpen: _ngrx_store.MemoizedSelector<object, boolean, (s1: GlobalStateEx) => boolean>;
476
- const selectLanguage: _ngrx_store.MemoizedSelector<object, string, (s1: GlobalStateEx) => string>;
477
- const canActivate: (resource: string, action: string, shouldStripTag?: boolean) => _ngrx_store.MemoizedSelector<object, boolean, (s1: _haloduck_core.Acl) => boolean>;
478
- const selectCurrentGroupId: _ngrx_store.MemoizedSelector<object, string | undefined, (s1: GlobalStateEx) => string | undefined>;
479
- const selectCurrentGroup: _ngrx_store.MemoizedSelector<object, (_haloduck_core.Group.IData & {
480
- [key: string]: any;
481
- }) | undefined, (s1: GlobalStateEx) => (_haloduck_core.Group.IData & {
482
- [key: string]: any;
483
- }) | undefined>;
484
- }
485
-
486
- declare const defaultLanguage: {
487
- id: string;
488
- value: string;
489
- };
490
- declare const supportedLanguages: {
491
- id: string;
492
- value: string;
493
- }[];
494
- interface HaloduckCoreConfig {
495
- stage: string;
496
- appName: string;
497
- defaultLanguage: string;
498
- dateFormat: {
499
- long: string;
500
- short: string;
501
- };
502
- apiUrl: string;
503
- cdnUrl: string;
504
- map: {
505
- googleApiKey: string;
506
- mapId: string;
507
- defaultLngLat: LngLat;
508
- };
509
- }
510
- declare const HALODUCK_CORE_CONFIG: InjectionToken<HaloduckCoreConfig>;
511
- declare function provideHaloduckCoreConfig(config: HaloduckCoreConfig): Provider;
512
- declare class CoreService {
513
- private config;
514
- constructor();
515
- getStage(): string;
516
- getAppName(): string;
517
- getDefaultLanguage(): string;
518
- getApiUrl(): string;
519
- getCdnUrl(): string;
520
- getDateFormatLong(): string;
521
- getDateFormatShort(): string;
522
- getGoogleApiKey(): string;
523
- getMapId(): string;
524
- getDefaultLngLat(): LngLat;
525
- static ɵfac: i0.ɵɵFactoryDeclaration<CoreService, never>;
526
- static ɵprov: i0.ɵɵInjectableDeclaration<CoreService>;
527
- }
528
-
529
- export { AuthService, BaseEntityApiService, CdnApiService, CoreService, Device, DeviceApiService, DisplayNamePipe, GlobalActions, GlobalApiService, GlobalEffects, GlobalSelectors, Group, GroupApiService, GroupStore, HALODUCK_CORE_CONFIG, ITableStateStatusCreated, ITableStateStatusCreating, ITableStateStatusDeleted, ITableStateStatusDeleting, ITableStateStatusFailedToCreate, ITableStateStatusFailedToDelete, ITableStateStatusFailedToLoad, ITableStateStatusFailedToUpdate, ITableStateStatusLoaded, ITableStateStatusLoading, ITableStateStatusUpdated, ITableStateStatusUpdating, Member, MemberApiService, MemberStore, SearchParams, TableStore, authGuard, defaultLanguage, dummyMemberIdInterceptor, errorHandler, globalReducer, groupIdInterceptor, idTokenInterceptor, initialState, provideHaloduckCoreConfig, responseHandler, supportedLanguages };
530
- export type { Acl, AclAction, ApiError, ApiResponse, GlobalState, GlobalStateEx, HaloduckCoreConfig, IRow, ITableState, ITableStateParent, LngLat, MenuItem, MenuItemEx, ParentEntity, TableRowProperty };