@tiba-spark/client-shared-lib 25.4.0-266 → 25.4.0-285

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.
@@ -24,7 +24,7 @@ import { MatDialogModule, MAT_DIALOG_DATA, MatDialogConfig, MatDialogState } fro
24
24
  import * as i1$6 from '@angular/material/snack-bar';
25
25
  import { MAT_SNACK_BAR_DATA, MatSnackBarModule } from '@angular/material/snack-bar';
26
26
  import * as i1$8 from '@angular/router';
27
- import { NavigationEnd, ResolveEnd, DefaultUrlSerializer, Router } from '@angular/router';
27
+ import { NavigationEnd, DefaultUrlSerializer, ResolveEnd, Router } from '@angular/router';
28
28
  import { Navigate } from '@ngxs/router-plugin';
29
29
  import { Dispatch } from '@ngxs-labs/dispatch-decorator';
30
30
  import * as i9 from '@azure/msal-angular';
@@ -33,14 +33,14 @@ import { AuthorizationNotifier, RedirectRequestHandler, AuthorizationServiceConf
33
33
  import { trigger, state, style, transition, animate, keyframes } from '@angular/animations';
34
34
  import * as i1$9 from 'ngx-toastr';
35
35
  import { Toast, ToastrModule } from 'ngx-toastr';
36
+ import CryptoJS from 'crypto-js';
37
+ import { saveAs } from 'file-saver';
36
38
  import { datadogLogs } from '@datadog/browser-logs';
37
39
  import { HubConnectionBuilder, HttpTransportType, HubConnectionState } from '@microsoft/signalr';
38
40
  import { Workbook } from 'exceljs';
39
- import { saveAs } from 'file-saver';
40
41
  import * as i4 from '@angular/material/core';
41
42
  import { MatRippleModule } from '@angular/material/core';
42
43
  import * as i3 from '@angular/platform-browser';
43
- import CryptoJS from 'crypto-js';
44
44
  import * as mixpanel from 'mixpanel-browser';
45
45
  import { PublicClientApplication, BrowserCacheLocation, LogLevel, InteractionType } from '@azure/msal-browser';
46
46
 
@@ -26635,6 +26635,7 @@ var Localization;
26635
26635
  Localization["mono"] = "mono";
26636
26636
  Localization["stereo"] = "stereo";
26637
26637
  Localization["virtual"] = "virtual";
26638
+ Localization["relays_on"] = "relays_on";
26638
26639
  })(Localization || (Localization = {}));
26639
26640
 
26640
26641
  class UpdateMobileMode {
@@ -27158,6 +27159,19 @@ function printSpecialDaysText(translateService, specialDays) {
27158
27159
  function getDaysFromValue(translateService, days, value) {
27159
27160
  return days.filter(day => (value & day.value) !== 0).map(day => translateService.instant(day.label));
27160
27161
  }
27162
+ function objectKeystoLowerCase(obj) {
27163
+ if (Array.isArray(obj)) {
27164
+ return obj.map(item => objectKeystoLowerCase(item));
27165
+ }
27166
+ if (obj !== null && typeof obj === 'object') {
27167
+ const normalized = {};
27168
+ for (const key of Object.keys(obj)) {
27169
+ normalized[key.toLowerCase()] = objectKeystoLowerCase(obj[key]);
27170
+ }
27171
+ return normalized;
27172
+ }
27173
+ return obj;
27174
+ }
27161
27175
 
27162
27176
  // Gets an object of type<T>
27163
27177
  // Gets an array of keys to ignore
@@ -102129,20 +102143,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
102129
102143
  }] });
102130
102144
 
102131
102145
  class LoadAdministrativeNotificationsAction {
102132
- static { this.type = '[administrative-notifications] Load'; }
102146
+ static { this.type = '[administrative-notifications] LoadAdministrativeNotifications'; }
102133
102147
  constructor() {
102134
102148
  }
102135
102149
  }
102136
102150
  class LoadUsersAdministrativeNotificationsAction {
102137
- static { this.type = '[users-administrative-notifications] Load'; }
102151
+ static { this.type = '[administrative-notifications] LoadUsersAdministrativeNotifications'; }
102138
102152
  constructor() {
102139
102153
  }
102140
102154
  }
102141
102155
  class ClearAdministrativeNotificationsAction {
102142
- static { this.type = '[administrative-notifications] Clear'; }
102156
+ static { this.type = '[administrative-notifications] ClearAdministrativeNotifications'; }
102143
102157
  constructor() {
102144
102158
  }
102145
102159
  }
102160
+ class ClearAdministrativeNotificationsByEntityTypeAction {
102161
+ static { this.type = '[administrative-notifications] ClearAdministrativeNotificationsByEntityType'; }
102162
+ constructor(entityType) {
102163
+ this.entityType = entityType;
102164
+ }
102165
+ }
102146
102166
 
102147
102167
  var AdministrativeNotificationEntityType;
102148
102168
  (function (AdministrativeNotificationEntityType) {
@@ -102177,7 +102197,7 @@ let AdministrativeNotificationsState = class AdministrativeNotificationsState {
102177
102197
  });
102178
102198
  }));
102179
102199
  }
102180
- onClearAlertsAction(ctx, action) {
102200
+ onClearAdministrativeNotificationsAction(ctx, action) {
102181
102201
  ctx.patchState({
102182
102202
  config: {
102183
102203
  administrativeNotifications: [],
@@ -102186,6 +102206,13 @@ let AdministrativeNotificationsState = class AdministrativeNotificationsState {
102186
102206
  },
102187
102207
  });
102188
102208
  }
102209
+ onClearAdministrativeNotificationsByEntityTypeAction(ctx, action) {
102210
+ const administrativeNotifications = ctx.getState().config.administrativeNotifications.filter(an => an.administrativeNotificationEntityType !== action.entityType);
102211
+ const actiondministrativeNotificationsConfig = this.convertAdministrativeNotificationsToAdministrativeNotificationsConfig(administrativeNotifications);
102212
+ ctx.patchState({
102213
+ config: actiondministrativeNotificationsConfig,
102214
+ });
102215
+ }
102189
102216
  mapToAdministrativeNotification(administrativeNotificationDtoHttpResponseData) {
102190
102217
  let administrativeNotifications = [];
102191
102218
  this.addUserAdministrativeNotification(administrativeNotificationDtoHttpResponseData, administrativeNotifications);
@@ -102234,7 +102261,10 @@ __decorate([
102234
102261
  ], AdministrativeNotificationsState.prototype, "onLoadUsersAdministrativeNotificationsAction", null);
102235
102262
  __decorate([
102236
102263
  Action(ClearAdministrativeNotificationsAction)
102237
- ], AdministrativeNotificationsState.prototype, "onClearAlertsAction", null);
102264
+ ], AdministrativeNotificationsState.prototype, "onClearAdministrativeNotificationsAction", null);
102265
+ __decorate([
102266
+ Action(ClearAdministrativeNotificationsByEntityTypeAction)
102267
+ ], AdministrativeNotificationsState.prototype, "onClearAdministrativeNotificationsByEntityTypeAction", null);
102238
102268
  __decorate([
102239
102269
  Selector()
102240
102270
  ], AdministrativeNotificationsState, "config", null);
@@ -102253,7 +102283,7 @@ AdministrativeNotificationsState = __decorate([
102253
102283
  ], AdministrativeNotificationsState);
102254
102284
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AdministrativeNotificationsState, decorators: [{
102255
102285
  type: Injectable
102256
- }], ctorParameters: () => [{ type: ConfigurationCloudServiceProxy }], propDecorators: { onLoadAdministrativeNotificationsAction: [], onLoadUsersAdministrativeNotificationsAction: [], onClearAlertsAction: [] } });
102286
+ }], ctorParameters: () => [{ type: ConfigurationCloudServiceProxy }], propDecorators: { onLoadAdministrativeNotificationsAction: [], onLoadUsersAdministrativeNotificationsAction: [], onClearAdministrativeNotificationsAction: [], onClearAdministrativeNotificationsByEntityTypeAction: [] } });
102257
102287
 
102258
102288
  class AdministrativeNotificationsModule {
102259
102289
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AdministrativeNotificationsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
@@ -103295,6 +103325,685 @@ class LoadSmartparksDropdownAction {
103295
103325
  }
103296
103326
  }
103297
103327
 
103328
+ function isDeviceActive(device) {
103329
+ return device && device.hasOwnProperty('active') && device.active !== undefined ? device.active : true;
103330
+ }
103331
+
103332
+ const SUPPORTED_DEVICES_SCHEDULER = [
103333
+ DeviceType$1.CashReader,
103334
+ DeviceType$1.Dispenser,
103335
+ DeviceType$1.Verifier,
103336
+ DeviceType$1.EntryPil,
103337
+ DeviceType$1.ExitPil,
103338
+ DeviceType$1.Credit,
103339
+ DeviceType$1.Pof,
103340
+ DeviceType$1.ValetStation,
103341
+ DeviceType$1.Reader
103342
+ ];
103343
+
103344
+ function downloadFile(res, method) {
103345
+ switch (method) {
103346
+ case FileGenerateMethod.viewPDF:
103347
+ const viewBlob = new Blob([res.data], { type: 'application/pdf' });
103348
+ const viewBlobURL = window.URL.createObjectURL(viewBlob);
103349
+ // Checks if the browser popups are blocked
103350
+ var popUp = window.open(viewBlobURL, '_blank');
103351
+ if (popUp == null || typeof (popUp) == 'undefined') {
103352
+ return {
103353
+ success: false,
103354
+ obj: viewBlobURL
103355
+ };
103356
+ }
103357
+ else {
103358
+ popUp.focus();
103359
+ // Change the name of thte tab after the PDF loaded
103360
+ popUp.addEventListener("load", function () {
103361
+ setTimeout(() => {
103362
+ popUp.document.title = res.fileName;
103363
+ }, 150);
103364
+ });
103365
+ }
103366
+ break;
103367
+ case FileGenerateMethod.downloadPDF:
103368
+ case FileGenerateMethod.downloadExcel:
103369
+ case FileGenerateMethod.downloadZip:
103370
+ case FileGenerateMethod.downloadCsv:
103371
+ default:
103372
+ saveAs(res.data, res.fileName);
103373
+ break;
103374
+ }
103375
+ return {
103376
+ success: true,
103377
+ obj: null
103378
+ };
103379
+ }
103380
+ var FileGenerateMethod;
103381
+ (function (FileGenerateMethod) {
103382
+ FileGenerateMethod[FileGenerateMethod["viewPDF"] = 1] = "viewPDF";
103383
+ FileGenerateMethod[FileGenerateMethod["downloadPDF"] = 2] = "downloadPDF";
103384
+ FileGenerateMethod[FileGenerateMethod["downloadExcel"] = 3] = "downloadExcel";
103385
+ FileGenerateMethod[FileGenerateMethod["downloadZip"] = 4] = "downloadZip";
103386
+ FileGenerateMethod[FileGenerateMethod["downloadCsv"] = 5] = "downloadCsv";
103387
+ })(FileGenerateMethod || (FileGenerateMethod = {}));
103388
+ function blobToBase64(blob) {
103389
+ return new Promise((resolve, _) => {
103390
+ const reader = new FileReader();
103391
+ reader.onloadend = () => resolve(reader.result);
103392
+ reader.readAsDataURL(blob);
103393
+ });
103394
+ }
103395
+
103396
+ var AnalyticsEventsText;
103397
+ (function (AnalyticsEventsText) {
103398
+ AnalyticsEventsText["ReportType"] = "Event choose report type";
103399
+ AnalyticsEventsText["SelectReport"] = "Event select report";
103400
+ AnalyticsEventsText["Coupons"] = "Coupons";
103401
+ AnalyticsEventsText["SendCouponsToEmail"] = "Send Coupons to Email";
103402
+ AnalyticsEventsText["MarkAsUsed"] = "Mark as used";
103403
+ AnalyticsEventsText["GeneralError"] = "General Error";
103404
+ AnalyticsEventsText["PrintCoupon"] = "Print Coupon";
103405
+ AnalyticsEventsText["DeleteCoupon"] = "Delete Coupon";
103406
+ AnalyticsEventsText["UpdateCoupon"] = "Update Coupon";
103407
+ AnalyticsEventsText["CreateCoupon"] = "Create Coupon";
103408
+ AnalyticsEventsText["CreateCouponClick"] = "Create Coupon click";
103409
+ AnalyticsEventsText["SendCouponsToEmailClick"] = "Send Coupons to Email click";
103410
+ AnalyticsEventsText["CouponsFilterByAccount"] = "Coupons filter by account";
103411
+ AnalyticsEventsText["CouponsFilterBySubAccount"] = "Coupons filter by sub account";
103412
+ AnalyticsEventsText["couponBatchDateValidityChange"] = "Coupon filter by date validity";
103413
+ AnalyticsEventsText["importingMonthlies"] = "Importing monthlies";
103414
+ AnalyticsEventsText["CreateRestrictCar"] = "Create Restrict car";
103415
+ AnalyticsEventsText["UpdateRestrictCar"] = "Update Restrict car";
103416
+ AnalyticsEventsText["DeleteChargeTable"] = "Delete Charge Table";
103417
+ AnalyticsEventsText["DeleteChargeCondition"] = "Delete Charge Condition";
103418
+ AnalyticsEventsText["SearchChargeTable"] = "Search charge table";
103419
+ AnalyticsEventsText["SelectByRelatedToRate"] = "Select by related to rate";
103420
+ AnalyticsEventsText["ViewRateStructure"] = "View Rate Structure";
103421
+ AnalyticsEventsText["AddRateClicked"] = "Add rate clicked";
103422
+ AnalyticsEventsText["CancelAddRate"] = "Cancel add rate";
103423
+ AnalyticsEventsText["MoveToLotRateStructure"] = "Move to lot (rate structure)";
103424
+ AnalyticsEventsText["ViewRateConditions"] = "View rate conditions";
103425
+ AnalyticsEventsText["SearchRateCondition"] = "Search rate conditions";
103426
+ AnalyticsEventsText["SelectConditionByRelatedToRate"] = "Select condition by related to rate";
103427
+ AnalyticsEventsText["ChargeTableNavigation"] = "Charge table navigation";
103428
+ AnalyticsEventsText["DeleteRateCondition"] = "Delete rate condition";
103429
+ AnalyticsEventsText["ReorderRateCondition"] = "Reorder rate condition";
103430
+ AnalyticsEventsText["ChargeConditionReorder"] = "Charge condition reorder";
103431
+ AnalyticsEventsText["SegmentationReorder"] = "Segmentation reorder";
103432
+ AnalyticsEventsText["ChargeConditionAdded"] = "Charge condition added";
103433
+ AnalyticsEventsText["EditRateClicked"] = "Edit rate clicked";
103434
+ AnalyticsEventsText["DuplicateRateClicked"] = "Duplicate rate clicked";
103435
+ AnalyticsEventsText["DeleteRateClicked"] = "Delete rate clicked";
103436
+ AnalyticsEventsText["RateDeleted"] = "Rate deleted";
103437
+ AnalyticsEventsText["RateNumberProtection"] = "Rate number protection";
103438
+ AnalyticsEventsText["CreateTestPlane"] = "Create test plane";
103439
+ AnalyticsEventsText["RerunTestRate"] = "Rerun test rate";
103440
+ AnalyticsEventsText["DeleteChargeSegmentation"] = "Delete charge segmentation";
103441
+ AnalyticsEventsText["EditChargeCondition"] = "Edit charge condition";
103442
+ AnalyticsEventsText["AddConditionRate"] = "Add condition rate";
103443
+ AnalyticsEventsText["RateSettingsUpdated"] = "Rate settings updated";
103444
+ AnalyticsEventsText["DuplicateRateConditions"] = "Duplicate rate conditions";
103445
+ AnalyticsEventsText["EditConditionRate"] = "Edit condition rate";
103446
+ AnalyticsEventsText["HttpError"] = "Http Error";
103447
+ AnalyticsEventsText["EventCreateColor"] = "Event create color";
103448
+ AnalyticsEventsText["EventCreateModel"] = "Event create model";
103449
+ })(AnalyticsEventsText || (AnalyticsEventsText = {}));
103450
+ const ReportMethodDictionary = {
103451
+ [FileGenerateMethod.viewPDF]: `View report PDF`,
103452
+ [FileGenerateMethod.downloadExcel]: `Download report Excel`,
103453
+ [FileGenerateMethod.downloadPDF]: `Download report PDF`,
103454
+ };
103455
+
103456
+ // DOTO: Get the correct list from Product of DeviceTypes that support Restore Ticket
103457
+ const SUPPORETD_RESTORE_TICKET_TYPES = [DeviceType.CashMp, DeviceType.CashReader, DeviceType.Dispenser, DeviceType.EntryPil,
103458
+ DeviceType.ExitPil, DeviceType.LprCamera, DeviceType.Master, DeviceType.ParkBlueGate, DeviceType.Reader, DeviceType.ValetStation,
103459
+ DeviceType.Validator, DeviceType.Verifier];
103460
+ const SUPPORTED_PAYMENT_FOR_ISF_TYPES = [DeviceType.Verifier, DeviceType.ExitPil, DeviceType.Credit];
103461
+ const SUPPORTED_GATE_DEVICE_TYPES = [DeviceType.Reader, DeviceType.Verifier, DeviceType.Dispenser,
103462
+ DeviceType.CashReader, DeviceType.EntryPil, DeviceType.ExitPil, DeviceType.LprCamera];
103463
+ const SUPPORTED_CAR_ON_LOOP_DEVICE_TYPES = [DeviceType.Reader, DeviceType.Verifier, DeviceType.Dispenser,
103464
+ DeviceType.CashReader, DeviceType.EntryPil, DeviceType.ExitPil, DeviceType.LprCamera];
103465
+ const SUPPORTED_TICKET_INSIDE_DEVICE_TYPES = [DeviceType.Reader, DeviceType.Verifier, DeviceType.Dispenser,
103466
+ DeviceType.CashReader, DeviceType.EntryPil, DeviceType.ExitPil, DeviceType.LprCamera, DeviceType.Credit, DeviceType.Pof];
103467
+ const SUPPORTED_LPR_TRANSACTIONS_DEVICE_TYPES = [DeviceType.CashReader, DeviceType.CashMp, DeviceType.Reader,
103468
+ DeviceType.Dispenser, DeviceType.Verifier, DeviceType.EntryPil, DeviceType.ExitPil, DeviceType.LprCamera,
103469
+ DeviceType.ParkBlueGate, DeviceType.Unknown, DeviceType.Master];
103470
+ const SUPPORTED_STATUS_DEVICE_TYPES = [DeviceType.Cash, DeviceType.CashMp, DeviceType.CashReader, DeviceType.Credit,
103471
+ DeviceType.Reader, DeviceType.Master, DeviceType.ParkBlueGate, DeviceType.Pof, DeviceType.Unknown, DeviceType.ExitPil,
103472
+ DeviceType.EntryPil, DeviceType.ValetStation, DeviceType.Validator, DeviceType.Dispenser, DeviceType.Verifier
103473
+ ];
103474
+ const deviceIndicationStatusLocalization = new Map([
103475
+ [DeviceIndicationStatus.carOnLoop, Localization.car_on_loop],
103476
+ [DeviceIndicationStatus.gateBroken, Localization.gate_broken],
103477
+ [DeviceIndicationStatus.gateUp, Localization.gate_up],
103478
+ [DeviceIndicationStatus.ticketInside, Localization.ticket_inside],
103479
+ ]);
103480
+ const remoteCommandLocalizationMap = new Map([
103481
+ [RemoteCommandTypes$1.PrintTicket, Localization.print_ticket],
103482
+ [RemoteCommandTypes$1.SetPrice, Localization.set_price],
103483
+ [RemoteCommandTypes$1.InsertVirtualTicket, Localization.send_ticket]
103484
+ ]);
103485
+ const entryDevicesLaneTypes = [DeviceLaneTypes.mainEntry, DeviceLaneTypes.subEntry, DeviceLaneTypes.exSubEntry]; // entry devices
103486
+ const exitDevicesLaneTypes = [DeviceLaneTypes.mainExit, DeviceLaneTypes.subExit, DeviceLaneTypes.exSubExit]; // exit devices
103487
+
103488
+ const parentParkEventTypes = [
103489
+ RtEventType.Zone
103490
+ ];
103491
+ const parkEventTypes = [
103492
+ RtEventType.DeviceEvent,
103493
+ RtEventType.DeviceStatus,
103494
+ RtEventType.LPRTransaction,
103495
+ RtEventType.Occupancy,
103496
+ RtEventType.ParkState,
103497
+ RtEventType.Revenue,
103498
+ RtEventType.Zone,
103499
+ ];
103500
+ const parentParkBaseEventTypes = [
103501
+ RtEventType.DynamicPricingCondition,
103502
+ ];
103503
+ const parkBaseEventTypes = [
103504
+ RtEventType.Alert,
103505
+ RtEventType.LostTicket,
103506
+ RtEventType.LPRmismatch,
103507
+ RtEventType.Facility,
103508
+ RtEventType.ServicesStatus,
103509
+ RtEventType.DynamicPricingCondition,
103510
+ ];
103511
+ const rtEventPermissions = {
103512
+ [RtEventType.DeviceStatus]: [PermissionType$2.CcMain],
103513
+ [RtEventType.Occupancy]: [PermissionType$2.CcMain],
103514
+ [RtEventType.Revenue]: [PermissionType$2.CcMain],
103515
+ [RtEventType.Alert]: [PermissionType$2.CcMain],
103516
+ [RtEventType.ParkState]: [PermissionType$2.CcMain],
103517
+ [RtEventType.LPRTransaction]: [PermissionType$2.CcMain],
103518
+ [RtEventType.DeviceEvent]: [PermissionType$2.CcMain],
103519
+ [RtEventType.ServicesStatus]: [PermissionType$2.CcMain],
103520
+ [RtEventType.LPRmismatch]: [PermissionType$2.CcMain],
103521
+ [RtEventType.LostTicket]: [PermissionType$2.CcMain],
103522
+ [RtEventType.Zone]: [PermissionType$2.CcMain],
103523
+ [RtEventType.Facility]: [PermissionType$2.CcMain],
103524
+ [RtEventType.Company]: [PermissionType$2.CcMain],
103525
+ [RtEventType.SubCompany]: [PermissionType$2.CcMain],
103526
+ [RtEventType.FacilityDeleted]: [PermissionType$2.CcMain],
103527
+ [RtEventType.OpenTicketTransaction]: [PermissionType$2.CcMain],
103528
+ [RtEventType.CloseTicketTransaction]: [PermissionType$2.CcMain],
103529
+ [RtEventType.MonthlyTransaction]: [PermissionType$2.CcMain],
103530
+ [RtEventType.GuestTransaction]: [PermissionType$2.CcMain],
103531
+ [RtEventType.PaymentTransaction]: [PermissionType$2.CcMain],
103532
+ [RtEventType.EvoucherTransaction]: [PermissionType$2.CcMain],
103533
+ [RtEventType.ValidationProfile]: [PermissionType$2.CcMain],
103534
+ [RtEventType.DataOnCloud]: [PermissionType$2.CcMain],
103535
+ [RtEventType.DynamicPricingCondition]: [PermissionType$2.SetActiveRate],
103536
+ };
103537
+
103538
+ // Constants
103539
+
103540
+ function decryptClientSecret(encryptedSecret, encryptionKey) {
103541
+ let decryptedSecret = null;
103542
+ if (encryptedSecret?.length > 0) {
103543
+ var key_iv = encryptedSecret.split("#");
103544
+ let key;
103545
+ let iv;
103546
+ if (key_iv.length == 2) {
103547
+ key = CryptoJS.enc.Utf8.parse(key_iv[0]);
103548
+ iv = CryptoJS.enc.Utf8.parse(key_iv[0]);
103549
+ }
103550
+ else {
103551
+ key = CryptoJS.enc.Utf8.parse(encryptionKey);
103552
+ iv = CryptoJS.enc.Hex.parse(AES_DEFAULT_IV);
103553
+ }
103554
+ // Perform decryption
103555
+ const decrypted = CryptoJS.AES.decrypt(encryptedSecret, key, {
103556
+ iv: iv,
103557
+ mode: CryptoJS.mode.CBC,
103558
+ padding: CryptoJS.pad.Pkcs7
103559
+ });
103560
+ // Return the decrypted data as a UTF-8 string
103561
+ decryptedSecret = decrypted.toString(CryptoJS.enc.Utf8);
103562
+ }
103563
+ return decryptedSecret;
103564
+ }
103565
+
103566
+ function arraysAreDifferent(prev, curr) {
103567
+ return !_.isEqual(prev, curr);
103568
+ }
103569
+
103570
+ function isBoolean(value) {
103571
+ switch (value) {
103572
+ case true:
103573
+ case 'true':
103574
+ case 1:
103575
+ case '1':
103576
+ return true;
103577
+ default:
103578
+ return false;
103579
+ }
103580
+ }
103581
+
103582
+ function getDefaultDeviceStatus(device) {
103583
+ return new DeviceStatusDto({
103584
+ aggregatedStatus: AggregatedStatus.ERROR,
103585
+ barriers: [],
103586
+ buttons: [],
103587
+ deviceID: device?.id,
103588
+ communicationPercentage: 0,
103589
+ creditMode: null,
103590
+ isCashSupported: false,
103591
+ isCreditServerConnected: false,
103592
+ isConnected: false,
103593
+ loops: [],
103594
+ mode: null,
103595
+ name: device?.name,
103596
+ printers: [],
103597
+ saf: null,
103598
+ secondaryComStatus: null,
103599
+ type: device?.type,
103600
+ version: null,
103601
+ zone: device?.zoneID,
103602
+ barrier: null,
103603
+ billDispenser: null,
103604
+ billRecycler: null,
103605
+ billValidator: null,
103606
+ bytesPerSecond: null,
103607
+ centralSafe: null,
103608
+ coinInLane: null,
103609
+ devicePerSecond: null,
103610
+ doorControllerConnected: null,
103611
+ doorSensors: null,
103612
+ doorStatus: null,
103613
+ fullGateController: null,
103614
+ hoppers: null,
103615
+ isInternet: null,
103616
+ printer: null,
103617
+ commID: device?.commID,
103618
+ relays: null,
103619
+ swallowUnit: null,
103620
+ swallowUnits: null,
103621
+ switch: null,
103622
+ laneRecognition: null,
103623
+ });
103624
+ }
103625
+ function filterDevicesByTypes(array, filterByList) {
103626
+ if (!array || !array.length) {
103627
+ return [];
103628
+ }
103629
+ if (!filterByList || !filterByList.length) {
103630
+ return array;
103631
+ }
103632
+ let filteredList = [];
103633
+ for (const filterBy of filterByList) {
103634
+ filteredList = filteredList.concat(array.filter(item => isDeviceInFilterDeviceTypes(item, filterBy)));
103635
+ }
103636
+ return Array.from(new Set(filteredList));
103637
+ }
103638
+ function isDeviceInFiltersDeviceTypes(device, filterBys) {
103639
+ for (const filterBy of filterBys) {
103640
+ if (isDeviceInFilterDeviceTypes(device, filterBy)) {
103641
+ return true;
103642
+ }
103643
+ }
103644
+ return false;
103645
+ }
103646
+ function isDeviceInFilterDeviceTypes(device, filterBy) {
103647
+ switch (filterBy) {
103648
+ // entry
103649
+ case FilterByDeviceType.device_filter_by_dispenser:
103650
+ return device.type === DeviceType.Dispenser;
103651
+ case FilterByDeviceType.device_filter_by_entry_pil:
103652
+ return device.type === DeviceType.EntryPil;
103653
+ case FilterByDeviceType.device_filter_by_entry_au_slim:
103654
+ return device.type === DeviceType.Reader && ((device.laneType === DeviceLaneTypes.mainEntry) ||
103655
+ (device.laneType === DeviceLaneTypes.subEntry) ||
103656
+ (device.laneType === DeviceLaneTypes.exSubEntry));
103657
+ // exit
103658
+ case FilterByDeviceType.device_filter_by_verifier:
103659
+ return device.type === DeviceType.Verifier;
103660
+ case FilterByDeviceType.device_filter_by_exit_pil:
103661
+ return device.type === DeviceType.ExitPil;
103662
+ case FilterByDeviceType.device_filter_by_exit_au_slim:
103663
+ return device.type === DeviceType.Reader && ((device.laneType === DeviceLaneTypes.mainExit) ||
103664
+ (device.laneType === DeviceLaneTypes.subExit) ||
103665
+ (device.laneType === DeviceLaneTypes.exSubExit));
103666
+ // payment
103667
+ case FilterByDeviceType.device_filter_by_pay_in_lane:
103668
+ return device.type === DeviceType.EntryPil || device.type === DeviceType.ExitPil;
103669
+ case FilterByDeviceType.device_filter_by_lobby_station:
103670
+ return device.type === DeviceType.Credit || device.type === DeviceType.Pof;
103671
+ // other
103672
+ case FilterByDeviceType.device_filter_by_main_controller:
103673
+ return device.type === DeviceType.Cash && device.commID === 0;
103674
+ case FilterByDeviceType.device_filter_by_cashier_station:
103675
+ return device.type === DeviceType.Cash && device.commID > 0;
103676
+ case FilterByDeviceType.device_filter_by_valet_station:
103677
+ return device.type === DeviceType.ValetStation;
103678
+ case FilterByDeviceType.device_filter_by_validator:
103679
+ return device.type === DeviceType.Validator;
103680
+ case FilterByDeviceType.device_filter_by_lpr_camera:
103681
+ return device.type === DeviceType.LprCamera;
103682
+ default:
103683
+ return true;
103684
+ }
103685
+ }
103686
+ function matchesDevicesParkingLotCriteria(entities, searchValue = '') {
103687
+ const search = searchValue.toLowerCase();
103688
+ return entities.filter(entity => {
103689
+ if (entity.isChild) {
103690
+ return matchesDeviceParkingLotCriteria(entity, search);
103691
+ }
103692
+ else {
103693
+ return entity['children'].filter(e => matchesDeviceParkingLotCriteria(e, search)).length > 0;
103694
+ }
103695
+ });
103696
+ }
103697
+ function matchesDeviceParkingLotCriteria(entity, searchValue) {
103698
+ return entity.device?.name.toLowerCase().includes(searchValue) ||
103699
+ entity.device?.commID.toString().includes(searchValue) ||
103700
+ entity.zone?.name.toLowerCase().includes(searchValue) ||
103701
+ entity.parkName?.toLowerCase().includes(searchValue);
103702
+ }
103703
+ function matchesDeviceCriteria(entity, searchValue) {
103704
+ return entity.name.toLowerCase().includes(searchValue) ||
103705
+ entity.commID.toString().includes(searchValue) ||
103706
+ entity.zone?.name.toLowerCase().includes(searchValue) ||
103707
+ entity.parkName?.toLowerCase().includes(searchValue);
103708
+ }
103709
+
103710
+ function setErrorMessage(formName, controlName, event) {
103711
+ if (event) {
103712
+ formName.get(controlName).setErrors(event);
103713
+ formName.get(controlName).markAsTouched();
103714
+ }
103715
+ }
103716
+
103717
+ function hasRequiredField(abstractControl) {
103718
+ return abstractControl?.hasValidator(Validators.required);
103719
+ }
103720
+
103721
+ function safeParse(jsonString) {
103722
+ try {
103723
+ const value = JSON.parse(jsonString);
103724
+ return { success: true, value };
103725
+ }
103726
+ catch (error) {
103727
+ return { success: false, error: error.message };
103728
+ }
103729
+ }
103730
+
103731
+ function getCurrentLang(userSettings) {
103732
+ const value = userSettings?.get(SettingsCategory$3.Localization);
103733
+ return value?.keyName ?? LOCAL_ENGLISH_LANGUAGE;
103734
+ }
103735
+
103736
+ const Migrations = [
103737
+ {
103738
+ version: '7.3.5',
103739
+ name: 'setApplicationField',
103740
+ up: () => {
103741
+ const session = JSON.parse(localStorage.getItem(SESSION));
103742
+ if (!session.application) {
103743
+ session.application = { version: session.version, releaseDate: session.releaseDate, features: session.features };
103744
+ delete session.version;
103745
+ delete session.releaseDate;
103746
+ delete session.features;
103747
+ localStorage.setItem(SESSION, JSON.stringify(session));
103748
+ }
103749
+ },
103750
+ },
103751
+ {
103752
+ version: '7.3.5',
103753
+ name: 'sessionByTenantName',
103754
+ up: () => {
103755
+ const session = JSON.parse(localStorage.getItem(SESSION));
103756
+ if (!session.sparkSessions) {
103757
+ session.sparkSessions = { [session.tenant.tenantName.toLowerCase()]: { tenant: session.tenant, user: session.user } };
103758
+ delete session.tenant;
103759
+ delete session.user;
103760
+ localStorage.setItem(SESSION, JSON.stringify(session));
103761
+ }
103762
+ },
103763
+ },
103764
+ ];
103765
+ function LocalStorageMigrator() {
103766
+ const session = JSON.parse(localStorage.getItem(SESSION));
103767
+ const version = session.application?.version || session?.version;
103768
+ if (version) {
103769
+ console.debug('Running local storage migration');
103770
+ Migrations.filter(mig => version < mig.version).forEach(m => m.up());
103771
+ }
103772
+ }
103773
+
103774
+ const whiteListUrls = [
103775
+ 'openid-callback'
103776
+ ];
103777
+ class LowerCaseUrlSerializer extends DefaultUrlSerializer {
103778
+ parse(url) {
103779
+ if (whiteListUrls.some(substring => url.includes(substring))) {
103780
+ return super.parse(url);
103781
+ }
103782
+ const url_query = url.split('?');
103783
+ if (url_query.length > 1) {
103784
+ url = url.replace(url_query[0], url_query[0].toLowerCase());
103785
+ return super.parse(url);
103786
+ }
103787
+ else {
103788
+ return super.parse(url.toLowerCase());
103789
+ }
103790
+ }
103791
+ }
103792
+
103793
+ const META_KEY = 'METADATA';
103794
+ function getObjectMetadata(target) {
103795
+ return target[META_KEY];
103796
+ }
103797
+ function ensureObjectMetadata(target) {
103798
+ if (!target.hasOwnProperty(META_KEY)) {
103799
+ Object.defineProperty(target, META_KEY, { value: {} });
103800
+ }
103801
+ return getObjectMetadata(target);
103802
+ }
103803
+ const createDescriptor = (value) => ({
103804
+ value,
103805
+ enumerable: false,
103806
+ configurable: true,
103807
+ writable: true,
103808
+ });
103809
+ // tslint:disable-next-line:ban-types
103810
+ function wrapConstructor(targetClass, constructorCallback) {
103811
+ // create a new wrapped constructor
103812
+ const wrappedConstructor = function () {
103813
+ constructorCallback.apply(this, arguments);
103814
+ return targetClass.apply(this, arguments);
103815
+ };
103816
+ Object.defineProperty(wrappedConstructor, 'name', { value: targetClass });
103817
+ // copy prototype so intanceof operator still works
103818
+ wrappedConstructor.prototype = targetClass.prototype;
103819
+ // return new constructor (will override original)
103820
+ return wrappedConstructor;
103821
+ }
103822
+
103823
+ const MainModuleToSubModulesPermissionTypeMap = {
103824
+ [PermissionType$2.CcMain]: [],
103825
+ [PermissionType$2.AccountManagementMain]: [PermissionType$2.AccountManagementAccountView, PermissionType$2.AccountManagementAccountCreate, PermissionType$2.AccountManagementAccountUpdate, PermissionType$2.AccountManagementAccountDelete],
103826
+ [PermissionType$2.MonthliesMain]: [PermissionType$2.MonthliesView, PermissionType$2.MonthliesCreate, PermissionType$2.MonthliesUpdate, PermissionType$2.MonthliesDelete, PermissionType$2.MonthlySeriesCreate],
103827
+ [PermissionType$2.GuestMain]: [
103828
+ PermissionType$2.GuestView, PermissionType$2.GuestCreate, PermissionType$2.GuestUpdate, PermissionType$2.GuestDelete, PermissionType$2.GuestGroupView,
103829
+ PermissionType$2.GuestGroupCreate, PermissionType$2.GuestHotelGuestView, PermissionType$2.HotelGuestIOCreate, PermissionType$2.GuestEVoucherView,
103830
+ PermissionType$2.HotelGuestIOView
103831
+ ],
103832
+ [PermissionType$2.ValidationMain]: [
103833
+ PermissionType$2.ValidationEValidationView, PermissionType$2.ValidationEValidationCreate, PermissionType$2.ValidationEValidationUpdate, PermissionType$2.ValidationEValidationDelete,
103834
+ PermissionType$2.ValidationStickerView, PermissionType$2.ValidationStickerCreate, PermissionType$2.ValidationStickerUpdate, PermissionType$2.ValidationStickerDelete,
103835
+ PermissionType$2.ValidationCouponView, PermissionType$2.ValidationCouponCreate, PermissionType$2.ValidationCouponUpdate, PermissionType$2.ValidationCouponDelete,
103836
+ PermissionType$2.ValidationSelfValidationView, PermissionType$2.ValidationSelfValidationCreate, PermissionType$2.ValidationSelfValidationUpdate, PermissionType$2.ValidationSelfValidationDelete
103837
+ ],
103838
+ [PermissionType$2.ReportsMain]: [],
103839
+ [PermissionType$2.LotConfigurationMain]: [PermissionType$2.LotConfigurationRates, PermissionType$2.LotConfigurationScheduler, PermissionType$2.LotConfigurationValidationProfile, PermissionType$2.LotConfigurationAccessProfile, PermissionType$2.LotConfigurationDynamicPricing, PermissionType$2.LotConfigurationCashierManagement],
103840
+ [PermissionType$2.TenantSettingsMain]: [PermissionType$2.ManagementAdmin],
103841
+ [PermissionType$2.ECommerceBackofficeMain]: [PermissionType$2.ECommerceAdmin, PermissionType$2.ECommerceRegular]
103842
+ };
103843
+ const AppModuleToMainPermissionTypeMap = {
103844
+ [AppModule$3.Cc]: PermissionType$2.CcMain,
103845
+ [AppModule$3.Accounts]: PermissionType$2.AccountManagementMain,
103846
+ [AppModule$3.Monthlies]: PermissionType$2.MonthliesMain,
103847
+ [AppModule$3.Guests]: PermissionType$2.GuestMain,
103848
+ [AppModule$3.Validation]: PermissionType$2.ValidationMain,
103849
+ [AppModule$3.Reports]: PermissionType$2.ReportsMain,
103850
+ [AppModule$3.LotConfiguration]: PermissionType$2.LotConfigurationMain,
103851
+ [AppModule$3.Management]: PermissionType$2.TenantSettingsMain,
103852
+ [AppModule$3.ECommerceBackoffice]: PermissionType$2.ECommerceBackofficeMain,
103853
+ };
103854
+
103855
+ const extractNumber = (input) => {
103856
+ const parsedNumber = +input;
103857
+ return isNullOrEmpty(input) || isNaN(parsedNumber) ? null : parsedNumber;
103858
+ };
103859
+ const isSingularOrPlural = (numberOfMonth) => numberOfMonth <= 1;
103860
+
103861
+ function parkerEnumToText(tag) {
103862
+ return ParkerTagsText[ParkerTag[tag]];
103863
+ }
103864
+
103865
+ function getParkerTypesText(parkerType) {
103866
+ return ParkerTypesText[ParkerTicketType[parkerType]];
103867
+ }
103868
+ function mapTransientTags(parkerTags, isStolenTicket, isBackOutTicket, isOfflineTicket, translateService) {
103869
+ const tags = parkerTags.map(tag => parkerEnumToText(tag)).map(tag => translateService.instant(tag));
103870
+ if (isBackOutTicket) {
103871
+ tags.push(translateService.instant(Localization.backout_ticket));
103872
+ }
103873
+ if (isStolenTicket) {
103874
+ tags.push(translateService.instant(Localization.stolen_ticket));
103875
+ }
103876
+ if (isOfflineTicket) {
103877
+ tags.push(translateService.instant(Localization.offline));
103878
+ }
103879
+ return tags.join(', ');
103880
+ }
103881
+
103882
+ function getPasswordMinimalLength(userInfo) {
103883
+ let pml = DEFAULT_MINIMUM_LENGTH;
103884
+ let tenantSession = null;
103885
+ const sparkSession = JSON.parse(localStorage.getItem(SESSION))?.sparkSessions;
103886
+ const tenantName = sessionStorage.getItem(TENANT_KEY);
103887
+ if (sparkSession) {
103888
+ tenantSession = sparkSession[tenantName];
103889
+ // Update password in user setting
103890
+ if (tenantSession) {
103891
+ pml = tenantSession.appConfiguration?.pml;
103892
+ }
103893
+ // Update password in forgot password
103894
+ else {
103895
+ pml = userInfo.pml;
103896
+ }
103897
+ }
103898
+ return pml;
103899
+ }
103900
+
103901
+ const MAX_RESULTS = 100;
103902
+ function GenerateSearchParamsDto({ maxResults = MAX_RESULTS, searchTerm = '', column = 'Id', orderDirection = OrderDirection.Desc }) {
103903
+ return new SearchParamsDto({
103904
+ maxResults,
103905
+ searchTerm,
103906
+ orderBy: new OrderByDto({
103907
+ column,
103908
+ orderDirection
103909
+ })
103910
+ });
103911
+ }
103912
+
103913
+ function compareValues(valueA, valueB, isAsc) {
103914
+ // Convert display nulls to actual nulls
103915
+ valueA = valueA === '-' ? null : valueA;
103916
+ valueB = valueB === '-' ? null : valueB;
103917
+ // Handle null/undefined values first
103918
+ if (valueA == null && valueB == null)
103919
+ return 0;
103920
+ if (valueA == null)
103921
+ return isAsc ? 1 : -1; // null values go to end
103922
+ if (valueB == null)
103923
+ return isAsc ? -1 : 1;
103924
+ const keyType = typeof valueA;
103925
+ const multiplier = isAsc ? 1 : -1;
103926
+ switch (keyType) {
103927
+ case 'string':
103928
+ return valueA.localeCompare(valueB, ENGLISH_LANGUAGE, { numeric: true }) * multiplier;
103929
+ case 'number':
103930
+ default:
103931
+ return (valueA - valueB) * multiplier;
103932
+ }
103933
+ }
103934
+
103935
+ function isVersionGreaterThanEqual(currentSparkVersion, sparkVersion) {
103936
+ return currentSparkVersion && sparkVersion && versionValue(currentSparkVersion) >= versionValue(sparkVersion);
103937
+ }
103938
+ // the assumption is that we have major.minor.patch
103939
+ function versionValue(version) {
103940
+ const delimiter = '.';
103941
+ var tmp = version.split(delimiter);
103942
+ return (+tmp[0] * 100) + (+tmp[1] * 10) + +tmp[2];
103943
+ }
103944
+
103945
+ function getTooltipTextByParkerType(tooltipOption, isSearchValidation = false) {
103946
+ const ticketsSpecifications = tooltipOption.tenantService.ticketsSpecifications;
103947
+ const parkerTicketTypeText = lowerCaseFirstLetter(ParkerTicketType[tooltipOption.searchType]);
103948
+ let message = Localization.entity_no_result_hint;
103949
+ const interpolateParams = {
103950
+ entity: parkerTicketTypeText,
103951
+ valueFrom: ticketsSpecifications[parkerTicketTypeText]?.numberOfMonthsAgo,
103952
+ valueTo: ticketsSpecifications[parkerTicketTypeText]?.numberOfMonthsAhead,
103953
+ durationFirst: isSingularOrPlural(ticketsSpecifications[parkerTicketTypeText]?.numberOfMonthsAgo) ?
103954
+ tooltipOption.translateService.instant(Localization.time_ago_month) :
103955
+ tooltipOption.translateService.instant(Localization.time_ago_months),
103956
+ durationSecond: isSingularOrPlural(ticketsSpecifications[parkerTicketTypeText]?.numberOfMonthsAhead) ?
103957
+ tooltipOption.translateService.instant(Localization.time_ago_month) :
103958
+ tooltipOption.translateService.instant(Localization.time_ago_months),
103959
+ };
103960
+ switch (tooltipOption.searchType) {
103961
+ case ParkerTicketType.Transient:
103962
+ if (isSearchValidation) {
103963
+ interpolateParams.valueOpenTransient = ticketsSpecifications.transient.validationTicketsNumberOfMonthsAgo;
103964
+ interpolateParams.durationFirst = isSingularOrPlural(ticketsSpecifications.transient.validationTicketsNumberOfMonthsAgo) ?
103965
+ tooltipOption.translateService.instant(Localization.time_ago_month) :
103966
+ tooltipOption.translateService.instant(Localization.time_ago_months);
103967
+ break;
103968
+ }
103969
+ message = Localization.transients_no_result_hint;
103970
+ interpolateParams.valueOpenTransient = ticketsSpecifications.transient.openTicketsNumberOfMonthsAgo;
103971
+ interpolateParams.valueClosedTransient = ticketsSpecifications.transient.closedTicketsNumberOfMonthsAgo;
103972
+ interpolateParams.durationFirst = isSingularOrPlural(ticketsSpecifications.transient.openTicketsNumberOfMonthsAgo) ?
103973
+ tooltipOption.translateService.instant(Localization.time_ago_month) :
103974
+ tooltipOption.translateService.instant(Localization.time_ago_months);
103975
+ interpolateParams.durationSecond = isSingularOrPlural(ticketsSpecifications.transient.closedTicketsNumberOfMonthsAgo) ?
103976
+ tooltipOption.translateService.instant(Localization.time_ago_month) :
103977
+ tooltipOption.translateService.instant(Localization.time_ago_months);
103978
+ break;
103979
+ case ParkerTicketType.EVoucher:
103980
+ break;
103981
+ case ParkerTicketType.Guest:
103982
+ interpolateParams.entity = ParkerTicketType[tooltipOption.searchType];
103983
+ break;
103984
+ case ParkerTicketType.CardOnFile:
103985
+ interpolateParams.entity = ParkerTicketType[tooltipOption.searchType];
103986
+ break;
103987
+ default:
103988
+ return null;
103989
+ }
103990
+ message = tooltipOption.translateMessage ? tooltipOption.translateMessage : message; // can be overriden in special cases
103991
+ return tooltipOption.translateService.instant(message, interpolateParams);
103992
+ }
103993
+
103994
+ var RangeModes;
103995
+ (function (RangeModes) {
103996
+ RangeModes[RangeModes["byDate"] = 1] = "byDate";
103997
+ RangeModes[RangeModes["byZ"] = 2] = "byZ";
103998
+ })(RangeModes || (RangeModes = {}));
103999
+ var RangeModesText;
104000
+ (function (RangeModesText) {
104001
+ RangeModesText["byDate"] = "by_date";
104002
+ RangeModesText["byZ"] = "by_z";
104003
+ })(RangeModesText || (RangeModesText = {}));
104004
+
104005
+ // NGXS
104006
+
103298
104007
  var CommandNotificationType;
103299
104008
  (function (CommandNotificationType) {
103300
104009
  CommandNotificationType[CommandNotificationType["Error"] = 1] = "Error";
@@ -103826,56 +104535,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
103826
104535
  type: Injectable
103827
104536
  }], ctorParameters: () => [{ type: i1$2.Store }] });
103828
104537
 
103829
- const parentParkEventTypes = [
103830
- RtEventType.Zone
103831
- ];
103832
- const parkEventTypes = [
103833
- RtEventType.DeviceEvent,
103834
- RtEventType.DeviceStatus,
103835
- RtEventType.LPRTransaction,
103836
- RtEventType.Occupancy,
103837
- RtEventType.ParkState,
103838
- RtEventType.Revenue,
103839
- RtEventType.Zone,
103840
- ];
103841
- const parentParkBaseEventTypes = [
103842
- RtEventType.DynamicPricingCondition,
103843
- ];
103844
- const parkBaseEventTypes = [
103845
- RtEventType.Alert,
103846
- RtEventType.LostTicket,
103847
- RtEventType.LPRmismatch,
103848
- RtEventType.Facility,
103849
- RtEventType.ServicesStatus,
103850
- RtEventType.DynamicPricingCondition,
103851
- ];
103852
- const rtEventPermissions = {
103853
- [RtEventType.DeviceStatus]: [PermissionType$2.CcMain],
103854
- [RtEventType.Occupancy]: [PermissionType$2.CcMain],
103855
- [RtEventType.Revenue]: [PermissionType$2.CcMain],
103856
- [RtEventType.Alert]: [PermissionType$2.CcMain],
103857
- [RtEventType.ParkState]: [PermissionType$2.CcMain],
103858
- [RtEventType.LPRTransaction]: [PermissionType$2.CcMain],
103859
- [RtEventType.DeviceEvent]: [PermissionType$2.CcMain],
103860
- [RtEventType.ServicesStatus]: [PermissionType$2.CcMain],
103861
- [RtEventType.LPRmismatch]: [PermissionType$2.CcMain],
103862
- [RtEventType.LostTicket]: [PermissionType$2.CcMain],
103863
- [RtEventType.Zone]: [PermissionType$2.CcMain],
103864
- [RtEventType.Facility]: [PermissionType$2.CcMain],
103865
- [RtEventType.Company]: [PermissionType$2.CcMain],
103866
- [RtEventType.SubCompany]: [PermissionType$2.CcMain],
103867
- [RtEventType.FacilityDeleted]: [PermissionType$2.CcMain],
103868
- [RtEventType.OpenTicketTransaction]: [PermissionType$2.CcMain],
103869
- [RtEventType.CloseTicketTransaction]: [PermissionType$2.CcMain],
103870
- [RtEventType.MonthlyTransaction]: [PermissionType$2.CcMain],
103871
- [RtEventType.GuestTransaction]: [PermissionType$2.CcMain],
103872
- [RtEventType.PaymentTransaction]: [PermissionType$2.CcMain],
103873
- [RtEventType.EvoucherTransaction]: [PermissionType$2.CcMain],
103874
- [RtEventType.ValidationProfile]: [PermissionType$2.CcMain],
103875
- [RtEventType.DataOnCloud]: [PermissionType$2.CcMain],
103876
- [RtEventType.DynamicPricingCondition]: [PermissionType$2.SetActiveRate],
103877
- };
103878
-
103879
104538
  class RealtimeEventService {
103880
104539
  constructor(store, sessionStorageService) {
103881
104540
  this.store = store;
@@ -105808,38 +106467,38 @@ let FacilityState = class FacilityState {
105808
106467
  });
105809
106468
  }
105810
106469
  handleSmartCounter(zone) {
105811
- //"[{"VehicleClassId":1,"Counter":31,"ZoneId":10},{"VehicleClassId":2,"Counter":25,"ZoneId":10}]"
105812
- //"[{\"VehicleTypeId\":1,\"Counter\":10,\"ZoneId\":10},{\"VehicleTypeId\":2,\"Counter\":10,\"ZoneId\":10}]"
105813
106470
  try {
105814
- if (zone?.smartCounterVehicleClassJson) {
105815
- const smartCounterVehicleClass = JSON.parse(zone.smartCounterVehicleClassJson);
105816
- if (!Array.isArray(smartCounterVehicleClass)) {
105817
- throw new Error("Parsed JSON smartCounterVehicleClass is not an array");
105818
- }
105819
- zone.smartZoneCounterVehicleClass = smartCounterVehicleClass.map(sc => {
105820
- return SmartZoneCounterVehicleClassDto.fromJS({
105821
- counter: sc.Counter,
105822
- zoneId: zone.id,
105823
- vehicleClassId: sc.VehicleClassId,
105824
- });
105825
- });
105826
- }
105827
106471
  if (zone?.smartCounterVehicleTypeJson) {
105828
- const smartCounterVehicleType = JSON.parse(zone.smartCounterVehicleTypeJson);
106472
+ const parsedJson = JSON.parse(zone.smartCounterVehicleTypeJson);
106473
+ const smartCounterVehicleType = objectKeystoLowerCase(parsedJson);
105829
106474
  if (!Array.isArray(smartCounterVehicleType)) {
105830
- throw new Error("Parsed JSON smartCounterVehicleType is not an array");
105831
- }
105832
- zone.smartZoneCounterVehicleType = smartCounterVehicleType.map(sc => {
105833
- return SmartZoneCounterVehicleTypeDto.fromJS({
105834
- counter: sc.Counter,
105835
- zoneId: zone.id,
105836
- vehicleTypeId: sc.VehicleTypeId,
105837
- });
106475
+ throw new Error('Parsed JSON smartCounterVehicleType is not an array');
106476
+ }
106477
+ zone.smartZoneCounterVehicleType = smartCounterVehicleType.map((sc) => {
106478
+ const smartZoneCounterVehicleTypeDto = new SmartZoneCounterVehicleTypeDto();
106479
+ smartZoneCounterVehicleTypeDto.counter = sc.counter;
106480
+ smartZoneCounterVehicleTypeDto.zoneId = zone.id;
106481
+ smartZoneCounterVehicleTypeDto.vehicleTypeId = sc.vehicletypeid;
106482
+ return smartZoneCounterVehicleTypeDto;
106483
+ });
106484
+ }
106485
+ if (zone?.smartCounterVehicleClassJson) {
106486
+ const parsedJson = JSON.parse(zone.smartCounterVehicleClassJson);
106487
+ const smartCounterVehicleClass = objectKeystoLowerCase(parsedJson);
106488
+ if (!Array.isArray(smartCounterVehicleClass)) {
106489
+ throw new Error('Parsed JSON smartCounterVehicleClass is not an array');
106490
+ }
106491
+ zone.smartZoneCounterVehicleClass = smartCounterVehicleClass.map((sc) => {
106492
+ const smartZoneCounterVehicleClassDto = new SmartZoneCounterVehicleClassDto();
106493
+ smartZoneCounterVehicleClassDto.counter = sc.counter;
106494
+ smartZoneCounterVehicleClassDto.zoneId = zone.id;
106495
+ smartZoneCounterVehicleClassDto.vehicleClassId = sc.vehicleclassid;
106496
+ return smartZoneCounterVehicleClassDto;
105838
106497
  });
105839
106498
  }
105840
106499
  }
105841
106500
  catch (error) {
105842
- console.error("Failed to parse smartCounterJson:", error);
106501
+ console.error('Failed to parse smartCounterJson:', error);
105843
106502
  zone.smartZoneCounterVehicleClass = [];
105844
106503
  zone.smartZoneCounterVehicleType = [];
105845
106504
  }
@@ -106485,166 +107144,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
106485
107144
  type: Injectable
106486
107145
  }], ctorParameters: () => [{ type: i1$2.Store }, { type: BaseFacilityCommandsService }, { type: LocalStorageService }, { type: FacilityMenuService }, { type: FacilityRpcServiceProxy }, { type: RemoteCommandRpcServiceProxy }, { type: GroupRpcServiceProxy }, { type: CategoryRpcServiceProxy }, { type: JobTitleRpcServiceProxy }, { type: ZoneRpcServiceProxy }, { type: ZRpcServiceProxy }, { type: GlobalErrorService }, { type: CommandNotificationService }, { type: i1$5.TranslateService }, { type: AppConfigService }], propDecorators: { onClearFacilityDictionary: [], onSetSmartparkBasicAllAction: [], onSetSmartparkBasicAction: [], onLoadParkingLotAction: [], onLoadRemoteCommandsRefAction: [], onLoadFacilityRemoteCommandsRefAction: [], onLoadFacilityAction: [], onUnloadParkingLotAction: [], onSetDeviceRemoteCommandsMapAction: [], onSetFacilityRemoteCommandsMapAction: [], onZoneChangedAction: [], onServicesRunningStatusChangedAction: [], onFacilityChangedAction: [], onSetBasicMenuAction: [], onLoadAccountManagementGuestGroupsAction: [], onLoadReportsGuestGroupsAction: [], onLoadCategoriesAction: [], onLoadReportsJobTitlesAction: [], onLoadAccountManagementJobTitlesAction: [], onLoadReportsZonesAction: [], onLoadAccessProfileZZonesAction: [], onLoadCcMainZonesAction: [], onLoadZsAction: [], onClearGroupsAction: [], onClearCategoriesAction: [], onClearJobTitlesAction: [], onClearZonesAction: [], onClearZsAction: [], onSetSelectedParkAction: [], onClearSelectedFacilityAction: [], onClearInactiveSelectedParkAction: [], onFacilityRemoteCommandExecutedAction: [], onLoadMacroCommandsAction: [], onClearMacroCommandsAction: [] } });
106487
107146
 
106488
- // DOTO: Get the correct list from Product of DeviceTypes that support Restore Ticket
106489
- const SUPPORETD_RESTORE_TICKET_TYPES = [DeviceType.CashMp, DeviceType.CashReader, DeviceType.Dispenser, DeviceType.EntryPil,
106490
- DeviceType.ExitPil, DeviceType.LprCamera, DeviceType.Master, DeviceType.ParkBlueGate, DeviceType.Reader, DeviceType.ValetStation,
106491
- DeviceType.Validator, DeviceType.Verifier];
106492
- const SUPPORTED_PAYMENT_FOR_ISF_TYPES = [DeviceType.Verifier, DeviceType.ExitPil, DeviceType.Credit];
106493
- const SUPPORTED_GATE_DEVICE_TYPES = [DeviceType.Reader, DeviceType.Verifier, DeviceType.Dispenser,
106494
- DeviceType.CashReader, DeviceType.EntryPil, DeviceType.ExitPil, DeviceType.LprCamera];
106495
- const SUPPORTED_CAR_ON_LOOP_DEVICE_TYPES = [DeviceType.Reader, DeviceType.Verifier, DeviceType.Dispenser,
106496
- DeviceType.CashReader, DeviceType.EntryPil, DeviceType.ExitPil, DeviceType.LprCamera];
106497
- const SUPPORTED_TICKET_INSIDE_DEVICE_TYPES = [DeviceType.Reader, DeviceType.Verifier, DeviceType.Dispenser,
106498
- DeviceType.CashReader, DeviceType.EntryPil, DeviceType.ExitPil, DeviceType.LprCamera, DeviceType.Credit, DeviceType.Pof];
106499
- const SUPPORTED_LPR_TRANSACTIONS_DEVICE_TYPES = [DeviceType.CashReader, DeviceType.CashMp, DeviceType.Reader,
106500
- DeviceType.Dispenser, DeviceType.Verifier, DeviceType.EntryPil, DeviceType.ExitPil, DeviceType.LprCamera,
106501
- DeviceType.ParkBlueGate, DeviceType.Unknown, DeviceType.Master];
106502
- const SUPPORTED_STATUS_DEVICE_TYPES = [DeviceType.Cash, DeviceType.CashMp, DeviceType.CashReader, DeviceType.Credit,
106503
- DeviceType.Reader, DeviceType.Master, DeviceType.ParkBlueGate, DeviceType.Pof, DeviceType.Unknown, DeviceType.ExitPil,
106504
- DeviceType.EntryPil, DeviceType.ValetStation, DeviceType.Validator, DeviceType.Dispenser, DeviceType.Verifier
106505
- ];
106506
- const deviceIndicationStatusLocalization = new Map([
106507
- [DeviceIndicationStatus.carOnLoop, Localization.car_on_loop],
106508
- [DeviceIndicationStatus.gateBroken, Localization.gate_broken],
106509
- [DeviceIndicationStatus.gateUp, Localization.gate_up],
106510
- [DeviceIndicationStatus.ticketInside, Localization.ticket_inside],
106511
- ]);
106512
- const remoteCommandLocalizationMap = new Map([
106513
- [RemoteCommandTypes$1.PrintTicket, Localization.print_ticket],
106514
- [RemoteCommandTypes$1.SetPrice, Localization.set_price],
106515
- [RemoteCommandTypes$1.InsertVirtualTicket, Localization.send_ticket]
106516
- ]);
106517
- const entryDevicesLaneTypes = [DeviceLaneTypes.mainEntry, DeviceLaneTypes.subEntry, DeviceLaneTypes.exSubEntry]; // entry devices
106518
- const exitDevicesLaneTypes = [DeviceLaneTypes.mainExit, DeviceLaneTypes.subExit, DeviceLaneTypes.exSubExit]; // exit devices
106519
-
106520
- function getDefaultDeviceStatus(device) {
106521
- return new DeviceStatusDto({
106522
- aggregatedStatus: AggregatedStatus.ERROR,
106523
- barriers: [],
106524
- buttons: [],
106525
- deviceID: device?.id,
106526
- communicationPercentage: 0,
106527
- creditMode: null,
106528
- isCashSupported: false,
106529
- isCreditServerConnected: false,
106530
- isConnected: false,
106531
- loops: [],
106532
- mode: null,
106533
- name: device?.name,
106534
- printers: [],
106535
- saf: null,
106536
- secondaryComStatus: null,
106537
- type: device?.type,
106538
- version: null,
106539
- zone: device?.zoneID,
106540
- barrier: null,
106541
- billDispenser: null,
106542
- billRecycler: null,
106543
- billValidator: null,
106544
- bytesPerSecond: null,
106545
- centralSafe: null,
106546
- coinInLane: null,
106547
- devicePerSecond: null,
106548
- doorControllerConnected: null,
106549
- doorSensors: null,
106550
- doorStatus: null,
106551
- fullGateController: null,
106552
- hoppers: null,
106553
- isInternet: null,
106554
- printer: null,
106555
- commID: device?.commID,
106556
- relays: null,
106557
- swallowUnit: null,
106558
- swallowUnits: null,
106559
- switch: null,
106560
- laneRecognition: null,
106561
- });
106562
- }
106563
- function filterDevicesByTypes(array, filterByList) {
106564
- if (!array || !array.length) {
106565
- return [];
106566
- }
106567
- if (!filterByList || !filterByList.length) {
106568
- return array;
106569
- }
106570
- let filteredList = [];
106571
- for (const filterBy of filterByList) {
106572
- filteredList = filteredList.concat(array.filter(item => isDeviceInFilterDeviceTypes(item, filterBy)));
106573
- }
106574
- return Array.from(new Set(filteredList));
106575
- }
106576
- function isDeviceInFiltersDeviceTypes(device, filterBys) {
106577
- for (const filterBy of filterBys) {
106578
- if (isDeviceInFilterDeviceTypes(device, filterBy)) {
106579
- return true;
106580
- }
106581
- }
106582
- return false;
106583
- }
106584
- function isDeviceInFilterDeviceTypes(device, filterBy) {
106585
- switch (filterBy) {
106586
- // entry
106587
- case FilterByDeviceType.device_filter_by_dispenser:
106588
- return device.type === DeviceType.Dispenser;
106589
- case FilterByDeviceType.device_filter_by_entry_pil:
106590
- return device.type === DeviceType.EntryPil;
106591
- case FilterByDeviceType.device_filter_by_entry_au_slim:
106592
- return device.type === DeviceType.Reader && ((device.laneType === DeviceLaneTypes.mainEntry) ||
106593
- (device.laneType === DeviceLaneTypes.subEntry) ||
106594
- (device.laneType === DeviceLaneTypes.exSubEntry));
106595
- // exit
106596
- case FilterByDeviceType.device_filter_by_verifier:
106597
- return device.type === DeviceType.Verifier;
106598
- case FilterByDeviceType.device_filter_by_exit_pil:
106599
- return device.type === DeviceType.ExitPil;
106600
- case FilterByDeviceType.device_filter_by_exit_au_slim:
106601
- return device.type === DeviceType.Reader && ((device.laneType === DeviceLaneTypes.mainExit) ||
106602
- (device.laneType === DeviceLaneTypes.subExit) ||
106603
- (device.laneType === DeviceLaneTypes.exSubExit));
106604
- // payment
106605
- case FilterByDeviceType.device_filter_by_pay_in_lane:
106606
- return device.type === DeviceType.EntryPil || device.type === DeviceType.ExitPil;
106607
- case FilterByDeviceType.device_filter_by_lobby_station:
106608
- return device.type === DeviceType.Credit || device.type === DeviceType.Pof;
106609
- // other
106610
- case FilterByDeviceType.device_filter_by_main_controller:
106611
- return device.type === DeviceType.Cash && device.commID === 0;
106612
- case FilterByDeviceType.device_filter_by_cashier_station:
106613
- return device.type === DeviceType.Cash && device.commID > 0;
106614
- case FilterByDeviceType.device_filter_by_valet_station:
106615
- return device.type === DeviceType.ValetStation;
106616
- case FilterByDeviceType.device_filter_by_validator:
106617
- return device.type === DeviceType.Validator;
106618
- case FilterByDeviceType.device_filter_by_lpr_camera:
106619
- return device.type === DeviceType.LprCamera;
106620
- default:
106621
- return true;
106622
- }
106623
- }
106624
- function matchesDevicesParkingLotCriteria(entities, searchValue = '') {
106625
- const search = searchValue.toLowerCase();
106626
- return entities.filter(entity => {
106627
- if (entity.isChild) {
106628
- return matchesDeviceParkingLotCriteria(entity, search);
106629
- }
106630
- else {
106631
- return entity['children'].filter(e => matchesDeviceParkingLotCriteria(e, search)).length > 0;
106632
- }
106633
- });
106634
- }
106635
- function matchesDeviceParkingLotCriteria(entity, searchValue) {
106636
- return entity.device?.name.toLowerCase().includes(searchValue) ||
106637
- entity.device?.commID.toString().includes(searchValue) ||
106638
- entity.zone?.name.toLowerCase().includes(searchValue) ||
106639
- entity.parkName?.toLowerCase().includes(searchValue);
106640
- }
106641
- function matchesDeviceCriteria(entity, searchValue) {
106642
- return entity.name.toLowerCase().includes(searchValue) ||
106643
- entity.commID.toString().includes(searchValue) ||
106644
- entity.zone?.name.toLowerCase().includes(searchValue) ||
106645
- entity.parkName?.toLowerCase().includes(searchValue);
106646
- }
106647
-
106648
107147
  var ParkManagerState_1;
106649
107148
  const EXPANDED_RESULT_LIMIT = 1000;
106650
107149
  let ParkManagerState = class ParkManagerState {
@@ -107238,10 +107737,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
107238
107737
  type: Injectable
107239
107738
  }], ctorParameters: () => [{ type: DeviceRpcServiceProxy }, { type: FacilityRpcServiceProxy }, { type: i1$2.Store }], propDecorators: { onSetDeviceViewModeAction: [], onLoadDeviceEventsCollapse: [], onSetDeviceEventsExpanded: [], onLoadEventActivitiesCollapse: [], onSetEventActivitiesExpanded: [], onLoadLprTransactionsCollapse: [], onSetLprTransactionsExpanded: [], onClearDeviceEventsExpanded: [], onClearEventActivitiesExpanded: [], onClearLprTransactionsExpanded: [], onLoadDevicesAction: [], onLoadDevicesByTypeAction: [], onClearDevicesAction: [], onSelectDeviceAction: [], onLoadSelectedDeviceAction: [], onLoadDeviceStatusAction: [], onSetDeviceStatusAction: [], onLoadDeviceEventActivitiesAction: [], onLoadDeviceLprTransactionsAction: [], onLoadDeviceEventsAction: [], onLoadDeviceAction: [], onClearDeviceAction: [], onDeviceStatusChangedAction: [], onDeviceEventChangedAction: [], onDeviceActivityChangedAction: [], onLprTransactionsChangedAction: [], onSelectedRowAction: [], onClearSelectedRow: [] } });
107240
107739
 
107241
- function isDeviceActive(device) {
107242
- return device && device.hasOwnProperty('active') && device.active !== undefined ? device.active : true;
107243
- }
107244
-
107245
107740
  class RevenueService {
107246
107741
  constructor(facilityRpcServiceProxy) {
107247
107742
  this.facilityRpcServiceProxy = facilityRpcServiceProxy;
@@ -108972,16 +109467,6 @@ const FONT_BASE64 = 'AAEAAAAZAQAABACQRFNJR8SQz0YAD9REAAAhhEdERUYY5hxmAA00gAAAA1h
108972
109467
  // TODO: Check how can export app-settings.json file
108973
109468
  // export * from './app-settings.json';
108974
109469
 
108975
- function isVersionGreaterThanEqual(currentSparkVersion, sparkVersion) {
108976
- return currentSparkVersion && sparkVersion && versionValue(currentSparkVersion) >= versionValue(sparkVersion);
108977
- }
108978
- // the assumption is that we have major.minor.patch
108979
- function versionValue(version) {
108980
- const delimiter = '.';
108981
- var tmp = version.split(delimiter);
108982
- return (+tmp[0] * 100) + (+tmp[1] * 10) + +tmp[2];
108983
- }
108984
-
108985
109470
  class FacilityService {
108986
109471
  get loading$() {
108987
109472
  return this.loading.asObservable();
@@ -109429,461 +109914,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
109429
109914
 
109430
109915
  // Module
109431
109916
 
109432
- const SUPPORTED_DEVICES_SCHEDULER = [
109433
- DeviceType$1.CashReader,
109434
- DeviceType$1.Dispenser,
109435
- DeviceType$1.Verifier,
109436
- DeviceType$1.EntryPil,
109437
- DeviceType$1.ExitPil,
109438
- DeviceType$1.Credit,
109439
- DeviceType$1.Pof,
109440
- DeviceType$1.ValetStation,
109441
- DeviceType$1.Reader
109442
- ];
109443
-
109444
- function downloadFile(res, method) {
109445
- switch (method) {
109446
- case FileGenerateMethod.viewPDF:
109447
- const viewBlob = new Blob([res.data], { type: 'application/pdf' });
109448
- const viewBlobURL = window.URL.createObjectURL(viewBlob);
109449
- // Checks if the browser popups are blocked
109450
- var popUp = window.open(viewBlobURL, '_blank');
109451
- if (popUp == null || typeof (popUp) == 'undefined') {
109452
- return {
109453
- success: false,
109454
- obj: viewBlobURL
109455
- };
109456
- }
109457
- else {
109458
- popUp.focus();
109459
- // Change the name of thte tab after the PDF loaded
109460
- popUp.addEventListener("load", function () {
109461
- setTimeout(() => {
109462
- popUp.document.title = res.fileName;
109463
- }, 150);
109464
- });
109465
- }
109466
- break;
109467
- case FileGenerateMethod.downloadPDF:
109468
- case FileGenerateMethod.downloadExcel:
109469
- case FileGenerateMethod.downloadZip:
109470
- case FileGenerateMethod.downloadCsv:
109471
- default:
109472
- saveAs(res.data, res.fileName);
109473
- break;
109474
- }
109475
- return {
109476
- success: true,
109477
- obj: null
109478
- };
109479
- }
109480
- var FileGenerateMethod;
109481
- (function (FileGenerateMethod) {
109482
- FileGenerateMethod[FileGenerateMethod["viewPDF"] = 1] = "viewPDF";
109483
- FileGenerateMethod[FileGenerateMethod["downloadPDF"] = 2] = "downloadPDF";
109484
- FileGenerateMethod[FileGenerateMethod["downloadExcel"] = 3] = "downloadExcel";
109485
- FileGenerateMethod[FileGenerateMethod["downloadZip"] = 4] = "downloadZip";
109486
- FileGenerateMethod[FileGenerateMethod["downloadCsv"] = 5] = "downloadCsv";
109487
- })(FileGenerateMethod || (FileGenerateMethod = {}));
109488
- function blobToBase64(blob) {
109489
- return new Promise((resolve, _) => {
109490
- const reader = new FileReader();
109491
- reader.onloadend = () => resolve(reader.result);
109492
- reader.readAsDataURL(blob);
109493
- });
109494
- }
109495
-
109496
- var AnalyticsEventsText;
109497
- (function (AnalyticsEventsText) {
109498
- AnalyticsEventsText["ReportType"] = "Event choose report type";
109499
- AnalyticsEventsText["SelectReport"] = "Event select report";
109500
- AnalyticsEventsText["Coupons"] = "Coupons";
109501
- AnalyticsEventsText["SendCouponsToEmail"] = "Send Coupons to Email";
109502
- AnalyticsEventsText["MarkAsUsed"] = "Mark as used";
109503
- AnalyticsEventsText["GeneralError"] = "General Error";
109504
- AnalyticsEventsText["PrintCoupon"] = "Print Coupon";
109505
- AnalyticsEventsText["DeleteCoupon"] = "Delete Coupon";
109506
- AnalyticsEventsText["UpdateCoupon"] = "Update Coupon";
109507
- AnalyticsEventsText["CreateCoupon"] = "Create Coupon";
109508
- AnalyticsEventsText["CreateCouponClick"] = "Create Coupon click";
109509
- AnalyticsEventsText["SendCouponsToEmailClick"] = "Send Coupons to Email click";
109510
- AnalyticsEventsText["CouponsFilterByAccount"] = "Coupons filter by account";
109511
- AnalyticsEventsText["CouponsFilterBySubAccount"] = "Coupons filter by sub account";
109512
- AnalyticsEventsText["couponBatchDateValidityChange"] = "Coupon filter by date validity";
109513
- AnalyticsEventsText["importingMonthlies"] = "Importing monthlies";
109514
- AnalyticsEventsText["CreateRestrictCar"] = "Create Restrict car";
109515
- AnalyticsEventsText["UpdateRestrictCar"] = "Update Restrict car";
109516
- AnalyticsEventsText["DeleteChargeTable"] = "Delete Charge Table";
109517
- AnalyticsEventsText["DeleteChargeCondition"] = "Delete Charge Condition";
109518
- AnalyticsEventsText["SearchChargeTable"] = "Search charge table";
109519
- AnalyticsEventsText["SelectByRelatedToRate"] = "Select by related to rate";
109520
- AnalyticsEventsText["ViewRateStructure"] = "View Rate Structure";
109521
- AnalyticsEventsText["AddRateClicked"] = "Add rate clicked";
109522
- AnalyticsEventsText["CancelAddRate"] = "Cancel add rate";
109523
- AnalyticsEventsText["MoveToLotRateStructure"] = "Move to lot (rate structure)";
109524
- AnalyticsEventsText["ViewRateConditions"] = "View rate conditions";
109525
- AnalyticsEventsText["SearchRateCondition"] = "Search rate conditions";
109526
- AnalyticsEventsText["SelectConditionByRelatedToRate"] = "Select condition by related to rate";
109527
- AnalyticsEventsText["ChargeTableNavigation"] = "Charge table navigation";
109528
- AnalyticsEventsText["DeleteRateCondition"] = "Delete rate condition";
109529
- AnalyticsEventsText["ReorderRateCondition"] = "Reorder rate condition";
109530
- AnalyticsEventsText["ChargeConditionReorder"] = "Charge condition reorder";
109531
- AnalyticsEventsText["SegmentationReorder"] = "Segmentation reorder";
109532
- AnalyticsEventsText["ChargeConditionAdded"] = "Charge condition added";
109533
- AnalyticsEventsText["EditRateClicked"] = "Edit rate clicked";
109534
- AnalyticsEventsText["DuplicateRateClicked"] = "Duplicate rate clicked";
109535
- AnalyticsEventsText["DeleteRateClicked"] = "Delete rate clicked";
109536
- AnalyticsEventsText["RateDeleted"] = "Rate deleted";
109537
- AnalyticsEventsText["RateNumberProtection"] = "Rate number protection";
109538
- AnalyticsEventsText["CreateTestPlane"] = "Create test plane";
109539
- AnalyticsEventsText["RerunTestRate"] = "Rerun test rate";
109540
- AnalyticsEventsText["DeleteChargeSegmentation"] = "Delete charge segmentation";
109541
- AnalyticsEventsText["EditChargeCondition"] = "Edit charge condition";
109542
- AnalyticsEventsText["AddConditionRate"] = "Add condition rate";
109543
- AnalyticsEventsText["RateSettingsUpdated"] = "Rate settings updated";
109544
- AnalyticsEventsText["DuplicateRateConditions"] = "Duplicate rate conditions";
109545
- AnalyticsEventsText["EditConditionRate"] = "Edit condition rate";
109546
- AnalyticsEventsText["HttpError"] = "Http Error";
109547
- AnalyticsEventsText["EventCreateColor"] = "Event create color";
109548
- AnalyticsEventsText["EventCreateModel"] = "Event create model";
109549
- })(AnalyticsEventsText || (AnalyticsEventsText = {}));
109550
- const ReportMethodDictionary = {
109551
- [FileGenerateMethod.viewPDF]: `View report PDF`,
109552
- [FileGenerateMethod.downloadExcel]: `Download report Excel`,
109553
- [FileGenerateMethod.downloadPDF]: `Download report PDF`,
109554
- };
109555
-
109556
- // Constants
109557
-
109558
- function decryptClientSecret(encryptedSecret, encryptionKey) {
109559
- let decryptedSecret = null;
109560
- if (encryptedSecret?.length > 0) {
109561
- var key_iv = encryptedSecret.split("#");
109562
- let key;
109563
- let iv;
109564
- if (key_iv.length == 2) {
109565
- key = CryptoJS.enc.Utf8.parse(key_iv[0]);
109566
- iv = CryptoJS.enc.Utf8.parse(key_iv[0]);
109567
- }
109568
- else {
109569
- key = CryptoJS.enc.Utf8.parse(encryptionKey);
109570
- iv = CryptoJS.enc.Hex.parse(AES_DEFAULT_IV);
109571
- }
109572
- // Perform decryption
109573
- const decrypted = CryptoJS.AES.decrypt(encryptedSecret, key, {
109574
- iv: iv,
109575
- mode: CryptoJS.mode.CBC,
109576
- padding: CryptoJS.pad.Pkcs7
109577
- });
109578
- // Return the decrypted data as a UTF-8 string
109579
- decryptedSecret = decrypted.toString(CryptoJS.enc.Utf8);
109580
- }
109581
- return decryptedSecret;
109582
- }
109583
-
109584
- function arraysAreDifferent(prev, curr) {
109585
- return !_.isEqual(prev, curr);
109586
- }
109587
-
109588
- function isBoolean(value) {
109589
- switch (value) {
109590
- case true:
109591
- case 'true':
109592
- case 1:
109593
- case '1':
109594
- return true;
109595
- default:
109596
- return false;
109597
- }
109598
- }
109599
-
109600
- function setErrorMessage(formName, controlName, event) {
109601
- if (event) {
109602
- formName.get(controlName).setErrors(event);
109603
- formName.get(controlName).markAsTouched();
109604
- }
109605
- }
109606
-
109607
- function hasRequiredField(abstractControl) {
109608
- return abstractControl?.hasValidator(Validators.required);
109609
- }
109610
-
109611
- function safeParse(jsonString) {
109612
- try {
109613
- const value = JSON.parse(jsonString);
109614
- return { success: true, value };
109615
- }
109616
- catch (error) {
109617
- return { success: false, error: error.message };
109618
- }
109619
- }
109620
-
109621
- function getCurrentLang(userSettings) {
109622
- const value = userSettings?.get(SettingsCategory$3.Localization);
109623
- return value?.keyName ?? LOCAL_ENGLISH_LANGUAGE;
109624
- }
109625
-
109626
- const Migrations = [
109627
- {
109628
- version: '7.3.5',
109629
- name: 'setApplicationField',
109630
- up: () => {
109631
- const session = JSON.parse(localStorage.getItem(SESSION));
109632
- if (!session.application) {
109633
- session.application = { version: session.version, releaseDate: session.releaseDate, features: session.features };
109634
- delete session.version;
109635
- delete session.releaseDate;
109636
- delete session.features;
109637
- localStorage.setItem(SESSION, JSON.stringify(session));
109638
- }
109639
- },
109640
- },
109641
- {
109642
- version: '7.3.5',
109643
- name: 'sessionByTenantName',
109644
- up: () => {
109645
- const session = JSON.parse(localStorage.getItem(SESSION));
109646
- if (!session.sparkSessions) {
109647
- session.sparkSessions = { [session.tenant.tenantName.toLowerCase()]: { tenant: session.tenant, user: session.user } };
109648
- delete session.tenant;
109649
- delete session.user;
109650
- localStorage.setItem(SESSION, JSON.stringify(session));
109651
- }
109652
- },
109653
- },
109654
- ];
109655
- function LocalStorageMigrator() {
109656
- const session = JSON.parse(localStorage.getItem(SESSION));
109657
- const version = session.application?.version || session?.version;
109658
- if (version) {
109659
- console.debug('Running local storage migration');
109660
- Migrations.filter(mig => version < mig.version).forEach(m => m.up());
109661
- }
109662
- }
109663
-
109664
- const whiteListUrls = [
109665
- 'openid-callback'
109666
- ];
109667
- class LowerCaseUrlSerializer extends DefaultUrlSerializer {
109668
- parse(url) {
109669
- if (whiteListUrls.some(substring => url.includes(substring))) {
109670
- return super.parse(url);
109671
- }
109672
- const url_query = url.split('?');
109673
- if (url_query.length > 1) {
109674
- url = url.replace(url_query[0], url_query[0].toLowerCase());
109675
- return super.parse(url);
109676
- }
109677
- else {
109678
- return super.parse(url.toLowerCase());
109679
- }
109680
- }
109681
- }
109682
-
109683
- const META_KEY = 'METADATA';
109684
- function getObjectMetadata(target) {
109685
- return target[META_KEY];
109686
- }
109687
- function ensureObjectMetadata(target) {
109688
- if (!target.hasOwnProperty(META_KEY)) {
109689
- Object.defineProperty(target, META_KEY, { value: {} });
109690
- }
109691
- return getObjectMetadata(target);
109692
- }
109693
- const createDescriptor = (value) => ({
109694
- value,
109695
- enumerable: false,
109696
- configurable: true,
109697
- writable: true,
109698
- });
109699
- // tslint:disable-next-line:ban-types
109700
- function wrapConstructor(targetClass, constructorCallback) {
109701
- // create a new wrapped constructor
109702
- const wrappedConstructor = function () {
109703
- constructorCallback.apply(this, arguments);
109704
- return targetClass.apply(this, arguments);
109705
- };
109706
- Object.defineProperty(wrappedConstructor, 'name', { value: targetClass });
109707
- // copy prototype so intanceof operator still works
109708
- wrappedConstructor.prototype = targetClass.prototype;
109709
- // return new constructor (will override original)
109710
- return wrappedConstructor;
109711
- }
109712
-
109713
- const MainModuleToSubModulesPermissionTypeMap = {
109714
- [PermissionType$2.CcMain]: [],
109715
- [PermissionType$2.AccountManagementMain]: [PermissionType$2.AccountManagementAccountView, PermissionType$2.AccountManagementAccountCreate, PermissionType$2.AccountManagementAccountUpdate, PermissionType$2.AccountManagementAccountDelete],
109716
- [PermissionType$2.MonthliesMain]: [PermissionType$2.MonthliesView, PermissionType$2.MonthliesCreate, PermissionType$2.MonthliesUpdate, PermissionType$2.MonthliesDelete, PermissionType$2.MonthlySeriesCreate],
109717
- [PermissionType$2.GuestMain]: [
109718
- PermissionType$2.GuestView, PermissionType$2.GuestCreate, PermissionType$2.GuestUpdate, PermissionType$2.GuestDelete, PermissionType$2.GuestGroupView,
109719
- PermissionType$2.GuestGroupCreate, PermissionType$2.GuestHotelGuestView, PermissionType$2.HotelGuestIOCreate, PermissionType$2.GuestEVoucherView,
109720
- PermissionType$2.HotelGuestIOView
109721
- ],
109722
- [PermissionType$2.ValidationMain]: [
109723
- PermissionType$2.ValidationEValidationView, PermissionType$2.ValidationEValidationCreate, PermissionType$2.ValidationEValidationUpdate, PermissionType$2.ValidationEValidationDelete,
109724
- PermissionType$2.ValidationStickerView, PermissionType$2.ValidationStickerCreate, PermissionType$2.ValidationStickerUpdate, PermissionType$2.ValidationStickerDelete,
109725
- PermissionType$2.ValidationCouponView, PermissionType$2.ValidationCouponCreate, PermissionType$2.ValidationCouponUpdate, PermissionType$2.ValidationCouponDelete,
109726
- PermissionType$2.ValidationSelfValidationView, PermissionType$2.ValidationSelfValidationCreate, PermissionType$2.ValidationSelfValidationUpdate, PermissionType$2.ValidationSelfValidationDelete
109727
- ],
109728
- [PermissionType$2.ReportsMain]: [],
109729
- [PermissionType$2.LotConfigurationMain]: [PermissionType$2.LotConfigurationRates, PermissionType$2.LotConfigurationScheduler, PermissionType$2.LotConfigurationValidationProfile, PermissionType$2.LotConfigurationAccessProfile, PermissionType$2.LotConfigurationDynamicPricing, PermissionType$2.LotConfigurationCashierManagement],
109730
- [PermissionType$2.TenantSettingsMain]: [PermissionType$2.ManagementAdmin],
109731
- [PermissionType$2.ECommerceBackofficeMain]: [PermissionType$2.ECommerceAdmin, PermissionType$2.ECommerceRegular]
109732
- };
109733
- const AppModuleToMainPermissionTypeMap = {
109734
- [AppModule$3.Cc]: PermissionType$2.CcMain,
109735
- [AppModule$3.Accounts]: PermissionType$2.AccountManagementMain,
109736
- [AppModule$3.Monthlies]: PermissionType$2.MonthliesMain,
109737
- [AppModule$3.Guests]: PermissionType$2.GuestMain,
109738
- [AppModule$3.Validation]: PermissionType$2.ValidationMain,
109739
- [AppModule$3.Reports]: PermissionType$2.ReportsMain,
109740
- [AppModule$3.LotConfiguration]: PermissionType$2.LotConfigurationMain,
109741
- [AppModule$3.Management]: PermissionType$2.TenantSettingsMain,
109742
- [AppModule$3.ECommerceBackoffice]: PermissionType$2.ECommerceBackofficeMain,
109743
- };
109744
-
109745
- const extractNumber = (input) => {
109746
- const parsedNumber = +input;
109747
- return isNullOrEmpty(input) || isNaN(parsedNumber) ? null : parsedNumber;
109748
- };
109749
- const isSingularOrPlural = (numberOfMonth) => numberOfMonth <= 1;
109750
-
109751
- function parkerEnumToText(tag) {
109752
- return ParkerTagsText[ParkerTag[tag]];
109753
- }
109754
-
109755
- function getParkerTypesText(parkerType) {
109756
- return ParkerTypesText[ParkerTicketType[parkerType]];
109757
- }
109758
- function mapTransientTags(parkerTags, isStolenTicket, isBackOutTicket, isOfflineTicket, translateService) {
109759
- const tags = parkerTags.map(tag => parkerEnumToText(tag)).map(tag => translateService.instant(tag));
109760
- if (isBackOutTicket) {
109761
- tags.push(translateService.instant(Localization.backout_ticket));
109762
- }
109763
- if (isStolenTicket) {
109764
- tags.push(translateService.instant(Localization.stolen_ticket));
109765
- }
109766
- if (isOfflineTicket) {
109767
- tags.push(translateService.instant(Localization.offline));
109768
- }
109769
- return tags.join(', ');
109770
- }
109771
-
109772
- function getPasswordMinimalLength(userInfo) {
109773
- let pml = DEFAULT_MINIMUM_LENGTH;
109774
- let tenantSession = null;
109775
- const sparkSession = JSON.parse(localStorage.getItem(SESSION))?.sparkSessions;
109776
- const tenantName = sessionStorage.getItem(TENANT_KEY);
109777
- if (sparkSession) {
109778
- tenantSession = sparkSession[tenantName];
109779
- // Update password in user setting
109780
- if (tenantSession) {
109781
- pml = tenantSession.appConfiguration?.pml;
109782
- }
109783
- // Update password in forgot password
109784
- else {
109785
- pml = userInfo.pml;
109786
- }
109787
- }
109788
- return pml;
109789
- }
109790
-
109791
- const MAX_RESULTS = 100;
109792
- function GenerateSearchParamsDto({ maxResults = MAX_RESULTS, searchTerm = '', column = 'Id', orderDirection = OrderDirection.Desc }) {
109793
- return new SearchParamsDto({
109794
- maxResults,
109795
- searchTerm,
109796
- orderBy: new OrderByDto({
109797
- column,
109798
- orderDirection
109799
- })
109800
- });
109801
- }
109802
-
109803
- function compareValues(valueA, valueB, isAsc) {
109804
- // Convert display nulls to actual nulls
109805
- valueA = valueA === '-' ? null : valueA;
109806
- valueB = valueB === '-' ? null : valueB;
109807
- // Handle null/undefined values first
109808
- if (valueA == null && valueB == null)
109809
- return 0;
109810
- if (valueA == null)
109811
- return isAsc ? 1 : -1; // null values go to end
109812
- if (valueB == null)
109813
- return isAsc ? -1 : 1;
109814
- const keyType = typeof valueA;
109815
- const multiplier = isAsc ? 1 : -1;
109816
- switch (keyType) {
109817
- case 'string':
109818
- return valueA.localeCompare(valueB, ENGLISH_LANGUAGE, { numeric: true }) * multiplier;
109819
- case 'number':
109820
- default:
109821
- return (valueA - valueB) * multiplier;
109822
- }
109823
- }
109824
-
109825
- function getTooltipTextByParkerType(tooltipOption, isSearchValidation = false) {
109826
- const ticketsSpecifications = tooltipOption.tenantService.ticketsSpecifications;
109827
- const parkerTicketTypeText = lowerCaseFirstLetter(ParkerTicketType[tooltipOption.searchType]);
109828
- let message = Localization.entity_no_result_hint;
109829
- const interpolateParams = {
109830
- entity: parkerTicketTypeText,
109831
- valueFrom: ticketsSpecifications[parkerTicketTypeText]?.numberOfMonthsAgo,
109832
- valueTo: ticketsSpecifications[parkerTicketTypeText]?.numberOfMonthsAhead,
109833
- durationFirst: isSingularOrPlural(ticketsSpecifications[parkerTicketTypeText]?.numberOfMonthsAgo) ?
109834
- tooltipOption.translateService.instant(Localization.time_ago_month) :
109835
- tooltipOption.translateService.instant(Localization.time_ago_months),
109836
- durationSecond: isSingularOrPlural(ticketsSpecifications[parkerTicketTypeText]?.numberOfMonthsAhead) ?
109837
- tooltipOption.translateService.instant(Localization.time_ago_month) :
109838
- tooltipOption.translateService.instant(Localization.time_ago_months),
109839
- };
109840
- switch (tooltipOption.searchType) {
109841
- case ParkerTicketType.Transient:
109842
- if (isSearchValidation) {
109843
- interpolateParams.valueOpenTransient = ticketsSpecifications.transient.validationTicketsNumberOfMonthsAgo;
109844
- interpolateParams.durationFirst = isSingularOrPlural(ticketsSpecifications.transient.validationTicketsNumberOfMonthsAgo) ?
109845
- tooltipOption.translateService.instant(Localization.time_ago_month) :
109846
- tooltipOption.translateService.instant(Localization.time_ago_months);
109847
- break;
109848
- }
109849
- message = Localization.transients_no_result_hint;
109850
- interpolateParams.valueOpenTransient = ticketsSpecifications.transient.openTicketsNumberOfMonthsAgo;
109851
- interpolateParams.valueClosedTransient = ticketsSpecifications.transient.closedTicketsNumberOfMonthsAgo;
109852
- interpolateParams.durationFirst = isSingularOrPlural(ticketsSpecifications.transient.openTicketsNumberOfMonthsAgo) ?
109853
- tooltipOption.translateService.instant(Localization.time_ago_month) :
109854
- tooltipOption.translateService.instant(Localization.time_ago_months);
109855
- interpolateParams.durationSecond = isSingularOrPlural(ticketsSpecifications.transient.closedTicketsNumberOfMonthsAgo) ?
109856
- tooltipOption.translateService.instant(Localization.time_ago_month) :
109857
- tooltipOption.translateService.instant(Localization.time_ago_months);
109858
- break;
109859
- case ParkerTicketType.EVoucher:
109860
- break;
109861
- case ParkerTicketType.Guest:
109862
- interpolateParams.entity = ParkerTicketType[tooltipOption.searchType];
109863
- break;
109864
- case ParkerTicketType.CardOnFile:
109865
- interpolateParams.entity = ParkerTicketType[tooltipOption.searchType];
109866
- break;
109867
- default:
109868
- return null;
109869
- }
109870
- message = tooltipOption.translateMessage ? tooltipOption.translateMessage : message; // can be overriden in special cases
109871
- return tooltipOption.translateService.instant(message, interpolateParams);
109872
- }
109873
-
109874
- var RangeModes;
109875
- (function (RangeModes) {
109876
- RangeModes[RangeModes["byDate"] = 1] = "byDate";
109877
- RangeModes[RangeModes["byZ"] = 2] = "byZ";
109878
- })(RangeModes || (RangeModes = {}));
109879
- var RangeModesText;
109880
- (function (RangeModesText) {
109881
- RangeModesText["byDate"] = "by_date";
109882
- RangeModesText["byZ"] = "by_z";
109883
- })(RangeModesText || (RangeModesText = {}));
109884
-
109885
- // NGXS
109886
-
109887
109917
  class FileSanitizerService {
109888
109918
  constructor() {
109889
109919
  // Characters that can initiate a formula in CSV
@@ -118707,5 +118737,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
118707
118737
  * Generated bundle index. Do not edit.
118708
118738
  */
118709
118739
 
118710
- export { ACCESS_PROFILE_DAT_TYPES_SP, ACTIVE_BYTE, ADVANCED_OPTIONS_VALUE, AES_DEFAULT_IV, ALERT_NOTIFICATION_CONTAINER, ALLOWED_FILES_FORMATS, ALLOWED_FILES_MAX_SIZE_MB, ALLOWED_FILES__SIZE_200_KB, ALLOWED_FILES__SIZE_2_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, ActionReasonsModule, ActionReasonsState, 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, AppSectionModuleMenu, AppSectionRoute, AppSettingsService, AppType, AuditActionTypeText, AuditLogoutAction, AuditLogoutMobileAction, AuthModule, AuthRouteGuard, AuthService, AuthTokenService, Authenticate2FAforUser, AuthenticateMultipleTenantsAction, AutofocusDirective, BOM_UNICODE, BackofficeAutheticateAction, BarcodeTypeLength, BarrireStateText, BaseComponent, BaseDeviceItemComponent, BaseDeviceService, BaseFacilityCommandsService, BaseNotificationService, BillDispenserStatusText, BillTypeText, BillValidatorStatusText, ButtonStatus, CANCEL_ALL_RELAY_VALUE, CLogItPipe, COLORS, CREDIT_CARD_POSTFIX_LENGTH, CalculatorModule, CalculatorState, CanDeactivateService, CarModule, CarState, CassetteStatusText, CentToCoinPipe, ChangeLanguageAction, ChangeMobileLanguageAction, ChangePasswordAction, ChangePasswordMobileAction, ChartLayout, CleanLogoAction, ClearActionReasonsAction, ClearAdministrativeNotificationsAction, ClearAlertsAndNotificationsAction, ClearBaseZonesAction, ClearCalculatorPriceAction, ClearCategoriesAction, ClearColorsAction, 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, ConfigMobileResolver, ConfigResolver, ConnectSmartparkAction, ContainerRefDirective, CoreEntities, CouponSearchFieldSelectorText, CreateBasicBatchAction, CreateBasicGuestAction, CreateBatchAction, CreateColorAction, CreateGuestAction, CreateModelAction, CreateOrUpdateSMTPDetailsAction, CredentialTypeText, CreditCardTypeText, CrudOperationText, CurlyToBoldPipe, DATA_IMAGE_BASE64_PREFIX, DATA_IMAGE_BASE64_SVG_PREFIX, DEFAULT_DATE_FORMAT, DEFAULT_EXPIRATION_MONTHS_COUNT, DEFAULT_MINIMUM_LENGTH, DEFAULT_PASSWORD_HISTORY_COUNT, DEFAULT_PERMITTED_CREDENTIALS, DEFAULT_SMART_PARK_DATE_TIME, DEFAULT_SORT_MENU, 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, DeleteGuestAction, DeleteLogoAction, DeleteUserAction, DetectBrowserService, DeviceActivityChangedAction, DeviceActivityLabel, DeviceActivityMode, DeviceActivityModeText, DeviceActivityStatus, DeviceActivityType, DeviceAggregatedStatus, DeviceAggregatedStatusText, DeviceEventChangedAction, DeviceIconComponent, DeviceIndicationStatus, DeviceLaneTypes, DeviceLoop, DeviceModule, DevicePipeModule, DevicePrinterStatusText, DeviceRemoteCommandsService, DeviceSortBy, DeviceStatusBaseComponent, DeviceStatusChangedAction, DeviceTypeIconName, DeviceTypeText, DeviceTypesAlertsMapping, DevicesViewMode, DialogMode, DipSwitchStatus, Disable2FAAction, 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, 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, GetAllLocalizationsAction, GetAllLocalizationsMobileAction, GetLogoAction, GetMobileLogoAction, 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, 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, InternetConnectionService, InternetConnectionStatus, IsActionExecuting, IsEllipsisDirective, LOCAL_ENGLISH_LANGUAGE, LOCATION_OPTIONS, LOGGED_TENANT_KEY, LanguageTypeKeys, LayoutModule, LayoutState, Load2FAUserAction, LoadAccessProfileBaseZonesAction, LoadAccessProfileZoneAction, LoadAccessProfileZonesAction, LoadAccountManagementGuestGroupAction, LoadAccountManagementJobTitlesAction, LoadActionReasonsAction, LoadAdministrativeNotificationsAction, LoadAlertsAndNotificationsAction, LoadAppConfigurationAction, LoadAppConfigurationMobileAction, LoadBackofficeAppConfigurationAction, LoadBackofficeSmartparksTableAction, LoadBackofficeSpAndSparkVersionsAction, 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, LoadMobileNotificationsAction, LoadMobileSmartparksBasicAction, LoadModelsAction, LoadModelsAction1, LoadModelsAction2, LoadModelsAction3, LoadModelsAction4, LoadModelsAction5, LoadOverflowPriceTableAction, LoadParkActivitiesAction, LoadParkDevicesAction, LoadParkerAction, LoadParkersAction, LoadParkingLotAction, LoadParksAction, LoadRateByIdAction, LoadRatesAction, LoadRemoteCommandsRefAction, LoadReportsBaseZonesAction, LoadReportsGuestGroupAction, LoadReportsJobTitlesAction, LoadReportsZoneAction, LoadReportsZonesAction, LoadSMTPDetailsAction, LoadSelectedDeviceAction, LoadSmartparksAction, LoadSmartparksBasicAction, LoadSmartparksDropdownAction, LoadSmartparksTableAction, LoadSpAndSparkVersionsAction, LoadStickerPriceTableAction, LoadTicketNumParkersAction, LoadTransientPriceTableAction, LoadUserPermissionsAction, 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_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_20, MAX_LENGTH_NAME_30, MAX_LENGTH_NAME_50, 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, MobileAuthenticateMultipleTenantsAction, MobileCommandCenterModuleResolver, 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$1 as 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, PermissionGroupText, PermissionTypeSupportedVersionDictionary, PermissionTypeText, PermissionsService, PrintReceiptAction, ProfileTypeText, RATE_ID_WITH_VALUE_2, REDIRECT_URL, RELAY_2_VALUE, RELAY_3_VALUE, RELAY_4_VALUE, RESET_PASSWORD_EMAIL, RTL_LANGUAGES, RTObjectObject, RangeModes, RangeModesText, RateModule, RateState, RealtimeEventService, RealtimeResolver, ReceiptGeneratedAction, RefreshTokenService, RefreshTokenState, RelayStatus, ReloadParkerAction, RemoteCommandService, RemoteCommandTypesIcon, RemoteValidationModule, RemoteValidationState, RemoveExpiredAlertsAndNotificationsAction, ReportCategories, ReportCategoriesText, ReportMethodDictionary, ReportSectionMenu, ResendPendingAdminInvitationsAction, ResendUserInvitationAction, ResetRatesAction, RestartLinkComponent, RestartLinkModule, RestrictionLocationTypeText, RestrictionLocationTypeTextTable, RestrictionTypeText, RevenueService, RouteService, RowOperation, rpcServiceProxies as Rpc, SESSION, 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, SearchFacilitiesMode, SearchFieldSelectorText, SearchTicketAction, SearchValueHighlightComponent, SecurityModule, SecurityState, SelectDeviceAction, SelectParkAction, SelectSmartParkAction, SelectedRowAction, SendEmailFromEntityAction, SendEmailToGuest, SendGuestPassesToEmailAction, SendTestEmailAction, ServiceProxyModule, ServicesRunningStatusChangedAction, SessionState, SessionStorageService, SetBackofficeSmartParkVersionsAction, SetBasicMenuAction, SetDeviceEventsExpanded, SetDeviceRemoteCommandsMapAction, SetDeviceStatusAction, SetDeviceViewModeAction, SetEventActivitiesExpanded, SetFacilityRemoteCommandsMapAction, SetGuestsAction, SetLprTransactionsExpanded, SetMobileModeAction, SetParkActivitiesAction, SetRealTimeEventStatusAction, SetSearchTermAction, SetSelectedParkAction, 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, SmartparkDialogState, SmartparkModule, SmartparkService, SmartparkState, SortDevicesPipe, SortPipe, SparkNotification, SpecialDaysPipe, SpinnerDiameterSize, StaticMessageBarService, StatusIconComponent, StickerSearchFieldSelectorText, StopPropagationDirective, StringItPipe, SubModuleGuard, SubstrHightlightManyPipe, SubstrHightlightPipe, SubstrHightlightSinglePipe, SwallowUnitStatusText, SyncUsersAndRolesBySmartparkIdAction, TBFormatPipe, TBNumberDirective, TENANT_KEY, TENS_MULTIPLIER, TableRowHeightSizes, TableTypeText, TagLabelType, 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, UpdateAndActivateUserAction, UpdateAuthTokenAction, UpdateBasicGuestAction, UpdateDocumentAction, UpdateGuestAction, UpdateGuestLocationAction, UpdateMobileMode, UpdateSmartparkAction, UpdateTenantInfoProps, UpdateTenantSingleSignOnAction, UpdateTicketPlateIdAction, UpdateUserAlertsPreferencesAction, UpdateUserNotificaitonsPreferencesAction, UpdateUserSettingsAction, UpdateUserSettingsInSessionAction, UpdateUserSettingsMobileAction, UploadLogoAction, UserCreationType, UserModule, UserSettingsModule, UserSettingsState, UserState, VALIDATION_TYPE_BY_HOURS_41, VALIDATION_TYPE_BY_HOURS_42, VALID_TIME_MAX_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_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, VERSION_V1, VGuestWithBatchTableData, ValidateUserTokenAction, ValidationService, ValidationStickerType, ValidationTypeModule, ValidationTypeState, VarDirective, Verify2FactorAuthenticationAction, VersionMobileResolver, VirtualValidationStatusText, WrapFnPipe, 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, 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, hasRequiredField, hasValue, humanizeTimeElapsed, humanizeUtcTimeElapsed, identity, initializeMsal, initializeOpenId, integerNumberRegex, integerPositiveNumberRegex, ipv4Regex, isBoolean, isCharacterLengthValid, isDefinedAndNotEmpty, isDeviceActive, isDeviceInFilterDeviceTypes, isDeviceInFiltersDeviceTypes, isFalsy, isIOSDevice, isMaxDaysRangeValid, isNullOrEmpty, isNumber, isObjectEmpty, isSearchFieldChanged, isSingularOrPlural, isTrueInBinary, isTruthy, isVersionGreaterThanEqual, loadHTMLContent, lowerCase, lowerCaseFirstLetter, mapTransientTags, markEntitiesAsChanged, markEntityAsUnchanged, matchesDeviceCriteria, matchesDeviceParkingLotCriteria, matchesDevicesParkingLotCriteria, minutesToTime, mobileRegex, nameof, navigateToForbiddenAccessPage, navigateToNotSupportedBrowserPage, noEmojiRegex, notificationAnimation, numberWithLeadingZero, ofStatus, omitKeys, openBackgroundIframe, openCloseFiltersAnimation, parentParkBaseEventTypes, parentParkEventTypes, parkBaseEventTypes, parkEventTypes, parkerEnumToText, parseApiErrorData, parseApiErrorMessage, parseDateTimeToSparkParkTime, parseSmartParkTime, passwordRegex, percentageRegex, printSpecialDaysText, printStackTrace, readjustForTimezone, regexExp, remoteCommandLocalizationMap, replaceAll, rtEventPermissions, safeParse, searchBarPopupAnimation, setErrorMessage, shortDaysTranslation, sleep, slideFromBottom, slideFromRight, slideFromUp, slideUpDown, successful, timeToMinutes, timeToMoment, toInt, toNumberMap, toStringMap, wrapConstructor };
118740
+ export { ACCESS_PROFILE_DAT_TYPES_SP, ACTIVE_BYTE, ADVANCED_OPTIONS_VALUE, AES_DEFAULT_IV, ALERT_NOTIFICATION_CONTAINER, ALLOWED_FILES_FORMATS, ALLOWED_FILES_MAX_SIZE_MB, ALLOWED_FILES__SIZE_200_KB, ALLOWED_FILES__SIZE_2_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, ActionReasonsModule, ActionReasonsState, 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, AppSectionModuleMenu, AppSectionRoute, AppSettingsService, AppType, AuditActionTypeText, AuditLogoutAction, AuditLogoutMobileAction, AuthModule, AuthRouteGuard, AuthService, AuthTokenService, Authenticate2FAforUser, AuthenticateMultipleTenantsAction, AutofocusDirective, BOM_UNICODE, BackofficeAutheticateAction, BarcodeTypeLength, BarrireStateText, BaseComponent, BaseDeviceItemComponent, BaseDeviceService, BaseFacilityCommandsService, BaseNotificationService, BillDispenserStatusText, BillTypeText, BillValidatorStatusText, ButtonStatus, CANCEL_ALL_RELAY_VALUE, CLogItPipe, COLORS, CREDIT_CARD_POSTFIX_LENGTH, CalculatorModule, CalculatorState, CanDeactivateService, CarModule, CarState, CassetteStatusText, CentToCoinPipe, ChangeLanguageAction, ChangeMobileLanguageAction, ChangePasswordAction, ChangePasswordMobileAction, ChartLayout, CleanLogoAction, ClearActionReasonsAction, ClearAdministrativeNotificationsAction, ClearAdministrativeNotificationsByEntityTypeAction, ClearAlertsAndNotificationsAction, ClearBaseZonesAction, ClearCalculatorPriceAction, ClearCategoriesAction, ClearColorsAction, 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, ConfigMobileResolver, ConfigResolver, ConnectSmartparkAction, ContainerRefDirective, CoreEntities, CouponSearchFieldSelectorText, CreateBasicBatchAction, CreateBasicGuestAction, CreateBatchAction, CreateColorAction, CreateGuestAction, CreateModelAction, CreateOrUpdateSMTPDetailsAction, CredentialTypeText, CreditCardTypeText, CrudOperationText, CurlyToBoldPipe, DATA_IMAGE_BASE64_PREFIX, DATA_IMAGE_BASE64_SVG_PREFIX, DEFAULT_DATE_FORMAT, DEFAULT_EXPIRATION_MONTHS_COUNT, DEFAULT_MINIMUM_LENGTH, DEFAULT_PASSWORD_HISTORY_COUNT, DEFAULT_PERMITTED_CREDENTIALS, DEFAULT_SMART_PARK_DATE_TIME, DEFAULT_SORT_MENU, 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, DeleteGuestAction, DeleteLogoAction, DeleteUserAction, DetectBrowserService, DeviceActivityChangedAction, DeviceActivityLabel, DeviceActivityMode, DeviceActivityModeText, DeviceActivityStatus, DeviceActivityType, DeviceAggregatedStatus, DeviceAggregatedStatusText, DeviceEventChangedAction, DeviceIconComponent, DeviceIndicationStatus, DeviceLaneTypes, DeviceLoop, DeviceModule, DevicePipeModule, DevicePrinterStatusText, DeviceRemoteCommandsService, DeviceSortBy, DeviceStatusBaseComponent, DeviceStatusChangedAction, DeviceTypeIconName, DeviceTypeText, DeviceTypesAlertsMapping, DevicesViewMode, DialogMode, DipSwitchStatus, Disable2FAAction, 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, 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, GetAllLocalizationsAction, GetAllLocalizationsMobileAction, GetLogoAction, GetMobileLogoAction, 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, 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, InternetConnectionService, InternetConnectionStatus, IsActionExecuting, IsEllipsisDirective, LOCAL_ENGLISH_LANGUAGE, LOCATION_OPTIONS, LOGGED_TENANT_KEY, LanguageTypeKeys, LayoutModule, LayoutState, Load2FAUserAction, LoadAccessProfileBaseZonesAction, LoadAccessProfileZoneAction, LoadAccessProfileZonesAction, LoadAccountManagementGuestGroupAction, LoadAccountManagementJobTitlesAction, LoadActionReasonsAction, LoadAdministrativeNotificationsAction, LoadAlertsAndNotificationsAction, LoadAppConfigurationAction, LoadAppConfigurationMobileAction, LoadBackofficeAppConfigurationAction, LoadBackofficeSmartparksTableAction, LoadBackofficeSpAndSparkVersionsAction, 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, LoadMobileNotificationsAction, LoadMobileSmartparksBasicAction, LoadModelsAction, LoadModelsAction1, LoadModelsAction2, LoadModelsAction3, LoadModelsAction4, LoadModelsAction5, LoadOverflowPriceTableAction, LoadParkActivitiesAction, LoadParkDevicesAction, LoadParkerAction, LoadParkersAction, LoadParkingLotAction, LoadParksAction, LoadRateByIdAction, LoadRatesAction, LoadRemoteCommandsRefAction, LoadReportsBaseZonesAction, LoadReportsGuestGroupAction, LoadReportsJobTitlesAction, LoadReportsZoneAction, LoadReportsZonesAction, LoadSMTPDetailsAction, LoadSelectedDeviceAction, LoadSmartparksAction, LoadSmartparksBasicAction, LoadSmartparksDropdownAction, LoadSmartparksTableAction, LoadSpAndSparkVersionsAction, LoadStickerPriceTableAction, LoadTicketNumParkersAction, LoadTransientPriceTableAction, LoadUserPermissionsAction, 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_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_20, MAX_LENGTH_NAME_30, MAX_LENGTH_NAME_50, 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, MobileAuthenticateMultipleTenantsAction, MobileCommandCenterModuleResolver, 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$1 as 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, PermissionGroupText, PermissionTypeSupportedVersionDictionary, PermissionTypeText, PermissionsService, PrintReceiptAction, ProfileTypeText, RATE_ID_WITH_VALUE_2, REDIRECT_URL, RELAY_2_VALUE, RELAY_3_VALUE, RELAY_4_VALUE, RESET_PASSWORD_EMAIL, RTL_LANGUAGES, RTObjectObject, RangeModes, RangeModesText, RateModule, RateState, RealtimeEventService, RealtimeResolver, ReceiptGeneratedAction, RefreshTokenService, RefreshTokenState, RelayStatus, ReloadParkerAction, RemoteCommandService, RemoteCommandTypesIcon, RemoteValidationModule, RemoteValidationState, RemoveExpiredAlertsAndNotificationsAction, ReportCategories, ReportCategoriesText, ReportMethodDictionary, ReportSectionMenu, ResendPendingAdminInvitationsAction, ResendUserInvitationAction, ResetRatesAction, RestartLinkComponent, RestartLinkModule, RestrictionLocationTypeText, RestrictionLocationTypeTextTable, RestrictionTypeText, RevenueService, RouteService, RowOperation, rpcServiceProxies as Rpc, SESSION, 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, SearchFacilitiesMode, SearchFieldSelectorText, SearchTicketAction, SearchValueHighlightComponent, SecurityModule, SecurityState, SelectDeviceAction, SelectParkAction, SelectSmartParkAction, SelectedRowAction, SendEmailFromEntityAction, SendEmailToGuest, SendGuestPassesToEmailAction, SendTestEmailAction, ServiceProxyModule, ServicesRunningStatusChangedAction, SessionState, SessionStorageService, SetBackofficeSmartParkVersionsAction, SetBasicMenuAction, SetDeviceEventsExpanded, SetDeviceRemoteCommandsMapAction, SetDeviceStatusAction, SetDeviceViewModeAction, SetEventActivitiesExpanded, SetFacilityRemoteCommandsMapAction, SetGuestsAction, SetLprTransactionsExpanded, SetMobileModeAction, SetParkActivitiesAction, SetRealTimeEventStatusAction, SetSearchTermAction, SetSelectedParkAction, 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, SmartparkDialogState, SmartparkModule, SmartparkService, SmartparkState, SortDevicesPipe, SortPipe, SparkNotification, SpecialDaysPipe, SpinnerDiameterSize, StaticMessageBarService, StatusIconComponent, StickerSearchFieldSelectorText, StopPropagationDirective, StringItPipe, SubModuleGuard, SubstrHightlightManyPipe, SubstrHightlightPipe, SubstrHightlightSinglePipe, SwallowUnitStatusText, SyncUsersAndRolesBySmartparkIdAction, TBFormatPipe, TBNumberDirective, TENANT_KEY, TENS_MULTIPLIER, TableRowHeightSizes, TableTypeText, TagLabelType, 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, UpdateAndActivateUserAction, UpdateAuthTokenAction, UpdateBasicGuestAction, UpdateDocumentAction, UpdateGuestAction, UpdateGuestLocationAction, UpdateMobileMode, UpdateSmartparkAction, UpdateTenantInfoProps, UpdateTenantSingleSignOnAction, UpdateTicketPlateIdAction, UpdateUserAlertsPreferencesAction, UpdateUserNotificaitonsPreferencesAction, UpdateUserSettingsAction, UpdateUserSettingsInSessionAction, UpdateUserSettingsMobileAction, UploadLogoAction, UserCreationType, UserModule, UserSettingsModule, UserSettingsState, UserState, VALIDATION_TYPE_BY_HOURS_41, VALIDATION_TYPE_BY_HOURS_42, VALID_TIME_MAX_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_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, VERSION_V1, VGuestWithBatchTableData, ValidateUserTokenAction, ValidationService, ValidationStickerType, ValidationTypeModule, ValidationTypeState, VarDirective, Verify2FactorAuthenticationAction, VersionMobileResolver, VirtualValidationStatusText, WrapFnPipe, 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, 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, hasRequiredField, hasValue, humanizeTimeElapsed, humanizeUtcTimeElapsed, identity, initializeMsal, initializeOpenId, integerNumberRegex, integerPositiveNumberRegex, ipv4Regex, isBoolean, isCharacterLengthValid, isDefinedAndNotEmpty, isDeviceActive, isDeviceInFilterDeviceTypes, isDeviceInFiltersDeviceTypes, isFalsy, isIOSDevice, isMaxDaysRangeValid, isNullOrEmpty, isNumber, isObjectEmpty, 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, rtEventPermissions, safeParse, searchBarPopupAnimation, setErrorMessage, shortDaysTranslation, sleep, slideFromBottom, slideFromRight, slideFromUp, slideUpDown, successful, timeToMinutes, timeToMoment, toInt, toNumberMap, toStringMap, wrapConstructor };
118711
118741
  //# sourceMappingURL=tiba-spark-client-shared-lib.mjs.map