@tiba-spark/client-shared-lib 10.4.0-319 → 10.4.0-331
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/libraries/enums/localization.enum.mjs +5 -1
- package/esm2022/libraries/modules/guest/guest.actions.mjs +195 -0
- package/esm2022/libraries/modules/guest/guest.module.mjs +22 -0
- package/esm2022/libraries/modules/guest/guest.state.mjs +602 -0
- package/esm2022/libraries/modules/guest/index.mjs +7 -0
- package/esm2022/libraries/modules/index.mjs +2 -1
- package/fesm2022/tiba-spark-client-shared-lib.mjs +809 -21
- package/fesm2022/tiba-spark-client-shared-lib.mjs.map +1 -1
- package/libraries/enums/localization.enum.d.ts +5 -1
- package/libraries/enums/localization.enum.d.ts.map +1 -1
- package/libraries/modules/guest/guest.actions.d.ts +160 -0
- package/libraries/modules/guest/guest.actions.d.ts.map +1 -0
- package/libraries/modules/guest/guest.module.d.ts +8 -0
- package/libraries/modules/guest/guest.module.d.ts.map +1 -0
- package/libraries/modules/guest/guest.state.d.ts +91 -0
- package/libraries/modules/guest/guest.state.d.ts.map +1 -0
- package/libraries/modules/guest/index.d.ts +4 -0
- package/libraries/modules/guest/index.d.ts.map +1 -0
- package/libraries/modules/index.d.ts +1 -0
- package/libraries/modules/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -10413,7 +10413,7 @@ class SMTPDetailDtoHttpResponseData {
|
|
|
10413
10413
|
return result;
|
|
10414
10414
|
}
|
|
10415
10415
|
}
|
|
10416
|
-
class SendEmailRequestDto {
|
|
10416
|
+
let SendEmailRequestDto$1 = class SendEmailRequestDto {
|
|
10417
10417
|
constructor(data) {
|
|
10418
10418
|
if (data) {
|
|
10419
10419
|
for (var property in data) {
|
|
@@ -10486,7 +10486,7 @@ class SendEmailRequestDto {
|
|
|
10486
10486
|
result.init(json);
|
|
10487
10487
|
return result;
|
|
10488
10488
|
}
|
|
10489
|
-
}
|
|
10489
|
+
};
|
|
10490
10490
|
let ServicesRunningStatusDto$2 = class ServicesRunningStatusDto {
|
|
10491
10491
|
constructor(data) {
|
|
10492
10492
|
if (data) {
|
|
@@ -11505,7 +11505,7 @@ class T {
|
|
|
11505
11505
|
return result;
|
|
11506
11506
|
}
|
|
11507
11507
|
}
|
|
11508
|
-
var TemplateType;
|
|
11508
|
+
var TemplateType$1;
|
|
11509
11509
|
(function (TemplateType) {
|
|
11510
11510
|
TemplateType[TemplateType["Registration"] = 0] = "Registration";
|
|
11511
11511
|
TemplateType[TemplateType["VerifyEmailAddress"] = 1] = "VerifyEmailAddress";
|
|
@@ -11522,7 +11522,7 @@ var TemplateType;
|
|
|
11522
11522
|
TemplateType[TemplateType["InvitationReminder"] = 12] = "InvitationReminder";
|
|
11523
11523
|
TemplateType[TemplateType["ForgotPasswordTenantLess"] = 13] = "ForgotPasswordTenantLess";
|
|
11524
11524
|
TemplateType[TemplateType["RegistrationSSO"] = 14] = "RegistrationSSO";
|
|
11525
|
-
})(TemplateType || (TemplateType = {}));
|
|
11525
|
+
})(TemplateType$1 || (TemplateType$1 = {}));
|
|
11526
11526
|
class TenantDetailsDto {
|
|
11527
11527
|
constructor(data) {
|
|
11528
11528
|
if (data) {
|
|
@@ -13501,7 +13501,7 @@ var cloudServiceProxies = /*#__PURE__*/Object.freeze({
|
|
|
13501
13501
|
SMTPDetailDto: SMTPDetailDto,
|
|
13502
13502
|
SMTPDetailDtoHttpResponseData: SMTPDetailDtoHttpResponseData,
|
|
13503
13503
|
SMTPDetailsServiceProxy: SMTPDetailsServiceProxy,
|
|
13504
|
-
SendEmailRequestDto: SendEmailRequestDto,
|
|
13504
|
+
SendEmailRequestDto: SendEmailRequestDto$1,
|
|
13505
13505
|
ServicesRunningStatusDto: ServicesRunningStatusDto$2,
|
|
13506
13506
|
SetRateTestPlanResultCommand: SetRateTestPlanResultCommand,
|
|
13507
13507
|
get SettingsCategory () { return SettingsCategory$2; },
|
|
@@ -13530,7 +13530,7 @@ var cloudServiceProxies = /*#__PURE__*/Object.freeze({
|
|
|
13530
13530
|
StringStringIDictionaryHttpResponseData: StringStringIDictionaryHttpResponseData,
|
|
13531
13531
|
get SubModule () { return SubModule$2; },
|
|
13532
13532
|
T: T,
|
|
13533
|
-
get TemplateType () { return TemplateType; },
|
|
13533
|
+
get TemplateType () { return TemplateType$1; },
|
|
13534
13534
|
TenantDetailsDto: TenantDetailsDto,
|
|
13535
13535
|
TenantDetailsDtoHttpResponseData: TenantDetailsDtoHttpResponseData,
|
|
13536
13536
|
TenantDto: TenantDto$2,
|
|
@@ -16608,6 +16608,10 @@ var Localization;
|
|
|
16608
16608
|
Localization["app_update_available"] = "app_update_available";
|
|
16609
16609
|
Localization["app_update_available_message"] = "app_update_available_message";
|
|
16610
16610
|
Localization["disable_sso_warning"] = "disable_sso_warning";
|
|
16611
|
+
Localization["handle_2fa_setup_title_header"] = "handle_2fa_setup_title_header";
|
|
16612
|
+
Localization["handle_2fa_setup_title"] = "handle_2fa_setup_title";
|
|
16613
|
+
Localization["handle_2fa_setup_sub_title"] = "handle_2fa_setup_sub_title";
|
|
16614
|
+
Localization["got_it"] = "got_it";
|
|
16611
16615
|
})(Localization || (Localization = {}));
|
|
16612
16616
|
|
|
16613
16617
|
class BaseComponent {
|
|
@@ -50690,7 +50694,7 @@ class GuestDetailsDto {
|
|
|
50690
50694
|
return result;
|
|
50691
50695
|
}
|
|
50692
50696
|
}
|
|
50693
|
-
class GuestEntityParams {
|
|
50697
|
+
let GuestEntityParams$1 = class GuestEntityParams {
|
|
50694
50698
|
constructor(data) {
|
|
50695
50699
|
if (data) {
|
|
50696
50700
|
for (var property in data) {
|
|
@@ -50725,7 +50729,7 @@ class GuestEntityParams {
|
|
|
50725
50729
|
result.init(json);
|
|
50726
50730
|
return result;
|
|
50727
50731
|
}
|
|
50728
|
-
}
|
|
50732
|
+
};
|
|
50729
50733
|
class GuestHistoryDetailsHistoryDto {
|
|
50730
50734
|
constructor(data) {
|
|
50731
50735
|
if (data) {
|
|
@@ -56713,14 +56717,14 @@ class ProblemDetailsHttpResponseData {
|
|
|
56713
56717
|
return result;
|
|
56714
56718
|
}
|
|
56715
56719
|
}
|
|
56716
|
-
var ProfileType;
|
|
56720
|
+
var ProfileType$1;
|
|
56717
56721
|
(function (ProfileType) {
|
|
56718
56722
|
ProfileType[ProfileType["Blocked"] = 0] = "Blocked";
|
|
56719
56723
|
ProfileType[ProfileType["Units"] = 1] = "Units";
|
|
56720
56724
|
ProfileType[ProfileType["Standard"] = 2] = "Standard";
|
|
56721
56725
|
ProfileType[ProfileType["Master"] = 4] = "Master";
|
|
56722
56726
|
ProfileType[ProfileType["Resider"] = 8] = "Resider";
|
|
56723
|
-
})(ProfileType || (ProfileType = {}));
|
|
56727
|
+
})(ProfileType$1 || (ProfileType$1 = {}));
|
|
56724
56728
|
class RTEventSubscriptionDto {
|
|
56725
56729
|
constructor(data) {
|
|
56726
56730
|
if (data) {
|
|
@@ -67485,7 +67489,7 @@ class ZoneDtoIEnumerableHttpResponseData {
|
|
|
67485
67489
|
return result;
|
|
67486
67490
|
}
|
|
67487
67491
|
}
|
|
67488
|
-
class VGuestWithBatchDto {
|
|
67492
|
+
let VGuestWithBatchDto$1 = class VGuestWithBatchDto {
|
|
67489
67493
|
constructor(data) {
|
|
67490
67494
|
if (data) {
|
|
67491
67495
|
for (var property in data) {
|
|
@@ -67612,7 +67616,7 @@ class VGuestWithBatchDto {
|
|
|
67612
67616
|
result.init(json);
|
|
67613
67617
|
return result;
|
|
67614
67618
|
}
|
|
67615
|
-
}
|
|
67619
|
+
};
|
|
67616
67620
|
class VGuestWithBatchDtoEntityWrapperDto {
|
|
67617
67621
|
constructor(data) {
|
|
67618
67622
|
if (data) {
|
|
@@ -67627,7 +67631,7 @@ class VGuestWithBatchDtoEntityWrapperDto {
|
|
|
67627
67631
|
if (Array.isArray(_data["entities"])) {
|
|
67628
67632
|
this.entities = [];
|
|
67629
67633
|
for (let item of _data["entities"])
|
|
67630
|
-
this.entities.push(VGuestWithBatchDto.fromJS(item));
|
|
67634
|
+
this.entities.push(VGuestWithBatchDto$1.fromJS(item));
|
|
67631
67635
|
}
|
|
67632
67636
|
this.counter = _data["counter"];
|
|
67633
67637
|
this.subCounter = _data["subCounter"];
|
|
@@ -67711,7 +67715,7 @@ class VGuestWithBatchDtoHttpResponseData {
|
|
|
67711
67715
|
this.errorMessage = _data["errorMessage"];
|
|
67712
67716
|
this.isSuccess = _data["isSuccess"];
|
|
67713
67717
|
this.statusCode = _data["statusCode"];
|
|
67714
|
-
this.data = _data["data"] ? VGuestWithBatchDto.fromJS(_data["data"]) : undefined;
|
|
67718
|
+
this.data = _data["data"] ? VGuestWithBatchDto$1.fromJS(_data["data"]) : undefined;
|
|
67715
67719
|
this.successMessage = _data["successMessage"];
|
|
67716
67720
|
}
|
|
67717
67721
|
}
|
|
@@ -67754,7 +67758,7 @@ class VGuestWithBatchDtoIEnumerableHttpResponseData {
|
|
|
67754
67758
|
if (Array.isArray(_data["data"])) {
|
|
67755
67759
|
this.data = [];
|
|
67756
67760
|
for (let item of _data["data"])
|
|
67757
|
-
this.data.push(VGuestWithBatchDto.fromJS(item));
|
|
67761
|
+
this.data.push(VGuestWithBatchDto$1.fromJS(item));
|
|
67758
67762
|
}
|
|
67759
67763
|
this.successMessage = _data["successMessage"];
|
|
67760
67764
|
}
|
|
@@ -68120,7 +68124,7 @@ var edgeServiceProxies = /*#__PURE__*/Object.freeze({
|
|
|
68120
68124
|
GroupServiceProxy: GroupServiceProxy,
|
|
68121
68125
|
GuestCredentialDto: GuestCredentialDto,
|
|
68122
68126
|
GuestDetailsDto: GuestDetailsDto,
|
|
68123
|
-
GuestEntityParams: GuestEntityParams,
|
|
68127
|
+
GuestEntityParams: GuestEntityParams$1,
|
|
68124
68128
|
GuestHistoryDetailsHistoryDto: GuestHistoryDetailsHistoryDto,
|
|
68125
68129
|
GuestHistoryDto: GuestHistoryDto,
|
|
68126
68130
|
GuestHistoryItemDto: GuestHistoryItemDto,
|
|
@@ -68282,7 +68286,7 @@ var edgeServiceProxies = /*#__PURE__*/Object.freeze({
|
|
|
68282
68286
|
PrinterDto: PrinterDto,
|
|
68283
68287
|
ProblemDetails: ProblemDetails,
|
|
68284
68288
|
ProblemDetailsHttpResponseData: ProblemDetailsHttpResponseData,
|
|
68285
|
-
get ProfileType () { return ProfileType; },
|
|
68289
|
+
get ProfileType () { return ProfileType$1; },
|
|
68286
68290
|
RTEventSubscriptionDto: RTEventSubscriptionDto,
|
|
68287
68291
|
RangeDto: RangeDto,
|
|
68288
68292
|
RangeDtoEntityWrapperDto: RangeDtoEntityWrapperDto,
|
|
@@ -68537,7 +68541,7 @@ var edgeServiceProxies = /*#__PURE__*/Object.freeze({
|
|
|
68537
68541
|
get UserStatus () { return UserStatus$1; },
|
|
68538
68542
|
UserUpdatePasswordDto: UserUpdatePasswordDto$1,
|
|
68539
68543
|
UsersServiceProxy: UsersServiceProxy,
|
|
68540
|
-
VGuestWithBatchDto: VGuestWithBatchDto,
|
|
68544
|
+
VGuestWithBatchDto: VGuestWithBatchDto$1,
|
|
68541
68545
|
VGuestWithBatchDtoEntityWrapperDto: VGuestWithBatchDtoEntityWrapperDto,
|
|
68542
68546
|
VGuestWithBatchDtoEntityWrapperDtoHttpResponseData: VGuestWithBatchDtoEntityWrapperDtoHttpResponseData,
|
|
68543
68547
|
VGuestWithBatchDtoHttpResponseData: VGuestWithBatchDtoHttpResponseData,
|
|
@@ -88626,13 +88630,13 @@ let ParkerState = class ParkerState {
|
|
|
88626
88630
|
guid,
|
|
88627
88631
|
attachedPdf: fileBase64.toString(),
|
|
88628
88632
|
}];
|
|
88629
|
-
const sendEmailRequest = new SendEmailRequestDto({
|
|
88633
|
+
const sendEmailRequest = new SendEmailRequestDto$1({
|
|
88630
88634
|
entity: new ReceiptEntityParams({
|
|
88631
88635
|
attachedPdf: fileBase64.toString(),
|
|
88632
88636
|
id: entityId
|
|
88633
88637
|
}),
|
|
88634
88638
|
to: email,
|
|
88635
|
-
templateType: TemplateType.Receipt,
|
|
88639
|
+
templateType: TemplateType$1.Receipt,
|
|
88636
88640
|
pdfPagesParametersList,
|
|
88637
88641
|
pdfPagesParameters: null,
|
|
88638
88642
|
parameters: {
|
|
@@ -89400,6 +89404,790 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
89400
89404
|
|
|
89401
89405
|
// Module
|
|
89402
89406
|
|
|
89407
|
+
let LoadGuestsAction = class LoadGuestsAction {
|
|
89408
|
+
static { this.type = '[guest] LoadGuests'; }
|
|
89409
|
+
constructor(parkId, guid, guestsFilterDto) {
|
|
89410
|
+
this.parkId = parkId;
|
|
89411
|
+
this.guid = guid;
|
|
89412
|
+
this.guestsFilterDto = guestsFilterDto;
|
|
89413
|
+
}
|
|
89414
|
+
};
|
|
89415
|
+
LoadGuestsAction = __decorate([
|
|
89416
|
+
TrackAction()
|
|
89417
|
+
], LoadGuestsAction);
|
|
89418
|
+
class SetGuestsAction {
|
|
89419
|
+
static { this.type = '[guest] SetGuests'; }
|
|
89420
|
+
constructor(guests) {
|
|
89421
|
+
this.guests = guests;
|
|
89422
|
+
}
|
|
89423
|
+
}
|
|
89424
|
+
class ClearGuestsListAction {
|
|
89425
|
+
static { this.type = '[guest] ClearGuestsList'; }
|
|
89426
|
+
constructor() {
|
|
89427
|
+
}
|
|
89428
|
+
}
|
|
89429
|
+
class UpdateGuestAction {
|
|
89430
|
+
static { this.type = '[guest] UpdateGuest'; }
|
|
89431
|
+
constructor(guid, guest) {
|
|
89432
|
+
this.guid = guid;
|
|
89433
|
+
this.guest = guest;
|
|
89434
|
+
}
|
|
89435
|
+
}
|
|
89436
|
+
class CreateGuestAction {
|
|
89437
|
+
static { this.type = '[guest] CreateGuest'; }
|
|
89438
|
+
constructor(guid, guest) {
|
|
89439
|
+
this.guid = guid;
|
|
89440
|
+
this.guest = guest;
|
|
89441
|
+
}
|
|
89442
|
+
}
|
|
89443
|
+
class CreateBatchAction {
|
|
89444
|
+
static { this.type = '[guest-group] CreateGuestBatch'; }
|
|
89445
|
+
constructor(facilityWithGuid, batchCommand, errorMessage = null) {
|
|
89446
|
+
this.facilityWithGuid = facilityWithGuid;
|
|
89447
|
+
this.batchCommand = batchCommand;
|
|
89448
|
+
this.errorMessage = errorMessage;
|
|
89449
|
+
}
|
|
89450
|
+
}
|
|
89451
|
+
class CreateBasicBatchAction {
|
|
89452
|
+
static { this.type = '[guest-group] CreateBasicBatch'; }
|
|
89453
|
+
constructor(facilityWithGuid, batchCommand, errorMessage = null) {
|
|
89454
|
+
this.facilityWithGuid = facilityWithGuid;
|
|
89455
|
+
this.batchCommand = batchCommand;
|
|
89456
|
+
this.errorMessage = errorMessage;
|
|
89457
|
+
}
|
|
89458
|
+
}
|
|
89459
|
+
class UpdateBasicGuestAction {
|
|
89460
|
+
static { this.type = '[guest] UpdateBasicGuest'; }
|
|
89461
|
+
constructor(guid, guest) {
|
|
89462
|
+
this.guid = guid;
|
|
89463
|
+
this.guest = guest;
|
|
89464
|
+
}
|
|
89465
|
+
}
|
|
89466
|
+
class UpdateBasicGuestTempAction {
|
|
89467
|
+
static { this.type = '[guest] UpdateBasicGuestTemp'; }
|
|
89468
|
+
constructor(guid, guest) {
|
|
89469
|
+
this.guid = guid;
|
|
89470
|
+
this.guest = guest;
|
|
89471
|
+
}
|
|
89472
|
+
}
|
|
89473
|
+
class CreateBasicGuestAction {
|
|
89474
|
+
static { this.type = '[guest] CreateBasicGuest'; }
|
|
89475
|
+
constructor(guid, guest) {
|
|
89476
|
+
this.guid = guid;
|
|
89477
|
+
this.guest = guest;
|
|
89478
|
+
}
|
|
89479
|
+
}
|
|
89480
|
+
class ClearHandledGuest {
|
|
89481
|
+
static { this.type = '[guest] ClearHandledGuest'; }
|
|
89482
|
+
constructor() {
|
|
89483
|
+
}
|
|
89484
|
+
}
|
|
89485
|
+
class DeleteGuestAction {
|
|
89486
|
+
static { this.type = '[guest] DeleteGuestFromDB '; }
|
|
89487
|
+
constructor(guid, guest) {
|
|
89488
|
+
this.guid = guid;
|
|
89489
|
+
this.guest = guest;
|
|
89490
|
+
}
|
|
89491
|
+
}
|
|
89492
|
+
class SendGuestPassesToEmailAction {
|
|
89493
|
+
static { this.type = '[guest] SendGuestPassesToEmail'; }
|
|
89494
|
+
constructor(guid, guest, email, facility) {
|
|
89495
|
+
this.guid = guid;
|
|
89496
|
+
this.guest = guest;
|
|
89497
|
+
this.email = email;
|
|
89498
|
+
this.facility = facility;
|
|
89499
|
+
}
|
|
89500
|
+
}
|
|
89501
|
+
class SendEmailToGuest {
|
|
89502
|
+
static { this.type = '[guest] SendEmailToGuest'; }
|
|
89503
|
+
constructor(guid, sendEmailCommand) {
|
|
89504
|
+
this.guid = guid;
|
|
89505
|
+
this.sendEmailCommand = sendEmailCommand;
|
|
89506
|
+
}
|
|
89507
|
+
}
|
|
89508
|
+
let LoadGuestProfilesAction = class LoadGuestProfilesAction {
|
|
89509
|
+
static { this.type = '[guest] LoadGuestProfiles'; }
|
|
89510
|
+
constructor(parkId, guid, searchParamsDto) {
|
|
89511
|
+
this.parkId = parkId;
|
|
89512
|
+
this.guid = guid;
|
|
89513
|
+
this.searchParamsDto = searchParamsDto;
|
|
89514
|
+
}
|
|
89515
|
+
};
|
|
89516
|
+
LoadGuestProfilesAction = __decorate([
|
|
89517
|
+
TrackAction()
|
|
89518
|
+
], LoadGuestProfilesAction);
|
|
89519
|
+
class ClearGuestProfilesAction {
|
|
89520
|
+
static { this.type = '[guest] ClearGuestProfiles'; }
|
|
89521
|
+
constructor() { }
|
|
89522
|
+
}
|
|
89523
|
+
class UpdateGuestLocationAction {
|
|
89524
|
+
static { this.type = '[guest] UpdateGuestLocation'; }
|
|
89525
|
+
constructor(guid, updateGuestLocationCommand) {
|
|
89526
|
+
this.guid = guid;
|
|
89527
|
+
this.updateGuestLocationCommand = updateGuestLocationCommand;
|
|
89528
|
+
}
|
|
89529
|
+
}
|
|
89530
|
+
let LoadGuestsByBatchIdAction = class LoadGuestsByBatchIdAction {
|
|
89531
|
+
static { this.type = '[guest] LoadGuestsByBatchId'; }
|
|
89532
|
+
constructor(parkId, guid, batchID, guestsFilterDto) {
|
|
89533
|
+
this.parkId = parkId;
|
|
89534
|
+
this.guid = guid;
|
|
89535
|
+
this.batchID = batchID;
|
|
89536
|
+
this.guestsFilterDto = guestsFilterDto;
|
|
89537
|
+
}
|
|
89538
|
+
};
|
|
89539
|
+
LoadGuestsByBatchIdAction = __decorate([
|
|
89540
|
+
TrackAction()
|
|
89541
|
+
], LoadGuestsByBatchIdAction);
|
|
89542
|
+
let LoadGuestsByBatchIdCancelledAction = class LoadGuestsByBatchIdCancelledAction {
|
|
89543
|
+
static { this.type = '[guest] LoadGuestsByBatchIdCancelled'; }
|
|
89544
|
+
constructor(batchId) {
|
|
89545
|
+
this.batchId = batchId;
|
|
89546
|
+
}
|
|
89547
|
+
};
|
|
89548
|
+
LoadGuestsByBatchIdCancelledAction = __decorate([
|
|
89549
|
+
TrackAction()
|
|
89550
|
+
], LoadGuestsByBatchIdCancelledAction);
|
|
89551
|
+
class ExpandGuestsByBatchIdAction {
|
|
89552
|
+
static { this.type = '[guest] ExpandGuestsByBatchId'; }
|
|
89553
|
+
constructor(batchID, guests) {
|
|
89554
|
+
this.batchID = batchID;
|
|
89555
|
+
this.guests = guests;
|
|
89556
|
+
}
|
|
89557
|
+
}
|
|
89558
|
+
class CollapsedGuestsByBatchIdAction {
|
|
89559
|
+
static { this.type = '[guest] CollapsedGuestsByBatchId'; }
|
|
89560
|
+
constructor(batchID) {
|
|
89561
|
+
this.batchID = batchID;
|
|
89562
|
+
}
|
|
89563
|
+
}
|
|
89564
|
+
let LoadGuestByIdAction = class LoadGuestByIdAction {
|
|
89565
|
+
static { this.type = '[guest] LoadGuestById'; }
|
|
89566
|
+
constructor(guid, parkId, guestId) {
|
|
89567
|
+
this.guid = guid;
|
|
89568
|
+
this.parkId = parkId;
|
|
89569
|
+
this.guestId = guestId;
|
|
89570
|
+
}
|
|
89571
|
+
};
|
|
89572
|
+
LoadGuestByIdAction = __decorate([
|
|
89573
|
+
TrackAction()
|
|
89574
|
+
], LoadGuestByIdAction);
|
|
89575
|
+
class ClearGuestAction {
|
|
89576
|
+
static { this.type = '[guest] ClearGuest'; }
|
|
89577
|
+
constructor() {
|
|
89578
|
+
}
|
|
89579
|
+
}
|
|
89580
|
+
let ExportGuestsAction = class ExportGuestsAction {
|
|
89581
|
+
static { this.type = '[guest] ExportGuests'; }
|
|
89582
|
+
constructor(parkId, guid, guestsFilterDto, fileType, columnsHeader) {
|
|
89583
|
+
this.parkId = parkId;
|
|
89584
|
+
this.guid = guid;
|
|
89585
|
+
this.guestsFilterDto = guestsFilterDto;
|
|
89586
|
+
this.fileType = fileType;
|
|
89587
|
+
this.columnsHeader = columnsHeader;
|
|
89588
|
+
}
|
|
89589
|
+
};
|
|
89590
|
+
ExportGuestsAction = __decorate([
|
|
89591
|
+
TrackAction()
|
|
89592
|
+
], ExportGuestsAction);
|
|
89593
|
+
|
|
89594
|
+
var GuestEntityParams = GuestEntityParams$1;
|
|
89595
|
+
var ProfileType = ProfileType$1;
|
|
89596
|
+
var VGuestWithBatchDto = VGuestWithBatchDto$1;
|
|
89597
|
+
var SendEmailRequestDto = SendEmailRequestDto$1;
|
|
89598
|
+
var TemplateType = TemplateType$1;
|
|
89599
|
+
class VGuestWithBatchTableData extends VGuestWithBatchDto {
|
|
89600
|
+
}
|
|
89601
|
+
;
|
|
89602
|
+
let GuestState = class GuestState {
|
|
89603
|
+
constructor(store, guestServiceProxy, translate, batchServiceProxy, messageBarService, commandNotificationService, translateService, tenantService, exportFileService, parkerService) {
|
|
89604
|
+
this.store = store;
|
|
89605
|
+
this.guestServiceProxy = guestServiceProxy;
|
|
89606
|
+
this.translate = translate;
|
|
89607
|
+
this.batchServiceProxy = batchServiceProxy;
|
|
89608
|
+
this.messageBarService = messageBarService;
|
|
89609
|
+
this.commandNotificationService = commandNotificationService;
|
|
89610
|
+
this.translateService = translateService;
|
|
89611
|
+
this.tenantService = tenantService;
|
|
89612
|
+
this.exportFileService = exportFileService;
|
|
89613
|
+
this.parkerService = parkerService;
|
|
89614
|
+
this.datePipe = new DatePipe('en-US');
|
|
89615
|
+
this.L = Localization;
|
|
89616
|
+
this.toDateString = (value) => this.datePipe.transform(value.toDate(), this.tenantService.secondaryDateTimeFormat) || '-';
|
|
89617
|
+
this.isGuestChild = (guest) => guest.guestID !== null && guest.batchID > 0;
|
|
89618
|
+
}
|
|
89619
|
+
static guestCounter(state) {
|
|
89620
|
+
return state.counter;
|
|
89621
|
+
}
|
|
89622
|
+
static archivedGuests(state) {
|
|
89623
|
+
return state.archived;
|
|
89624
|
+
}
|
|
89625
|
+
static displayedGuests(state) {
|
|
89626
|
+
return state.displayed;
|
|
89627
|
+
}
|
|
89628
|
+
static profiles(state) {
|
|
89629
|
+
return state.profiles;
|
|
89630
|
+
}
|
|
89631
|
+
static selected(state) {
|
|
89632
|
+
return state.selected;
|
|
89633
|
+
}
|
|
89634
|
+
onLoadGuestByIdAction(ctx, action) {
|
|
89635
|
+
const getGuest$ = this.guestServiceProxy.getGuestById(action.guestId, action.parkId, action.guid);
|
|
89636
|
+
return getGuest$.pipe(tap(guest => {
|
|
89637
|
+
ctx.patchState({
|
|
89638
|
+
selected: guest.data
|
|
89639
|
+
});
|
|
89640
|
+
}));
|
|
89641
|
+
}
|
|
89642
|
+
onClearGuestAction(ctx) {
|
|
89643
|
+
ctx.patchState({
|
|
89644
|
+
selected: null
|
|
89645
|
+
});
|
|
89646
|
+
}
|
|
89647
|
+
onLoadGuestsAction(ctx, action) {
|
|
89648
|
+
const getGuests$ = this.guestServiceProxy.getGuests(action.parkId, action.guid, action.guestsFilterDto);
|
|
89649
|
+
return getGuests$.pipe(tap((guestsWrapper) => {
|
|
89650
|
+
ctx.patchState({
|
|
89651
|
+
archived: guestsWrapper.data.entities,
|
|
89652
|
+
counter: guestsWrapper.data.counter,
|
|
89653
|
+
});
|
|
89654
|
+
}));
|
|
89655
|
+
}
|
|
89656
|
+
onSetGuestsAction(ctx, action) {
|
|
89657
|
+
ctx.patchState({
|
|
89658
|
+
displayed: action.guests || [],
|
|
89659
|
+
});
|
|
89660
|
+
}
|
|
89661
|
+
onClearGuestListAction(ctx) {
|
|
89662
|
+
ctx.patchState({
|
|
89663
|
+
archived: [],
|
|
89664
|
+
displayed: [],
|
|
89665
|
+
counter: 0,
|
|
89666
|
+
});
|
|
89667
|
+
}
|
|
89668
|
+
onCreateGuestAction(ctx, action) {
|
|
89669
|
+
const messageBarPayload = {
|
|
89670
|
+
entity: this.translate.instant(Localization.guest),
|
|
89671
|
+
entityName: `${action.guest.firstName} ${action.guest.lastName}`,
|
|
89672
|
+
action: lowerCaseFirstLetter(this.translate.instant(Localization.created)),
|
|
89673
|
+
};
|
|
89674
|
+
this.messageBarService.info(Localization.entity_in_progress, createMessageText(messageBarPayload));
|
|
89675
|
+
return this.guestServiceProxy.createGuest(action.guid, action.guest).pipe(tap({
|
|
89676
|
+
next: (handled) => {
|
|
89677
|
+
const displayNewGuestInTable = this.isGuestCreatedFromSelectedFacility(handled.data, action.guid);
|
|
89678
|
+
this.addGuestToStore(ctx, handled.data, displayNewGuestInTable);
|
|
89679
|
+
this.messageBarService.success(displayNewGuestInTable ? Localization.entity_success : Localization.entity_success_not_currently_visible, createMessageText(messageBarPayload));
|
|
89680
|
+
},
|
|
89681
|
+
error: () => {
|
|
89682
|
+
messageBarPayload.entity = lowerCaseFirstLetter(messageBarPayload.entity);
|
|
89683
|
+
messageBarPayload.action = lowerCaseFirstLetter(this.translate.instant(Localization.create));
|
|
89684
|
+
this.messageBarService.error(Localization.entity_failed, createMessageText(messageBarPayload));
|
|
89685
|
+
}
|
|
89686
|
+
}));
|
|
89687
|
+
}
|
|
89688
|
+
onCreateBatchAction(ctx, action) {
|
|
89689
|
+
const messageBarPayload = {
|
|
89690
|
+
entity: this.translate.instant(Localization.guest_group),
|
|
89691
|
+
entityName: action.batchCommand.name,
|
|
89692
|
+
action: lowerCaseFirstLetter(this.translate.instant(Localization.created)),
|
|
89693
|
+
};
|
|
89694
|
+
this.messageBarService.info(Localization.entity_in_progress, createMessageText(messageBarPayload));
|
|
89695
|
+
return this.batchServiceProxy.createBatch(action.facilityWithGuid.guid, action.batchCommand).pipe(tap({
|
|
89696
|
+
next: (newGuests) => {
|
|
89697
|
+
const displayNewGuestInTable = this.isGuestCreatedFromSelectedFacility(newGuests.data[0], action.facilityWithGuid.guid);
|
|
89698
|
+
this.messageBarService.success(displayNewGuestInTable ? Localization.entity_success : Localization.entity_success_not_currently_visible, createMessageText(messageBarPayload));
|
|
89699
|
+
if (displayNewGuestInTable) {
|
|
89700
|
+
const newBatch = this.convertGuestsToTableData(newGuests.data);
|
|
89701
|
+
markEntitiesAsChanged([newBatch], RowOperation.Insert);
|
|
89702
|
+
markEntitiesAsChanged(newBatch.entities, RowOperation.Insert);
|
|
89703
|
+
const displayedGuests = ctx.getState().displayed;
|
|
89704
|
+
displayedGuests.unshift(...newBatch.entities);
|
|
89705
|
+
displayedGuests.unshift(newBatch);
|
|
89706
|
+
ctx.patchState({
|
|
89707
|
+
displayed: [...displayedGuests],
|
|
89708
|
+
counter: ctx.getState().counter + 1,
|
|
89709
|
+
});
|
|
89710
|
+
}
|
|
89711
|
+
},
|
|
89712
|
+
error: (e) => {
|
|
89713
|
+
action.errorMessage = e.data.detail;
|
|
89714
|
+
}
|
|
89715
|
+
}));
|
|
89716
|
+
}
|
|
89717
|
+
onCreateBasicBatchAction(ctx, action) {
|
|
89718
|
+
const messageBarPayload = {
|
|
89719
|
+
entity: this.translate.instant(Localization.guest_group),
|
|
89720
|
+
entityName: action.batchCommand.name,
|
|
89721
|
+
action: lowerCaseFirstLetter(this.translate.instant(Localization.created)),
|
|
89722
|
+
};
|
|
89723
|
+
this.messageBarService.info(Localization.entity_in_progress, createMessageText(messageBarPayload));
|
|
89724
|
+
return this.batchServiceProxy.createBasicBatch(action.facilityWithGuid.guid, action.batchCommand).pipe(tap({
|
|
89725
|
+
next: (newGuests) => {
|
|
89726
|
+
const displayNewGuestInTable = this.isGuestCreatedFromSelectedFacility(newGuests.data[0], action.facilityWithGuid.guid);
|
|
89727
|
+
this.messageBarService.success(displayNewGuestInTable ? Localization.entity_success : Localization.entity_success_not_currently_visible, createMessageText(messageBarPayload));
|
|
89728
|
+
if (displayNewGuestInTable) {
|
|
89729
|
+
const newBatch = this.convertGuestsToTableData(newGuests.data);
|
|
89730
|
+
markEntitiesAsChanged([newBatch], RowOperation.Insert);
|
|
89731
|
+
markEntitiesAsChanged(newBatch.entities, RowOperation.Insert);
|
|
89732
|
+
const displayedGuests = ctx.getState().displayed;
|
|
89733
|
+
displayedGuests.unshift(...newBatch.entities);
|
|
89734
|
+
displayedGuests.unshift(newBatch);
|
|
89735
|
+
ctx.patchState({
|
|
89736
|
+
displayed: [...displayedGuests],
|
|
89737
|
+
counter: ctx.getState().counter + 1,
|
|
89738
|
+
});
|
|
89739
|
+
}
|
|
89740
|
+
},
|
|
89741
|
+
error: (e) => {
|
|
89742
|
+
action.errorMessage = e.data.detail;
|
|
89743
|
+
}
|
|
89744
|
+
}));
|
|
89745
|
+
}
|
|
89746
|
+
onUpdateGuestAction(ctx, action) {
|
|
89747
|
+
const messageBarPayload = {
|
|
89748
|
+
entity: this.translate.instant(Localization.guest),
|
|
89749
|
+
entityName: `${action.guest.firstName} ${action.guest.lastName}`,
|
|
89750
|
+
action: this.translate.instant(Localization.updated),
|
|
89751
|
+
};
|
|
89752
|
+
this.messageBarService.info(Localization.entity_in_progress, createMessageText(messageBarPayload));
|
|
89753
|
+
return this.guestServiceProxy.updateGuest(action.guid, action.guest).pipe(tap({
|
|
89754
|
+
next: (handled) => {
|
|
89755
|
+
this.updateGuestInStore(ctx, handled.data, action.guid);
|
|
89756
|
+
this.messageBarService.success(Localization.entity_success, createMessageText(messageBarPayload));
|
|
89757
|
+
},
|
|
89758
|
+
error: () => {
|
|
89759
|
+
messageBarPayload.entity = lowerCaseFirstLetter(messageBarPayload.entity);
|
|
89760
|
+
messageBarPayload.action = lowerCaseFirstLetter(this.translate.instant(Localization.update));
|
|
89761
|
+
this.messageBarService.error(Localization.entity_failed, createMessageText(messageBarPayload));
|
|
89762
|
+
}
|
|
89763
|
+
}));
|
|
89764
|
+
}
|
|
89765
|
+
onUpdateGuestLocationAction(ctx, action) {
|
|
89766
|
+
debugger;
|
|
89767
|
+
const config = {
|
|
89768
|
+
messages: [{ value: action.updateGuestLocationCommand.name, class: NotificationClass.body }],
|
|
89769
|
+
command: this.translateService.instant(Localization.update_location)
|
|
89770
|
+
};
|
|
89771
|
+
const guest$ = this.guestServiceProxy.updateGuestLocation(action.guid, action.updateGuestLocationCommand);
|
|
89772
|
+
return guest$.pipe(this.commandNotificationService.display(config));
|
|
89773
|
+
}
|
|
89774
|
+
onDeleteGuestAction(ctx, action) {
|
|
89775
|
+
const interpolatedGuestName = action.guest.name.trim() === Localization.card_holder ?
|
|
89776
|
+
this.translateService.instant(Localization.card_holder) : action.guest.name;
|
|
89777
|
+
const messageBarPayload = {
|
|
89778
|
+
entity: this.translate.instant(Localization.guest),
|
|
89779
|
+
entityName: interpolatedGuestName,
|
|
89780
|
+
action: this.translate.instant(Localization.deleted),
|
|
89781
|
+
};
|
|
89782
|
+
this.messageBarService.info(Localization.entity_in_progress, createMessageText(messageBarPayload));
|
|
89783
|
+
return this.guestServiceProxy.deleteGuest(action.guest.guestID, action.guest.parkID, action.guid).pipe(tap(() => {
|
|
89784
|
+
this.messageBarService.success(Localization.entity_success, createMessageText(messageBarPayload));
|
|
89785
|
+
action.guest.deleted = 1;
|
|
89786
|
+
this.deleteGuestFromStore(ctx, action.guest, action.guid);
|
|
89787
|
+
}, () => {
|
|
89788
|
+
messageBarPayload.entity = lowerCaseFirstLetter(messageBarPayload.entity);
|
|
89789
|
+
messageBarPayload.action = lowerCaseFirstLetter(this.translate.instant(Localization.delete));
|
|
89790
|
+
this.messageBarService.error(Localization.entity_failed, createMessageText(messageBarPayload));
|
|
89791
|
+
}));
|
|
89792
|
+
}
|
|
89793
|
+
onCreateBasicGuestAction(ctx, action) {
|
|
89794
|
+
const messageBarPayload = {
|
|
89795
|
+
entity: this.translate.instant(Localization.guest),
|
|
89796
|
+
entityName: `${action.guest.firstName} ${action.guest.lastName}`,
|
|
89797
|
+
action: lowerCaseFirstLetter(this.translate.instant(Localization.created)),
|
|
89798
|
+
};
|
|
89799
|
+
this.messageBarService.info(Localization.entity_in_progress, createMessageText(messageBarPayload));
|
|
89800
|
+
return this.guestServiceProxy.createBasicGuest(action.guid, action.guest).pipe(tap({
|
|
89801
|
+
next: (handled) => {
|
|
89802
|
+
const displayNewGuestInTable = this.isGuestCreatedFromSelectedFacility(handled.data, action.guid);
|
|
89803
|
+
this.addGuestToStore(ctx, handled.data, displayNewGuestInTable);
|
|
89804
|
+
this.messageBarService.success(displayNewGuestInTable ? Localization.entity_success : Localization.entity_success_not_currently_visible, createMessageText(messageBarPayload));
|
|
89805
|
+
},
|
|
89806
|
+
error: () => {
|
|
89807
|
+
messageBarPayload.entity = lowerCaseFirstLetter(messageBarPayload.entity);
|
|
89808
|
+
messageBarPayload.action = lowerCaseFirstLetter(this.translate.instant(Localization.create));
|
|
89809
|
+
this.messageBarService.error(Localization.entity_failed, createMessageText(messageBarPayload));
|
|
89810
|
+
}
|
|
89811
|
+
}));
|
|
89812
|
+
}
|
|
89813
|
+
onUpdateBasicGuestAction(ctx, action) {
|
|
89814
|
+
const messageBarPayload = {
|
|
89815
|
+
entity: this.translate.instant(Localization.guest),
|
|
89816
|
+
entityName: `${action.guest.firstName} ${action.guest.lastName}`,
|
|
89817
|
+
action: this.translate.instant(Localization.updated),
|
|
89818
|
+
};
|
|
89819
|
+
this.messageBarService.info(Localization.entity_in_progress, createMessageText(messageBarPayload));
|
|
89820
|
+
return this.guestServiceProxy.updateBasicGuest(action.guid, action.guest).pipe(tap({
|
|
89821
|
+
next: (handled) => this.onUpdateBasicGuestNext(ctx, action, handled, messageBarPayload),
|
|
89822
|
+
error: () => this.onUpdateBasicGuestError(messageBarPayload)
|
|
89823
|
+
}));
|
|
89824
|
+
}
|
|
89825
|
+
onUpdateBasicGuestTempAction(ctx, action) {
|
|
89826
|
+
const messageBarPayload = {
|
|
89827
|
+
entity: this.translate.instant(Localization.guest),
|
|
89828
|
+
entityName: `${action.guest.firstName} ${action.guest.lastName}`,
|
|
89829
|
+
action: this.translate.instant(Localization.updated),
|
|
89830
|
+
};
|
|
89831
|
+
this.messageBarService.info(Localization.entity_in_progress, createMessageText(messageBarPayload));
|
|
89832
|
+
return this.guestServiceProxy.updateBasicGuestTemp(action.guid, action.guest).pipe(tap({
|
|
89833
|
+
next: (handled) => this.onUpdateBasicGuestNext(ctx, action, handled, messageBarPayload),
|
|
89834
|
+
error: () => this.onUpdateBasicGuestError(messageBarPayload)
|
|
89835
|
+
}));
|
|
89836
|
+
}
|
|
89837
|
+
onSendEmailToGuestAction(ctx, action) {
|
|
89838
|
+
return this.guestServiceProxy.sendGuestEmail(action.guid, action.sendEmailCommand).pipe(tap({
|
|
89839
|
+
next: () => this.messageBarService.success(Localization.email_sent_successfully),
|
|
89840
|
+
error: () => this.messageBarService.error(Localization.email_sending_failed),
|
|
89841
|
+
}));
|
|
89842
|
+
}
|
|
89843
|
+
onLoadGuestsByBatchId(ctx, action) {
|
|
89844
|
+
const results$ = this.guestServiceProxy.getGuestsByBatchID(action.parkId, action.batchID, action.guid, action.guestsFilterDto);
|
|
89845
|
+
return results$.pipe(tap((guests) => {
|
|
89846
|
+
this.addGuestsByBatchIdToStore(ctx, action.batchID, guests.data);
|
|
89847
|
+
}));
|
|
89848
|
+
}
|
|
89849
|
+
onLoadGuestsByBatchIdCancelledAction(ctx, action) {
|
|
89850
|
+
const displayedGuestsBatches = ctx.getState().displayed;
|
|
89851
|
+
const guestBatchIndex = displayedGuestsBatches.findIndex(guest => guest instanceof VGuestWithBatchDto && guest.batchID === action.batchId);
|
|
89852
|
+
if (guestBatchIndex !== -1) {
|
|
89853
|
+
const guestBatch = markEntityAsUnchanged(displayedGuestsBatches[guestBatchIndex]);
|
|
89854
|
+
displayedGuestsBatches[guestBatchIndex] = Object.assign(new VGuestWithBatchDto(), guestBatch);
|
|
89855
|
+
ctx.patchState({
|
|
89856
|
+
displayed: [...displayedGuestsBatches]
|
|
89857
|
+
});
|
|
89858
|
+
}
|
|
89859
|
+
}
|
|
89860
|
+
onExpandGuestsByBatchIdAction(ctx, action) {
|
|
89861
|
+
this.addGuestsByBatchIdToStore(ctx, action.batchID, action.guests);
|
|
89862
|
+
}
|
|
89863
|
+
onCollapsedGuestsByBatchIdAction(ctx, action) {
|
|
89864
|
+
let displayedGusetBatches = ctx.getState().displayed;
|
|
89865
|
+
const guestBatchIndex = displayedGusetBatches.findIndex(gb => gb.batchID === action.batchID);
|
|
89866
|
+
if (guestBatchIndex !== -1) {
|
|
89867
|
+
displayedGusetBatches = displayedGusetBatches.filter(entity => entity.batchID !== action.batchID || !entity.guestID);
|
|
89868
|
+
ctx.patchState({
|
|
89869
|
+
displayed: [...displayedGusetBatches],
|
|
89870
|
+
});
|
|
89871
|
+
}
|
|
89872
|
+
}
|
|
89873
|
+
onLoadGuestProfilesAction(ctx, action) {
|
|
89874
|
+
const guestProfiles$ = this.guestServiceProxy.getProfiles(action.parkId, action.searchParamsDto?.maxResults, action.searchParamsDto?.searchTerm, action.searchParamsDto?.orderBy.column, action.searchParamsDto?.orderBy.orderDirection, action.guid);
|
|
89875
|
+
return guestProfiles$.pipe(tap(profiles => {
|
|
89876
|
+
ctx.patchState({
|
|
89877
|
+
profiles: profiles.data,
|
|
89878
|
+
});
|
|
89879
|
+
}));
|
|
89880
|
+
}
|
|
89881
|
+
onClearGuestProfilesAction(ctx) {
|
|
89882
|
+
ctx.patchState({
|
|
89883
|
+
profiles: [],
|
|
89884
|
+
});
|
|
89885
|
+
}
|
|
89886
|
+
async onSendGuestPassesToEmail(ctx, action) {
|
|
89887
|
+
const data = {
|
|
89888
|
+
modalTitle: this.translate.instant(Localization.send_stickers_to_email),
|
|
89889
|
+
sendEmail: false,
|
|
89890
|
+
sendEmailReqeust: await this.populateSendEmailRequest(action) // only version >= 8.1 support this feature
|
|
89891
|
+
};
|
|
89892
|
+
data.sendEmailReqeust.to = action.email;
|
|
89893
|
+
ctx.dispatch(new SendEmailFromEntityAction(data.sendEmailReqeust));
|
|
89894
|
+
}
|
|
89895
|
+
onExportGuestsAction(ctx, action) {
|
|
89896
|
+
const getGuests$ = this.guestServiceProxy.getGuests(action.parkId, action.guid, action.guestsFilterDto);
|
|
89897
|
+
return getGuests$.pipe(tap({
|
|
89898
|
+
next: (guestsWrapper) => {
|
|
89899
|
+
const tableRows = [];
|
|
89900
|
+
const guestWithBatchDtoList = guestsWrapper.data.entities;
|
|
89901
|
+
guestWithBatchDtoList.forEach((guest) => {
|
|
89902
|
+
tableRows.push([guest.name,
|
|
89903
|
+
this.translate.instant(ProfileTypeText[ProfileType[guest.mType]]),
|
|
89904
|
+
guest.mobile,
|
|
89905
|
+
guest.carPlate,
|
|
89906
|
+
this.exportFileService.getDateFieldValue(action.fileType, guest, 'validFromDate'),
|
|
89907
|
+
this.exportFileService.getDateFieldValue(action.fileType, guest, 'validToDate'),
|
|
89908
|
+
guest.companyName,
|
|
89909
|
+
guest.subCompanyName,
|
|
89910
|
+
this.parkerService.getHistoryItemAction(guest.location, null),
|
|
89911
|
+
this.exportFileService.getDateFieldValue(action.fileType, guest, 'producedDate')]);
|
|
89912
|
+
});
|
|
89913
|
+
this.exportFileService.export(action.fileType, tableRows, action.columnsHeader, Localization.guests);
|
|
89914
|
+
},
|
|
89915
|
+
error: () => {
|
|
89916
|
+
this.messageBarService.error(this.translateService.instant(this.L.failed_export_file));
|
|
89917
|
+
}
|
|
89918
|
+
}));
|
|
89919
|
+
}
|
|
89920
|
+
addGuestsByBatchIdToStore(ctx, batchID, guests) {
|
|
89921
|
+
const displayedGusetBatches = ctx.getState().displayed;
|
|
89922
|
+
const guestBatchIndex = displayedGusetBatches.findIndex(gb => gb.batchID === batchID);
|
|
89923
|
+
if (guestBatchIndex !== -1) {
|
|
89924
|
+
displayedGusetBatches[guestBatchIndex].entities = guests;
|
|
89925
|
+
displayedGusetBatches.splice(guestBatchIndex + 1, 0, ...guests);
|
|
89926
|
+
ctx.patchState({
|
|
89927
|
+
displayed: [...displayedGusetBatches],
|
|
89928
|
+
});
|
|
89929
|
+
}
|
|
89930
|
+
}
|
|
89931
|
+
convertGuestsToTableData(guests) {
|
|
89932
|
+
const batch = guests.find(g => g.batchID > 0 && g.guestID === null);
|
|
89933
|
+
batch.isRowExpandable = true;
|
|
89934
|
+
batch.entities = guests.filter(g => g.batchID !== null && g.guestID !== null);
|
|
89935
|
+
return batch;
|
|
89936
|
+
}
|
|
89937
|
+
addGuestToStore(ctx, guest, displayNewGuestInTable) {
|
|
89938
|
+
if (displayNewGuestInTable) {
|
|
89939
|
+
const displayedGuests = ctx.getState().displayed;
|
|
89940
|
+
markEntitiesAsChanged([guest], RowOperation.Insert);
|
|
89941
|
+
displayedGuests.unshift(guest);
|
|
89942
|
+
ctx.patchState({
|
|
89943
|
+
displayed: [...displayedGuests],
|
|
89944
|
+
counter: ctx.getState().counter + 1,
|
|
89945
|
+
});
|
|
89946
|
+
}
|
|
89947
|
+
}
|
|
89948
|
+
isGuestCreatedFromSelectedFacility(guest, guid) {
|
|
89949
|
+
const selectedParkID = this.store.selectSnapshot(FacilityState.parkId);
|
|
89950
|
+
const selectedGuid = this.store.selectSnapshot(FacilityState.guid);
|
|
89951
|
+
return selectedParkID === guest.parkID && selectedGuid === guid;
|
|
89952
|
+
}
|
|
89953
|
+
getParantAndChildIndex(ctx, guestDto) {
|
|
89954
|
+
const displayedGuests = ctx.getState().displayed;
|
|
89955
|
+
// if I am children find my parent, after that find me
|
|
89956
|
+
const parent = displayedGuests.findIndex(guest => guest.batchID === guestDto.batchID && guest.guestID === null);
|
|
89957
|
+
const child = (displayedGuests[parent].entities || []).findIndex(guest => guest.guestID === guestDto.guestID);
|
|
89958
|
+
return { parent, child };
|
|
89959
|
+
}
|
|
89960
|
+
updateGuestInStore(ctx, guest, guid) {
|
|
89961
|
+
const displayedGuests = ctx.getState().displayed;
|
|
89962
|
+
const guestIndex = this.getGuestIndex(displayedGuests, guest.guestID);
|
|
89963
|
+
if (guestIndex !== -1) {
|
|
89964
|
+
displayedGuests[guestIndex] = guest;
|
|
89965
|
+
markEntitiesAsChanged([guest], RowOperation.Update);
|
|
89966
|
+
}
|
|
89967
|
+
if (this.isGuestChild(guest)) {
|
|
89968
|
+
const { child, parent } = this.getParantAndChildIndex(ctx, guest);
|
|
89969
|
+
if (parent !== -1) {
|
|
89970
|
+
if (child !== -1) {
|
|
89971
|
+
displayedGuests[parent].entities[child] = guest;
|
|
89972
|
+
}
|
|
89973
|
+
markEntitiesAsChanged([displayedGuests[parent]]);
|
|
89974
|
+
}
|
|
89975
|
+
}
|
|
89976
|
+
ctx.patchState({
|
|
89977
|
+
displayed: [...displayedGuests],
|
|
89978
|
+
});
|
|
89979
|
+
}
|
|
89980
|
+
deleteGuestFromStore(ctx, guest, guid) {
|
|
89981
|
+
let counter = ctx.getState().counter;
|
|
89982
|
+
const displayedGuests = ctx.getState().displayed;
|
|
89983
|
+
const guestIndex = this.getGuestIndex(displayedGuests, guest.guestID);
|
|
89984
|
+
if (guestIndex !== -1) {
|
|
89985
|
+
displayedGuests.splice(guestIndex, 1);
|
|
89986
|
+
markEntitiesAsChanged([guest], RowOperation.Delete);
|
|
89987
|
+
}
|
|
89988
|
+
if (this.isGuestChild(guest)) {
|
|
89989
|
+
const { child, parent } = this.getParantAndChildIndex(ctx, guest);
|
|
89990
|
+
if (parent !== -1) {
|
|
89991
|
+
if (child !== -1) {
|
|
89992
|
+
displayedGuests[parent].entities.splice(child, 1);
|
|
89993
|
+
}
|
|
89994
|
+
markEntitiesAsChanged([displayedGuests[parent]]);
|
|
89995
|
+
}
|
|
89996
|
+
}
|
|
89997
|
+
else {
|
|
89998
|
+
counter--;
|
|
89999
|
+
}
|
|
90000
|
+
ctx.patchState({
|
|
90001
|
+
displayed: [...displayedGuests],
|
|
90002
|
+
counter: counter,
|
|
90003
|
+
});
|
|
90004
|
+
}
|
|
90005
|
+
async populateSendEmailRequest(action) {
|
|
90006
|
+
let pdfPagesParametersList = [];
|
|
90007
|
+
let guestEmailTemplate = '';
|
|
90008
|
+
if (action.guest.entities && action.guest.entities.length > 0) {
|
|
90009
|
+
pdfPagesParametersList = [];
|
|
90010
|
+
action.guest.entities.forEach(guest => {
|
|
90011
|
+
const paramList = this.getParameters(guest, action.facility);
|
|
90012
|
+
pdfPagesParametersList.push(paramList);
|
|
90013
|
+
});
|
|
90014
|
+
guestEmailTemplate = action.guest.batchName;
|
|
90015
|
+
}
|
|
90016
|
+
else {
|
|
90017
|
+
pdfPagesParametersList.push(this.getParameters(action.guest, action.facility));
|
|
90018
|
+
guestEmailTemplate = action.guest.name;
|
|
90019
|
+
}
|
|
90020
|
+
const sendEmailRequest = new SendEmailRequestDto({
|
|
90021
|
+
entity: new GuestEntityParams({
|
|
90022
|
+
qrPlainText: action.guest.qrPlainText,
|
|
90023
|
+
id: action.guest.guestID || action.guest.batchID,
|
|
90024
|
+
qrCode: action.guest.qrCode
|
|
90025
|
+
}),
|
|
90026
|
+
to: action.email,
|
|
90027
|
+
templateType: TemplateType.Guest,
|
|
90028
|
+
pdfPagesParametersList,
|
|
90029
|
+
pdfPagesParameters: null,
|
|
90030
|
+
parameters: {
|
|
90031
|
+
guestEmailTemplate,
|
|
90032
|
+
}
|
|
90033
|
+
});
|
|
90034
|
+
return sendEmailRequest;
|
|
90035
|
+
}
|
|
90036
|
+
getParameters(guest, facility) {
|
|
90037
|
+
const parameters = {
|
|
90038
|
+
validFromDateTime: this.toDateString(guest.validFromDate),
|
|
90039
|
+
validToDateTime: this.toDateString(guest.validToDate),
|
|
90040
|
+
companyName: guest.companyName,
|
|
90041
|
+
subCompanyName: guest.subCompanyName,
|
|
90042
|
+
parkName: facility?.data?.name,
|
|
90043
|
+
producedDateTime: this.toDateString(guest.producedDate),
|
|
90044
|
+
id: guest.guestID,
|
|
90045
|
+
firstName: guest.firstName,
|
|
90046
|
+
lastName: guest.lastName,
|
|
90047
|
+
plateId: guest.carPlate,
|
|
90048
|
+
name: guest.name,
|
|
90049
|
+
card: guest.credit,
|
|
90050
|
+
address: getAddress(guest.city, guest.street),
|
|
90051
|
+
qrCode: guest.qrCode,
|
|
90052
|
+
guid: facility.guid,
|
|
90053
|
+
parkId: facility.data.id,
|
|
90054
|
+
qrPlainText: guest.qrPlainText
|
|
90055
|
+
};
|
|
90056
|
+
return parameters;
|
|
90057
|
+
}
|
|
90058
|
+
getGuestIndex(displayedGuests, guestId) {
|
|
90059
|
+
return displayedGuests.findIndex(guest => guest.guestID === guestId);
|
|
90060
|
+
}
|
|
90061
|
+
onUpdateBasicGuestNext(ctx, action, handled, messageBarPayload) {
|
|
90062
|
+
this.updateGuestInStore(ctx, handled.data, action.guid);
|
|
90063
|
+
this.messageBarService.success(Localization.entity_success, createMessageText(messageBarPayload));
|
|
90064
|
+
}
|
|
90065
|
+
onUpdateBasicGuestError(messageBarPayload) {
|
|
90066
|
+
messageBarPayload.entity = lowerCaseFirstLetter(messageBarPayload.entity);
|
|
90067
|
+
messageBarPayload.action = lowerCaseFirstLetter(this.translate.instant(Localization.update));
|
|
90068
|
+
this.messageBarService.error(Localization.entity_failed, createMessageText(messageBarPayload));
|
|
90069
|
+
}
|
|
90070
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GuestState, deps: [{ token: i1$2.Store }, { token: GuestServiceProxy }, { token: i1$3.TranslateService }, { token: BatchServiceProxy }, { token: MessageBarService }, { token: CommandNotificationService }, { token: i1$3.TranslateService }, { token: TenantService }, { token: ExportFileService }, { token: ParkerService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
90071
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GuestState }); }
|
|
90072
|
+
};
|
|
90073
|
+
__decorate([
|
|
90074
|
+
Action(LoadGuestByIdAction, { cancelUncompleted: true })
|
|
90075
|
+
], GuestState.prototype, "onLoadGuestByIdAction", null);
|
|
90076
|
+
__decorate([
|
|
90077
|
+
Action(ClearGuestAction, { cancelUncompleted: true })
|
|
90078
|
+
], GuestState.prototype, "onClearGuestAction", null);
|
|
90079
|
+
__decorate([
|
|
90080
|
+
Action(LoadGuestsAction, { cancelUncompleted: true })
|
|
90081
|
+
], GuestState.prototype, "onLoadGuestsAction", null);
|
|
90082
|
+
__decorate([
|
|
90083
|
+
Action(SetGuestsAction)
|
|
90084
|
+
], GuestState.prototype, "onSetGuestsAction", null);
|
|
90085
|
+
__decorate([
|
|
90086
|
+
Action(ClearGuestsListAction)
|
|
90087
|
+
], GuestState.prototype, "onClearGuestListAction", null);
|
|
90088
|
+
__decorate([
|
|
90089
|
+
Action(CreateGuestAction)
|
|
90090
|
+
], GuestState.prototype, "onCreateGuestAction", null);
|
|
90091
|
+
__decorate([
|
|
90092
|
+
Action(CreateBatchAction)
|
|
90093
|
+
], GuestState.prototype, "onCreateBatchAction", null);
|
|
90094
|
+
__decorate([
|
|
90095
|
+
Action(CreateBasicBatchAction)
|
|
90096
|
+
], GuestState.prototype, "onCreateBasicBatchAction", null);
|
|
90097
|
+
__decorate([
|
|
90098
|
+
Action(UpdateGuestAction)
|
|
90099
|
+
], GuestState.prototype, "onUpdateGuestAction", null);
|
|
90100
|
+
__decorate([
|
|
90101
|
+
Action(UpdateGuestLocationAction)
|
|
90102
|
+
], GuestState.prototype, "onUpdateGuestLocationAction", null);
|
|
90103
|
+
__decorate([
|
|
90104
|
+
Action(DeleteGuestAction)
|
|
90105
|
+
], GuestState.prototype, "onDeleteGuestAction", null);
|
|
90106
|
+
__decorate([
|
|
90107
|
+
Action(CreateBasicGuestAction)
|
|
90108
|
+
], GuestState.prototype, "onCreateBasicGuestAction", null);
|
|
90109
|
+
__decorate([
|
|
90110
|
+
Action(UpdateBasicGuestAction)
|
|
90111
|
+
], GuestState.prototype, "onUpdateBasicGuestAction", null);
|
|
90112
|
+
__decorate([
|
|
90113
|
+
Action(UpdateBasicGuestTempAction)
|
|
90114
|
+
], GuestState.prototype, "onUpdateBasicGuestTempAction", null);
|
|
90115
|
+
__decorate([
|
|
90116
|
+
Action(SendEmailToGuest)
|
|
90117
|
+
], GuestState.prototype, "onSendEmailToGuestAction", null);
|
|
90118
|
+
__decorate([
|
|
90119
|
+
Action(LoadGuestsByBatchIdAction, { cancelUncompleted: true })
|
|
90120
|
+
], GuestState.prototype, "onLoadGuestsByBatchId", null);
|
|
90121
|
+
__decorate([
|
|
90122
|
+
Action(LoadGuestsByBatchIdCancelledAction, { cancelUncompleted: false })
|
|
90123
|
+
], GuestState.prototype, "onLoadGuestsByBatchIdCancelledAction", null);
|
|
90124
|
+
__decorate([
|
|
90125
|
+
Action(ExpandGuestsByBatchIdAction)
|
|
90126
|
+
], GuestState.prototype, "onExpandGuestsByBatchIdAction", null);
|
|
90127
|
+
__decorate([
|
|
90128
|
+
Action(CollapsedGuestsByBatchIdAction)
|
|
90129
|
+
], GuestState.prototype, "onCollapsedGuestsByBatchIdAction", null);
|
|
90130
|
+
__decorate([
|
|
90131
|
+
Action(LoadGuestProfilesAction, { cancelUncompleted: true })
|
|
90132
|
+
], GuestState.prototype, "onLoadGuestProfilesAction", null);
|
|
90133
|
+
__decorate([
|
|
90134
|
+
Action(ClearGuestProfilesAction)
|
|
90135
|
+
], GuestState.prototype, "onClearGuestProfilesAction", null);
|
|
90136
|
+
__decorate([
|
|
90137
|
+
Action(SendGuestPassesToEmailAction)
|
|
90138
|
+
], GuestState.prototype, "onSendGuestPassesToEmail", null);
|
|
90139
|
+
__decorate([
|
|
90140
|
+
Action(ExportGuestsAction, { cancelUncompleted: true })
|
|
90141
|
+
], GuestState.prototype, "onExportGuestsAction", null);
|
|
90142
|
+
__decorate([
|
|
90143
|
+
Selector()
|
|
90144
|
+
], GuestState, "guestCounter", null);
|
|
90145
|
+
__decorate([
|
|
90146
|
+
Selector()
|
|
90147
|
+
], GuestState, "archivedGuests", null);
|
|
90148
|
+
__decorate([
|
|
90149
|
+
Selector()
|
|
90150
|
+
], GuestState, "displayedGuests", null);
|
|
90151
|
+
__decorate([
|
|
90152
|
+
Selector()
|
|
90153
|
+
], GuestState, "profiles", null);
|
|
90154
|
+
__decorate([
|
|
90155
|
+
Selector()
|
|
90156
|
+
], GuestState, "selected", null);
|
|
90157
|
+
GuestState = __decorate([
|
|
90158
|
+
State({
|
|
90159
|
+
name: 'guest',
|
|
90160
|
+
defaults: {
|
|
90161
|
+
archived: [],
|
|
90162
|
+
displayed: [],
|
|
90163
|
+
counter: 0,
|
|
90164
|
+
guest: null,
|
|
90165
|
+
profiles: [],
|
|
90166
|
+
selected: null,
|
|
90167
|
+
},
|
|
90168
|
+
})
|
|
90169
|
+
], GuestState);
|
|
90170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GuestState, decorators: [{
|
|
90171
|
+
type: Injectable
|
|
90172
|
+
}], ctorParameters: function () { return [{ type: i1$2.Store }, { type: GuestServiceProxy }, { type: i1$3.TranslateService }, { type: BatchServiceProxy }, { type: MessageBarService }, { type: CommandNotificationService }, { type: i1$3.TranslateService }, { type: TenantService }, { type: ExportFileService }, { type: ParkerService }]; }, propDecorators: { onLoadGuestByIdAction: [], onClearGuestAction: [], onLoadGuestsAction: [], onSetGuestsAction: [], onClearGuestListAction: [], onCreateGuestAction: [], onCreateBatchAction: [], onCreateBasicBatchAction: [], onUpdateGuestAction: [], onUpdateGuestLocationAction: [], onDeleteGuestAction: [], onCreateBasicGuestAction: [], onUpdateBasicGuestAction: [], onUpdateBasicGuestTempAction: [], onSendEmailToGuestAction: [], onLoadGuestsByBatchId: [], onLoadGuestsByBatchIdCancelledAction: [], onExpandGuestsByBatchIdAction: [], onCollapsedGuestsByBatchIdAction: [], onLoadGuestProfilesAction: [], onClearGuestProfilesAction: [], onSendGuestPassesToEmail: [], onExportGuestsAction: [] } });
|
|
90173
|
+
|
|
90174
|
+
class GuestModule {
|
|
90175
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GuestModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
90176
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: GuestModule, imports: [i1$2.ɵNgxsFeatureModule] }); }
|
|
90177
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GuestModule, imports: [NgxsModule.forFeature([GuestState, FacilityState, ParkerState])] }); }
|
|
90178
|
+
}
|
|
90179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GuestModule, decorators: [{
|
|
90180
|
+
type: NgModule,
|
|
90181
|
+
args: [{
|
|
90182
|
+
declarations: [],
|
|
90183
|
+
imports: [
|
|
90184
|
+
NgxsModule.forFeature([GuestState, FacilityState, ParkerState]),
|
|
90185
|
+
]
|
|
90186
|
+
}]
|
|
90187
|
+
}] });
|
|
90188
|
+
|
|
90189
|
+
// Module
|
|
90190
|
+
|
|
89403
90191
|
// Modules
|
|
89404
90192
|
|
|
89405
90193
|
class FilterDevicesByZonePipe {
|
|
@@ -91171,5 +91959,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
91171
91959
|
* Generated bundle index. Do not edit.
|
|
91172
91960
|
*/
|
|
91173
91961
|
|
|
91174
|
-
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_NUMBER_OF_DAYS, ALLOWED_UPLOAD_FILES_QUANTITY, ALL_DAYS_IN_BYTE, AccessProfileChangeValidTypesText, AccessProfileDayTypesText, AccessProfileRestrictionTypesText, AccessProfileShortDayTypesText, AccessProfileSpecialDaysMap, AccessProfileTypesText, AccountFrameMessageBarComponent, AccountSetPasswordAction, AccountSetPasswordErrorAction, AccountSetPasswordInitAction, ActionReasonsModule, ActionReasonsState, ActionStatusService, AddSmartparkAction, AddUserAction, AggregatedStatusText, AlertChangeAction, AlertNotificationBorderClass, AlertNotificationClassficationType, AlertNotificationClassificationMap, AlertNotificationComponent, AlertNotificationService, AlertNotificationType, AlertNotificationTypeText, AlertsDeviceTypeLabel, AlertsDeviceTypeOptions, AlertsDeviceTypeOptionsMapping, AlertsModule, AlertsNotificationTypeLabelComponent, AlertsPreferencesDto, AlertsService, AlertsState, AnalyticsCommandsText, AnalyticsEventsText, AnalyticsService, AnalyticsSourceComponent, AnalyticsSourceProps, AppConfigService, AppModuleService, AppModuleToMainPermissionTypeMap, AppSectionLabel, AppSectionModuleMenu, AppSectionRoute, AppSettingsService, AppType, AuditActionTypeText, AuditLogoutAction, AuthModule, AuthRouteGuard, AuthService, AuthTokenService, Authenticate2FAforUser, AuthenticateMultipleTenantsAction, AutofocusDirective, BOM_UNICODE, BarcodeTypeLength, BarrireStateText, BaseComponent, BaseDeviceItemComponent, BaseDeviceService, BillDispenserStatusText, BillTypeText, BillValidatorStatusText, ButtonStatus, CANCEL_ALL_RELAY_VALUE, CLogItPipe, COLORS, CREDIT_CARD_POSTFIX_LENGTH, CalculatorModule, CalculatorState, CanDeactivateService, CassetteStatusText, CentToCoinPipe, ChangeLanguageAction, ChangePasswordAction, CleanLogoAction, ClearActionReasonsAction, ClearAlertsAction, ClearCalculatorPriceAction, ClearCategoriesAction, ClearDeviceAction, ClearDeviceEventsExpanded, ClearDevicesAction, ClearEventActivitiesExpanded, ClearFacilityDictionaryAction, ClearGroupsAction, ClearInactiveSelectedParkAction, ClearJobTitlesAction, ClearLocateTicketSearchAction, ClearLocatedTicketAction, ClearLprTransactionsExpanded, ClearMacroCommandsAction, ClearParkerAction, ClearSearchResultsAction, ClearSearchTermAction, ClearSearchTicketAction, ClearSelectedFacilityAction, ClearSelectedParkAction, ClearSelectedRow, ClearSelectedSmartparkAction, ClearSmartparksBasicAction, ClearSpAndSparkVersionsAction, ClearSuspendedParkActivitiesAction, ClearUsersAction, ClearValidationTypesAction, ClearZonesAction, ClearZsAction, cloudServiceProxies as Cloud, CloudConfirmDialogComponent, CofCredentialSubTypeText, CoinStatusText, ComAggregatedStatus, ComAggregatedStatusText, ComStatusIconComponent, CommandCenterModuleResolver, CommandNotificationBorderClass, CommandNotificationComponent, CommandNotificationDisplayCase, CommandNotificationService, CommandNotificationType, CommandsLocalizationKey, CommonPagesModule, CompanyService, ConfigResolver, ConnectSmartparkAction, ContainerRefDirective, CoreEntities, CouponSearchFieldSelectorText, CreateOrUpdateSMTPDetailsAction, CredentialTypeText, CreditCardTypeText, CrudOperationText, CurlyToBoldPipe, DATA_IMAGE_BASE64_PREFIX, DATA_IMAGE_BASE64_SVG_PREFIX, DEFAULT_DATE_FORMAT, DEFAULT_MINUMIM_LENGTH, 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, DataQaAttribute, DateService, DateValidityText, DaysText, DecimalToAmountPipe, DecimalToCurrencyPipe, 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, ENGLISH_LANGUAGE, ENVIRONMENT, EXPIRATION_MONTH_OPTIONS, edgeServiceProxies as Edge, EditUserAction, ElectronicWalletPaymentMethodTypesText, EllipsisMultilineDirective, EmailServerModule, EmailServerState, EmptyResultsComponent, Enable2FAAction, EnumsToArrayPipe, EnvironmentModeText, ErrorPageComponent, ErrorPageResolver, ExceedingBehaviorTypeText, ExportFileService, ExportSmartparkAction, FONT_BASE64, FacilityChangedAction, FacilityMenuService, FacilityModule, FacilityRemoteCommandExecutedAction, FacilityRemoteCommandTypesIcon, FacilityRemoteCommandsLocalizationKey, FacilityRemoteCommandsMenuItems, FacilityService, FacilityState, FieldLabelComponent, FieldValidationsComponent, FileGenerateMethod, FileService, FilterByDeviceType, FilterDevicesByTypePipe, FilterDevicesByZonePipe, FilterKeysPipe, FilterNumbersPipe, FilterPipe, FlattenedCoreEntities, FloatMessageBarService, ForgotPasswordAction, ForgotPasswordTenantlessAction, FormValidationsComponent, FrequentParkingActionText, FrequentParkingErrorActionText, GATE_STATE_VALUE, GeneralActionService, GenerateSearchParamsDto, GetAllLocalizationsAction, GetLogoAction, GlobalErrorService, GlobalMessageContainerComponent, GroupPermissionsPipe, GuestSearchFieldSelectorText, GuestTypeCastText, GuestTypesText, HOUR_FORMAT_12, HOUR_FORMAT_24, HOUR_FORMAT_FULL_DAY, HandleAlertAction, HasActionErrored, HealthAction, HoldRelayMode, HoldRelayModeText, HopperStatusText, HotelGuestSearchFieldSelectorText, HttpCancelBlackListUrls, HttpCancelInterceptor, HttpCancelService, INPUT_SEARCH_DEBOUNCE_TIME, INPUT_SEARCH_DEBOUNCE_TIME_LOW, INPUT_SEARCH_DEBOUNCE_TIME_MEDIUM, IconColumnComponent, IconComponent, IconModule, IconsHelper, IconsHelperText, identityServiceProxies as Identity, InitAddSmartparkConnectionAction, InitSMTPDetailsAction, InitSessionFromLocalStorageAction, InitSmartparkTransportAction, InternetConnectionService, InternetConnectionStatus, IsActionExecuting, IsEllipsisDirective, LOCAL_ENGLISH_LANGUAGE, LOCATION_OPTIONS, LOGGED_TENANT_KEY, LanguageTypeKeys, LayoutModule, LayoutState, LoadActionReasonsAction, LoadAlertsAction, LoadAppConfigurationAction, LoadCalculatorPriceAction, LoadCategoriesAction, LoadDeviceAction, LoadDeviceEventActivitiesAction, LoadDeviceEventsAction, LoadDeviceEventsCollapse, LoadDeviceLprTransactionsAction, LoadDeviceStatusAction, LoadDevicesAction, LoadEventActivitiesCollapse, LoadFacilityAction, LoadFacilityRemoteCommandsRefAction, LoadGroupsAction, LoadJobTitlesAction, LoadLocateTicketSearchAction, LoadLocatedTicketAction, LoadLprTransactionsCollapse, LoadMacroCommandsAction, LoadOverflowPriceTableAction, LoadParkActivitiesAction, LoadParkDevicesAction, LoadParkerAction, LoadParkersAction, LoadParkingLotAction, LoadParksAction, LoadRateByIdAction, LoadRatesAction, LoadRemoteCommandsRefAction, LoadSMTPDetailsAction, LoadSelectedDeviceAction, LoadSmartparksAction, LoadSmartparksBasicAction, LoadSmartparksTableAction, LoadSpAndSparkVersionsAction, LoadStickerPriceTableAction, LoadTicketNumParkersAction, LoadTransientPriceTableAction, LoadUserPermissionsAction, LoadUsersAction, LoadValidationTypeAction, LoadVarsAction, LoadZonesAction, LoadZsAction, LoadingOverlayComponent, LocalStorageMigrator, LocalStorageService, Localization, LocalizationModule, LocalizationResolver, LocalizationService, LocalizationState, LoginModule, LoginRequestAction, LoginService, LoginState, LoginSuccess, LogoComponent, LogoState, LogoutAction, LogoutMobileAction, LoopStatus, LowerCaseUrlSerializer, LprTransactionsChangedAction, LprTransactionsOptionsText, LprTransactionsSearchFieldSelectorText, MAX_ALLOWED_BADGE_VALUE, MAX_ALLOWED_CURRENT_BALANCE, MAX_ALLOWED_DEDUCTION_VALUE, MAX_ALLOWED_IDENTIFIER_VALUE, MAX_ALLOWED_STARTING_PURSE_VALUE, MAX_CARDS, MAX_CAR_PLATES, MAX_EXPORT_RECORDS, MAX_HOTEL_ROOM_NUMBER_LENGTH, MAX_INT16_VALUE, MAX_INT32_VALUE, MAX_INTEGER_VALUE, MAX_LENGTH_BATCH_NAME, MAX_LENGTH_DESCRIPTION, MAX_LENGTH_FOOTER, MAX_LENGTH_LEFT, MAX_LENGTH_LEFT_BACKWARD_COMPATIBILITY, MAX_LENGTH_MANUAL_TEXT, MAX_LENGTH_NAME_30, MAX_LENGTH_NAME_50, MAX_LENGTH_QUANTITY, MAX_LENGTH_SERACH_TERM, MAX_MOBILE_LENGTH, MAX_NUMBER_OF_NIGHTS, MAX_NUMBER_OF_ROW_IN_MENU, 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, MC_READER_ID, MESSAGE_BAR_DEFAULT_ID, MINIMUM_DROPDOWN_RESULTS_WITHOUT_SEARCH, MINIMUM_LENGTH_OPTIONS, MINUTES_PER_HOUR, MIN_LENGTH_QUANTITY, MIN_NUMBER_OF_ROW_IN_MENU, MOBILE_REFRESH_INFO, MSALGuardConfigFactory, MSALInstanceFactory, MSALInterceptorConfigFactory, MSLAuthService, MULTIPLE, MainModuleToSubModulesPermissionTypeMap, MenuAppModuleLoadAction, MenuClearAction, MenuLoadAction, MenuService, MenuSubModuleClearAction, MenuSubModuleLoadAction, MessageBarComponent, MessageBarContainerComponent, MessageBarModule, MessageBarPosition, MessageBarService, MessageBarStatus, MiddayPeriod, MobileAppSectionLabel, MobileAuthenticateMultipleTenantsAction, ModalButtonsWrapperComponent, ModalService, ModuleGuard, ModuleMenuBaseComponent, MonthlyRenewalSettingsActionTypesText, MonthlyRenewalSettingsActionTypesValueText, MonthlySearchFieldSelectorText, MslEventType, NONE_ACTIVE_BYTE, NONE_USER_ID, NO_RESULT, NativeElementInjectorDirective, NotSupportedBrowserGuard, NotSupportedBrowserPageComponent, NotificationClass, NotificationCloseAllButtonComponent, NotificationEventService, NotificationHPositions, NotificationModule, NotificationService, NotificationVPositions, ONE_DAY_IN_MINUTES_VALUE, ONE_SECOND_IN_MILLISECONDS, OffScreenDirective, OpenIdAuthInitializeService, OpenIdAuthService, OpenIdAutheticateAction, Operator, OrderBy, OrderByPipe, OrderDirection$1 as OrderDirection, OrphanFacilitiesPipe, PARKER_SEARCH_AUTO_REDIRECT, PASSWORD_EXPIRED, PERIOD_TIME, PREVENT_CLICK_ELEMENT_CLASSES, ParkActivitiesModule, ParkActivitiesState, ParkActivityChangedAction, ParkConnectionStatus, ParkConnectionStatusClass, ParkConnectionStatusText, ParkManagerModule, ParkManagerState, ParkService, ParkTimeService, ParkerSearchTerm, ParkerService, ParkerState, ParkerTagsText, ParkerTypesText, PaymentSearchFieldSelectorText, PaymentServiceTypeText, PaymentsTypesText, PermissionGroupText, PermissionTypeSupportedVersionDictionary, PermissionTypeText, PermissionsService, PrintReceiptAction, ProfileTypeText, REDIRECT_URL, RELAY_2_VALUE, RELAY_3_VALUE, RELAY_4_VALUE, RESET_PASSWORD_EMAIL, RTObjectObject, RateModule, RateState, RealtimeEventService, RealtimeResolver, ReceiptGeneratedAction, RefreshTokenService, RelayStatus, ReloadParkerAction, RemoteCommandService, RemoteCommandTypesIcon, RemoteValidationModule, RemoteValidationState, ReportCategories, ReportCategoriesText, ReportMethodDictionary, ReportSectionMenu, ResendPendingAdminInvitationsAction, ResendUserInvitationAction, ResetRatesAction, RevenueService, RouteService, RowOperation, 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, SendTestEmailAction, ServiceProxyModule, ServicesRunningStatusChangedAction, SessionState, SessionStorageService, SetAlertsConfigAction, SetBasicMenuAction, SetDeviceEventsExpanded, SetDeviceRemoteCommandsMapAction, SetDeviceStatusAction, SetDeviceViewModeAction, SetEventActivitiesExpanded, SetFacilityRemoteCommandsMapAction, SetLprTransactionsExpanded, SetMobileModeAction, SetParkActivitiesAction, SetPasswordAction, SetRealTimeEventStatusAction, SetSearchTermAction, SetSelectedParkAction, SetSmartParkAction, SetSmartParkTableAction, SetSmartParkVersionsAction, SetSmartparkBasicAction, SetSmartparkBasicAllAction, SetStateAction, SetTFASetupAction, SetTenantUserAction, SetTicketIdentifierAction, SetUserNameAction, SetUserStatusAction, SetUsersAction, SetkeepMeLoggedInAction, SharedComponentsModule, SharedDirectivesModule, SharedModule, SharedPipesModule, SideNavSortBy, SidenavModule, SidenavState, SignalR, SignalRExceededRetriesAction, 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, UpdateDocumentAction, UpdateMobileMode, UpdateSmartparkAction, UpdateTenantInfoProps, UpdateTenantSingleSignOnAction, UpdateTicketPlateIdAction, UpdateUserAlertsPreferencesAction, UpdateUserSettingsAction, UpdateUserSettingsInSessionAction, UploadLogoAction, UserCreationType, UserModule, UserSettingsModule, UserSettingsState, UserState, VALID_TIME_MAX_LENGTH, VERSION_10_1_0, VERSION_10_2_0, VERSION_10_2_1, VERSION_10_3_0, VERSION_10_4_0, VERSION_7_4_0, VERSION_7_4_1, VERSION_8_1_0, VERSION_8_2_0, VERSION_8_3_0, VERSION_8_4_0, VERSION_9_1_0, VERSION_9_2_0, VERSION_9_2_2, VERSION_9_3_0, VERSION_9_4_0, ValidateUserTokenAction, ValidationService, ValidationStickerType, ValidationTypeModule, ValidationTypeState, VarDirective, Verify2FactorAuthenticationAction, VersionResolver, VirtualValidationStatusText, WrapFnPipe, ZerofyNegativePipe, ZoneChangedAction, accountModuleAnimation, adjustForTimezone, allowSpecialKeys, alphanumericRegex, appModuleAnimation, areDatesIdentical, areVersionsCompatible, arrayEquals, arraysAreDifferent, baseReduce, blobToBase64, buildMessageInfos, buildMessages, camelize, canceled, capitalizeFirstLetter, 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, findParentElement, findParentElementDimensions, findParentRoute, findParentRouteConfig, flattenByKey, formatMinutesToTimeNumber, formatTimeToMinutes, formatTimeWithMidnight, formatTimeWithSeparator, formatTimeWithoutMidnight, formatTimeWithoutSeparator, formatTimeWithoutSeperatorAndWithMidnight, formatTimeWithoutSeperatorAndWithoutMidnight, getActivatedRoutePathSegment, getAddress, getCurrentLang, getDateTimeInSeconds, getDateWithoutTime, getDefaultDeviceStatus, getMomenWithTime, getMomentNullable, getMomentWithoutTime, getNavigationRoute, getObjectMetadata, getParkerTypesText, getPasswordMinimalLength, getTooltipTextByParkerType, getUserTimeZone, getUtcMomentNullable, hasRequiredField, hasValue, humanizeTimeElapsed, humanizeUtcTimeElapsed, identity, initializeMsal, initializeOpenId, integerNumberRegex, integerPositiveNumberRegex, isBoolean, isCharacterLengthValid, 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, navigateToForbiddenAccessPage, navigateToNotSupportedBrowserPage, noEmojiRegex, notificationAnimation, numberWithLeadingZero, ofStatus, omitKeys, openBackgroundIframe, openCloseFiltersAnimation, parkerEnumToText, parseApiErrorData, parseApiErrorMessage, parseDateTimeToSparkParkTime, parseSmartParkTime, passwordRegex, percentageRegex, printStackTrace, readjustForTimezone, regexExp, remoteCommandLocalizationMap, replaceAll, searchBarPopupAnimation, setErrorMessage, shortDaysTranslation, sleep, slideFromBottom, slideFromRight, slideFromUp, slideUpDown, successful, timeToMinutes, timeToMoment, toInt, toNumberMap, toStringMap, wrapConstructor };
|
|
91962
|
+
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_NUMBER_OF_DAYS, ALLOWED_UPLOAD_FILES_QUANTITY, ALL_DAYS_IN_BYTE, AccessProfileChangeValidTypesText, AccessProfileDayTypesText, AccessProfileRestrictionTypesText, AccessProfileShortDayTypesText, AccessProfileSpecialDaysMap, AccessProfileTypesText, AccountFrameMessageBarComponent, AccountSetPasswordAction, AccountSetPasswordErrorAction, AccountSetPasswordInitAction, ActionReasonsModule, ActionReasonsState, ActionStatusService, AddSmartparkAction, AddUserAction, AggregatedStatusText, AlertChangeAction, AlertNotificationBorderClass, AlertNotificationClassficationType, AlertNotificationClassificationMap, AlertNotificationComponent, AlertNotificationService, AlertNotificationType, AlertNotificationTypeText, AlertsDeviceTypeLabel, AlertsDeviceTypeOptions, AlertsDeviceTypeOptionsMapping, AlertsModule, AlertsNotificationTypeLabelComponent, AlertsPreferencesDto, AlertsService, AlertsState, AnalyticsCommandsText, AnalyticsEventsText, AnalyticsService, AnalyticsSourceComponent, AnalyticsSourceProps, AppConfigService, AppModuleService, AppModuleToMainPermissionTypeMap, AppSectionLabel, AppSectionModuleMenu, AppSectionRoute, AppSettingsService, AppType, AuditActionTypeText, AuditLogoutAction, AuthModule, AuthRouteGuard, AuthService, AuthTokenService, Authenticate2FAforUser, AuthenticateMultipleTenantsAction, AutofocusDirective, BOM_UNICODE, BarcodeTypeLength, BarrireStateText, BaseComponent, BaseDeviceItemComponent, BaseDeviceService, BillDispenserStatusText, BillTypeText, BillValidatorStatusText, ButtonStatus, CANCEL_ALL_RELAY_VALUE, CLogItPipe, COLORS, CREDIT_CARD_POSTFIX_LENGTH, CalculatorModule, CalculatorState, CanDeactivateService, CassetteStatusText, CentToCoinPipe, ChangeLanguageAction, ChangePasswordAction, CleanLogoAction, ClearActionReasonsAction, ClearAlertsAction, ClearCalculatorPriceAction, ClearCategoriesAction, ClearDeviceAction, ClearDeviceEventsExpanded, ClearDevicesAction, ClearEventActivitiesExpanded, ClearFacilityDictionaryAction, ClearGroupsAction, ClearGuestAction, ClearGuestProfilesAction, ClearGuestsListAction, ClearHandledGuest, ClearInactiveSelectedParkAction, ClearJobTitlesAction, ClearLocateTicketSearchAction, ClearLocatedTicketAction, ClearLprTransactionsExpanded, ClearMacroCommandsAction, ClearParkerAction, ClearSearchResultsAction, ClearSearchTermAction, ClearSearchTicketAction, ClearSelectedFacilityAction, ClearSelectedParkAction, ClearSelectedRow, ClearSelectedSmartparkAction, ClearSmartparksBasicAction, ClearSpAndSparkVersionsAction, ClearSuspendedParkActivitiesAction, ClearUsersAction, ClearValidationTypesAction, ClearZonesAction, ClearZsAction, cloudServiceProxies as Cloud, CloudConfirmDialogComponent, CofCredentialSubTypeText, CoinStatusText, CollapsedGuestsByBatchIdAction, ComAggregatedStatus, ComAggregatedStatusText, ComStatusIconComponent, CommandCenterModuleResolver, CommandNotificationBorderClass, CommandNotificationComponent, CommandNotificationDisplayCase, CommandNotificationService, CommandNotificationType, CommandsLocalizationKey, CommonPagesModule, CompanyService, ConfigResolver, ConnectSmartparkAction, ContainerRefDirective, CoreEntities, CouponSearchFieldSelectorText, CreateBasicBatchAction, CreateBasicGuestAction, CreateBatchAction, CreateGuestAction, CreateOrUpdateSMTPDetailsAction, CredentialTypeText, CreditCardTypeText, CrudOperationText, CurlyToBoldPipe, DATA_IMAGE_BASE64_PREFIX, DATA_IMAGE_BASE64_SVG_PREFIX, DEFAULT_DATE_FORMAT, DEFAULT_MINUMIM_LENGTH, 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, DataQaAttribute, DateService, DateValidityText, DaysText, DecimalToAmountPipe, DecimalToCurrencyPipe, 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, ENGLISH_LANGUAGE, ENVIRONMENT, EXPIRATION_MONTH_OPTIONS, edgeServiceProxies as Edge, EditUserAction, ElectronicWalletPaymentMethodTypesText, EllipsisMultilineDirective, EmailServerModule, EmailServerState, EmptyResultsComponent, Enable2FAAction, EnumsToArrayPipe, EnvironmentModeText, ErrorPageComponent, ErrorPageResolver, ExceedingBehaviorTypeText, ExpandGuestsByBatchIdAction, ExportFileService, ExportGuestsAction, ExportSmartparkAction, FONT_BASE64, FacilityChangedAction, FacilityMenuService, FacilityModule, FacilityRemoteCommandExecutedAction, FacilityRemoteCommandTypesIcon, FacilityRemoteCommandsLocalizationKey, FacilityRemoteCommandsMenuItems, FacilityService, FacilityState, FieldLabelComponent, FieldValidationsComponent, FileGenerateMethod, FileService, FilterByDeviceType, FilterDevicesByTypePipe, FilterDevicesByZonePipe, FilterKeysPipe, FilterNumbersPipe, FilterPipe, FlattenedCoreEntities, FloatMessageBarService, ForgotPasswordAction, ForgotPasswordTenantlessAction, FormValidationsComponent, FrequentParkingActionText, FrequentParkingErrorActionText, GATE_STATE_VALUE, GeneralActionService, GenerateSearchParamsDto, GetAllLocalizationsAction, GetLogoAction, GlobalErrorService, GlobalMessageContainerComponent, GroupPermissionsPipe, GuestModule, GuestSearchFieldSelectorText, GuestState, GuestTypeCastText, GuestTypesText, HOUR_FORMAT_12, HOUR_FORMAT_24, HOUR_FORMAT_FULL_DAY, HandleAlertAction, HasActionErrored, HealthAction, HoldRelayMode, HoldRelayModeText, HopperStatusText, HotelGuestSearchFieldSelectorText, HttpCancelBlackListUrls, HttpCancelInterceptor, HttpCancelService, INPUT_SEARCH_DEBOUNCE_TIME, INPUT_SEARCH_DEBOUNCE_TIME_LOW, INPUT_SEARCH_DEBOUNCE_TIME_MEDIUM, IconColumnComponent, IconComponent, IconModule, IconsHelper, IconsHelperText, identityServiceProxies as Identity, InitAddSmartparkConnectionAction, InitSMTPDetailsAction, InitSessionFromLocalStorageAction, InitSmartparkTransportAction, InternetConnectionService, InternetConnectionStatus, IsActionExecuting, IsEllipsisDirective, LOCAL_ENGLISH_LANGUAGE, LOCATION_OPTIONS, LOGGED_TENANT_KEY, LanguageTypeKeys, LayoutModule, LayoutState, LoadActionReasonsAction, LoadAlertsAction, LoadAppConfigurationAction, LoadCalculatorPriceAction, LoadCategoriesAction, LoadDeviceAction, LoadDeviceEventActivitiesAction, LoadDeviceEventsAction, LoadDeviceEventsCollapse, LoadDeviceLprTransactionsAction, LoadDeviceStatusAction, LoadDevicesAction, LoadEventActivitiesCollapse, LoadFacilityAction, LoadFacilityRemoteCommandsRefAction, LoadGroupsAction, LoadGuestByIdAction, LoadGuestProfilesAction, LoadGuestsAction, LoadGuestsByBatchIdAction, LoadGuestsByBatchIdCancelledAction, LoadJobTitlesAction, LoadLocateTicketSearchAction, LoadLocatedTicketAction, LoadLprTransactionsCollapse, LoadMacroCommandsAction, LoadOverflowPriceTableAction, LoadParkActivitiesAction, LoadParkDevicesAction, LoadParkerAction, LoadParkersAction, LoadParkingLotAction, LoadParksAction, LoadRateByIdAction, LoadRatesAction, LoadRemoteCommandsRefAction, LoadSMTPDetailsAction, LoadSelectedDeviceAction, LoadSmartparksAction, LoadSmartparksBasicAction, LoadSmartparksTableAction, LoadSpAndSparkVersionsAction, LoadStickerPriceTableAction, LoadTicketNumParkersAction, LoadTransientPriceTableAction, LoadUserPermissionsAction, LoadUsersAction, LoadValidationTypeAction, LoadVarsAction, LoadZonesAction, LoadZsAction, LoadingOverlayComponent, LocalStorageMigrator, LocalStorageService, Localization, LocalizationModule, LocalizationResolver, LocalizationService, LocalizationState, LoginModule, LoginRequestAction, LoginService, LoginState, LoginSuccess, LogoComponent, LogoState, LogoutAction, LogoutMobileAction, LoopStatus, LowerCaseUrlSerializer, LprTransactionsChangedAction, LprTransactionsOptionsText, LprTransactionsSearchFieldSelectorText, MAX_ALLOWED_BADGE_VALUE, MAX_ALLOWED_CURRENT_BALANCE, MAX_ALLOWED_DEDUCTION_VALUE, MAX_ALLOWED_IDENTIFIER_VALUE, MAX_ALLOWED_STARTING_PURSE_VALUE, MAX_CARDS, MAX_CAR_PLATES, MAX_EXPORT_RECORDS, MAX_HOTEL_ROOM_NUMBER_LENGTH, MAX_INT16_VALUE, MAX_INT32_VALUE, MAX_INTEGER_VALUE, MAX_LENGTH_BATCH_NAME, MAX_LENGTH_DESCRIPTION, MAX_LENGTH_FOOTER, MAX_LENGTH_LEFT, MAX_LENGTH_LEFT_BACKWARD_COMPATIBILITY, MAX_LENGTH_MANUAL_TEXT, MAX_LENGTH_NAME_30, MAX_LENGTH_NAME_50, MAX_LENGTH_QUANTITY, MAX_LENGTH_SERACH_TERM, MAX_MOBILE_LENGTH, MAX_NUMBER_OF_NIGHTS, MAX_NUMBER_OF_ROW_IN_MENU, 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, MC_READER_ID, MESSAGE_BAR_DEFAULT_ID, MINIMUM_DROPDOWN_RESULTS_WITHOUT_SEARCH, MINIMUM_LENGTH_OPTIONS, MINUTES_PER_HOUR, MIN_LENGTH_QUANTITY, MIN_NUMBER_OF_ROW_IN_MENU, MOBILE_REFRESH_INFO, MSALGuardConfigFactory, MSALInstanceFactory, MSALInterceptorConfigFactory, MSLAuthService, MULTIPLE, MainModuleToSubModulesPermissionTypeMap, MenuAppModuleLoadAction, MenuClearAction, MenuLoadAction, MenuService, MenuSubModuleClearAction, MenuSubModuleLoadAction, MessageBarComponent, MessageBarContainerComponent, MessageBarModule, MessageBarPosition, MessageBarService, MessageBarStatus, MiddayPeriod, MobileAppSectionLabel, MobileAuthenticateMultipleTenantsAction, ModalButtonsWrapperComponent, ModalService, ModuleGuard, ModuleMenuBaseComponent, MonthlyRenewalSettingsActionTypesText, MonthlyRenewalSettingsActionTypesValueText, MonthlySearchFieldSelectorText, MslEventType, NONE_ACTIVE_BYTE, NONE_USER_ID, NO_RESULT, NativeElementInjectorDirective, NotSupportedBrowserGuard, NotSupportedBrowserPageComponent, NotificationClass, NotificationCloseAllButtonComponent, NotificationEventService, NotificationHPositions, NotificationModule, NotificationService, NotificationVPositions, ONE_DAY_IN_MINUTES_VALUE, ONE_SECOND_IN_MILLISECONDS, OffScreenDirective, OpenIdAuthInitializeService, OpenIdAuthService, OpenIdAutheticateAction, Operator, OrderBy, OrderByPipe, OrderDirection$1 as OrderDirection, OrphanFacilitiesPipe, PARKER_SEARCH_AUTO_REDIRECT, PASSWORD_EXPIRED, PERIOD_TIME, PREVENT_CLICK_ELEMENT_CLASSES, ParkActivitiesModule, ParkActivitiesState, ParkActivityChangedAction, ParkConnectionStatus, ParkConnectionStatusClass, ParkConnectionStatusText, ParkManagerModule, ParkManagerState, ParkService, ParkTimeService, ParkerSearchTerm, ParkerService, ParkerState, ParkerTagsText, ParkerTypesText, PaymentSearchFieldSelectorText, PaymentServiceTypeText, PaymentsTypesText, PermissionGroupText, PermissionTypeSupportedVersionDictionary, PermissionTypeText, PermissionsService, PrintReceiptAction, ProfileTypeText, REDIRECT_URL, RELAY_2_VALUE, RELAY_3_VALUE, RELAY_4_VALUE, RESET_PASSWORD_EMAIL, RTObjectObject, RateModule, RateState, RealtimeEventService, RealtimeResolver, ReceiptGeneratedAction, RefreshTokenService, RelayStatus, ReloadParkerAction, RemoteCommandService, RemoteCommandTypesIcon, RemoteValidationModule, RemoteValidationState, ReportCategories, ReportCategoriesText, ReportMethodDictionary, ReportSectionMenu, ResendPendingAdminInvitationsAction, ResendUserInvitationAction, ResetRatesAction, RevenueService, RouteService, RowOperation, 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, SetAlertsConfigAction, SetBasicMenuAction, SetDeviceEventsExpanded, SetDeviceRemoteCommandsMapAction, SetDeviceStatusAction, SetDeviceViewModeAction, SetEventActivitiesExpanded, SetFacilityRemoteCommandsMapAction, SetGuestsAction, SetLprTransactionsExpanded, SetMobileModeAction, SetParkActivitiesAction, SetPasswordAction, SetRealTimeEventStatusAction, SetSearchTermAction, SetSelectedParkAction, SetSmartParkAction, SetSmartParkTableAction, SetSmartParkVersionsAction, SetSmartparkBasicAction, SetSmartparkBasicAllAction, SetStateAction, SetTFASetupAction, SetTenantUserAction, SetTicketIdentifierAction, SetUserNameAction, SetUserStatusAction, SetUsersAction, SetkeepMeLoggedInAction, SharedComponentsModule, SharedDirectivesModule, SharedModule, SharedPipesModule, SideNavSortBy, SidenavModule, SidenavState, SignalR, SignalRExceededRetriesAction, 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, UpdateBasicGuestAction, UpdateBasicGuestTempAction, UpdateDocumentAction, UpdateGuestAction, UpdateGuestLocationAction, UpdateMobileMode, UpdateSmartparkAction, UpdateTenantInfoProps, UpdateTenantSingleSignOnAction, UpdateTicketPlateIdAction, UpdateUserAlertsPreferencesAction, UpdateUserSettingsAction, UpdateUserSettingsInSessionAction, UploadLogoAction, UserCreationType, UserModule, UserSettingsModule, UserSettingsState, UserState, VALID_TIME_MAX_LENGTH, VERSION_10_1_0, VERSION_10_2_0, VERSION_10_2_1, VERSION_10_3_0, VERSION_10_4_0, VERSION_7_4_0, VERSION_7_4_1, VERSION_8_1_0, VERSION_8_2_0, VERSION_8_3_0, VERSION_8_4_0, VERSION_9_1_0, VERSION_9_2_0, VERSION_9_2_2, VERSION_9_3_0, VERSION_9_4_0, VGuestWithBatchTableData, ValidateUserTokenAction, ValidationService, ValidationStickerType, ValidationTypeModule, ValidationTypeState, VarDirective, Verify2FactorAuthenticationAction, VersionResolver, VirtualValidationStatusText, WrapFnPipe, ZerofyNegativePipe, ZoneChangedAction, accountModuleAnimation, adjustForTimezone, allowSpecialKeys, alphanumericRegex, appModuleAnimation, areDatesIdentical, areVersionsCompatible, arrayEquals, arraysAreDifferent, baseReduce, blobToBase64, buildMessageInfos, buildMessages, camelize, canceled, capitalizeFirstLetter, 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, findParentElement, findParentElementDimensions, findParentRoute, findParentRouteConfig, flattenByKey, formatMinutesToTimeNumber, formatTimeToMinutes, formatTimeWithMidnight, formatTimeWithSeparator, formatTimeWithoutMidnight, formatTimeWithoutSeparator, formatTimeWithoutSeperatorAndWithMidnight, formatTimeWithoutSeperatorAndWithoutMidnight, getActivatedRoutePathSegment, getAddress, getCurrentLang, getDateTimeInSeconds, getDateWithoutTime, getDefaultDeviceStatus, getMomenWithTime, getMomentNullable, getMomentWithoutTime, getNavigationRoute, getObjectMetadata, getParkerTypesText, getPasswordMinimalLength, getTooltipTextByParkerType, getUserTimeZone, getUtcMomentNullable, hasRequiredField, hasValue, humanizeTimeElapsed, humanizeUtcTimeElapsed, identity, initializeMsal, initializeOpenId, integerNumberRegex, integerPositiveNumberRegex, isBoolean, isCharacterLengthValid, 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, navigateToForbiddenAccessPage, navigateToNotSupportedBrowserPage, noEmojiRegex, notificationAnimation, numberWithLeadingZero, ofStatus, omitKeys, openBackgroundIframe, openCloseFiltersAnimation, parkerEnumToText, parseApiErrorData, parseApiErrorMessage, parseDateTimeToSparkParkTime, parseSmartParkTime, passwordRegex, percentageRegex, printStackTrace, readjustForTimezone, regexExp, remoteCommandLocalizationMap, replaceAll, searchBarPopupAnimation, setErrorMessage, shortDaysTranslation, sleep, slideFromBottom, slideFromRight, slideFromUp, slideUpDown, successful, timeToMinutes, timeToMoment, toInt, toNumberMap, toStringMap, wrapConstructor };
|
|
91175
91963
|
//# sourceMappingURL=tiba-spark-client-shared-lib.mjs.map
|