@tiba-spark/client-shared-lib 26.3.0-191 → 26.3.0-194
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/esm2022/libraries/interfaces/action-status-changed.interface.mjs +1 -1
- package/esm2022/libraries/modules/category/category.actions.mjs +36 -0
- package/esm2022/libraries/modules/category/category.module.mjs +21 -0
- package/esm2022/libraries/modules/category/category.state.mjs +86 -0
- package/esm2022/libraries/modules/category/index.mjs +6 -0
- package/esm2022/libraries/modules/facility/facility.actions.mjs +1 -108
- package/esm2022/libraries/modules/facility/facility.state.mjs +6 -197
- package/esm2022/libraries/modules/facility/is-lookup-park-active.mjs +10 -0
- package/esm2022/libraries/modules/group/group.actions.mjs +30 -0
- package/esm2022/libraries/modules/group/group.module.mjs +21 -0
- package/esm2022/libraries/modules/group/group.state.mjs +86 -0
- package/esm2022/libraries/modules/group/index.mjs +6 -0
- package/esm2022/libraries/modules/index.mjs +4 -1
- package/esm2022/libraries/modules/job-title/index.mjs +6 -0
- package/esm2022/libraries/modules/job-title/job-title.actions.mjs +30 -0
- package/esm2022/libraries/modules/job-title/job-title.module.mjs +21 -0
- package/esm2022/libraries/modules/job-title/job-title.state.mjs +86 -0
- package/esm2022/libraries/utils/ngxs/action-status.const.mjs +9 -0
- package/esm2022/libraries/utils/ngxs/action-status.service.mjs +6 -5
- package/esm2022/libraries/utils/ngxs/action-status.util.mjs +6 -5
- package/esm2022/libraries/utils/ngxs/cancel-on.operator.mjs +13 -0
- package/esm2022/libraries/utils/ngxs/index.mjs +3 -1
- package/fesm2022/tiba-spark-client-shared-lib.mjs +410 -309
- package/fesm2022/tiba-spark-client-shared-lib.mjs.map +1 -1
- package/libraries/interfaces/action-status-changed.interface.d.ts +1 -1
- package/libraries/interfaces/action-status-changed.interface.d.ts.map +1 -1
- package/libraries/modules/category/category.actions.d.ts +27 -0
- package/libraries/modules/category/category.actions.d.ts.map +1 -0
- package/libraries/modules/category/category.module.d.ts +8 -0
- package/libraries/modules/category/category.module.d.ts.map +1 -0
- package/libraries/modules/category/category.state.d.ts +21 -0
- package/libraries/modules/category/category.state.d.ts.map +1 -0
- package/libraries/modules/category/index.d.ts +4 -0
- package/libraries/modules/category/index.d.ts.map +1 -0
- package/libraries/modules/facility/facility.actions.d.ts +0 -89
- package/libraries/modules/facility/facility.actions.d.ts.map +1 -1
- package/libraries/modules/facility/facility.state.d.ts +3 -27
- package/libraries/modules/facility/facility.state.d.ts.map +1 -1
- package/libraries/modules/facility/is-lookup-park-active.d.ts +3 -0
- package/libraries/modules/facility/is-lookup-park-active.d.ts.map +1 -0
- package/libraries/modules/group/group.actions.d.ts +27 -0
- package/libraries/modules/group/group.actions.d.ts.map +1 -0
- package/libraries/modules/group/group.module.d.ts +8 -0
- package/libraries/modules/group/group.module.d.ts.map +1 -0
- package/libraries/modules/group/group.state.d.ts +21 -0
- package/libraries/modules/group/group.state.d.ts.map +1 -0
- package/libraries/modules/group/index.d.ts +4 -0
- package/libraries/modules/group/index.d.ts.map +1 -0
- package/libraries/modules/index.d.ts +3 -0
- package/libraries/modules/index.d.ts.map +1 -1
- package/libraries/modules/job-title/index.d.ts +4 -0
- package/libraries/modules/job-title/index.d.ts.map +1 -0
- package/libraries/modules/job-title/job-title.actions.d.ts +27 -0
- package/libraries/modules/job-title/job-title.actions.d.ts.map +1 -0
- package/libraries/modules/job-title/job-title.module.d.ts +8 -0
- package/libraries/modules/job-title/job-title.module.d.ts.map +1 -0
- package/libraries/modules/job-title/job-title.state.d.ts +21 -0
- package/libraries/modules/job-title/job-title.state.d.ts.map +1 -0
- package/libraries/utils/ngxs/action-status.const.d.ts +12 -0
- package/libraries/utils/ngxs/action-status.const.d.ts.map +1 -0
- package/libraries/utils/ngxs/action-status.service.d.ts +3 -2
- package/libraries/utils/ngxs/action-status.service.d.ts.map +1 -1
- package/libraries/utils/ngxs/action-status.util.d.ts +3 -2
- package/libraries/utils/ngxs/action-status.util.d.ts.map +1 -1
- package/libraries/utils/ngxs/cancel-on.operator.d.ts +4 -0
- package/libraries/utils/ngxs/cancel-on.operator.d.ts.map +1 -0
- package/libraries/utils/ngxs/index.d.ts +2 -0
- package/libraries/utils/ngxs/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -113448,13 +113448,22 @@ function toStringMap(array, keyMapper) {
|
|
|
113448
113448
|
return res;
|
|
113449
113449
|
}
|
|
113450
113450
|
|
|
113451
|
+
// ActionStatus is an ambient const enum in @ngxs/store, so it has no runtime export.
|
|
113452
|
+
// Importing it as a value leaves the bundler with an import that resolves to nothing.
|
|
113453
|
+
const ACTION_STATUS = {
|
|
113454
|
+
Dispatched: 'DISPATCHED',
|
|
113455
|
+
Successful: 'SUCCESSFUL',
|
|
113456
|
+
Canceled: 'CANCELED',
|
|
113457
|
+
Errored: 'ERRORED',
|
|
113458
|
+
};
|
|
113459
|
+
|
|
113451
113460
|
class ActionStatusService {
|
|
113452
113461
|
static { this.pendingTracking = []; }
|
|
113453
113462
|
static { this.actionTypes = new Map([
|
|
113454
|
-
[
|
|
113455
|
-
[
|
|
113456
|
-
[
|
|
113457
|
-
[
|
|
113463
|
+
[ACTION_STATUS.Dispatched, new Set()],
|
|
113464
|
+
[ACTION_STATUS.Canceled, new Set()],
|
|
113465
|
+
[ACTION_STATUS.Errored, new Set()],
|
|
113466
|
+
[ACTION_STATUS.Successful, new Set()]
|
|
113458
113467
|
]); }
|
|
113459
113468
|
constructor(actions$, store) {
|
|
113460
113469
|
this.actions$ = actions$;
|
|
@@ -113530,16 +113539,27 @@ function ofStatus(action, status) {
|
|
|
113530
113539
|
return { type: `${type}.${status}` };
|
|
113531
113540
|
}
|
|
113532
113541
|
function dispatched(action) {
|
|
113533
|
-
return ofStatus(action,
|
|
113542
|
+
return ofStatus(action, ACTION_STATUS.Dispatched);
|
|
113534
113543
|
}
|
|
113535
113544
|
function canceled(action) {
|
|
113536
|
-
return ofStatus(action,
|
|
113545
|
+
return ofStatus(action, ACTION_STATUS.Canceled);
|
|
113537
113546
|
}
|
|
113538
113547
|
function errored(action) {
|
|
113539
|
-
return ofStatus(action,
|
|
113548
|
+
return ofStatus(action, ACTION_STATUS.Errored);
|
|
113540
113549
|
}
|
|
113541
113550
|
function successful(action) {
|
|
113542
|
-
return ofStatus(action,
|
|
113551
|
+
return ofStatus(action, ACTION_STATUS.Successful);
|
|
113552
|
+
}
|
|
113553
|
+
|
|
113554
|
+
// Discards an in-flight request once one of the given actions is dispatched, so a slow
|
|
113555
|
+
// response cannot land after the data it was fetched for has been cleared or replaced.
|
|
113556
|
+
// Unsubscribing reaches HttpClient's teardown, so the request is aborted rather than ignored.
|
|
113557
|
+
//
|
|
113558
|
+
// This is what @Action's cancelUncompleted does, keyed on other actions instead of a repeat
|
|
113559
|
+
// of the same one. Use it for reads only: a create or delete must reach the server, so those
|
|
113560
|
+
// guard their response with isLookupParkActive instead of cancelling it.
|
|
113561
|
+
function cancelOn(actions$, ...cancelWhen) {
|
|
113562
|
+
return source => source.pipe(takeUntil$1(actions$.pipe(ofActionDispatched(...cancelWhen))));
|
|
113543
113563
|
}
|
|
113544
113564
|
|
|
113545
113565
|
function HasActionErrored(actions) {
|
|
@@ -118834,97 +118854,6 @@ let LoadMacroCommandsAction = class LoadMacroCommandsAction {
|
|
|
118834
118854
|
LoadMacroCommandsAction = __decorate([
|
|
118835
118855
|
TrackAction()
|
|
118836
118856
|
], LoadMacroCommandsAction);
|
|
118837
|
-
let LoadCategoriesAction = class LoadCategoriesAction {
|
|
118838
|
-
static { this.type = '[parking-lot] LoadCategories'; }
|
|
118839
|
-
constructor(parkId, guid, searchParamsDto) {
|
|
118840
|
-
this.parkId = parkId;
|
|
118841
|
-
this.guid = guid;
|
|
118842
|
-
this.searchParamsDto = searchParamsDto;
|
|
118843
|
-
}
|
|
118844
|
-
};
|
|
118845
|
-
LoadCategoriesAction = __decorate([
|
|
118846
|
-
TrackAction()
|
|
118847
|
-
], LoadCategoriesAction);
|
|
118848
|
-
class LoadAccountManagementJobTitlesAction {
|
|
118849
|
-
static { this.type = '[parking-lot] LoadJobTitles'; }
|
|
118850
|
-
constructor(parkId, guid, searchParamsDto) {
|
|
118851
|
-
this.parkId = parkId;
|
|
118852
|
-
this.guid = guid;
|
|
118853
|
-
this.searchParamsDto = searchParamsDto;
|
|
118854
|
-
}
|
|
118855
|
-
}
|
|
118856
|
-
class LoadReportsJobTitlesAction {
|
|
118857
|
-
static { this.type = '[parking-lot] LoadReportsJobTitlesAction'; }
|
|
118858
|
-
constructor(parkId, guid, searchParamsDto) {
|
|
118859
|
-
this.parkId = parkId;
|
|
118860
|
-
this.guid = guid;
|
|
118861
|
-
this.searchParamsDto = searchParamsDto;
|
|
118862
|
-
}
|
|
118863
|
-
}
|
|
118864
|
-
class LoadReportsGuestGroupAction {
|
|
118865
|
-
static { this.type = '[parking-lot] LoadReportsGuestGroupAction'; }
|
|
118866
|
-
constructor(parkId, guid, searchParamsDto) {
|
|
118867
|
-
this.parkId = parkId;
|
|
118868
|
-
this.guid = guid;
|
|
118869
|
-
this.searchParamsDto = searchParamsDto;
|
|
118870
|
-
}
|
|
118871
|
-
}
|
|
118872
|
-
class LoadAccountManagementGuestGroupAction {
|
|
118873
|
-
static { this.type = '[parking-lot] LoadAccountManagementGuestGroupAction'; }
|
|
118874
|
-
constructor(parkId, guid, searchParamsDto) {
|
|
118875
|
-
this.parkId = parkId;
|
|
118876
|
-
this.guid = guid;
|
|
118877
|
-
this.searchParamsDto = searchParamsDto;
|
|
118878
|
-
}
|
|
118879
|
-
}
|
|
118880
|
-
class CreateCategoryAction {
|
|
118881
|
-
static { this.type = '[parking-lot] CreateCategory'; }
|
|
118882
|
-
constructor(parkId, guid, name) {
|
|
118883
|
-
this.parkId = parkId;
|
|
118884
|
-
this.guid = guid;
|
|
118885
|
-
this.name = name;
|
|
118886
|
-
}
|
|
118887
|
-
}
|
|
118888
|
-
class DeleteCategoryAction {
|
|
118889
|
-
static { this.type = '[parking-lot] DeleteCategory'; }
|
|
118890
|
-
constructor(parkId, guid, id) {
|
|
118891
|
-
this.parkId = parkId;
|
|
118892
|
-
this.guid = guid;
|
|
118893
|
-
this.id = id;
|
|
118894
|
-
}
|
|
118895
|
-
}
|
|
118896
|
-
class CreateGroupAction {
|
|
118897
|
-
static { this.type = '[parking-lot] CreateGroup'; }
|
|
118898
|
-
constructor(parkId, guid, name) {
|
|
118899
|
-
this.parkId = parkId;
|
|
118900
|
-
this.guid = guid;
|
|
118901
|
-
this.name = name;
|
|
118902
|
-
}
|
|
118903
|
-
}
|
|
118904
|
-
class DeleteGroupAction {
|
|
118905
|
-
static { this.type = '[parking-lot] DeleteGroup'; }
|
|
118906
|
-
constructor(parkId, guid, id) {
|
|
118907
|
-
this.parkId = parkId;
|
|
118908
|
-
this.guid = guid;
|
|
118909
|
-
this.id = id;
|
|
118910
|
-
}
|
|
118911
|
-
}
|
|
118912
|
-
class CreateJobTitleAction {
|
|
118913
|
-
static { this.type = '[parking-lot] CreateJobTitle'; }
|
|
118914
|
-
constructor(parkId, guid, name) {
|
|
118915
|
-
this.parkId = parkId;
|
|
118916
|
-
this.guid = guid;
|
|
118917
|
-
this.name = name;
|
|
118918
|
-
}
|
|
118919
|
-
}
|
|
118920
|
-
class DeleteJobTitleAction {
|
|
118921
|
-
static { this.type = '[parking-lot] DeleteJobTitle'; }
|
|
118922
|
-
constructor(parkId, guid, id) {
|
|
118923
|
-
this.parkId = parkId;
|
|
118924
|
-
this.guid = guid;
|
|
118925
|
-
this.id = id;
|
|
118926
|
-
}
|
|
118927
|
-
}
|
|
118928
118857
|
class LoadAccessProfileZonesAction {
|
|
118929
118858
|
static { this.type = '[parking-lot] LoadAccessProfileZones'; }
|
|
118930
118859
|
constructor(parkId, guid, searchParamsDto) {
|
|
@@ -118957,21 +118886,6 @@ class LoadZsAction {
|
|
|
118957
118886
|
this.searchParamsDto = searchParamsDto;
|
|
118958
118887
|
}
|
|
118959
118888
|
}
|
|
118960
|
-
class ClearCategoriesAction {
|
|
118961
|
-
static { this.type = '[parking-lot] ClearCategories'; }
|
|
118962
|
-
constructor() {
|
|
118963
|
-
}
|
|
118964
|
-
}
|
|
118965
|
-
class ClearJobTitlesAction {
|
|
118966
|
-
static { this.type = '[parking-lot] ClearJobTitles'; }
|
|
118967
|
-
constructor() {
|
|
118968
|
-
}
|
|
118969
|
-
}
|
|
118970
|
-
class ClearGroupsAction {
|
|
118971
|
-
static { this.type = '[parking-lot] ClearGroups'; }
|
|
118972
|
-
constructor() {
|
|
118973
|
-
}
|
|
118974
|
-
}
|
|
118975
118889
|
class ClearZonesAction {
|
|
118976
118890
|
static { this.type = '[parking-lot] ClearZones'; }
|
|
118977
118891
|
constructor() {
|
|
@@ -123266,9 +123180,6 @@ const defaults = {
|
|
|
123266
123180
|
tibaKeys: {},
|
|
123267
123181
|
deviceRemoteCommandsDictionary: {},
|
|
123268
123182
|
facilityRemoteCommandsDictionary: {},
|
|
123269
|
-
groups: null,
|
|
123270
|
-
categories: null,
|
|
123271
|
-
jobTitles: null,
|
|
123272
123183
|
zones: null,
|
|
123273
123184
|
z: null,
|
|
123274
123185
|
allowedActions: {},
|
|
@@ -123277,16 +123188,13 @@ const defaults = {
|
|
|
123277
123188
|
};
|
|
123278
123189
|
let FacilityState = class FacilityState {
|
|
123279
123190
|
static { FacilityState_1 = this; }
|
|
123280
|
-
constructor(store, facilityCommandsConfigService, localStorageService, facilityMenuService, facilityServiceProxy, remoteCommandRpcServiceProxy,
|
|
123191
|
+
constructor(store, facilityCommandsConfigService, localStorageService, facilityMenuService, facilityServiceProxy, remoteCommandRpcServiceProxy, zoneRpcServiceProxy, zRpcServiceProxy, globalErrorService, commandNotificationService, translateService, appConfig) {
|
|
123281
123192
|
this.store = store;
|
|
123282
123193
|
this.facilityCommandsConfigService = facilityCommandsConfigService;
|
|
123283
123194
|
this.localStorageService = localStorageService;
|
|
123284
123195
|
this.facilityMenuService = facilityMenuService;
|
|
123285
123196
|
this.facilityServiceProxy = facilityServiceProxy;
|
|
123286
123197
|
this.remoteCommandRpcServiceProxy = remoteCommandRpcServiceProxy;
|
|
123287
|
-
this.groupRpcServiceProxy = groupRpcServiceProxy;
|
|
123288
|
-
this.categoryServiceProxy = categoryServiceProxy;
|
|
123289
|
-
this.jobTitleRpcServiceProxy = jobTitleRpcServiceProxy;
|
|
123290
123198
|
this.zoneRpcServiceProxy = zoneRpcServiceProxy;
|
|
123291
123199
|
this.zRpcServiceProxy = zRpcServiceProxy;
|
|
123292
123200
|
this.globalErrorService = globalErrorService;
|
|
@@ -123294,14 +123202,6 @@ let FacilityState = class FacilityState {
|
|
|
123294
123202
|
this.translateService = translateService;
|
|
123295
123203
|
this.appConfig = appConfig;
|
|
123296
123204
|
this.isParkActive = (ctx, guid, parkId) => ctx.getState().selected?.id === parkId && ctx.getState().guid === guid;
|
|
123297
|
-
// Lookup mutations carry the PARENT park id on a multi-park site, so isParkActive - which
|
|
123298
|
-
// compares selected.id - would never match for a child facility. Resolve the selected
|
|
123299
|
-
// facility to its lookup park before comparing, or an in-flight create/delete response
|
|
123300
|
-
// would patch the list of whichever facility the user switched to.
|
|
123301
|
-
this.isLookupParkActive = (ctx, guid, parkId) => {
|
|
123302
|
-
const selected = ctx.getState().selected;
|
|
123303
|
-
return ctx.getState().guid === guid && (selected?.multiParkParentID || selected?.id) === parkId;
|
|
123304
|
-
};
|
|
123305
123205
|
}
|
|
123306
123206
|
static selected(state) {
|
|
123307
123207
|
return state.selected;
|
|
@@ -123369,15 +123269,6 @@ let FacilityState = class FacilityState {
|
|
|
123369
123269
|
static selectedParkFacilityRemoteCommands(state) {
|
|
123370
123270
|
return state.facilityRemoteCommandsDictionary[state.guid] ? state.facilityRemoteCommandsDictionary[state.guid][state.parkId] : [];
|
|
123371
123271
|
}
|
|
123372
|
-
static groups(state) {
|
|
123373
|
-
return state.groups;
|
|
123374
|
-
}
|
|
123375
|
-
static categories(state) {
|
|
123376
|
-
return state.categories;
|
|
123377
|
-
}
|
|
123378
|
-
static jobTitles(state) {
|
|
123379
|
-
return state.jobTitles;
|
|
123380
|
-
}
|
|
123381
123272
|
static z(state) {
|
|
123382
123273
|
return state.z;
|
|
123383
123274
|
}
|
|
@@ -123614,46 +123505,6 @@ let FacilityState = class FacilityState {
|
|
|
123614
123505
|
onSetBasicMenuAction(ctx, { smartparkMap, appModule }) {
|
|
123615
123506
|
ctx.dispatch(new MenuLoadAction(this.toBasicMenuItems(ctx, smartparkMap, ctx.getState().dictionary, appModule), appModule));
|
|
123616
123507
|
}
|
|
123617
|
-
onLoadAccountManagementGuestGroupsAction(ctx, action) {
|
|
123618
|
-
const getGroups$ = this.groupRpcServiceProxy.getGuestGroup(action.guid, action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection);
|
|
123619
|
-
return getGroups$.pipe(tap$1(groups => {
|
|
123620
|
-
ctx.patchState({
|
|
123621
|
-
groups: groups.data,
|
|
123622
|
-
});
|
|
123623
|
-
}));
|
|
123624
|
-
}
|
|
123625
|
-
onLoadReportsGuestGroupsAction(ctx, action) {
|
|
123626
|
-
const getGroups$ = this.groupRpcServiceProxy.getGuestGroup(action.guid, action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection);
|
|
123627
|
-
return getGroups$.pipe(tap$1(groups => {
|
|
123628
|
-
ctx.patchState({
|
|
123629
|
-
groups: groups.data,
|
|
123630
|
-
});
|
|
123631
|
-
}));
|
|
123632
|
-
}
|
|
123633
|
-
onLoadCategoriesAction(ctx, action) {
|
|
123634
|
-
const getCategories$ = this.categoryServiceProxy.getCategories(action.guid, action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection);
|
|
123635
|
-
return getCategories$.pipe(tap$1(categories => {
|
|
123636
|
-
ctx.patchState({
|
|
123637
|
-
categories: categories.data,
|
|
123638
|
-
});
|
|
123639
|
-
}));
|
|
123640
|
-
}
|
|
123641
|
-
onLoadReportsJobTitlesAction(ctx, action) {
|
|
123642
|
-
const getJobTitles$ = this.jobTitleRpcServiceProxy.getJobTitles(action.guid, action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection);
|
|
123643
|
-
return getJobTitles$.pipe(tap$1(jobTitles => {
|
|
123644
|
-
ctx.patchState({
|
|
123645
|
-
jobTitles: jobTitles.data,
|
|
123646
|
-
});
|
|
123647
|
-
}));
|
|
123648
|
-
}
|
|
123649
|
-
onLoadAccountManagementJobTitlesAction(ctx, action) {
|
|
123650
|
-
const getJobTitles$ = this.jobTitleRpcServiceProxy.getJobTitles(action.guid, action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection);
|
|
123651
|
-
return getJobTitles$.pipe(tap$1(jobTitles => {
|
|
123652
|
-
ctx.patchState({
|
|
123653
|
-
jobTitles: jobTitles.data,
|
|
123654
|
-
});
|
|
123655
|
-
}));
|
|
123656
|
-
}
|
|
123657
123508
|
onLoadReportsZonesAction(ctx, action) {
|
|
123658
123509
|
const getZones$ = this.zoneRpcServiceProxy.getZonesBySearchParams(action.guid, action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection);
|
|
123659
123510
|
return getZones$.pipe(tap$1(zones => {
|
|
@@ -123701,83 +123552,6 @@ let FacilityState = class FacilityState {
|
|
|
123701
123552
|
});
|
|
123702
123553
|
}));
|
|
123703
123554
|
}
|
|
123704
|
-
onClearGroupsAction(ctx) {
|
|
123705
|
-
ctx.patchState({
|
|
123706
|
-
groups: null,
|
|
123707
|
-
});
|
|
123708
|
-
}
|
|
123709
|
-
onClearCategoriesAction(ctx) {
|
|
123710
|
-
ctx.patchState({
|
|
123711
|
-
categories: null,
|
|
123712
|
-
});
|
|
123713
|
-
}
|
|
123714
|
-
// Create and delete keep the lists that back the dropdowns in step with the server.
|
|
123715
|
-
// Toasts and confirm dialogs stay in the components, so this state gains no new dependency.
|
|
123716
|
-
onCreateCategoryAction(ctx, action) {
|
|
123717
|
-
const command = new CreateCategoryCommand({ parkId: action.parkId, name: action.name });
|
|
123718
|
-
return this.categoryServiceProxy.createCategory(action.guid, action.parkId, command).pipe(tap$1(response => {
|
|
123719
|
-
if (response.data && this.isLookupParkActive(ctx, action.guid, action.parkId)) {
|
|
123720
|
-
ctx.patchState({
|
|
123721
|
-
categories: [...(ctx.getState().categories ?? []), response.data],
|
|
123722
|
-
});
|
|
123723
|
-
}
|
|
123724
|
-
}));
|
|
123725
|
-
}
|
|
123726
|
-
onDeleteCategoryAction(ctx, action) {
|
|
123727
|
-
return this.categoryServiceProxy.deleteCategory(action.guid, action.parkId, action.id).pipe(tap$1(() => {
|
|
123728
|
-
if (!this.isLookupParkActive(ctx, action.guid, action.parkId)) {
|
|
123729
|
-
return;
|
|
123730
|
-
}
|
|
123731
|
-
ctx.patchState({
|
|
123732
|
-
categories: (ctx.getState().categories ?? []).filter(entity => entity.id !== action.id),
|
|
123733
|
-
});
|
|
123734
|
-
}));
|
|
123735
|
-
}
|
|
123736
|
-
onCreateGroupAction(ctx, action) {
|
|
123737
|
-
const command = new CreateGroupCommand({ parkId: action.parkId, name: action.name });
|
|
123738
|
-
return this.groupRpcServiceProxy.createGroup(action.guid, action.parkId, command).pipe(tap$1(response => {
|
|
123739
|
-
if (response.data && this.isLookupParkActive(ctx, action.guid, action.parkId)) {
|
|
123740
|
-
ctx.patchState({
|
|
123741
|
-
groups: [...(ctx.getState().groups ?? []), response.data],
|
|
123742
|
-
});
|
|
123743
|
-
}
|
|
123744
|
-
}));
|
|
123745
|
-
}
|
|
123746
|
-
onDeleteGroupAction(ctx, action) {
|
|
123747
|
-
return this.groupRpcServiceProxy.deleteGroup(action.guid, action.parkId, action.id).pipe(tap$1(() => {
|
|
123748
|
-
if (!this.isLookupParkActive(ctx, action.guid, action.parkId)) {
|
|
123749
|
-
return;
|
|
123750
|
-
}
|
|
123751
|
-
ctx.patchState({
|
|
123752
|
-
groups: (ctx.getState().groups ?? []).filter(entity => entity.id !== action.id),
|
|
123753
|
-
});
|
|
123754
|
-
}));
|
|
123755
|
-
}
|
|
123756
|
-
onCreateJobTitleAction(ctx, action) {
|
|
123757
|
-
const command = new CreateJobTitleCommand({ parkId: action.parkId, name: action.name });
|
|
123758
|
-
return this.jobTitleRpcServiceProxy.createJobTitle(action.guid, action.parkId, command).pipe(tap$1(response => {
|
|
123759
|
-
if (response.data && this.isLookupParkActive(ctx, action.guid, action.parkId)) {
|
|
123760
|
-
ctx.patchState({
|
|
123761
|
-
jobTitles: [...(ctx.getState().jobTitles ?? []), response.data],
|
|
123762
|
-
});
|
|
123763
|
-
}
|
|
123764
|
-
}));
|
|
123765
|
-
}
|
|
123766
|
-
onDeleteJobTitleAction(ctx, action) {
|
|
123767
|
-
return this.jobTitleRpcServiceProxy.deleteJobTitle(action.guid, action.parkId, action.id).pipe(tap$1(() => {
|
|
123768
|
-
if (!this.isLookupParkActive(ctx, action.guid, action.parkId)) {
|
|
123769
|
-
return;
|
|
123770
|
-
}
|
|
123771
|
-
ctx.patchState({
|
|
123772
|
-
jobTitles: (ctx.getState().jobTitles ?? []).filter(entity => entity.id !== action.id),
|
|
123773
|
-
});
|
|
123774
|
-
}));
|
|
123775
|
-
}
|
|
123776
|
-
onClearJobTitlesAction(ctx) {
|
|
123777
|
-
ctx.patchState({
|
|
123778
|
-
jobTitles: null,
|
|
123779
|
-
});
|
|
123780
|
-
}
|
|
123781
123555
|
onClearZonesAction(ctx) {
|
|
123782
123556
|
ctx.patchState({
|
|
123783
123557
|
zones: null,
|
|
@@ -124109,7 +123883,7 @@ let FacilityState = class FacilityState {
|
|
|
124109
123883
|
this.localStorageService.setItem(DYNAMIC_PRICING_CONDITION, JSON.stringify(dynamicPricingConditionsMap));
|
|
124110
123884
|
}
|
|
124111
123885
|
}
|
|
124112
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FacilityState, deps: [{ token: i1$2.Store }, { token: BaseFacilityCommandsConfigService }, { token: LocalStorageService }, { token: FacilityMenuService }, { token: FacilityRpcServiceProxy }, { token: RemoteCommandRpcServiceProxy }, { token:
|
|
123886
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FacilityState, deps: [{ token: i1$2.Store }, { token: BaseFacilityCommandsConfigService }, { token: LocalStorageService }, { token: FacilityMenuService }, { token: FacilityRpcServiceProxy }, { token: RemoteCommandRpcServiceProxy }, { token: ZoneRpcServiceProxy }, { token: ZRpcServiceProxy }, { token: GlobalErrorService }, { token: CommandNotificationService }, { token: i1$5.TranslateService }, { token: AppConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
124113
123887
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FacilityState }); }
|
|
124114
123888
|
};
|
|
124115
123889
|
__decorate([
|
|
@@ -124160,21 +123934,6 @@ __decorate([
|
|
|
124160
123934
|
__decorate([
|
|
124161
123935
|
Action(SetBasicMenuAction)
|
|
124162
123936
|
], FacilityState.prototype, "onSetBasicMenuAction", null);
|
|
124163
|
-
__decorate([
|
|
124164
|
-
Action(LoadAccountManagementGuestGroupAction)
|
|
124165
|
-
], FacilityState.prototype, "onLoadAccountManagementGuestGroupsAction", null);
|
|
124166
|
-
__decorate([
|
|
124167
|
-
Action(LoadReportsGuestGroupAction)
|
|
124168
|
-
], FacilityState.prototype, "onLoadReportsGuestGroupsAction", null);
|
|
124169
|
-
__decorate([
|
|
124170
|
-
Action(LoadCategoriesAction, { cancelUncompleted: true })
|
|
124171
|
-
], FacilityState.prototype, "onLoadCategoriesAction", null);
|
|
124172
|
-
__decorate([
|
|
124173
|
-
Action(LoadReportsJobTitlesAction)
|
|
124174
|
-
], FacilityState.prototype, "onLoadReportsJobTitlesAction", null);
|
|
124175
|
-
__decorate([
|
|
124176
|
-
Action(LoadAccountManagementJobTitlesAction)
|
|
124177
|
-
], FacilityState.prototype, "onLoadAccountManagementJobTitlesAction", null);
|
|
124178
123937
|
__decorate([
|
|
124179
123938
|
Action(LoadReportsZonesAction, { cancelUncompleted: true })
|
|
124180
123939
|
], FacilityState.prototype, "onLoadReportsZonesAction", null);
|
|
@@ -124187,33 +123946,6 @@ __decorate([
|
|
|
124187
123946
|
__decorate([
|
|
124188
123947
|
Action(LoadZsAction, { cancelUncompleted: true })
|
|
124189
123948
|
], FacilityState.prototype, "onLoadZsAction", null);
|
|
124190
|
-
__decorate([
|
|
124191
|
-
Action(ClearGroupsAction)
|
|
124192
|
-
], FacilityState.prototype, "onClearGroupsAction", null);
|
|
124193
|
-
__decorate([
|
|
124194
|
-
Action(ClearCategoriesAction)
|
|
124195
|
-
], FacilityState.prototype, "onClearCategoriesAction", null);
|
|
124196
|
-
__decorate([
|
|
124197
|
-
Action(CreateCategoryAction)
|
|
124198
|
-
], FacilityState.prototype, "onCreateCategoryAction", null);
|
|
124199
|
-
__decorate([
|
|
124200
|
-
Action(DeleteCategoryAction)
|
|
124201
|
-
], FacilityState.prototype, "onDeleteCategoryAction", null);
|
|
124202
|
-
__decorate([
|
|
124203
|
-
Action(CreateGroupAction)
|
|
124204
|
-
], FacilityState.prototype, "onCreateGroupAction", null);
|
|
124205
|
-
__decorate([
|
|
124206
|
-
Action(DeleteGroupAction)
|
|
124207
|
-
], FacilityState.prototype, "onDeleteGroupAction", null);
|
|
124208
|
-
__decorate([
|
|
124209
|
-
Action(CreateJobTitleAction)
|
|
124210
|
-
], FacilityState.prototype, "onCreateJobTitleAction", null);
|
|
124211
|
-
__decorate([
|
|
124212
|
-
Action(DeleteJobTitleAction)
|
|
124213
|
-
], FacilityState.prototype, "onDeleteJobTitleAction", null);
|
|
124214
|
-
__decorate([
|
|
124215
|
-
Action(ClearJobTitlesAction)
|
|
124216
|
-
], FacilityState.prototype, "onClearJobTitlesAction", null);
|
|
124217
123949
|
__decorate([
|
|
124218
123950
|
Action(ClearZonesAction)
|
|
124219
123951
|
], FacilityState.prototype, "onClearZonesAction", null);
|
|
@@ -124304,15 +124036,6 @@ __decorate([
|
|
|
124304
124036
|
__decorate([
|
|
124305
124037
|
Selector()
|
|
124306
124038
|
], FacilityState, "selectedParkFacilityRemoteCommands", null);
|
|
124307
|
-
__decorate([
|
|
124308
|
-
Selector()
|
|
124309
|
-
], FacilityState, "groups", null);
|
|
124310
|
-
__decorate([
|
|
124311
|
-
Selector()
|
|
124312
|
-
], FacilityState, "categories", null);
|
|
124313
|
-
__decorate([
|
|
124314
|
-
Selector()
|
|
124315
|
-
], FacilityState, "jobTitles", null);
|
|
124316
124039
|
__decorate([
|
|
124317
124040
|
Selector()
|
|
124318
124041
|
], FacilityState, "z", null);
|
|
@@ -124327,7 +124050,7 @@ FacilityState = FacilityState_1 = __decorate([
|
|
|
124327
124050
|
], FacilityState);
|
|
124328
124051
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FacilityState, decorators: [{
|
|
124329
124052
|
type: Injectable
|
|
124330
|
-
}], ctorParameters: () => [{ type: i1$2.Store }, { type: BaseFacilityCommandsConfigService }, { type: LocalStorageService }, { type: FacilityMenuService }, { type: FacilityRpcServiceProxy }, { type: RemoteCommandRpcServiceProxy }, { type:
|
|
124053
|
+
}], ctorParameters: () => [{ type: i1$2.Store }, { type: BaseFacilityCommandsConfigService }, { type: LocalStorageService }, { type: FacilityMenuService }, { type: FacilityRpcServiceProxy }, { type: RemoteCommandRpcServiceProxy }, { type: ZoneRpcServiceProxy }, { type: ZRpcServiceProxy }, { type: GlobalErrorService }, { type: CommandNotificationService }, { type: i1$5.TranslateService }, { type: AppConfigService }], propDecorators: { onClearFacilityDictionary: [], onSetSmartparkBasicAllAction: [], onSetSmartparkBasicAction: [], onUpdateSmartparkNameAction: [], onRemoveSmartparkBasicAction: [], onLoadParkingLotAction: [], onLoadRemoteCommandsRefAction: [], onLoadFacilityRemoteCommandsRefAction: [], onLoadFacilityAction: [], onUnloadParkingLotAction: [], onSetDeviceRemoteCommandsMapAction: [], onSetFacilityRemoteCommandsMapAction: [], onZoneChangedAction: [], onServicesRunningStatusChangedAction: [], onFacilityChangedAction: [], onSetBasicMenuAction: [], onLoadReportsZonesAction: [], onLoadAccessProfileZZonesAction: [], onLoadCcMainZonesAction: [], onLoadZsAction: [], onClearZonesAction: [], onClearZsAction: [], onSetSelectedParkAction: [], onClearSelectedFacilityAction: [], onClearInactiveSelectedParkAction: [], onFacilityRemoteCommandExecutedAction: [], onLoadMacroCommandsAction: [], onClearMacroCommandsAction: [] } });
|
|
124331
124054
|
|
|
124332
124055
|
function getDefaultDeviceStatus(device) {
|
|
124333
124056
|
return new DeviceStatusDto$1({
|
|
@@ -134183,6 +133906,140 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
134183
133906
|
|
|
134184
133907
|
// Module
|
|
134185
133908
|
|
|
133909
|
+
// A lookup row lives on the parent park of a multi-park site, so a create or delete carries
|
|
133910
|
+
// the parent id while selected.id is the child - comparing selected.id would discard every
|
|
133911
|
+
// child-facility response and the dropdown would never update. Guards a mutation response
|
|
133912
|
+
// against the user having switched facility or smartpark while it was in flight.
|
|
133913
|
+
function isLookupParkActive(store, guid, parkId) {
|
|
133914
|
+
const selected = store.selectSnapshot(FacilityState.selected);
|
|
133915
|
+
return store.selectSnapshot(FacilityState.guid) === guid && (selected?.multiParkParentID || selected?.id) === parkId;
|
|
133916
|
+
}
|
|
133917
|
+
|
|
133918
|
+
let LoadCategoriesAction = class LoadCategoriesAction {
|
|
133919
|
+
static { this.type = '[category] Load'; }
|
|
133920
|
+
constructor(parkId, guid, searchParamsDto) {
|
|
133921
|
+
this.parkId = parkId;
|
|
133922
|
+
this.guid = guid;
|
|
133923
|
+
this.searchParamsDto = searchParamsDto;
|
|
133924
|
+
}
|
|
133925
|
+
};
|
|
133926
|
+
LoadCategoriesAction = __decorate([
|
|
133927
|
+
TrackAction()
|
|
133928
|
+
], LoadCategoriesAction);
|
|
133929
|
+
class ClearCategoriesAction {
|
|
133930
|
+
static { this.type = '[category] Clear'; }
|
|
133931
|
+
constructor() {
|
|
133932
|
+
}
|
|
133933
|
+
}
|
|
133934
|
+
class CreateCategoryAction {
|
|
133935
|
+
static { this.type = '[category] Create'; }
|
|
133936
|
+
constructor(parkId, guid, name) {
|
|
133937
|
+
this.parkId = parkId;
|
|
133938
|
+
this.guid = guid;
|
|
133939
|
+
this.name = name;
|
|
133940
|
+
}
|
|
133941
|
+
}
|
|
133942
|
+
class DeleteCategoryAction {
|
|
133943
|
+
static { this.type = '[category] Delete'; }
|
|
133944
|
+
constructor(parkId, guid, id) {
|
|
133945
|
+
this.parkId = parkId;
|
|
133946
|
+
this.guid = guid;
|
|
133947
|
+
this.id = id;
|
|
133948
|
+
}
|
|
133949
|
+
}
|
|
133950
|
+
|
|
133951
|
+
let CategoryState = class CategoryState {
|
|
133952
|
+
constructor(store, actions$, categoryRpcServiceProxy) {
|
|
133953
|
+
this.store = store;
|
|
133954
|
+
this.actions$ = actions$;
|
|
133955
|
+
this.categoryRpcServiceProxy = categoryRpcServiceProxy;
|
|
133956
|
+
}
|
|
133957
|
+
static categories(state) {
|
|
133958
|
+
return state.categories;
|
|
133959
|
+
}
|
|
133960
|
+
onLoadCategoriesAction(ctx, action) {
|
|
133961
|
+
const getCategories$ = this.categoryRpcServiceProxy.getCategories(action.guid, action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection);
|
|
133962
|
+
return getCategories$.pipe(cancelOn(this.actions$, ClearCategoriesAction), tap(categories => {
|
|
133963
|
+
ctx.patchState({
|
|
133964
|
+
categories: categories.data,
|
|
133965
|
+
});
|
|
133966
|
+
}));
|
|
133967
|
+
}
|
|
133968
|
+
onClearCategoriesAction(ctx) {
|
|
133969
|
+
ctx.patchState({
|
|
133970
|
+
categories: null,
|
|
133971
|
+
});
|
|
133972
|
+
}
|
|
133973
|
+
// Create and delete keep the lists that back the dropdowns in step with the server.
|
|
133974
|
+
// Toasts and confirm dialogs stay in the components, so this state gains no new dependency.
|
|
133975
|
+
onCreateCategoryAction(ctx, action) {
|
|
133976
|
+
const command = new CreateCategoryCommand({ parkId: action.parkId, name: action.name });
|
|
133977
|
+
return this.categoryRpcServiceProxy.createCategory(action.guid, action.parkId, command).pipe(tap(response => {
|
|
133978
|
+
if (response.data && isLookupParkActive(this.store, action.guid, action.parkId)) {
|
|
133979
|
+
ctx.patchState({
|
|
133980
|
+
categories: [...(ctx.getState().categories ?? []), response.data],
|
|
133981
|
+
});
|
|
133982
|
+
}
|
|
133983
|
+
}));
|
|
133984
|
+
}
|
|
133985
|
+
onDeleteCategoryAction(ctx, action) {
|
|
133986
|
+
return this.categoryRpcServiceProxy.deleteCategory(action.guid, action.parkId, action.id).pipe(tap(() => {
|
|
133987
|
+
if (!isLookupParkActive(this.store, action.guid, action.parkId)) {
|
|
133988
|
+
return;
|
|
133989
|
+
}
|
|
133990
|
+
ctx.patchState({
|
|
133991
|
+
categories: (ctx.getState().categories ?? []).filter(entity => entity.id !== action.id),
|
|
133992
|
+
});
|
|
133993
|
+
}));
|
|
133994
|
+
}
|
|
133995
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CategoryState, deps: [{ token: i1$2.Store }, { token: i1$2.Actions }, { token: CategoryRpcServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
133996
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CategoryState }); }
|
|
133997
|
+
};
|
|
133998
|
+
__decorate([
|
|
133999
|
+
Action(LoadCategoriesAction, { cancelUncompleted: true })
|
|
134000
|
+
], CategoryState.prototype, "onLoadCategoriesAction", null);
|
|
134001
|
+
__decorate([
|
|
134002
|
+
Action(ClearCategoriesAction)
|
|
134003
|
+
], CategoryState.prototype, "onClearCategoriesAction", null);
|
|
134004
|
+
__decorate([
|
|
134005
|
+
Action(CreateCategoryAction)
|
|
134006
|
+
], CategoryState.prototype, "onCreateCategoryAction", null);
|
|
134007
|
+
__decorate([
|
|
134008
|
+
Action(DeleteCategoryAction)
|
|
134009
|
+
], CategoryState.prototype, "onDeleteCategoryAction", null);
|
|
134010
|
+
__decorate([
|
|
134011
|
+
Selector()
|
|
134012
|
+
], CategoryState, "categories", null);
|
|
134013
|
+
CategoryState = __decorate([
|
|
134014
|
+
State({
|
|
134015
|
+
name: 'category',
|
|
134016
|
+
defaults: {
|
|
134017
|
+
categories: null,
|
|
134018
|
+
}
|
|
134019
|
+
})
|
|
134020
|
+
], CategoryState);
|
|
134021
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CategoryState, decorators: [{
|
|
134022
|
+
type: Injectable
|
|
134023
|
+
}], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$2.Actions }, { type: CategoryRpcServiceProxy }], propDecorators: { onLoadCategoriesAction: [], onClearCategoriesAction: [], onCreateCategoryAction: [], onDeleteCategoryAction: [] } });
|
|
134024
|
+
|
|
134025
|
+
// The state guards its mutation responses with FacilityState, which must be registered at root.
|
|
134026
|
+
class CategoryModule {
|
|
134027
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CategoryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
134028
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: CategoryModule, imports: [i1$2.ɵNgxsFeatureModule] }); }
|
|
134029
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CategoryModule, imports: [NgxsModule.forFeature([CategoryState])] }); }
|
|
134030
|
+
}
|
|
134031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CategoryModule, decorators: [{
|
|
134032
|
+
type: NgModule,
|
|
134033
|
+
args: [{
|
|
134034
|
+
declarations: [],
|
|
134035
|
+
imports: [
|
|
134036
|
+
NgxsModule.forFeature([CategoryState]),
|
|
134037
|
+
]
|
|
134038
|
+
}]
|
|
134039
|
+
}] });
|
|
134040
|
+
|
|
134041
|
+
// Module
|
|
134042
|
+
|
|
134186
134043
|
let EmailServerState = class EmailServerState {
|
|
134187
134044
|
constructor(store, smtpDetailsCloudServiceProxy, messageBarService) {
|
|
134188
134045
|
this.store = store;
|
|
@@ -134694,6 +134551,128 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
134694
134551
|
|
|
134695
134552
|
// Module
|
|
134696
134553
|
|
|
134554
|
+
class LoadGroupAction {
|
|
134555
|
+
static { this.type = '[group] Load'; }
|
|
134556
|
+
constructor(parkId, guid, searchParamsDto) {
|
|
134557
|
+
this.parkId = parkId;
|
|
134558
|
+
this.guid = guid;
|
|
134559
|
+
this.searchParamsDto = searchParamsDto;
|
|
134560
|
+
}
|
|
134561
|
+
}
|
|
134562
|
+
class ClearGroupsAction {
|
|
134563
|
+
static { this.type = '[group] Clear'; }
|
|
134564
|
+
constructor() {
|
|
134565
|
+
}
|
|
134566
|
+
}
|
|
134567
|
+
class CreateGroupAction {
|
|
134568
|
+
static { this.type = '[group] Create'; }
|
|
134569
|
+
constructor(parkId, guid, name) {
|
|
134570
|
+
this.parkId = parkId;
|
|
134571
|
+
this.guid = guid;
|
|
134572
|
+
this.name = name;
|
|
134573
|
+
}
|
|
134574
|
+
}
|
|
134575
|
+
class DeleteGroupAction {
|
|
134576
|
+
static { this.type = '[group] Delete'; }
|
|
134577
|
+
constructor(parkId, guid, id) {
|
|
134578
|
+
this.parkId = parkId;
|
|
134579
|
+
this.guid = guid;
|
|
134580
|
+
this.id = id;
|
|
134581
|
+
}
|
|
134582
|
+
}
|
|
134583
|
+
|
|
134584
|
+
let GroupState = class GroupState {
|
|
134585
|
+
constructor(store, actions$, groupRpcServiceProxy) {
|
|
134586
|
+
this.store = store;
|
|
134587
|
+
this.actions$ = actions$;
|
|
134588
|
+
this.groupRpcServiceProxy = groupRpcServiceProxy;
|
|
134589
|
+
}
|
|
134590
|
+
static groups(state) {
|
|
134591
|
+
return state.groups;
|
|
134592
|
+
}
|
|
134593
|
+
onLoadGroupAction(ctx, action) {
|
|
134594
|
+
const getGroups$ = this.groupRpcServiceProxy.getGuestGroup(action.guid, action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection);
|
|
134595
|
+
return getGroups$.pipe(cancelOn(this.actions$, ClearGroupsAction), tap(groups => {
|
|
134596
|
+
ctx.patchState({
|
|
134597
|
+
groups: groups.data,
|
|
134598
|
+
});
|
|
134599
|
+
}));
|
|
134600
|
+
}
|
|
134601
|
+
onClearGroupsAction(ctx) {
|
|
134602
|
+
ctx.patchState({
|
|
134603
|
+
groups: null,
|
|
134604
|
+
});
|
|
134605
|
+
}
|
|
134606
|
+
// Create and delete keep the lists that back the dropdowns in step with the server.
|
|
134607
|
+
// Toasts and confirm dialogs stay in the components, so this state gains no new dependency.
|
|
134608
|
+
onCreateGroupAction(ctx, action) {
|
|
134609
|
+
const command = new CreateGroupCommand({ parkId: action.parkId, name: action.name });
|
|
134610
|
+
return this.groupRpcServiceProxy.createGroup(action.guid, action.parkId, command).pipe(tap(response => {
|
|
134611
|
+
if (response.data && isLookupParkActive(this.store, action.guid, action.parkId)) {
|
|
134612
|
+
ctx.patchState({
|
|
134613
|
+
groups: [...(ctx.getState().groups ?? []), response.data],
|
|
134614
|
+
});
|
|
134615
|
+
}
|
|
134616
|
+
}));
|
|
134617
|
+
}
|
|
134618
|
+
onDeleteGroupAction(ctx, action) {
|
|
134619
|
+
return this.groupRpcServiceProxy.deleteGroup(action.guid, action.parkId, action.id).pipe(tap(() => {
|
|
134620
|
+
if (!isLookupParkActive(this.store, action.guid, action.parkId)) {
|
|
134621
|
+
return;
|
|
134622
|
+
}
|
|
134623
|
+
ctx.patchState({
|
|
134624
|
+
groups: (ctx.getState().groups ?? []).filter(entity => entity.id !== action.id),
|
|
134625
|
+
});
|
|
134626
|
+
}));
|
|
134627
|
+
}
|
|
134628
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupState, deps: [{ token: i1$2.Store }, { token: i1$2.Actions }, { token: GroupRpcServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
134629
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupState }); }
|
|
134630
|
+
};
|
|
134631
|
+
__decorate([
|
|
134632
|
+
Action(LoadGroupAction, { cancelUncompleted: true })
|
|
134633
|
+
], GroupState.prototype, "onLoadGroupAction", null);
|
|
134634
|
+
__decorate([
|
|
134635
|
+
Action(ClearGroupsAction)
|
|
134636
|
+
], GroupState.prototype, "onClearGroupsAction", null);
|
|
134637
|
+
__decorate([
|
|
134638
|
+
Action(CreateGroupAction)
|
|
134639
|
+
], GroupState.prototype, "onCreateGroupAction", null);
|
|
134640
|
+
__decorate([
|
|
134641
|
+
Action(DeleteGroupAction)
|
|
134642
|
+
], GroupState.prototype, "onDeleteGroupAction", null);
|
|
134643
|
+
__decorate([
|
|
134644
|
+
Selector()
|
|
134645
|
+
], GroupState, "groups", null);
|
|
134646
|
+
GroupState = __decorate([
|
|
134647
|
+
State({
|
|
134648
|
+
name: 'group',
|
|
134649
|
+
defaults: {
|
|
134650
|
+
groups: null,
|
|
134651
|
+
}
|
|
134652
|
+
})
|
|
134653
|
+
], GroupState);
|
|
134654
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupState, decorators: [{
|
|
134655
|
+
type: Injectable
|
|
134656
|
+
}], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$2.Actions }, { type: GroupRpcServiceProxy }], propDecorators: { onLoadGroupAction: [], onClearGroupsAction: [], onCreateGroupAction: [], onDeleteGroupAction: [] } });
|
|
134657
|
+
|
|
134658
|
+
// The state guards its mutation responses with FacilityState, which must be registered at root.
|
|
134659
|
+
class GroupModule {
|
|
134660
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
134661
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: GroupModule, imports: [i1$2.ɵNgxsFeatureModule] }); }
|
|
134662
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupModule, imports: [NgxsModule.forFeature([GroupState])] }); }
|
|
134663
|
+
}
|
|
134664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GroupModule, decorators: [{
|
|
134665
|
+
type: NgModule,
|
|
134666
|
+
args: [{
|
|
134667
|
+
declarations: [],
|
|
134668
|
+
imports: [
|
|
134669
|
+
NgxsModule.forFeature([GroupState]),
|
|
134670
|
+
]
|
|
134671
|
+
}]
|
|
134672
|
+
}] });
|
|
134673
|
+
|
|
134674
|
+
// Module
|
|
134675
|
+
|
|
134697
134676
|
let LoadGuestsAction = class LoadGuestsAction {
|
|
134698
134677
|
static { this.type = '[guest] LoadGuests'; }
|
|
134699
134678
|
constructor(parkId, guid, guestsFilterDto) {
|
|
@@ -135513,6 +135492,128 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
135513
135492
|
|
|
135514
135493
|
// Module
|
|
135515
135494
|
|
|
135495
|
+
class LoadJobTitleAction {
|
|
135496
|
+
static { this.type = '[job-title] Load'; }
|
|
135497
|
+
constructor(parkId, guid, searchParamsDto) {
|
|
135498
|
+
this.parkId = parkId;
|
|
135499
|
+
this.guid = guid;
|
|
135500
|
+
this.searchParamsDto = searchParamsDto;
|
|
135501
|
+
}
|
|
135502
|
+
}
|
|
135503
|
+
class ClearJobTitlesAction {
|
|
135504
|
+
static { this.type = '[job-title] Clear'; }
|
|
135505
|
+
constructor() {
|
|
135506
|
+
}
|
|
135507
|
+
}
|
|
135508
|
+
class CreateJobTitleAction {
|
|
135509
|
+
static { this.type = '[job-title] Create'; }
|
|
135510
|
+
constructor(parkId, guid, name) {
|
|
135511
|
+
this.parkId = parkId;
|
|
135512
|
+
this.guid = guid;
|
|
135513
|
+
this.name = name;
|
|
135514
|
+
}
|
|
135515
|
+
}
|
|
135516
|
+
class DeleteJobTitleAction {
|
|
135517
|
+
static { this.type = '[job-title] Delete'; }
|
|
135518
|
+
constructor(parkId, guid, id) {
|
|
135519
|
+
this.parkId = parkId;
|
|
135520
|
+
this.guid = guid;
|
|
135521
|
+
this.id = id;
|
|
135522
|
+
}
|
|
135523
|
+
}
|
|
135524
|
+
|
|
135525
|
+
let JobTitleState = class JobTitleState {
|
|
135526
|
+
constructor(store, actions$, jobTitleRpcServiceProxy) {
|
|
135527
|
+
this.store = store;
|
|
135528
|
+
this.actions$ = actions$;
|
|
135529
|
+
this.jobTitleRpcServiceProxy = jobTitleRpcServiceProxy;
|
|
135530
|
+
}
|
|
135531
|
+
static jobTitles(state) {
|
|
135532
|
+
return state.jobTitles;
|
|
135533
|
+
}
|
|
135534
|
+
onLoadJobTitleAction(ctx, action) {
|
|
135535
|
+
const getJobTitles$ = this.jobTitleRpcServiceProxy.getJobTitles(action.guid, action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection);
|
|
135536
|
+
return getJobTitles$.pipe(cancelOn(this.actions$, ClearJobTitlesAction), tap(jobTitles => {
|
|
135537
|
+
ctx.patchState({
|
|
135538
|
+
jobTitles: jobTitles.data,
|
|
135539
|
+
});
|
|
135540
|
+
}));
|
|
135541
|
+
}
|
|
135542
|
+
onClearJobTitlesAction(ctx) {
|
|
135543
|
+
ctx.patchState({
|
|
135544
|
+
jobTitles: null,
|
|
135545
|
+
});
|
|
135546
|
+
}
|
|
135547
|
+
// Create and delete keep the lists that back the dropdowns in step with the server.
|
|
135548
|
+
// Toasts and confirm dialogs stay in the components, so this state gains no new dependency.
|
|
135549
|
+
onCreateJobTitleAction(ctx, action) {
|
|
135550
|
+
const command = new CreateJobTitleCommand({ parkId: action.parkId, name: action.name });
|
|
135551
|
+
return this.jobTitleRpcServiceProxy.createJobTitle(action.guid, action.parkId, command).pipe(tap(response => {
|
|
135552
|
+
if (response.data && isLookupParkActive(this.store, action.guid, action.parkId)) {
|
|
135553
|
+
ctx.patchState({
|
|
135554
|
+
jobTitles: [...(ctx.getState().jobTitles ?? []), response.data],
|
|
135555
|
+
});
|
|
135556
|
+
}
|
|
135557
|
+
}));
|
|
135558
|
+
}
|
|
135559
|
+
onDeleteJobTitleAction(ctx, action) {
|
|
135560
|
+
return this.jobTitleRpcServiceProxy.deleteJobTitle(action.guid, action.parkId, action.id).pipe(tap(() => {
|
|
135561
|
+
if (!isLookupParkActive(this.store, action.guid, action.parkId)) {
|
|
135562
|
+
return;
|
|
135563
|
+
}
|
|
135564
|
+
ctx.patchState({
|
|
135565
|
+
jobTitles: (ctx.getState().jobTitles ?? []).filter(entity => entity.id !== action.id),
|
|
135566
|
+
});
|
|
135567
|
+
}));
|
|
135568
|
+
}
|
|
135569
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: JobTitleState, deps: [{ token: i1$2.Store }, { token: i1$2.Actions }, { token: JobTitleRpcServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
135570
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: JobTitleState }); }
|
|
135571
|
+
};
|
|
135572
|
+
__decorate([
|
|
135573
|
+
Action(LoadJobTitleAction, { cancelUncompleted: true })
|
|
135574
|
+
], JobTitleState.prototype, "onLoadJobTitleAction", null);
|
|
135575
|
+
__decorate([
|
|
135576
|
+
Action(ClearJobTitlesAction)
|
|
135577
|
+
], JobTitleState.prototype, "onClearJobTitlesAction", null);
|
|
135578
|
+
__decorate([
|
|
135579
|
+
Action(CreateJobTitleAction)
|
|
135580
|
+
], JobTitleState.prototype, "onCreateJobTitleAction", null);
|
|
135581
|
+
__decorate([
|
|
135582
|
+
Action(DeleteJobTitleAction)
|
|
135583
|
+
], JobTitleState.prototype, "onDeleteJobTitleAction", null);
|
|
135584
|
+
__decorate([
|
|
135585
|
+
Selector()
|
|
135586
|
+
], JobTitleState, "jobTitles", null);
|
|
135587
|
+
JobTitleState = __decorate([
|
|
135588
|
+
State({
|
|
135589
|
+
name: 'jobTitle',
|
|
135590
|
+
defaults: {
|
|
135591
|
+
jobTitles: null,
|
|
135592
|
+
}
|
|
135593
|
+
})
|
|
135594
|
+
], JobTitleState);
|
|
135595
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: JobTitleState, decorators: [{
|
|
135596
|
+
type: Injectable
|
|
135597
|
+
}], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$2.Actions }, { type: JobTitleRpcServiceProxy }], propDecorators: { onLoadJobTitleAction: [], onClearJobTitlesAction: [], onCreateJobTitleAction: [], onDeleteJobTitleAction: [] } });
|
|
135598
|
+
|
|
135599
|
+
// The state guards its mutation responses with FacilityState, which must be registered at root.
|
|
135600
|
+
class JobTitleModule {
|
|
135601
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: JobTitleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
135602
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: JobTitleModule, imports: [i1$2.ɵNgxsFeatureModule] }); }
|
|
135603
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: JobTitleModule, imports: [NgxsModule.forFeature([JobTitleState])] }); }
|
|
135604
|
+
}
|
|
135605
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: JobTitleModule, decorators: [{
|
|
135606
|
+
type: NgModule,
|
|
135607
|
+
args: [{
|
|
135608
|
+
declarations: [],
|
|
135609
|
+
imports: [
|
|
135610
|
+
NgxsModule.forFeature([JobTitleState]),
|
|
135611
|
+
]
|
|
135612
|
+
}]
|
|
135613
|
+
}] });
|
|
135614
|
+
|
|
135615
|
+
// Module
|
|
135616
|
+
|
|
135516
135617
|
class LayoutModule {
|
|
135517
135618
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
135518
135619
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: LayoutModule, imports: [i1$2.ɵNgxsFeatureModule] }); }
|
|
@@ -138796,5 +138897,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
138796
138897
|
* Generated bundle index. Do not edit.
|
|
138797
138898
|
*/
|
|
138798
138899
|
|
|
138799
|
-
export { ACCESS_PROFILE_DAT_TYPES_SP, ACTIVE_BYTE, ADVANCED_OPTIONS_VALUE, ADVANCED_PERMISSION_DEPENDENCIES, AES_DEFAULT_IV, ALERT_NOTIFICATION_CONTAINER, ALLOWED_FILES_FORMATS, ALLOWED_FILES_MAX_SIZE_1_MB, ALLOWED_FILES_MAX_SIZE_200_KB, ALLOWED_FILES_MAX_SIZE_2_MB, ALLOWED_FILES_MAX_SIZE_MB, ALLOWED_NUMBER_OF_DAYS, ALLOWED_UPLOAD_FILES_QUANTITY, ALL_DAYS_IN_BINARY, ALL_DAYS_IN_BYTE, AccessProfileChangeValidTypesText, AccessProfileDayTypesText, AccessProfileRestrictionTypesText, AccessProfileShortDayTypesText, AccessProfileSpecialDaysMap, AccessProfileTypesText, AccountFrameMessageBarComponent, AccountLinkedEntitiesText, AccountLinkedEntityText, AccountSetPasswordAction, AccountSetPasswordErrorAction, AccountSetPasswordInitAction, ActionStatusService, AddSmartparkAction, AddUserAction, AdministrativeNotificationEntityType, AdministrativeNotificationsModule, AdministrativeNotificationsState, AggregatedStatusText, AlertChangedAction, AlertNotificationBorderClass, AlertNotificationClassificationMap, AlertNotificationComponent, AlertNotificationService, AlertsAndNotificationsService, AlertsAndNotificationsState, AlertsDeviceTypeLabel, AlertsDeviceTypeOptions, AlertsDeviceTypeOptionsMapping, AmountStepSurchargeMinLimit, AnalyticsCommandsText, AnalyticsEventsText, AnalyticsService, AnalyticsSourceComponent, AnalyticsSourceProps, AppConfigService, AppModuleService, AppModuleToMainPermissionTypeMap, AppSectionLabel, AppSectionModuleMenuOrder, AppSectionRoute, AppSettingsService, AppType, AuditActionTypeText, AuditLogoutAction, AuthModule, AuthRouteGuard, AuthService, AuthTokenService, Authenticate2FAforUser, AuthenticateMultipleTenantsAction, AutofocusDirective, BC_DS_P_VALIDATION, BOM_UNICODE, BackOfficeParkerType, BackofficeAutheticateAction, BarcodeTypeLength, BarrireStateText, BaseComponent, BaseDeviceItemComponent, BaseDeviceService, BaseFacilityCommandsConfigService, BaseFacilityCommandsService, BaseNotificationService, BillDispenserStatusText, BillTypeText, BillValidatorStatusText, ButtonStatus, CANCEL_ALL_RELAY_VALUE, CLogItPipe, COLORS, CREDIT_CARD_POSTFIX_LENGTH, CalculatorModule, CalculatorState, CanDeactivateService, CancelWhatsAppReceiptAction, CarModule, CarState, CassetteStatusText, CentToCoinPipe, ChangeLanguageAction, ChangePasswordAction, ChartLayout, CleanLogoAction, ClearAdministrativeNotificationsAction, ClearAdministrativeNotificationsByEntityTypeAction, ClearAlertsAndNotificationsAction, ClearBaseZonesAction, ClearCalculatorPriceAction, ClearCategoriesAction, ClearColorsAction, ClearConflictDetected, ClearDeviceAction, ClearDeviceEventsExpanded, ClearDevicesAction, ClearEventActivitiesExpanded, ClearFacilityDictionaryAction, ClearGroupsAction, ClearGuestAction, ClearGuestProfilesAction, ClearGuestsListAction, ClearHandledGuest, ClearInactiveSelectedParkAction, ClearJobTitlesAction, ClearLocateTicketSearchAction, ClearLocatedTicketAction, ClearLprTransactionsExpanded, ClearMacroCommandsAction, ClearModelsAction, ClearParkerAction, ClearRateAction, ClearSearchResultsAction, ClearSearchTermAction, ClearSearchTicketAction, ClearSelectedFacilityAction, ClearSelectedParkAction, ClearSelectedRow, ClearSelectedSmartparkAction, ClearSmartparksBasicAction, ClearSpAndSparkVersionsAction, ClearSpecialTransientTablesAction, ClearSuspendedParkActivitiesAction, ClearUserSettingsByCategoryAction, ClearUsersAction, ClearValidationTypesAction, ClearZoneAction, ClearZonesAction, ClearZsAction, cloudServiceProxies as Cloud, CloudConfirmDialogComponent, CofCredentialSubTypeText, CoinStatusText, CollapsedGuestsByBatchIdAction, ComAggregatedStatus, ComAggregatedStatusText, ComStatusIconComponent, CommandCenterModuleResolver, CommandNotificationBorderClass, CommandNotificationComponent, CommandNotificationDisplayCase, CommandNotificationService, CommandNotificationType, CommandsLocalizationKey, CommonPagesModule, CompanyService, ConfigResolver, ConnectSmartparkAction, ContainerRefDirective, CoreEntities, CouponSearchFieldSelectorText, CreateBasicBatchAction, CreateBasicGuestAction, CreateBatchAction, CreateCategoryAction, CreateColorAction, CreateGroupAction, CreateGuestAction, CreateJobTitleAction, CreateModelAction, CreateOrUpdateSMTPDetailsAction, CredentialTypeText, CreditCardTypeText, CrudOperationText, CurlyToBoldPipe, DATA_IMAGE_BASE64_PREFIX, DATE_TIME_ERROR_INVALID_DATE, DATE_TIME_ERROR_INVALID_DATE_RANGE, DATE_TIME_ERROR_REQUIRED, DEFAULT_DATE_FORMAT, DEFAULT_EXPIRATION_MONTHS_COUNT, DEFAULT_MINIMUM_LENGTH, DEFAULT_MODULE, DEFAULT_PASSWORD_HISTORY_COUNT, DEFAULT_PERMITTED_CREDENTIALS, DEFAULT_SMART_PARK_DATE_TIME, DEFAULT_SORT_MENU, DEFAULT_SPECIAL_TRANSIENT_CATEGORY, DEFAULT_STICKER_NUM, DEVICE_EVENT_OPTIONS_KEY, DEVICE_NAVIGATE_KEY, DISABLED_FOCUS_ELEMENT_CLASSES, DISABLED_FOCUS_ELEMENT_TYPES, DYNAMIC_PRICING_CONDITION, DataQaAttribute, DateService, DateValidityText, DaysText, DecimalToAmountPipe, DecimalToCurrencyPipe, DefaultImageTimeout, DeleteCategoryAction, DeleteGroupAction, DeleteGuestAction, DeleteJobTitleAction, DeleteLogoAction, DeleteUserAction, DetectBrowserService, DeviceActivityChangedAction, DeviceActivityLabel, DeviceActivityMode, DeviceActivityModeIcon, DeviceActivityModeText, DeviceActivityStatus, DeviceActivityType, DeviceAggregatedStatus, DeviceAggregatedStatusText, DeviceEventChangedAction, DeviceIconComponent, DeviceIndicationStatus, DeviceLaneTypes, DeviceLoop, DeviceModule, DevicePipeModule, DevicePrinterStatusText, DeviceRemoteCommandsService, DeviceSortBy, DeviceStatusBaseComponent, DeviceStatusChangedAction, DeviceTypeIconName, DeviceTypeText, DeviceTypesAlertsMapping, DevicesViewMode, DialogMode, DipSwitchStatus, Disable2FAAction, DisableUserSSOAction, DisconnectSmartParkAction, DoorSensorStatus, DoorStatusText, DurationMessageBar, DynamicContainerComponent, DynamicEllipsisTooltipDirective, ENGLISH_LANGUAGE, ENVIRONMENT, EXPIRATION_MONTHS_COUNT_OPTIONS, edgeServiceProxies as Edge, EditUserAction, ElectronicWalletPaymentMethodTypesText, EllipsisMultilineDirective, EmailServerModule, EmailServerState, EmptyResultsComponent, Enable2FAAction, EnumsToArrayPipe, EnvironmentModeText, ErrorPageComponent, ErrorPageResolver, ErrorResultsComponent, ExceedingBehaviorTypeText, ExpandGuestsByBatchIdAction, ExportFileService, ExportGuestsAction, ExportPdfSmartparksTableAction, ExportSmartparkAction, FONT_BASE64, FacilitiesAndSmartparksState, FacilityChangedAction, FacilityMenuService, FacilityModule, FacilityRemoteCommandExecutedAction, FacilityRemoteCommandTypesIcon, FacilityRemoteCommandsLocalizationKey, FacilityRemoteCommandsMenuItems, FacilityService, FacilityState, FieldLabelComponent, FieldValidationsComponent, FileGenerateMethod, FileSanitizerService, FileService, FilterByDeviceType, FilterDevicesByTypePipe, FilterDevicesByZonePipe, FilterKeysPipe, FilterNumbersPipe, FilterPipe, FlattenedCoreEntities, FloatMessageBarService, ForgotPasswordAction, ForgotPasswordTenantlessAction, FormValidationsComponent, FormattedInputDirective, FrequentParkingActionText, FrequentParkingErrorActionText, GATE_STATE_VALUE, GeneralActionService, GenerateSearchParamsDto, GenerateSlimSearchParamsDto, GetAllLocalizationsAction, GetLogoAction, GetRateByIdAction, GetSpecialTransientTablesAction, GetUserSettingsByCategoryAction, GlobalErrorService, GlobalMessageContainerComponent, GroupPermissionsPipe, GuestModule, GuestSearchFieldSelectorText, GuestState, GuestTypeCastText, GuestTypesText, HOUR_FORMAT_12, HOUR_FORMAT_24, HOUR_FORMAT_FULL_DAY, HandleAlertsAction, HandleNotificationAction, HandledNotificationAction, HasActionErrored, HealthAction, HoldRelayMode, HoldRelayModeText, HopperStatusText, HotelGuestSearchFieldSelectorText, HtmlSanitizerService, HttpCancelBlackListUrls, HttpCancelInterceptor, HttpCancelService, HumanizePipe, INPUT_SEARCH_DEBOUNCE_TIME, INPUT_SEARCH_DEBOUNCE_TIME_LOW, INPUT_SEARCH_DEBOUNCE_TIME_MEDIUM, IconColumnComponent, IconComponent, IconModule, IconsHelper, IconsHelperText, identityServiceProxies as Identity, ImportMonthyStastusFieldSelectorText, InitAddSmartparkConnectionAction, InitSMTPDetailsAction, InitSessionFromLocalStorageAction, InitSmartparkTransportAction, IntercomComponent, InternetConnectionService, InternetConnectionStatus, IsActionExecuting, IsEllipsisDirective, LOCAL_ENGLISH_LANGUAGE, LOCATION_OPTIONS, LOGGED_TENANT_KEY, LOOKUP_NAME_MAX_LENGTH, LanguageTypeKeys, LayoutModule, LayoutState, Load2FAUserAction, LoadAccessProfileBaseZonesAction, LoadAccessProfileZoneAction, LoadAccessProfileZonesAction, LoadAccountManagementGuestGroupAction, LoadAccountManagementJobTitlesAction, LoadAdministrativeNotificationsAction, LoadAlertsAndNotificationsAction, LoadAppConfigurationAction, LoadBackofficeAppConfigurationAction, LoadBackofficeSmartparksTableAction, LoadBackofficeSpAndSparkVersionsAction, LoadBackofficeVarByIdAction, LoadBackofficeVarsAction, LoadCalculatorPriceAction, LoadCategoriesAction, LoadCcMainBaseZonesAction, LoadCcMainZonesAction, LoadColorsAction, LoadColorsAction1, LoadColorsAction2, LoadColorsAction3, LoadColorsAction4, LoadColorsAction5, LoadDeviceAction, LoadDeviceEventActivitiesAction, LoadDeviceEventsAction, LoadDeviceEventsCollapse, LoadDeviceLprTransactionsAction, LoadDeviceStatusAction, LoadDevicesAction, LoadDevicesByTypeAction, LoadDynamicPricingBaseZonesAction, LoadDynamicPricingZoneAction, LoadEventActivitiesCollapse, LoadFacilityAction, LoadFacilityRemoteCommandsRefAction, LoadGuestByIdAction, LoadGuestProfilesAction, LoadGuestsAction, LoadGuestsByBatchIdAction, LoadGuestsByBatchIdCancelledAction, LoadLocateTicketSearchAction, LoadLocatedTicketAction, LoadLprTransactionsCollapse, LoadMacroCommandsAction, LoadModelsAction, LoadModelsAction1, LoadModelsAction2, LoadModelsAction3, LoadModelsAction4, LoadModelsAction5, LoadOverflowPriceTableAction, LoadParkActivitiesAction, LoadParkDevicesAction, LoadParkerAction, LoadParkersAction, LoadParkingLotAction, LoadParksAction, LoadRateByIdAction, LoadRatesAction, LoadRemoteCommandsRefAction, LoadReportsBaseZonesAction, LoadReportsGuestGroupAction, LoadReportsJobTitlesAction, LoadReportsZoneAction, LoadReportsZonesAction, LoadSMTPDetailsAction, LoadSelectedDeviceAction, LoadSmartparksAction, LoadSmartparksDropdownAction, LoadSmartparksTableAction, LoadSpAndSparkVersionsAction, LoadStickerPriceTableAction, LoadTicketNumParkersAction, LoadTransientPriceTableAction, LoadUserCapabilitiesAction, LoadUsersAction, LoadUsersAdministrativeNotificationsAction, LoadValidationTypeAction, LoadVarsAction, LoadZsAction, LoadingOverlayComponent, LocalStorageMigrator, LocalStorageService, Localization, LocalizationModule, LocalizationResolver, LocalizationService, LocalizationState, LoginModule, LoginRequestAction, LoginService, LoginState, LoginSuccess, LogoComponent, LogoState, LogoutAction, LogoutMobileAction, LoopStatus, LowerCaseUrlSerializer, LprTransactionsChangedAction, LprTransactionsOptionsText, LprTransactionsSearchFieldSelectorText, MANUAL_ACTION_REASON_NAME_MAX_LENGTH, MAX_ALLOWED_BADGE_VALUE, MAX_ALLOWED_CURRENT_BALANCE, MAX_ALLOWED_DEDUCTION_VALUE, MAX_ALLOWED_GUEST_UNIT_QUANTITY, MAX_ALLOWED_IDENTIFIER_VALUE, MAX_ALLOWED_STARTING_PURSE_VALUE, MAX_CAPACITY_VALUE, MAX_CARDS, MAX_CAR_PLATES, MAX_EMAIL_CHARACTERS_LENGTH, MAX_EXPORT_RECORDS, MAX_HOTEL_ROOM_NUMBER_LENGTH, MAX_INT16_VALUE, MAX_INT32_VALUE, MAX_INTEGER_VALUE, MAX_LENGTH_BATCH_NAME, MAX_LENGTH_DESCRIPTION_50, MAX_LENGTH_DESCRIPTION_70, MAX_LENGTH_FOOTER, MAX_LENGTH_LEFT, MAX_LENGTH_LEFT_BACKWARD_COMPATIBILITY, MAX_LENGTH_MANUAL_TEXT, MAX_LENGTH_NAME_100, MAX_LENGTH_NAME_20, MAX_LENGTH_NAME_25, MAX_LENGTH_NAME_30, MAX_LENGTH_NAME_50, MAX_LENGTH_NOTES, MAX_LENGTH_QUANTITY, MAX_LENGTH_REASON_DESCRIPTION, MAX_LENGTH_SERACH_TERM, MAX_LENGTH_SERACH_TERM_30, MAX_MOBILE_LENGTH, MAX_NUMBER_OF_NIGHTS, MAX_NUMBER_OF_ROW_IN_MENU, MAX_OCCUPANCY_VALUE, MAX_PERIOD_TIME, MAX_PLATE_ID_LENGTH, MAX_PRICE_NO_TIME_LIMIT_VALUE, MAX_PRICE_PERIOD_VALUE, MAX_REPEAT_COUNT_VALUE, MAX_RESULTS, MAX_ROLE_NAME_LENGTH, MAX_SP, MAX_TIME_RANGE_ITEMS_PER_KEY, MC_READER_ID, MESSAGE_BAR_DEFAULT_ID, MINIMUM_DROPDOWN_RESULTS_WITHOUT_SEARCH, MINIMUM_LENGTH_OPTIONS, MINUTES_PER_HOUR, MIN_ALLOWED_GUEST_UNIT_QUANTITY, MIN_LENGTH_QUANTITY, MIN_NUMBER_OF_ROW_IN_MENU, MIN_TIME_RANGE_ITEMS_PER_KEY, MOBILE_REFRESH_INFO, MSALGuardConfigFactory, MSALInstanceFactory, MSALInterceptorConfigFactory, MSLAuthService, MULTIPLE, MainModuleToSubModulesPermissionTypeMap, MatHintErrorDirective, MaxAllowedSurchargeAmount, MaxAllowedSurchargeMaxLimit, MaxAllowedSurchargeMinLimit, MaxDisplayTimeout, MaxIPV4TextLength, MaxSurchargeNameLength, MenuAppModuleLoadAction, MenuClearAction, MenuLoadAction, MenuService, MenuSubModuleClearAction, MenuSubModuleLoadAction, MessageBarComponent, MessageBarContainerComponent, MessageBarModule, MessageBarPosition, MessageBarService, MessageBarStatus, MiddayPeriod, MinAllowedSurchargeAmount, MinAllowedSurchargeMaxLimit, MinAllowedSurchargeMinLimit, MinDisplayTimeout, MobileAppSectionLabel, MobileLogoutAction, ModalButtonsWrapperComponent, ModalService, ModuleGuard, ModuleMenuBaseComponent, MonthlyRenewalSettingsActionTypesText, MonthlyRenewalSettingsActionTypesValueText, MonthlySearchFieldSelectorText, MslEventType, NONE_ACTIVE_BYTE, NONE_USER_ID, NO_RESULT, NativeElementInjectorDirective, NotSupportedBrowserGuard, NotSupportedBrowserPageComponent, NotificationChangedAction, NotificationClass, NotificationClassficationType, NotificationCloseAllButtonComponent, NotificationConfig, NotificationEventService, NotificationHPositions, NotificationModule, NotificationSeverityText, NotificationTypeLabelComponent, NotificationTypeText, NotificationVPositions, NotificationsModule, ONE_DAY_IN_MINUTES_VALUE, ONE_MINUTE_IN_MILLISECONDS, ONE_SECOND_IN_MILLISECONDS, OffScreenDirective, OpenIdAuthInitializeService, OpenIdAuthService, OpenIdAutheticateAction, Operator, OrderBy, OrderByPipe, OrderDirection, OrphanFacilitiesPipe, PARKER_SEARCH_AUTO_REDIRECT, PASSWORD_EXPIRED, PASSWORD_HISTORY_COUNT_OPTIONS, PREVENT_CLICK_ELEMENT_CLASSES, ParkActivitiesModule, ParkActivitiesState, ParkActivityChangedAction, ParkConnectionStatus, ParkConnectionStatusClass, ParkConnectionStatusText, ParkManagerModule, ParkManagerState, ParkService, ParkTimeService, ParkerSearchTerm, ParkerService, ParkerState, ParkerTagsText, ParkerTypesText, PasswordScore, PasswordStrengthService, PaymentSearchFieldSelectorText, PaymentServiceTypeText, PaymentsTypesText, PermissionCacheService, PermissionConfigService, PermissionGroupText, PermissionTypeSupportedVersionDictionary, PermissionTypeText, PermissionsService, PrintReceiptAction, ProfileTypeText, QUERY_INTENT_PATTERNS, RATE_ID_WITH_VALUE_2, REDIRECT_URL, RELAY_2_VALUE, RELAY_3_VALUE, RELAY_4_VALUE, REPORT_CATEGORY_ALL, RESET_PASSWORD_EMAIL, RTL_LANGUAGES, RTObjectObject, RangeModes, RangeModesText, RateModule, RateState, RealtimeEventService, RealtimeResolver, ReceiptGeneratedAction, RefreshTokenService, RefreshTokenState, RelayStatus, ReloadParkerAction, RemoteCommandService, RemoteCommandTypesIcon, RemoteValidationModule, RemoteValidationState, RemoveExpiredAlertsAndNotificationsAction, RemoveSmartparkBasicAction, ReportMethodDictionary, ResendPendingAdminInvitationsAction, ResendUserInvitationAction, ResetRatesAction, RestartLinkComponent, RestartLinkModule, RestrictionLocationTypeText, RestrictionLocationTypeTextTable, RestrictionTypeText, RevenueService, RouteService, RowOperation, rpcServiceProxies as Rpc, SESSION, SPECIAL_TRANSIENT_CATEGORIES, STATUS_CODE_SERVER_VALIDATION, STATUS_CODE_UNAUTHORIZED, STRING_ZERO, SUPER_PARK_ROUTE_KEY, SUPPORETD_RESTORE_TICKET_TYPES, SUPPORTED_CAR_ON_LOOP_DEVICE_TYPES, SUPPORTED_DEVICES_SCHEDULER, SUPPORTED_GATE_DEVICE_TYPES, SUPPORTED_LPR_TRANSACTIONS_DEVICE_TYPES, SUPPORTED_PAYMENT_FOR_ISF_TYPES, SUPPORTED_RESTORE_TICKET_DEVICE_TYPES, SUPPORTED_STATUS_DEVICE_TYPES, SUPPORTED_TICKET_INSIDE_DEVICE_TYPES, SYSTEM_ALERT_VALUE, SanitizedInnerHtmlDirective, SearchFacilitiesMode, SearchFieldSelectorText, SearchTicketAction, SearchValueHighlightComponent, SecurityModule, SecurityState, SelectDeviceAction, SelectLprTransactionsRowAction, SelectParkAction, SelectSmartParkAction, SelectedRowAction, SendEmailFromEntityAction, SendEmailToGuestAction, SendGuestPassesToEmailAction, SendTestEmailAction, ServiceProxyModule, ServicesRunningStatusChangedAction, SessionState, SessionStorageService, SetBackofficeSmartParkVersionsAction, SetBasicMenuAction, SetConflictDetected, SetDeviceEventsExpanded, SetDeviceRemoteCommandsMapAction, SetDeviceStatusAction, SetDeviceViewModeAction, SetEnableHotelPostingAction, SetEventActivitiesExpanded, SetFacilityRemoteCommandsMapAction, SetGuestsAction, SetLprTransactionsExpanded, SetMobileModeAction, SetParkActivitiesAction, SetRealTimeEventStatusAction, SetSearchTermAction, SetSelectedParkAction, SetSelectedSmartparkAction, SetSmartParkAction, SetSmartParkTableAction, SetSmartParkVersionsAction, SetSmartparkBasicAction, SetSmartparkBasicAllAction, SetStateAction, SetTFASetupAction, SetTenantUserAction, SetTicketIdentifierAction, SetUserNameAction, SetUserStatusAction, SetUsersAction, SetkeepMeLoggedInAction, SharedComponentsModule, SharedDirectivesModule, SharedModule, SharedPipesModule, SideNavSortBy, SidenavModule, SidenavState, SignalR, SignalRObject, SignalRRefreshTokenAction, SingleSignOnProviderText, SmartParkDeviceStatusChangedAction, SmartParkStatusText, SmartparkDateTimePipe, SmartparkModule, SmartparkService, SmartparkState, SortDevicesPipe, SortPipe, SparkKeyboardEvent, SparkNotification, SpecialDaysPipe, SpecialTransientCategory, SpecialTransientCategoryText, SpinnerDiameterSize, StaticMessageBarService, StatusIconComponent, StickerSearchFieldSelectorText, StopPropagationDirective, StringItPipe, SubModuleGuard, SubstrHightlightManyPipe, SubstrHightlightPipe, SubstrHightlightSinglePipe, SwallowUnitStatusText, SwitchUserToSSOAction, SyncUsersAndRolesBySmartparkIdAction, TAKE_TOP_300, TBFormatPipe, TBNumberDirective, TENANT_KEY, TENS_MULTIPLIER, TableColumnGroup, TableColumnGroupLabel, TableRowHeightSizes, TableTypeText, TagLabelType, TechToolsModuleResolver, TenantClearAction, TenantLoadAction, TenantLogoModule, TenantService, TenantlessLoginMode, TibaDateFormat, TibaMatDialogConfig, TibaRetryPolicy, TibaValidators, TicketService, TimeAgoPipe, TimeElapsedCounterComponent, TimeElapsedFormats, TimeElapsedPipe, TimeRangeFormats, TimeRangePipe, ToggleDrawerAction, ToggleDrawerCollapseAction, TooltipPositions, TrackAction, TransientParkingActionText, TranslateLocalPipe, TreeFilterKeysPipe, TreeMode, TypeCastText, UNSAVED_DATA, USER_IS_TEMPORARY_BLOCKED, UnloadParkingLotAction, UnsafeHtmlValidatorDirective, UpdateAndActivateUserAction, UpdateAuthTokenAction, UpdateBasicGuestAction, UpdateDocumentAction, UpdateGuestAction, UpdateGuestLocationAction, UpdateMobileMode, UpdateSmartparkAction, UpdateSmartparkNameAction, UpdateSmartparkVarAction, UpdateTenantInfoProps, UpdateTenantSingleSignOnAction, UpdateTicketPlateIdAction, UpdateUserAlertsPreferencesAction, UpdateUserNotificaitonsPreferencesAction, UpdateUserSettingsAction, UpdateUserSettingsInSessionAction, UploadLogoAction, UserCreationType, UserModule, UserSettingsModule, UserSettingsState, UserState, VALIDATION_TYPE_BY_HOURS_41, VALIDATION_TYPE_BY_HOURS_42, VALID_DATETIME_FILTERS, VALID_TIME_MAX_LENGTH, VALID_ZIP_CODE_LENGTH, VERSION_10_1_0, VERSION_10_2_0, VERSION_10_2_1, VERSION_10_3_0, VERSION_10_3_9, VERSION_10_4_0, VERSION_25_1_0, VERSION_25_2_0, VERSION_25_2_1, VERSION_25_3_0, VERSION_25_3_1, VERSION_25_3_6, VERSION_25_4_0, VERSION_25_4_1, VERSION_26_1_0, VERSION_26_1_1, VERSION_26_1_2, VERSION_26_2_0, VERSION_26_3_0, VERSION_7_4_0, VERSION_7_4_1, VERSION_8_1_0, VERSION_8_2_0, VERSION_8_3_0, VERSION_8_4_0, VERSION_9_1_0, VERSION_9_2_0, VERSION_9_2_2, VERSION_9_3_0, VERSION_9_4_0, VGuestWithBatchTableData, VIRTUAL_DEVICE_LPR_COMPACT_LAYOUT_MEDIA_QUERY, ValidateUserTokenAction, ValidationService, ValidationStickerType, ValidationTypeModule, ValidationTypeState, VarDirective, Verify2FactorAuthenticationAction, VirtualValidationStatusText, WhatsAppReceiptAction, WrapFnPipe, YEAR_LIMIT_IN_DAYS, ZerofyNegativePipe, ZoneChangedAction, ZoneModule, ZoneState, accountModuleAnimation, adjustForTimezone, allowSpecialKeys, alphanumericRegex, appModuleAnimation, areDatesIdentical, areVersionsCompatible, arrayEquals, arraysAreDifferent, baseReduce, blobToBase64, buildMessageInfos, buildMessages, camelize, canceled, capitalizeFirstLetter, compareValues, convert24HoursToAmPM, convertAmPmTo24Hours, convertBinaryToDecimal, convertCentToWholeCoin, convertDecimalToBinary, convertFeaturePermissionsToDictionary, convertFormatWithoutTime, convertWholeCoinToCent, createDescriptor, createMessageText, dateDiffInSeconds, days, daysTranslation, decimalNumberRegex, decimalPercentageRegex, decimalPositiveNumberRegex, decryptClientSecret, delayCancellation, deviceIndicationStatusLocalization, deviceTypeFilterOptions, diffInMillis, dispatched, distinctObjectByProperties, distinctObjectByProperty, downloadFile, ensureObjectMetadata, entryDevicesLaneTypes, errored, exitDevicesLaneTypes, extractErrorsChanges, extractNumber, extractResetChanges, extractSetValueChanges, extractToggleStatusChanges, extractTouchedChanges, extractUpdateValueAndValidityChanges, filterDependentPermissions, filterDevicesByTypes, filterKeyValueBaseReduce, findChildRoute, findObjectDifferences, findParentElement, findParentElementDimensions, findParentRoute, findParentRouteConfig, flattenByKey, formatMinutesToTimeNumber, formatTimeToMinutes, formatTimeToString, formatTimeWithMidnight, formatTimeWithSeparator, formatTimeWithoutMidnight, formatTimeWithoutSeparator, formatTimeWithoutSeperatorAndWithMidnight, formatTimeWithoutSeperatorAndWithoutMidnight, getActivatedRoutePathSegment, getAddress, getCurrentLang, getDateTimeInSeconds, getDateWithoutTime, getDaysFromValue, getDefaultDeviceStatus, getFormattedTime, getMomenWithTime, getMomentNullable, getMomentWithoutTime, getNavigationRoute, getObjectMetadata, getParkerTypesText, getPasswordMinimalLength, getSecondsBackoff, getTooltipTextByParkerType, getUserTimeZone, getUtcMomentNullable, hasMiddayPeriod, hasMonthName, hasRequiredField, hasUnsafeHtmlValue, hasValue, humanizeTimeElapsed, humanizeUtcTimeElapsed, identity, initializeMsal, initializeOpenId, integerNumberRegex, integerPositiveNumberRegex, ipv4Regex, isBoolean, isCharacterLengthValid, isDefinedAndNotEmpty, isDeviceActive, isDeviceDisplayedActive, isDeviceInFilterDeviceTypes, isDeviceInFiltersDeviceTypes, isFalsy, isIOSDevice, isMaxDaysRangeValid, isNullOrEmpty, isNumber, isObjectEmpty, isQueryIntentRequest, isSearchFieldChanged, isSingularOrPlural, isTrueInBinary, isTruthy, isVersionGreaterThanEqual, loadHTMLContent, lowerCase, lowerCaseFirstLetter, mapTransientTags, markEntitiesAsChanged, markEntityAsUnchanged, matchesDeviceCriteria, matchesDeviceParkingLotCriteria, matchesDevicesParkingLotCriteria, minutesToTime, mobileRegex, nameof, navigateToForbiddenAccessPage, navigateToNotSupportedBrowserPage, noEmojiRegex, notificationAnimation, numberWithLeadingZero, objectKeystoLowerCase, ofStatus, omitKeys, openBackgroundIframe, openCloseFiltersAnimation, parentParkBaseEventTypes, parentParkEventTypes, parkBaseEventTypes, parkEventTypes, parkerEnumToText, parseApiErrorData, parseApiErrorMessage, parseDateTimeToSparkParkTime, parseSmartParkTime, passwordRegex, percentageRegex, printSpecialDaysText, printStackTrace, readjustForTimezone, regexExp, remoteCommandLocalizationMap, replaceAll, resolveSpecialTransientCategory, rtEventPermissions, safeParse, sanitizeHtmlValue, searchBarPopupAnimation, setDateTimeErrorMessage, setErrorMessage, shortDaysTranslation, sleep, slideFromBottom, slideFromRight, slideFromUp, slideUpDown, successful, timeToMinutes, timeToMoment, toInt, toNumberMap, toStringMap, wrapConstructor };
|
|
138900
|
+
export { ACCESS_PROFILE_DAT_TYPES_SP, ACTION_STATUS, ACTIVE_BYTE, ADVANCED_OPTIONS_VALUE, ADVANCED_PERMISSION_DEPENDENCIES, AES_DEFAULT_IV, ALERT_NOTIFICATION_CONTAINER, ALLOWED_FILES_FORMATS, ALLOWED_FILES_MAX_SIZE_1_MB, ALLOWED_FILES_MAX_SIZE_200_KB, ALLOWED_FILES_MAX_SIZE_2_MB, ALLOWED_FILES_MAX_SIZE_MB, ALLOWED_NUMBER_OF_DAYS, ALLOWED_UPLOAD_FILES_QUANTITY, ALL_DAYS_IN_BINARY, ALL_DAYS_IN_BYTE, AccessProfileChangeValidTypesText, AccessProfileDayTypesText, AccessProfileRestrictionTypesText, AccessProfileShortDayTypesText, AccessProfileSpecialDaysMap, AccessProfileTypesText, AccountFrameMessageBarComponent, AccountLinkedEntitiesText, AccountLinkedEntityText, AccountSetPasswordAction, AccountSetPasswordErrorAction, AccountSetPasswordInitAction, ActionStatusService, AddSmartparkAction, AddUserAction, AdministrativeNotificationEntityType, AdministrativeNotificationsModule, AdministrativeNotificationsState, AggregatedStatusText, AlertChangedAction, AlertNotificationBorderClass, AlertNotificationClassificationMap, AlertNotificationComponent, AlertNotificationService, AlertsAndNotificationsService, AlertsAndNotificationsState, AlertsDeviceTypeLabel, AlertsDeviceTypeOptions, AlertsDeviceTypeOptionsMapping, AmountStepSurchargeMinLimit, AnalyticsCommandsText, AnalyticsEventsText, AnalyticsService, AnalyticsSourceComponent, AnalyticsSourceProps, AppConfigService, AppModuleService, AppModuleToMainPermissionTypeMap, AppSectionLabel, AppSectionModuleMenuOrder, AppSectionRoute, AppSettingsService, AppType, AuditActionTypeText, AuditLogoutAction, AuthModule, AuthRouteGuard, AuthService, AuthTokenService, Authenticate2FAforUser, AuthenticateMultipleTenantsAction, AutofocusDirective, BC_DS_P_VALIDATION, BOM_UNICODE, BackOfficeParkerType, BackofficeAutheticateAction, BarcodeTypeLength, BarrireStateText, BaseComponent, BaseDeviceItemComponent, BaseDeviceService, BaseFacilityCommandsConfigService, BaseFacilityCommandsService, BaseNotificationService, BillDispenserStatusText, BillTypeText, BillValidatorStatusText, ButtonStatus, CANCEL_ALL_RELAY_VALUE, CLogItPipe, COLORS, CREDIT_CARD_POSTFIX_LENGTH, CalculatorModule, CalculatorState, CanDeactivateService, CancelWhatsAppReceiptAction, CarModule, CarState, CassetteStatusText, CategoryModule, CategoryState, CentToCoinPipe, ChangeLanguageAction, ChangePasswordAction, ChartLayout, CleanLogoAction, ClearAdministrativeNotificationsAction, ClearAdministrativeNotificationsByEntityTypeAction, ClearAlertsAndNotificationsAction, ClearBaseZonesAction, ClearCalculatorPriceAction, ClearCategoriesAction, ClearColorsAction, ClearConflictDetected, ClearDeviceAction, ClearDeviceEventsExpanded, ClearDevicesAction, ClearEventActivitiesExpanded, ClearFacilityDictionaryAction, ClearGroupsAction, ClearGuestAction, ClearGuestProfilesAction, ClearGuestsListAction, ClearHandledGuest, ClearInactiveSelectedParkAction, ClearJobTitlesAction, ClearLocateTicketSearchAction, ClearLocatedTicketAction, ClearLprTransactionsExpanded, ClearMacroCommandsAction, ClearModelsAction, ClearParkerAction, ClearRateAction, ClearSearchResultsAction, ClearSearchTermAction, ClearSearchTicketAction, ClearSelectedFacilityAction, ClearSelectedParkAction, ClearSelectedRow, ClearSelectedSmartparkAction, ClearSmartparksBasicAction, ClearSpAndSparkVersionsAction, ClearSpecialTransientTablesAction, ClearSuspendedParkActivitiesAction, ClearUserSettingsByCategoryAction, ClearUsersAction, ClearValidationTypesAction, ClearZoneAction, ClearZonesAction, ClearZsAction, cloudServiceProxies as Cloud, CloudConfirmDialogComponent, CofCredentialSubTypeText, CoinStatusText, CollapsedGuestsByBatchIdAction, ComAggregatedStatus, ComAggregatedStatusText, ComStatusIconComponent, CommandCenterModuleResolver, CommandNotificationBorderClass, CommandNotificationComponent, CommandNotificationDisplayCase, CommandNotificationService, CommandNotificationType, CommandsLocalizationKey, CommonPagesModule, CompanyService, ConfigResolver, ConnectSmartparkAction, ContainerRefDirective, CoreEntities, CouponSearchFieldSelectorText, CreateBasicBatchAction, CreateBasicGuestAction, CreateBatchAction, CreateCategoryAction, CreateColorAction, CreateGroupAction, CreateGuestAction, CreateJobTitleAction, CreateModelAction, CreateOrUpdateSMTPDetailsAction, CredentialTypeText, CreditCardTypeText, CrudOperationText, CurlyToBoldPipe, DATA_IMAGE_BASE64_PREFIX, DATE_TIME_ERROR_INVALID_DATE, DATE_TIME_ERROR_INVALID_DATE_RANGE, DATE_TIME_ERROR_REQUIRED, DEFAULT_DATE_FORMAT, DEFAULT_EXPIRATION_MONTHS_COUNT, DEFAULT_MINIMUM_LENGTH, DEFAULT_MODULE, DEFAULT_PASSWORD_HISTORY_COUNT, DEFAULT_PERMITTED_CREDENTIALS, DEFAULT_SMART_PARK_DATE_TIME, DEFAULT_SORT_MENU, DEFAULT_SPECIAL_TRANSIENT_CATEGORY, DEFAULT_STICKER_NUM, DEVICE_EVENT_OPTIONS_KEY, DEVICE_NAVIGATE_KEY, DISABLED_FOCUS_ELEMENT_CLASSES, DISABLED_FOCUS_ELEMENT_TYPES, DYNAMIC_PRICING_CONDITION, DataQaAttribute, DateService, DateValidityText, DaysText, DecimalToAmountPipe, DecimalToCurrencyPipe, DefaultImageTimeout, DeleteCategoryAction, DeleteGroupAction, DeleteGuestAction, DeleteJobTitleAction, DeleteLogoAction, DeleteUserAction, DetectBrowserService, DeviceActivityChangedAction, DeviceActivityLabel, DeviceActivityMode, DeviceActivityModeIcon, DeviceActivityModeText, DeviceActivityStatus, DeviceActivityType, DeviceAggregatedStatus, DeviceAggregatedStatusText, DeviceEventChangedAction, DeviceIconComponent, DeviceIndicationStatus, DeviceLaneTypes, DeviceLoop, DeviceModule, DevicePipeModule, DevicePrinterStatusText, DeviceRemoteCommandsService, DeviceSortBy, DeviceStatusBaseComponent, DeviceStatusChangedAction, DeviceTypeIconName, DeviceTypeText, DeviceTypesAlertsMapping, DevicesViewMode, DialogMode, DipSwitchStatus, Disable2FAAction, DisableUserSSOAction, DisconnectSmartParkAction, DoorSensorStatus, DoorStatusText, DurationMessageBar, DynamicContainerComponent, DynamicEllipsisTooltipDirective, ENGLISH_LANGUAGE, ENVIRONMENT, EXPIRATION_MONTHS_COUNT_OPTIONS, edgeServiceProxies as Edge, EditUserAction, ElectronicWalletPaymentMethodTypesText, EllipsisMultilineDirective, EmailServerModule, EmailServerState, EmptyResultsComponent, Enable2FAAction, EnumsToArrayPipe, EnvironmentModeText, ErrorPageComponent, ErrorPageResolver, ErrorResultsComponent, ExceedingBehaviorTypeText, ExpandGuestsByBatchIdAction, ExportFileService, ExportGuestsAction, ExportPdfSmartparksTableAction, ExportSmartparkAction, FONT_BASE64, FacilitiesAndSmartparksState, FacilityChangedAction, FacilityMenuService, FacilityModule, FacilityRemoteCommandExecutedAction, FacilityRemoteCommandTypesIcon, FacilityRemoteCommandsLocalizationKey, FacilityRemoteCommandsMenuItems, FacilityService, FacilityState, FieldLabelComponent, FieldValidationsComponent, FileGenerateMethod, FileSanitizerService, FileService, FilterByDeviceType, FilterDevicesByTypePipe, FilterDevicesByZonePipe, FilterKeysPipe, FilterNumbersPipe, FilterPipe, FlattenedCoreEntities, FloatMessageBarService, ForgotPasswordAction, ForgotPasswordTenantlessAction, FormValidationsComponent, FormattedInputDirective, FrequentParkingActionText, FrequentParkingErrorActionText, GATE_STATE_VALUE, GeneralActionService, GenerateSearchParamsDto, GenerateSlimSearchParamsDto, GetAllLocalizationsAction, GetLogoAction, GetRateByIdAction, GetSpecialTransientTablesAction, GetUserSettingsByCategoryAction, GlobalErrorService, GlobalMessageContainerComponent, GroupModule, GroupPermissionsPipe, GroupState, GuestModule, GuestSearchFieldSelectorText, GuestState, GuestTypeCastText, GuestTypesText, HOUR_FORMAT_12, HOUR_FORMAT_24, HOUR_FORMAT_FULL_DAY, HandleAlertsAction, HandleNotificationAction, HandledNotificationAction, HasActionErrored, HealthAction, HoldRelayMode, HoldRelayModeText, HopperStatusText, HotelGuestSearchFieldSelectorText, HtmlSanitizerService, HttpCancelBlackListUrls, HttpCancelInterceptor, HttpCancelService, HumanizePipe, INPUT_SEARCH_DEBOUNCE_TIME, INPUT_SEARCH_DEBOUNCE_TIME_LOW, INPUT_SEARCH_DEBOUNCE_TIME_MEDIUM, IconColumnComponent, IconComponent, IconModule, IconsHelper, IconsHelperText, identityServiceProxies as Identity, ImportMonthyStastusFieldSelectorText, InitAddSmartparkConnectionAction, InitSMTPDetailsAction, InitSessionFromLocalStorageAction, InitSmartparkTransportAction, IntercomComponent, InternetConnectionService, InternetConnectionStatus, IsActionExecuting, IsEllipsisDirective, JobTitleModule, JobTitleState, LOCAL_ENGLISH_LANGUAGE, LOCATION_OPTIONS, LOGGED_TENANT_KEY, LOOKUP_NAME_MAX_LENGTH, LanguageTypeKeys, LayoutModule, LayoutState, Load2FAUserAction, LoadAccessProfileBaseZonesAction, LoadAccessProfileZoneAction, LoadAccessProfileZonesAction, LoadAdministrativeNotificationsAction, LoadAlertsAndNotificationsAction, LoadAppConfigurationAction, LoadBackofficeAppConfigurationAction, LoadBackofficeSmartparksTableAction, LoadBackofficeSpAndSparkVersionsAction, LoadBackofficeVarByIdAction, LoadBackofficeVarsAction, LoadCalculatorPriceAction, LoadCategoriesAction, LoadCcMainBaseZonesAction, LoadCcMainZonesAction, LoadColorsAction, LoadColorsAction1, LoadColorsAction2, LoadColorsAction3, LoadColorsAction4, LoadColorsAction5, LoadDeviceAction, LoadDeviceEventActivitiesAction, LoadDeviceEventsAction, LoadDeviceEventsCollapse, LoadDeviceLprTransactionsAction, LoadDeviceStatusAction, LoadDevicesAction, LoadDevicesByTypeAction, LoadDynamicPricingBaseZonesAction, LoadDynamicPricingZoneAction, LoadEventActivitiesCollapse, LoadFacilityAction, LoadFacilityRemoteCommandsRefAction, LoadGroupAction, LoadGuestByIdAction, LoadGuestProfilesAction, LoadGuestsAction, LoadGuestsByBatchIdAction, LoadGuestsByBatchIdCancelledAction, LoadJobTitleAction, LoadLocateTicketSearchAction, LoadLocatedTicketAction, LoadLprTransactionsCollapse, LoadMacroCommandsAction, LoadModelsAction, LoadModelsAction1, LoadModelsAction2, LoadModelsAction3, LoadModelsAction4, LoadModelsAction5, LoadOverflowPriceTableAction, LoadParkActivitiesAction, LoadParkDevicesAction, LoadParkerAction, LoadParkersAction, LoadParkingLotAction, LoadParksAction, LoadRateByIdAction, LoadRatesAction, LoadRemoteCommandsRefAction, LoadReportsBaseZonesAction, LoadReportsZoneAction, LoadReportsZonesAction, LoadSMTPDetailsAction, LoadSelectedDeviceAction, LoadSmartparksAction, LoadSmartparksDropdownAction, LoadSmartparksTableAction, LoadSpAndSparkVersionsAction, LoadStickerPriceTableAction, LoadTicketNumParkersAction, LoadTransientPriceTableAction, LoadUserCapabilitiesAction, LoadUsersAction, LoadUsersAdministrativeNotificationsAction, LoadValidationTypeAction, LoadVarsAction, LoadZsAction, LoadingOverlayComponent, LocalStorageMigrator, LocalStorageService, Localization, LocalizationModule, LocalizationResolver, LocalizationService, LocalizationState, LoginModule, LoginRequestAction, LoginService, LoginState, LoginSuccess, LogoComponent, LogoState, LogoutAction, LogoutMobileAction, LoopStatus, LowerCaseUrlSerializer, LprTransactionsChangedAction, LprTransactionsOptionsText, LprTransactionsSearchFieldSelectorText, MANUAL_ACTION_REASON_NAME_MAX_LENGTH, MAX_ALLOWED_BADGE_VALUE, MAX_ALLOWED_CURRENT_BALANCE, MAX_ALLOWED_DEDUCTION_VALUE, MAX_ALLOWED_GUEST_UNIT_QUANTITY, MAX_ALLOWED_IDENTIFIER_VALUE, MAX_ALLOWED_STARTING_PURSE_VALUE, MAX_CAPACITY_VALUE, MAX_CARDS, MAX_CAR_PLATES, MAX_EMAIL_CHARACTERS_LENGTH, MAX_EXPORT_RECORDS, MAX_HOTEL_ROOM_NUMBER_LENGTH, MAX_INT16_VALUE, MAX_INT32_VALUE, MAX_INTEGER_VALUE, MAX_LENGTH_BATCH_NAME, MAX_LENGTH_DESCRIPTION_50, MAX_LENGTH_DESCRIPTION_70, MAX_LENGTH_FOOTER, MAX_LENGTH_LEFT, MAX_LENGTH_LEFT_BACKWARD_COMPATIBILITY, MAX_LENGTH_MANUAL_TEXT, MAX_LENGTH_NAME_100, MAX_LENGTH_NAME_20, MAX_LENGTH_NAME_25, MAX_LENGTH_NAME_30, MAX_LENGTH_NAME_50, MAX_LENGTH_NOTES, MAX_LENGTH_QUANTITY, MAX_LENGTH_REASON_DESCRIPTION, MAX_LENGTH_SERACH_TERM, MAX_LENGTH_SERACH_TERM_30, MAX_MOBILE_LENGTH, MAX_NUMBER_OF_NIGHTS, MAX_NUMBER_OF_ROW_IN_MENU, MAX_OCCUPANCY_VALUE, MAX_PERIOD_TIME, MAX_PLATE_ID_LENGTH, MAX_PRICE_NO_TIME_LIMIT_VALUE, MAX_PRICE_PERIOD_VALUE, MAX_REPEAT_COUNT_VALUE, MAX_RESULTS, MAX_ROLE_NAME_LENGTH, MAX_SP, MAX_TIME_RANGE_ITEMS_PER_KEY, MC_READER_ID, MESSAGE_BAR_DEFAULT_ID, MINIMUM_DROPDOWN_RESULTS_WITHOUT_SEARCH, MINIMUM_LENGTH_OPTIONS, MINUTES_PER_HOUR, MIN_ALLOWED_GUEST_UNIT_QUANTITY, MIN_LENGTH_QUANTITY, MIN_NUMBER_OF_ROW_IN_MENU, MIN_TIME_RANGE_ITEMS_PER_KEY, MOBILE_REFRESH_INFO, MSALGuardConfigFactory, MSALInstanceFactory, MSALInterceptorConfigFactory, MSLAuthService, MULTIPLE, MainModuleToSubModulesPermissionTypeMap, MatHintErrorDirective, MaxAllowedSurchargeAmount, MaxAllowedSurchargeMaxLimit, MaxAllowedSurchargeMinLimit, MaxDisplayTimeout, MaxIPV4TextLength, MaxSurchargeNameLength, MenuAppModuleLoadAction, MenuClearAction, MenuLoadAction, MenuService, MenuSubModuleClearAction, MenuSubModuleLoadAction, MessageBarComponent, MessageBarContainerComponent, MessageBarModule, MessageBarPosition, MessageBarService, MessageBarStatus, MiddayPeriod, MinAllowedSurchargeAmount, MinAllowedSurchargeMaxLimit, MinAllowedSurchargeMinLimit, MinDisplayTimeout, MobileAppSectionLabel, MobileLogoutAction, ModalButtonsWrapperComponent, ModalService, ModuleGuard, ModuleMenuBaseComponent, MonthlyRenewalSettingsActionTypesText, MonthlyRenewalSettingsActionTypesValueText, MonthlySearchFieldSelectorText, MslEventType, NONE_ACTIVE_BYTE, NONE_USER_ID, NO_RESULT, NativeElementInjectorDirective, NotSupportedBrowserGuard, NotSupportedBrowserPageComponent, NotificationChangedAction, NotificationClass, NotificationClassficationType, NotificationCloseAllButtonComponent, NotificationConfig, NotificationEventService, NotificationHPositions, NotificationModule, NotificationSeverityText, NotificationTypeLabelComponent, NotificationTypeText, NotificationVPositions, NotificationsModule, ONE_DAY_IN_MINUTES_VALUE, ONE_MINUTE_IN_MILLISECONDS, ONE_SECOND_IN_MILLISECONDS, OffScreenDirective, OpenIdAuthInitializeService, OpenIdAuthService, OpenIdAutheticateAction, Operator, OrderBy, OrderByPipe, OrderDirection, OrphanFacilitiesPipe, PARKER_SEARCH_AUTO_REDIRECT, PASSWORD_EXPIRED, PASSWORD_HISTORY_COUNT_OPTIONS, PREVENT_CLICK_ELEMENT_CLASSES, ParkActivitiesModule, ParkActivitiesState, ParkActivityChangedAction, ParkConnectionStatus, ParkConnectionStatusClass, ParkConnectionStatusText, ParkManagerModule, ParkManagerState, ParkService, ParkTimeService, ParkerSearchTerm, ParkerService, ParkerState, ParkerTagsText, ParkerTypesText, PasswordScore, PasswordStrengthService, PaymentSearchFieldSelectorText, PaymentServiceTypeText, PaymentsTypesText, PermissionCacheService, PermissionConfigService, PermissionGroupText, PermissionTypeSupportedVersionDictionary, PermissionTypeText, PermissionsService, PrintReceiptAction, ProfileTypeText, QUERY_INTENT_PATTERNS, RATE_ID_WITH_VALUE_2, REDIRECT_URL, RELAY_2_VALUE, RELAY_3_VALUE, RELAY_4_VALUE, REPORT_CATEGORY_ALL, RESET_PASSWORD_EMAIL, RTL_LANGUAGES, RTObjectObject, RangeModes, RangeModesText, RateModule, RateState, RealtimeEventService, RealtimeResolver, ReceiptGeneratedAction, RefreshTokenService, RefreshTokenState, RelayStatus, ReloadParkerAction, RemoteCommandService, RemoteCommandTypesIcon, RemoteValidationModule, RemoteValidationState, RemoveExpiredAlertsAndNotificationsAction, RemoveSmartparkBasicAction, ReportMethodDictionary, ResendPendingAdminInvitationsAction, ResendUserInvitationAction, ResetRatesAction, RestartLinkComponent, RestartLinkModule, RestrictionLocationTypeText, RestrictionLocationTypeTextTable, RestrictionTypeText, RevenueService, RouteService, RowOperation, rpcServiceProxies as Rpc, SESSION, SPECIAL_TRANSIENT_CATEGORIES, STATUS_CODE_SERVER_VALIDATION, STATUS_CODE_UNAUTHORIZED, STRING_ZERO, SUPER_PARK_ROUTE_KEY, SUPPORETD_RESTORE_TICKET_TYPES, SUPPORTED_CAR_ON_LOOP_DEVICE_TYPES, SUPPORTED_DEVICES_SCHEDULER, SUPPORTED_GATE_DEVICE_TYPES, SUPPORTED_LPR_TRANSACTIONS_DEVICE_TYPES, SUPPORTED_PAYMENT_FOR_ISF_TYPES, SUPPORTED_RESTORE_TICKET_DEVICE_TYPES, SUPPORTED_STATUS_DEVICE_TYPES, SUPPORTED_TICKET_INSIDE_DEVICE_TYPES, SYSTEM_ALERT_VALUE, SanitizedInnerHtmlDirective, SearchFacilitiesMode, SearchFieldSelectorText, SearchTicketAction, SearchValueHighlightComponent, SecurityModule, SecurityState, SelectDeviceAction, SelectLprTransactionsRowAction, SelectParkAction, SelectSmartParkAction, SelectedRowAction, SendEmailFromEntityAction, SendEmailToGuestAction, SendGuestPassesToEmailAction, SendTestEmailAction, ServiceProxyModule, ServicesRunningStatusChangedAction, SessionState, SessionStorageService, SetBackofficeSmartParkVersionsAction, SetBasicMenuAction, SetConflictDetected, SetDeviceEventsExpanded, SetDeviceRemoteCommandsMapAction, SetDeviceStatusAction, SetDeviceViewModeAction, SetEnableHotelPostingAction, SetEventActivitiesExpanded, SetFacilityRemoteCommandsMapAction, SetGuestsAction, SetLprTransactionsExpanded, SetMobileModeAction, SetParkActivitiesAction, SetRealTimeEventStatusAction, SetSearchTermAction, SetSelectedParkAction, SetSelectedSmartparkAction, SetSmartParkAction, SetSmartParkTableAction, SetSmartParkVersionsAction, SetSmartparkBasicAction, SetSmartparkBasicAllAction, SetStateAction, SetTFASetupAction, SetTenantUserAction, SetTicketIdentifierAction, SetUserNameAction, SetUserStatusAction, SetUsersAction, SetkeepMeLoggedInAction, SharedComponentsModule, SharedDirectivesModule, SharedModule, SharedPipesModule, SideNavSortBy, SidenavModule, SidenavState, SignalR, SignalRObject, SignalRRefreshTokenAction, SingleSignOnProviderText, SmartParkDeviceStatusChangedAction, SmartParkStatusText, SmartparkDateTimePipe, SmartparkModule, SmartparkService, SmartparkState, SortDevicesPipe, SortPipe, SparkKeyboardEvent, SparkNotification, SpecialDaysPipe, SpecialTransientCategory, SpecialTransientCategoryText, SpinnerDiameterSize, StaticMessageBarService, StatusIconComponent, StickerSearchFieldSelectorText, StopPropagationDirective, StringItPipe, SubModuleGuard, SubstrHightlightManyPipe, SubstrHightlightPipe, SubstrHightlightSinglePipe, SwallowUnitStatusText, SwitchUserToSSOAction, SyncUsersAndRolesBySmartparkIdAction, TAKE_TOP_300, TBFormatPipe, TBNumberDirective, TENANT_KEY, TENS_MULTIPLIER, TableColumnGroup, TableColumnGroupLabel, TableRowHeightSizes, TableTypeText, TagLabelType, TechToolsModuleResolver, TenantClearAction, TenantLoadAction, TenantLogoModule, TenantService, TenantlessLoginMode, TibaDateFormat, TibaMatDialogConfig, TibaRetryPolicy, TibaValidators, TicketService, TimeAgoPipe, TimeElapsedCounterComponent, TimeElapsedFormats, TimeElapsedPipe, TimeRangeFormats, TimeRangePipe, ToggleDrawerAction, ToggleDrawerCollapseAction, TooltipPositions, TrackAction, TransientParkingActionText, TranslateLocalPipe, TreeFilterKeysPipe, TreeMode, TypeCastText, UNSAVED_DATA, USER_IS_TEMPORARY_BLOCKED, UnloadParkingLotAction, UnsafeHtmlValidatorDirective, UpdateAndActivateUserAction, UpdateAuthTokenAction, UpdateBasicGuestAction, UpdateDocumentAction, UpdateGuestAction, UpdateGuestLocationAction, UpdateMobileMode, UpdateSmartparkAction, UpdateSmartparkNameAction, UpdateSmartparkVarAction, UpdateTenantInfoProps, UpdateTenantSingleSignOnAction, UpdateTicketPlateIdAction, UpdateUserAlertsPreferencesAction, UpdateUserNotificaitonsPreferencesAction, UpdateUserSettingsAction, UpdateUserSettingsInSessionAction, UploadLogoAction, UserCreationType, UserModule, UserSettingsModule, UserSettingsState, UserState, VALIDATION_TYPE_BY_HOURS_41, VALIDATION_TYPE_BY_HOURS_42, VALID_DATETIME_FILTERS, VALID_TIME_MAX_LENGTH, VALID_ZIP_CODE_LENGTH, VERSION_10_1_0, VERSION_10_2_0, VERSION_10_2_1, VERSION_10_3_0, VERSION_10_3_9, VERSION_10_4_0, VERSION_25_1_0, VERSION_25_2_0, VERSION_25_2_1, VERSION_25_3_0, VERSION_25_3_1, VERSION_25_3_6, VERSION_25_4_0, VERSION_25_4_1, VERSION_26_1_0, VERSION_26_1_1, VERSION_26_1_2, VERSION_26_2_0, VERSION_26_3_0, VERSION_7_4_0, VERSION_7_4_1, VERSION_8_1_0, VERSION_8_2_0, VERSION_8_3_0, VERSION_8_4_0, VERSION_9_1_0, VERSION_9_2_0, VERSION_9_2_2, VERSION_9_3_0, VERSION_9_4_0, VGuestWithBatchTableData, VIRTUAL_DEVICE_LPR_COMPACT_LAYOUT_MEDIA_QUERY, ValidateUserTokenAction, ValidationService, ValidationStickerType, ValidationTypeModule, ValidationTypeState, VarDirective, Verify2FactorAuthenticationAction, VirtualValidationStatusText, WhatsAppReceiptAction, WrapFnPipe, YEAR_LIMIT_IN_DAYS, ZerofyNegativePipe, ZoneChangedAction, ZoneModule, ZoneState, accountModuleAnimation, adjustForTimezone, allowSpecialKeys, alphanumericRegex, appModuleAnimation, areDatesIdentical, areVersionsCompatible, arrayEquals, arraysAreDifferent, baseReduce, blobToBase64, buildMessageInfos, buildMessages, camelize, cancelOn, canceled, capitalizeFirstLetter, compareValues, convert24HoursToAmPM, convertAmPmTo24Hours, convertBinaryToDecimal, convertCentToWholeCoin, convertDecimalToBinary, convertFeaturePermissionsToDictionary, convertFormatWithoutTime, convertWholeCoinToCent, createDescriptor, createMessageText, dateDiffInSeconds, days, daysTranslation, decimalNumberRegex, decimalPercentageRegex, decimalPositiveNumberRegex, decryptClientSecret, delayCancellation, deviceIndicationStatusLocalization, deviceTypeFilterOptions, diffInMillis, dispatched, distinctObjectByProperties, distinctObjectByProperty, downloadFile, ensureObjectMetadata, entryDevicesLaneTypes, errored, exitDevicesLaneTypes, extractErrorsChanges, extractNumber, extractResetChanges, extractSetValueChanges, extractToggleStatusChanges, extractTouchedChanges, extractUpdateValueAndValidityChanges, filterDependentPermissions, filterDevicesByTypes, filterKeyValueBaseReduce, findChildRoute, findObjectDifferences, findParentElement, findParentElementDimensions, findParentRoute, findParentRouteConfig, flattenByKey, formatMinutesToTimeNumber, formatTimeToMinutes, formatTimeToString, formatTimeWithMidnight, formatTimeWithSeparator, formatTimeWithoutMidnight, formatTimeWithoutSeparator, formatTimeWithoutSeperatorAndWithMidnight, formatTimeWithoutSeperatorAndWithoutMidnight, getActivatedRoutePathSegment, getAddress, getCurrentLang, getDateTimeInSeconds, getDateWithoutTime, getDaysFromValue, getDefaultDeviceStatus, getFormattedTime, getMomenWithTime, getMomentNullable, getMomentWithoutTime, getNavigationRoute, getObjectMetadata, getParkerTypesText, getPasswordMinimalLength, getSecondsBackoff, getTooltipTextByParkerType, getUserTimeZone, getUtcMomentNullable, hasMiddayPeriod, hasMonthName, hasRequiredField, hasUnsafeHtmlValue, hasValue, humanizeTimeElapsed, humanizeUtcTimeElapsed, identity, initializeMsal, initializeOpenId, integerNumberRegex, integerPositiveNumberRegex, ipv4Regex, isBoolean, isCharacterLengthValid, isDefinedAndNotEmpty, isDeviceActive, isDeviceDisplayedActive, isDeviceInFilterDeviceTypes, isDeviceInFiltersDeviceTypes, isFalsy, isIOSDevice, isMaxDaysRangeValid, isNullOrEmpty, isNumber, isObjectEmpty, isQueryIntentRequest, isSearchFieldChanged, isSingularOrPlural, isTrueInBinary, isTruthy, isVersionGreaterThanEqual, loadHTMLContent, lowerCase, lowerCaseFirstLetter, mapTransientTags, markEntitiesAsChanged, markEntityAsUnchanged, matchesDeviceCriteria, matchesDeviceParkingLotCriteria, matchesDevicesParkingLotCriteria, minutesToTime, mobileRegex, nameof, navigateToForbiddenAccessPage, navigateToNotSupportedBrowserPage, noEmojiRegex, notificationAnimation, numberWithLeadingZero, objectKeystoLowerCase, ofStatus, omitKeys, openBackgroundIframe, openCloseFiltersAnimation, parentParkBaseEventTypes, parentParkEventTypes, parkBaseEventTypes, parkEventTypes, parkerEnumToText, parseApiErrorData, parseApiErrorMessage, parseDateTimeToSparkParkTime, parseSmartParkTime, passwordRegex, percentageRegex, printSpecialDaysText, printStackTrace, readjustForTimezone, regexExp, remoteCommandLocalizationMap, replaceAll, resolveSpecialTransientCategory, rtEventPermissions, safeParse, sanitizeHtmlValue, searchBarPopupAnimation, setDateTimeErrorMessage, setErrorMessage, shortDaysTranslation, sleep, slideFromBottom, slideFromRight, slideFromUp, slideUpDown, successful, timeToMinutes, timeToMoment, toInt, toNumberMap, toStringMap, wrapConstructor };
|
|
138800
138901
|
//# sourceMappingURL=tiba-spark-client-shared-lib.mjs.map
|