resqueserve-core 4.0.0-238

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/main.js ADDED
@@ -0,0 +1,1156 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UserInterfaceDefaults = exports.UrlDefaults = exports.SIMDispatcherDefaults = exports.SignalRDefaults = exports.GISDefaults = exports.DayOfWeek = exports.WorkplaceStatus = exports.UnitStatusNonPersistent = exports.UnitStatus = exports.UnitEquipment = exports.UnitDutyOptions = exports.UnitDoctorOption = exports.UnitDispatchOption = exports.UnitCategory = exports.TaskStatus = exports.TaskExecution = exports.TaskConditionOperator = exports.TaskConditionField = exports.StatuspageDisplayOption = exports.Sound = exports.SessionWebhookMethod = exports.SessionState = exports.SessionEventType = exports.ProblemInformation = exports.PoiHospitalDepartment = exports.PoiCategory = exports.OperationStatus = exports.OperationPriority = exports.OperationEventCategory = exports.NotificationCategory = exports.MissionCategory = exports.LocationAccuracy = exports.GeoProvider = exports.Gender = exports.DispatchGroupAvailabilityState = exports.DateTimeFormat = exports.Country = exports.CommandcenterOption = exports.CommandcenterClassification = exports.CommandcenterCategory = void 0;
4
+ var CommandcenterCategory;
5
+ (function (CommandcenterCategory) {
6
+ CommandcenterCategory[CommandcenterCategory["AerztlicherBereitschaftsdienst"] = 0] = "AerztlicherBereitschaftsdienst";
7
+ CommandcenterCategory[CommandcenterCategory["Einsatzleitstelle"] = 1] = "Einsatzleitstelle";
8
+ CommandcenterCategory[CommandcenterCategory["Feuerwehreinsatzzentrale"] = 2] = "Feuerwehreinsatzzentrale";
9
+ CommandcenterCategory[CommandcenterCategory["IntegrierteLeitstelle"] = 3] = "IntegrierteLeitstelle";
10
+ CommandcenterCategory[CommandcenterCategory["IntegrierteRegionalleitstelle"] = 4] = "IntegrierteRegionalleitstelle";
11
+ CommandcenterCategory[CommandcenterCategory["KantonaleNotrufzentrale"] = 5] = "KantonaleNotrufzentrale";
12
+ CommandcenterCategory[CommandcenterCategory["KommunaleRegionalleitstelle"] = 6] = "KommunaleRegionalleitstelle";
13
+ CommandcenterCategory[CommandcenterCategory["KoordinationszentralefuerIntensivtransporthubschrauber"] = 7] = "KoordinationszentralefuerIntensivtransporthubschrauber";
14
+ CommandcenterCategory[CommandcenterCategory["Koordinierungsstelle"] = 8] = "Koordinierungsstelle";
15
+ CommandcenterCategory[CommandcenterCategory["KoordinierungsstellefuerspezielleSekundaertransporte"] = 9] = "KoordinierungsstellefuerspezielleSekundaertransporte";
16
+ CommandcenterCategory[CommandcenterCategory["Kreisleitstelle"] = 10] = "Kreisleitstelle";
17
+ CommandcenterCategory[CommandcenterCategory["Leitfunkstelle"] = 11] = "Leitfunkstelle";
18
+ CommandcenterCategory[CommandcenterCategory["Leitstelle"] = 12] = "Leitstelle";
19
+ CommandcenterCategory[CommandcenterCategory["RettungsUndFeuerwehrleitstelle"] = 13] = "RettungsUndFeuerwehrleitstelle";
20
+ CommandcenterCategory[CommandcenterCategory["Rettungsleitstelle"] = 14] = "Rettungsleitstelle";
21
+ CommandcenterCategory[CommandcenterCategory["ZentralefuerKrankenbefoerderungundNotfallservice"] = 15] = "ZentralefuerKrankenbefoerderungundNotfallservice";
22
+ CommandcenterCategory[CommandcenterCategory["ZentraleKoordinierungsstelle"] = 16] = "ZentraleKoordinierungsstelle";
23
+ CommandcenterCategory[CommandcenterCategory["ZentraleLeitstelle"] = 17] = "ZentraleLeitstelle";
24
+ CommandcenterCategory[CommandcenterCategory["KooperativeLeitstelle"] = 18] = "KooperativeLeitstelle";
25
+ CommandcenterCategory[CommandcenterCategory["RescueCoordinationCentre"] = 19] = "RescueCoordinationCentre";
26
+ CommandcenterCategory[CommandcenterCategory["KooperativeRegionalleitstelle"] = 20] = "KooperativeRegionalleitstelle";
27
+ CommandcenterCategory[CommandcenterCategory["Bezirksalarmzentrale"] = 21] = "Bezirksalarmzentrale";
28
+ })(CommandcenterCategory || (exports.CommandcenterCategory = CommandcenterCategory = {}));
29
+ var CommandcenterClassification;
30
+ (function (CommandcenterClassification) {
31
+ CommandcenterClassification[CommandcenterClassification["F"] = 0] = "F";
32
+ CommandcenterClassification[CommandcenterClassification["E"] = 1] = "E";
33
+ CommandcenterClassification[CommandcenterClassification["D"] = 2] = "D";
34
+ CommandcenterClassification[CommandcenterClassification["C"] = 3] = "C";
35
+ CommandcenterClassification[CommandcenterClassification["B"] = 4] = "B";
36
+ CommandcenterClassification[CommandcenterClassification["A"] = 5] = "A";
37
+ })(CommandcenterClassification || (exports.CommandcenterClassification = CommandcenterClassification = {}));
38
+ var CommandcenterOption;
39
+ (function (CommandcenterOption) {
40
+ /**
41
+ * Specifies that Status 6 will be only set by the command center, not by units.
42
+ *
43
+ */
44
+ CommandcenterOption[CommandcenterOption["Status6IsSetByCommandcenter"] = 1] = "Status6IsSetByCommandcenter";
45
+ /**
46
+ * Restricts units to always use Status 5 for making speak requests.
47
+ *
48
+ */
49
+ CommandcenterOption[CommandcenterOption["UnitsUseOnlyStatus5ForSpeakRequest"] = 2] = "UnitsUseOnlyStatus5ForSpeakRequest";
50
+ /**
51
+ * Enables doctors to use sirens when assigned Status 7.
52
+ *
53
+ */
54
+ CommandcenterOption[CommandcenterOption["DoctorUsesSirenWithStatus7"] = 3] = "DoctorUsesSirenWithStatus7";
55
+ /**
56
+ * Ensures units are suggested in dispatch operations when they reach Status 8.
57
+ *
58
+ */
59
+ CommandcenterOption[CommandcenterOption["UnitsWillBeSuggestedInStatus8"] = 4] = "UnitsWillBeSuggestedInStatus8";
60
+ /**
61
+ * Requires units to verbally inform the dispatch center of their transport destination.
62
+ *
63
+ */
64
+ CommandcenterOption[CommandcenterOption["UnitsTellPatientDestinationVerbal"] = 5] = "UnitsTellPatientDestinationVerbal";
65
+ /**
66
+ * Mandates the use of verbal call signs for all communications.
67
+ *
68
+ */
69
+ CommandcenterOption[CommandcenterOption["AlwaysUseVerbalCallSign"] = 6] = "AlwaysUseVerbalCallSign";
70
+ /**
71
+ * Includes keyword equipment in suggestions even if a dispatch order is used.
72
+ *
73
+ */
74
+ CommandcenterOption[CommandcenterOption["IncludeKeywordEquipmentEvenIfDispatchOrderFound"] = 8] = "IncludeKeywordEquipmentEvenIfDispatchOrderFound";
75
+ /**
76
+ * Initiates sessions assuming regular ambulance service unless specified otherwise.
77
+ *
78
+ */
79
+ CommandcenterOption[CommandcenterOption["StartSessionWithAmbulanceRegular"] = 9] = "StartSessionWithAmbulanceRegular";
80
+ /**
81
+ * Disables automatic creation of operations upon call acceptance.
82
+ *
83
+ */
84
+ CommandcenterOption[CommandcenterOption["IsCreateOperationOnCallAcceptDisabled"] = 10] = "IsCreateOperationOnCallAcceptDisabled";
85
+ /**
86
+ * Uses known points of interest as the default operation location for calls.
87
+ *
88
+ */
89
+ CommandcenterOption[CommandcenterOption["OperationLocationFromCallKnownPoi"] = 11] = "OperationLocationFromCallKnownPoi";
90
+ /**
91
+ * Allows the use of unknown points of interest for determining operation locations.
92
+ *
93
+ */
94
+ CommandcenterOption[CommandcenterOption["OperationLocationFromCallUnknownPoi"] = 12] = "OperationLocationFromCallUnknownPoi";
95
+ /**
96
+ * Uses the caller's address as the operation location by default.
97
+ *
98
+ */
99
+ CommandcenterOption[CommandcenterOption["OperationLocationFromCallAddress"] = 13] = "OperationLocationFromCallAddress";
100
+ CommandcenterOption[CommandcenterOption["UnitsDriveToStandbyPositionInStatus3"] = 14] = "UnitsDriveToStandbyPositionInStatus3";
101
+ CommandcenterOption[CommandcenterOption["UnitsDriveBackToStandbyPositionUntilAbortSend"] = 15] = "UnitsDriveBackToStandbyPositionUntilAbortSend";
102
+ })(CommandcenterOption || (exports.CommandcenterOption = CommandcenterOption = {}));
103
+ var Country;
104
+ (function (Country) {
105
+ Country[Country["NotSet"] = 0] = "NotSet";
106
+ Country[Country["Germany"] = 1] = "Germany";
107
+ Country[Country["Austria"] = 2] = "Austria";
108
+ Country[Country["Switzerland"] = 3] = "Switzerland";
109
+ Country[Country["Netherlands"] = 4] = "Netherlands";
110
+ Country[Country["UnitedKingdom"] = 5] = "UnitedKingdom";
111
+ Country[Country["UnitedStatesOfAmerica"] = 6] = "UnitedStatesOfAmerica";
112
+ Country[Country["France"] = 7] = "France";
113
+ Country[Country["Poland"] = 8] = "Poland";
114
+ Country[Country["Italy"] = 9] = "Italy";
115
+ Country[Country["Spain"] = 10] = "Spain";
116
+ })(Country || (exports.Country = Country = {}));
117
+ var DateTimeFormat;
118
+ (function (DateTimeFormat) {
119
+ DateTimeFormat[DateTimeFormat["DayFormat"] = 0] = "DayFormat";
120
+ DateTimeFormat[DateTimeFormat["HourFormat"] = 1] = "HourFormat";
121
+ DateTimeFormat[DateTimeFormat["JustNow"] = 2] = "JustNow";
122
+ DateTimeFormat[DateTimeFormat["MinuteFormat"] = 3] = "MinuteFormat";
123
+ DateTimeFormat[DateTimeFormat["MonthFormat"] = 4] = "MonthFormat";
124
+ DateTimeFormat[DateTimeFormat["YearFormat"] = 5] = "YearFormat";
125
+ })(DateTimeFormat || (exports.DateTimeFormat = DateTimeFormat = {}));
126
+ var DispatchGroupAvailabilityState;
127
+ (function (DispatchGroupAvailabilityState) {
128
+ /**
129
+ * The dispatch group is unavailable.
130
+ *
131
+ */
132
+ DispatchGroupAvailabilityState[DispatchGroupAvailabilityState["Unavailable"] = 0] = "Unavailable";
133
+ /**
134
+ * The dispatch group is partially available.
135
+ *
136
+ */
137
+ DispatchGroupAvailabilityState[DispatchGroupAvailabilityState["PartiallyAvailable"] = 1] = "PartiallyAvailable";
138
+ /**
139
+ * The dispatch group is fully available.
140
+ *
141
+ */
142
+ DispatchGroupAvailabilityState[DispatchGroupAvailabilityState["FullyAvailable"] = 2] = "FullyAvailable";
143
+ })(DispatchGroupAvailabilityState || (exports.DispatchGroupAvailabilityState = DispatchGroupAvailabilityState = {}));
144
+ var Gender;
145
+ (function (Gender) {
146
+ /**
147
+ * Represents the male gender.
148
+ *
149
+ */
150
+ Gender[Gender["Male"] = 0] = "Male";
151
+ /**
152
+ * Represents the female gender.
153
+ *
154
+ */
155
+ Gender[Gender["Female"] = 1] = "Female";
156
+ /**
157
+ * Represents a non-binary gender.
158
+ *
159
+ */
160
+ Gender[Gender["NonBinary"] = 2] = "NonBinary";
161
+ })(Gender || (exports.Gender = Gender = {}));
162
+ var GeoProvider;
163
+ (function (GeoProvider) {
164
+ GeoProvider[GeoProvider["Mapbox"] = 0] = "Mapbox";
165
+ GeoProvider[GeoProvider["TomTom"] = 1] = "TomTom";
166
+ GeoProvider[GeoProvider["Bing"] = 2] = "Bing";
167
+ GeoProvider[GeoProvider["Google"] = 3] = "Google";
168
+ GeoProvider[GeoProvider["Here"] = 4] = "Here";
169
+ })(GeoProvider || (exports.GeoProvider = GeoProvider = {}));
170
+ var LocationAccuracy;
171
+ (function (LocationAccuracy) {
172
+ LocationAccuracy[LocationAccuracy["NotSet"] = 0] = "NotSet";
173
+ LocationAccuracy[LocationAccuracy["District"] = 1] = "District";
174
+ LocationAccuracy[LocationAccuracy["Street"] = 2] = "Street";
175
+ LocationAccuracy[LocationAccuracy["HouseNumber"] = 3] = "HouseNumber";
176
+ LocationAccuracy[LocationAccuracy["Object"] = 4] = "Object";
177
+ })(LocationAccuracy || (exports.LocationAccuracy = LocationAccuracy = {}));
178
+ var MissionCategory;
179
+ (function (MissionCategory) {
180
+ /**
181
+ * Represents a standard non-urgent ambulance transport mission.
182
+ *
183
+ */
184
+ MissionCategory[MissionCategory["AmbulanceRegular"] = 1] = "AmbulanceRegular";
185
+ /**
186
+ * Denotes an urgent ambulance mission requiring rapid response.
187
+ *
188
+ */
189
+ MissionCategory[MissionCategory["AmbulanceUrgent"] = 2] = "AmbulanceUrgent";
190
+ /**
191
+ * Indicates an urgent ambulance mission that also requires a doctor on board.
192
+ *
193
+ */
194
+ MissionCategory[MissionCategory["AmbulanceUrgentWithDoctor"] = 3] = "AmbulanceUrgentWithDoctor";
195
+ /**
196
+ * Refers to a mission for transferring a patient requiring intensive care unit (ICU) support.
197
+ *
198
+ */
199
+ MissionCategory[MissionCategory["IcuTransfer"] = 4] = "IcuTransfer";
200
+ /**
201
+ * Encompasses missions related to fire incidents and rescue operations.
202
+ *
203
+ */
204
+ MissionCategory[MissionCategory["FireAndRescue"] = 5] = "FireAndRescue";
205
+ })(MissionCategory || (exports.MissionCategory = MissionCategory = {}));
206
+ var NotificationCategory;
207
+ (function (NotificationCategory) {
208
+ /**
209
+ * Represents an informational notification.
210
+ *
211
+ */
212
+ NotificationCategory[NotificationCategory["Information"] = 0] = "Information";
213
+ /**
214
+ * Notification indicating a change in unit status.
215
+ *
216
+ */
217
+ NotificationCategory[NotificationCategory["UnitStatusChange"] = 1] = "UnitStatusChange";
218
+ /**
219
+ * Notification indicating a unit dispatch.
220
+ *
221
+ */
222
+ NotificationCategory[NotificationCategory["UnitDispatch"] = 2] = "UnitDispatch";
223
+ /**
224
+ * Notification for a unit's speak request.
225
+ *
226
+ */
227
+ NotificationCategory[NotificationCategory["UnitSpeakRequest"] = 3] = "UnitSpeakRequest";
228
+ /**
229
+ * Urgent notification for a unit's speak request.
230
+ *
231
+ */
232
+ NotificationCategory[NotificationCategory["UnitSpeakRequestUrgent"] = 4] = "UnitSpeakRequestUrgent";
233
+ /**
234
+ * Notification indicating a change in workplace.
235
+ *
236
+ */
237
+ NotificationCategory[NotificationCategory["WorkplaceChanged"] = 5] = "WorkplaceChanged";
238
+ /**
239
+ * Notification triggered by a fire alarm system.
240
+ *
241
+ */
242
+ NotificationCategory[NotificationCategory["TriggeredFireAlarmSystem"] = 6] = "TriggeredFireAlarmSystem";
243
+ /**
244
+ * Reminder notification for a scheduled pick-up.
245
+ *
246
+ */
247
+ NotificationCategory[NotificationCategory["ScheduledPickUpReminder"] = 7] = "ScheduledPickUpReminder";
248
+ /**
249
+ * Notification containing a server message.
250
+ *
251
+ */
252
+ NotificationCategory[NotificationCategory["ServerMessage"] = 8] = "ServerMessage";
253
+ /**
254
+ * Notification indicating an open task.
255
+ *
256
+ */
257
+ NotificationCategory[NotificationCategory["OpenTask"] = 9] = "OpenTask";
258
+ })(NotificationCategory || (exports.NotificationCategory = NotificationCategory = {}));
259
+ var OperationEventCategory;
260
+ (function (OperationEventCategory) {
261
+ /**
262
+ * Indicates that the operation was created.
263
+ *
264
+ */
265
+ OperationEventCategory[OperationEventCategory["Created"] = 0] = "Created";
266
+ /**
267
+ * Represents a change in a property of the operation.
268
+ *
269
+ */
270
+ OperationEventCategory[OperationEventCategory["ChangedProperty"] = 1] = "ChangedProperty";
271
+ /**
272
+ * Represents a suggestion for unit assignment within the operation.
273
+ *
274
+ */
275
+ OperationEventCategory[OperationEventCategory["UnitSuggestion"] = 2] = "UnitSuggestion";
276
+ /**
277
+ * Indicates that a dispatch action occurred within the operation.
278
+ *
279
+ */
280
+ OperationEventCategory[OperationEventCategory["Dispatch"] = 3] = "Dispatch";
281
+ /**
282
+ * Represents a status update for a unit involved in the operation.
283
+ *
284
+ */
285
+ OperationEventCategory[OperationEventCategory["UnitStatus"] = 4] = "UnitStatus";
286
+ /**
287
+ * Represents a task-related event within the operation.
288
+ *
289
+ */
290
+ OperationEventCategory[OperationEventCategory["Task"] = 5] = "Task";
291
+ })(OperationEventCategory || (exports.OperationEventCategory = OperationEventCategory = {}));
292
+ var OperationPriority;
293
+ (function (OperationPriority) {
294
+ /**
295
+ * The priority has not been set, indicating an undefined or initial state.
296
+ *
297
+ */
298
+ OperationPriority[OperationPriority["NotSet"] = 0] = "NotSet";
299
+ /**
300
+ * Low priority - situations that do not pose immediate threats to life, health, property, or the environment. These are routine operations or minor incidents requiring standard, non-urgent responses.
301
+ *
302
+ */
303
+ OperationPriority[OperationPriority["Low"] = 1] = "Low";
304
+ /**
305
+ * Medium priority - incidents that could potentially escalate in severity but do not currently pose an immediate threat to life or property. Requires coordinated response to prevent escalation.
306
+ *
307
+ */
308
+ OperationPriority[OperationPriority["Medium"] = 2] = "Medium";
309
+ /**
310
+ * High priority - incidents that pose immediate and significant threats to life, health, property, or the environment. Such emergencies require a rapid and comprehensive response to mitigate impacts.
311
+ *
312
+ */
313
+ OperationPriority[OperationPriority["High"] = 3] = "High";
314
+ /**
315
+ * Critical priority - the highest level of emergency, typically involving severe and widespread impact. Demands an immediate response and often requires significant resources and coordination among multiple agencies, with sustained efforts in recovery and mitigation.
316
+ *
317
+ */
318
+ OperationPriority[OperationPriority["Critical"] = 4] = "Critical";
319
+ })(OperationPriority || (exports.OperationPriority = OperationPriority = {}));
320
+ var OperationStatus;
321
+ (function (OperationStatus) {
322
+ /**
323
+ * Created - The operation has been initiated but planning and resource allocation have not yet begun.
324
+ *
325
+ */
326
+ OperationStatus[OperationStatus["Created"] = 0] = "Created";
327
+ /**
328
+ * Planned - The operation has been scheduled and necessary preparations are set, such as setting a date.
329
+ *
330
+ */
331
+ OperationStatus[OperationStatus["Planned"] = 1] = "Planned";
332
+ /**
333
+ * DispatchRequired - The operation is ready to proceed but requires dispatching of resources or personnel.
334
+ *
335
+ */
336
+ OperationStatus[OperationStatus["DispatchRequired"] = 2] = "DispatchRequired";
337
+ /**
338
+ * Dispatched - Resources and personnel have been dispatched to the operation site.
339
+ *
340
+ */
341
+ OperationStatus[OperationStatus["Dispatched"] = 3] = "Dispatched";
342
+ /**
343
+ * AllResourcesOut - All resources have been withdrawn from the scene, indicating that active management of the scene has ended.
344
+ *
345
+ */
346
+ OperationStatus[OperationStatus["AllResourcesOut"] = 4] = "AllResourcesOut";
347
+ /**
348
+ * Finished - The operation has been officially closed or marked as completed by the dispatcher.
349
+ *
350
+ */
351
+ OperationStatus[OperationStatus["Finished"] = 5] = "Finished";
352
+ })(OperationStatus || (exports.OperationStatus = OperationStatus = {}));
353
+ var PoiCategory;
354
+ (function (PoiCategory) {
355
+ PoiCategory[PoiCategory["PickupPoint"] = 0] = "PickupPoint";
356
+ PoiCategory[PoiCategory["NursingHome"] = 1] = "NursingHome";
357
+ PoiCategory[PoiCategory["OutpatientCenter"] = 2] = "OutpatientCenter";
358
+ PoiCategory[PoiCategory["Highway"] = 3] = "Highway";
359
+ PoiCategory[PoiCategory["RailroadCrossing"] = 4] = "RailroadCrossing";
360
+ PoiCategory[PoiCategory["BankBranch"] = 5] = "BankBranch";
361
+ PoiCategory[PoiCategory["Farm"] = 6] = "Farm";
362
+ PoiCategory[PoiCategory["BurialSite"] = 7] = "BurialSite";
363
+ PoiCategory[PoiCategory["BloodBank"] = 8] = "BloodBank";
364
+ PoiCategory[PoiCategory["DialysisCenter"] = 9] = "DialysisCenter";
365
+ PoiCategory[PoiCategory["Nightclub"] = 10] = "Nightclub";
366
+ PoiCategory[PoiCategory["ShoppingCenter"] = 11] = "ShoppingCenter";
367
+ PoiCategory[PoiCategory["LongDistanceTrainStation"] = 12] = "LongDistanceTrainStation";
368
+ PoiCategory[PoiCategory["FireDepartment"] = 13] = "FireDepartment";
369
+ PoiCategory[PoiCategory["FireStation"] = 14] = "FireStation";
370
+ PoiCategory[PoiCategory["RiverLocksForShips"] = 15] = "RiverLocksForShips";
371
+ PoiCategory[PoiCategory["PublicSwimmingPool"] = 16] = "PublicSwimmingPool";
372
+ PoiCategory[PoiCategory["AmusementPark"] = 17] = "AmusementPark";
373
+ PoiCategory[PoiCategory["SoccerField"] = 18] = "SoccerField";
374
+ PoiCategory[PoiCategory["HospitalityEstablishment"] = 19] = "HospitalityEstablishment";
375
+ PoiCategory[PoiCategory["HouseOfWorship"] = 20] = "HouseOfWorship";
376
+ PoiCategory[PoiCategory["MajorAirport"] = 21] = "MajorAirport";
377
+ PoiCategory[PoiCategory["LargeShoppingCenter"] = 22] = "LargeShoppingCenter";
378
+ PoiCategory[PoiCategory["LargeCompanyOrIndustry"] = 23] = "LargeCompanyOrIndustry";
379
+ PoiCategory[PoiCategory["CraftBusinessOrIndustry"] = 24] = "CraftBusinessOrIndustry";
380
+ PoiCategory[PoiCategory["DeepSeaPort"] = 25] = "DeepSeaPort";
381
+ PoiCategory[PoiCategory["YouthHostel"] = 26] = "YouthHostel";
382
+ PoiCategory[PoiCategory["Prison"] = 27] = "Prison";
383
+ PoiCategory[PoiCategory["Kindergarten"] = 28] = "Kindergarten";
384
+ PoiCategory[PoiCategory["SmallRegionalAirport"] = 29] = "SmallRegionalAirport";
385
+ PoiCategory[PoiCategory["Hospital"] = 30] = "Hospital";
386
+ PoiCategory[PoiCategory["AirRescueCenter"] = 34] = "AirRescueCenter";
387
+ PoiCategory[PoiCategory["OperaHouseTheaterFestivalsMuseums"] = 35] = "OperaHouseTheaterFestivalsMuseums";
388
+ PoiCategory[PoiCategory["LocalOrganizationOrNGO"] = 36] = "LocalOrganizationOrNGO";
389
+ PoiCategory[PoiCategory["ParkLocalGreenArea"] = 37] = "ParkLocalGreenArea";
390
+ PoiCategory[PoiCategory["PoliceStation"] = 38] = "PoliceStation";
391
+ PoiCategory[PoiCategory["RegionalTrainStation"] = 39] = "RegionalTrainStation";
392
+ PoiCategory[PoiCategory["AmbulanceStation"] = 40] = "AmbulanceStation";
393
+ PoiCategory[PoiCategory["CastleOrFortress"] = 41] = "CastleOrFortress";
394
+ PoiCategory[PoiCategory["School"] = 42] = "School";
395
+ PoiCategory[PoiCategory["SwimmingPool"] = 43] = "SwimmingPool";
396
+ PoiCategory[PoiCategory["Lake"] = 44] = "Lake";
397
+ PoiCategory[PoiCategory["SportsArenaOrStadium"] = 45] = "SportsArenaOrStadium";
398
+ PoiCategory[PoiCategory["Beach"] = 46] = "Beach";
399
+ PoiCategory[PoiCategory["RiverBridge"] = 47] = "RiverBridge";
400
+ PoiCategory[PoiCategory["RoadTunnel"] = 48] = "RoadTunnel";
401
+ PoiCategory[PoiCategory["GasStation"] = 49] = "GasStation";
402
+ PoiCategory[PoiCategory["Campsite"] = 50] = "Campsite";
403
+ PoiCategory[PoiCategory["Bridge"] = 51] = "Bridge";
404
+ PoiCategory[PoiCategory["Forest"] = 52] = "Forest";
405
+ PoiCategory[PoiCategory["RidingStable"] = 53] = "RidingStable";
406
+ PoiCategory[PoiCategory["MedicalPractice"] = 54] = "MedicalPractice";
407
+ PoiCategory[PoiCategory["RuralArea"] = 55] = "RuralArea";
408
+ PoiCategory[PoiCategory["RehabilitationClinic"] = 56] = "RehabilitationClinic";
409
+ PoiCategory[PoiCategory["RoadServices"] = 57] = "RoadServices";
410
+ PoiCategory[PoiCategory["EnergyServices"] = 58] = "EnergyServices";
411
+ PoiCategory[PoiCategory["NotSet"] = -1] = "NotSet";
412
+ })(PoiCategory || (exports.PoiCategory = PoiCategory = {}));
413
+ var PoiHospitalDepartment;
414
+ (function (PoiHospitalDepartment) {
415
+ PoiHospitalDepartment[PoiHospitalDepartment["Ophthalmology"] = 0] = "Ophthalmology";
416
+ PoiHospitalDepartment[PoiHospitalDepartment["BurnUnit"] = 1] = "BurnUnit";
417
+ PoiHospitalDepartment[PoiHospitalDepartment["TraumaSurgery"] = 2] = "TraumaSurgery";
418
+ PoiHospitalDepartment[PoiHospitalDepartment["SurgicalIntensiveCare"] = 3] = "SurgicalIntensiveCare";
419
+ PoiHospitalDepartment[PoiHospitalDepartment["CT"] = 4] = "CT";
420
+ PoiHospitalDepartment[PoiHospitalDepartment["Dermatology"] = 5] = "Dermatology";
421
+ PoiHospitalDepartment[PoiHospitalDepartment["HyperbaricChamber"] = 6] = "HyperbaricChamber";
422
+ PoiHospitalDepartment[PoiHospitalDepartment["VascularSurgery"] = 7] = "VascularSurgery";
423
+ PoiHospitalDepartment[PoiHospitalDepartment["Gynecology"] = 8] = "Gynecology";
424
+ PoiHospitalDepartment[PoiHospitalDepartment["ChestPainUnit"] = 9] = "ChestPainUnit";
425
+ PoiHospitalDepartment[PoiHospitalDepartment["EarNoseAndThroat"] = 10] = "EarNoseAndThroat";
426
+ PoiHospitalDepartment[PoiHospitalDepartment["MedicalIntensiveCare"] = 11] = "MedicalIntensiveCare";
427
+ PoiHospitalDepartment[PoiHospitalDepartment["EmergencyDepartment"] = 12] = "EmergencyDepartment";
428
+ PoiHospitalDepartment[PoiHospitalDepartment["Cardiology"] = 13] = "Cardiology";
429
+ PoiHospitalDepartment[PoiHospitalDepartment["DeliveryRoom"] = 14] = "DeliveryRoom";
430
+ PoiHospitalDepartment[PoiHospitalDepartment["MRI"] = 15] = "MRI";
431
+ PoiHospitalDepartment[PoiHospitalDepartment["MaxillofacialSurgery"] = 16] = "MaxillofacialSurgery";
432
+ PoiHospitalDepartment[PoiHospitalDepartment["Neurosurgery"] = 17] = "Neurosurgery";
433
+ PoiHospitalDepartment[PoiHospitalDepartment["Neurology"] = 18] = "Neurology";
434
+ PoiHospitalDepartment[PoiHospitalDepartment["ShockRoom"] = 19] = "ShockRoom";
435
+ PoiHospitalDepartment[PoiHospitalDepartment["NuclearMedicine"] = 20] = "NuclearMedicine";
436
+ PoiHospitalDepartment[PoiHospitalDepartment["Oncology"] = 21] = "Oncology";
437
+ PoiHospitalDepartment[PoiHospitalDepartment["Psychiatry"] = 22] = "Psychiatry";
438
+ PoiHospitalDepartment[PoiHospitalDepartment["Pediatrics"] = 23] = "Pediatrics";
439
+ PoiHospitalDepartment[PoiHospitalDepartment["StrokeUnit"] = 24] = "StrokeUnit";
440
+ PoiHospitalDepartment[PoiHospitalDepartment["Urology"] = 25] = "Urology";
441
+ })(PoiHospitalDepartment || (exports.PoiHospitalDepartment = PoiHospitalDepartment = {}));
442
+ var ProblemInformation;
443
+ (function (ProblemInformation) {
444
+ ProblemInformation[ProblemInformation["UnhandledProblem"] = 0] = "UnhandledProblem";
445
+ ProblemInformation[ProblemInformation["ValidationProblem"] = 1] = "ValidationProblem";
446
+ ProblemInformation[ProblemInformation["TokenLifetimeInvalid"] = 2] = "TokenLifetimeInvalid";
447
+ ProblemInformation[ProblemInformation["TokenDescriptionRequired"] = 3] = "TokenDescriptionRequired";
448
+ ProblemInformation[ProblemInformation["NumberExpected"] = 4] = "NumberExpected";
449
+ ProblemInformation[ProblemInformation["DispatchCenterNotFound"] = 5] = "DispatchCenterNotFound";
450
+ ProblemInformation[ProblemInformation["UserNotFound"] = 6] = "UserNotFound";
451
+ ProblemInformation[ProblemInformation["UnitNotFound"] = 7] = "UnitNotFound";
452
+ ProblemInformation[ProblemInformation["KeywordNotFound"] = 8] = "KeywordNotFound";
453
+ ProblemInformation[ProblemInformation["PoiNotFound"] = 9] = "PoiNotFound";
454
+ ProblemInformation[ProblemInformation["RadiogroupNotFound"] = 10] = "RadiogroupNotFound";
455
+ ProblemInformation[ProblemInformation["StatuspageNotFound"] = 11] = "StatuspageNotFound";
456
+ ProblemInformation[ProblemInformation["CallsignShortIsRequired"] = 12] = "CallsignShortIsRequired";
457
+ ProblemInformation[ProblemInformation["CallsignIsRequired"] = 13] = "CallsignIsRequired";
458
+ ProblemInformation[ProblemInformation["UnitCategoryNotFound"] = 14] = "UnitCategoryNotFound";
459
+ ProblemInformation[ProblemInformation["UnitStationPoiIsInvalid"] = 15] = "UnitStationPoiIsInvalid";
460
+ ProblemInformation[ProblemInformation["UnitStationPoiIsRequired"] = 16] = "UnitStationPoiIsRequired";
461
+ ProblemInformation[ProblemInformation["UnitStationPoiNotFound"] = 17] = "UnitStationPoiNotFound";
462
+ ProblemInformation[ProblemInformation["UnitDoctorPickupPoiNotFound"] = 18] = "UnitDoctorPickupPoiNotFound";
463
+ ProblemInformation[ProblemInformation["UnitDoctorPickupPoiIsRequired"] = 19] = "UnitDoctorPickupPoiIsRequired";
464
+ ProblemInformation[ProblemInformation["CallsignFormatInvalid"] = 20] = "CallsignFormatInvalid";
465
+ ProblemInformation[ProblemInformation["CallsignAlreadyExists"] = 21] = "CallsignAlreadyExists";
466
+ ProblemInformation[ProblemInformation["CallsignShortAlreadyExists"] = 22] = "CallsignShortAlreadyExists";
467
+ ProblemInformation[ProblemInformation["CallsignShortFormatInvalid"] = 23] = "CallsignShortFormatInvalid";
468
+ ProblemInformation[ProblemInformation["CallsignVerbalFormatInvalid"] = 24] = "CallsignVerbalFormatInvalid";
469
+ ProblemInformation[ProblemInformation["CallsignGpsFormatInvalid"] = 25] = "CallsignGpsFormatInvalid";
470
+ ProblemInformation[ProblemInformation["DutyPeriodsIsRequired"] = 26] = "DutyPeriodsIsRequired";
471
+ ProblemInformation[ProblemInformation["StatuspageNameIsRequired"] = 27] = "StatuspageNameIsRequired";
472
+ ProblemInformation[ProblemInformation["StatuspageUnitGroupIsRequired"] = 28] = "StatuspageUnitGroupIsRequired";
473
+ ProblemInformation[ProblemInformation["StatuspageUnitIdIsRequired"] = 29] = "StatuspageUnitIdIsRequired";
474
+ ProblemInformation[ProblemInformation["StatuspageUnitNotFound"] = 30] = "StatuspageUnitNotFound";
475
+ ProblemInformation[ProblemInformation["StatuspageNameFormatInvalid"] = 31] = "StatuspageNameFormatInvalid";
476
+ ProblemInformation[ProblemInformation["StatuspageDescriptionFormatInvalid"] = 32] = "StatuspageDescriptionFormatInvalid";
477
+ ProblemInformation[ProblemInformation["StatuspageSortNumberFormatInvalid"] = 33] = "StatuspageSortNumberFormatInvalid";
478
+ ProblemInformation[ProblemInformation["RadiogroupNameIsRequired"] = 34] = "RadiogroupNameIsRequired";
479
+ ProblemInformation[ProblemInformation["RadiogroupNameAlreadyExists"] = 35] = "RadiogroupNameAlreadyExists";
480
+ ProblemInformation[ProblemInformation["RadiogroupDispatchCenterCallsignIsRequired"] = 36] = "RadiogroupDispatchCenterCallsignIsRequired";
481
+ ProblemInformation[ProblemInformation["RadiogroupNameFormatInvalid"] = 37] = "RadiogroupNameFormatInvalid";
482
+ ProblemInformation[ProblemInformation["RadiogroupDispatchCenterCallsignFormatInvalid"] = 38] = "RadiogroupDispatchCenterCallsignFormatInvalid";
483
+ ProblemInformation[ProblemInformation["KeywordNameIsRequired"] = 39] = "KeywordNameIsRequired";
484
+ ProblemInformation[ProblemInformation["KeywordNameAlreadyExists"] = 40] = "KeywordNameAlreadyExists";
485
+ ProblemInformation[ProblemInformation["KeywordNameFormatInvalid"] = 41] = "KeywordNameFormatInvalid";
486
+ ProblemInformation[ProblemInformation["KeywordDispatchAmountFormatInvalid"] = 42] = "KeywordDispatchAmountFormatInvalid";
487
+ ProblemInformation[ProblemInformation["KeywordRequiredEquipmentAmountFormatInvalid"] = 43] = "KeywordRequiredEquipmentAmountFormatInvalid";
488
+ ProblemInformation[ProblemInformation["KeywordTaskNameIsRequired"] = 44] = "KeywordTaskNameIsRequired";
489
+ ProblemInformation[ProblemInformation["PoiHasUnitsAssigned"] = 45] = "PoiHasUnitsAssigned";
490
+ ProblemInformation[ProblemInformation["PoiNameIsRequired"] = 46] = "PoiNameIsRequired";
491
+ ProblemInformation[ProblemInformation["PoiAddressNotFound"] = 47] = "PoiAddressNotFound";
492
+ ProblemInformation[ProblemInformation["PoiNameAlreadyExists"] = 48] = "PoiNameAlreadyExists";
493
+ ProblemInformation[ProblemInformation["PoiCategoryNotFound"] = 49] = "PoiCategoryNotFound";
494
+ ProblemInformation[ProblemInformation["PoiNameFormatInvalid"] = 50] = "PoiNameFormatInvalid";
495
+ ProblemInformation[ProblemInformation["PoiVerbalNameFormatInvalid"] = 51] = "PoiVerbalNameFormatInvalid";
496
+ ProblemInformation[ProblemInformation["PoiGermanGenusFormatInvalid"] = 52] = "PoiGermanGenusFormatInvalid";
497
+ ProblemInformation[ProblemInformation["PoiHouseNumberFormatInvalid"] = 53] = "PoiHouseNumberFormatInvalid";
498
+ ProblemInformation[ProblemInformation["PoiBonusMalusFormatInvalid"] = 54] = "PoiBonusMalusFormatInvalid";
499
+ ProblemInformation[ProblemInformation["PoiSearchTagsFormatInvalid"] = 55] = "PoiSearchTagsFormatInvalid";
500
+ ProblemInformation[ProblemInformation["AreaNotFound"] = 56] = "AreaNotFound";
501
+ ProblemInformation[ProblemInformation["AreaDistrictIsRequired"] = 57] = "AreaDistrictIsRequired";
502
+ ProblemInformation[ProblemInformation["AreaDistrictNotFound"] = 58] = "AreaDistrictNotFound";
503
+ ProblemInformation[ProblemInformation["AreaIncreaseFormatInvalid"] = 59] = "AreaIncreaseFormatInvalid";
504
+ ProblemInformation[ProblemInformation["AlreadyFriendsOrOpenRequest"] = 60] = "AlreadyFriendsOrOpenRequest";
505
+ ProblemInformation[ProblemInformation["CanNotFriendYourself"] = 61] = "CanNotFriendYourself";
506
+ ProblemInformation[ProblemInformation["FriendRequestNotFound"] = 62] = "FriendRequestNotFound";
507
+ ProblemInformation[ProblemInformation["MissionLoadNotFound"] = 63] = "MissionLoadNotFound";
508
+ ProblemInformation[ProblemInformation["MissionLoadCategoryNotFound"] = 64] = "MissionLoadCategoryNotFound";
509
+ ProblemInformation[ProblemInformation["MissionLoadHourFormatInvalid"] = 65] = "MissionLoadHourFormatInvalid";
510
+ ProblemInformation[ProblemInformation["MissionLoadAmountIsInvalid"] = 66] = "MissionLoadAmountIsInvalid";
511
+ ProblemInformation[ProblemInformation["MissionLoadHourAlreadyExists"] = 67] = "MissionLoadHourAlreadyExists";
512
+ ProblemInformation[ProblemInformation["DispatchCenterNameIsRequired"] = 68] = "DispatchCenterNameIsRequired";
513
+ ProblemInformation[ProblemInformation["DispatchCenterAddressNotFound"] = 69] = "DispatchCenterAddressNotFound";
514
+ ProblemInformation[ProblemInformation["DispatchCenterAddressPackageNotFound"] = 70] = "DispatchCenterAddressPackageNotFound";
515
+ ProblemInformation[ProblemInformation["DispatchCenterMaxUsersFormatInvalid"] = 71] = "DispatchCenterMaxUsersFormatInvalid";
516
+ ProblemInformation[ProblemInformation["DispatchCenterCallNumberOfficeFormatInvalid"] = 72] = "DispatchCenterCallNumberOfficeFormatInvalid";
517
+ ProblemInformation[ProblemInformation["DispatchCenterCallNumberEmergencyFormatInvalid"] = 73] = "DispatchCenterCallNumberEmergencyFormatInvalid";
518
+ ProblemInformation[ProblemInformation["DispatchCenterCallNumberPatientTransportFormatInvalid"] = 74] = "DispatchCenterCallNumberPatientTransportFormatInvalid";
519
+ ProblemInformation[ProblemInformation["DispatchCenterCallTextEmergencyFormatInvalid"] = 75] = "DispatchCenterCallTextEmergencyFormatInvalid";
520
+ ProblemInformation[ProblemInformation["DispatchCenterCallTextOfficeFormatInvalid"] = 76] = "DispatchCenterCallTextOfficeFormatInvalid";
521
+ ProblemInformation[ProblemInformation["DispatchCenterCallTextPatientTransportFormatInvalid"] = 77] = "DispatchCenterCallTextPatientTransportFormatInvalid";
522
+ ProblemInformation[ProblemInformation["DispatchCenterKeywordsPerOperationFormatInvalid"] = 78] = "DispatchCenterKeywordsPerOperationFormatInvalid";
523
+ ProblemInformation[ProblemInformation["DispatchCenterCustomGeocodingSearchFormatFormatInvalid"] = 79] = "DispatchCenterCustomGeocodingSearchFormatFormatInvalid";
524
+ ProblemInformation[ProblemInformation["DispatchCenterCategoryNotFound"] = 80] = "DispatchCenterCategoryNotFound";
525
+ ProblemInformation[ProblemInformation["FileToLarge"] = 81] = "FileToLarge";
526
+ ProblemInformation[ProblemInformation["FileFormatNotSupported"] = 82] = "FileFormatNotSupported";
527
+ ProblemInformation[ProblemInformation["FileNotFound"] = 83] = "FileNotFound";
528
+ ProblemInformation[ProblemInformation["SessionAlreadyExistsWithSameDispatchCenter"] = 84] = "SessionAlreadyExistsWithSameDispatchCenter";
529
+ ProblemInformation[ProblemInformation["SessionNotFound"] = 85] = "SessionNotFound";
530
+ ProblemInformation[ProblemInformation["SessionCreationFailed"] = 86] = "SessionCreationFailed";
531
+ ProblemInformation[ProblemInformation["UserAlreadyOwnsThis"] = 87] = "UserAlreadyOwnsThis";
532
+ ProblemInformation[ProblemInformation["AddressPackageIsNotSet"] = 88] = "AddressPackageIsNotSet";
533
+ ProblemInformation[ProblemInformation["RealmIdIsRequired"] = 89] = "RealmIdIsRequired";
534
+ ProblemInformation[ProblemInformation["RealmHostnameIsRequired"] = 90] = "RealmHostnameIsRequired";
535
+ ProblemInformation[ProblemInformation["RealmHostnameInternalIsRequired"] = 91] = "RealmHostnameInternalIsRequired";
536
+ ProblemInformation[ProblemInformation["RealmDisplayNameIsRequired"] = 92] = "RealmDisplayNameIsRequired";
537
+ ProblemInformation[ProblemInformation["RealmVersionIsRequired"] = 93] = "RealmVersionIsRequired";
538
+ ProblemInformation[ProblemInformation["RealmCountryIsRequired"] = 94] = "RealmCountryIsRequired";
539
+ ProblemInformation[ProblemInformation["RealmRunningSinceIsRequired"] = 95] = "RealmRunningSinceIsRequired";
540
+ ProblemInformation[ProblemInformation["UrlFormatInvalid"] = 96] = "UrlFormatInvalid";
541
+ ProblemInformation[ProblemInformation["HttpMethodFormatInvalid"] = 97] = "HttpMethodFormatInvalid";
542
+ ProblemInformation[ProblemInformation["UrlFormatProtocolInvalid"] = 98] = "UrlFormatProtocolInvalid";
543
+ ProblemInformation[ProblemInformation["ManagedSessionNotFound"] = 99] = "ManagedSessionNotFound";
544
+ ProblemInformation[ProblemInformation["NoRealmAvailable"] = 100] = "NoRealmAvailable";
545
+ ProblemInformation[ProblemInformation["TokenNameRequired"] = 101] = "TokenNameRequired";
546
+ ProblemInformation[ProblemInformation["TokenNameFormatInvalid"] = 102] = "TokenNameFormatInvalid";
547
+ ProblemInformation[ProblemInformation["TooManyManagedSessions"] = 103] = "TooManyManagedSessions";
548
+ ProblemInformation[ProblemInformation["CoordinatesFormatInvalid"] = 104] = "CoordinatesFormatInvalid";
549
+ })(ProblemInformation || (exports.ProblemInformation = ProblemInformation = {}));
550
+ var SessionEventType;
551
+ (function (SessionEventType) {
552
+ /**
553
+ * Indicates that a session is available.
554
+ *
555
+ */
556
+ SessionEventType[SessionEventType["SessionAvailable"] = 0] = "SessionAvailable";
557
+ /**
558
+ * Indicates that a session is unavailable.
559
+ *
560
+ */
561
+ SessionEventType[SessionEventType["SessionUnavailable"] = 1] = "SessionUnavailable";
562
+ /**
563
+ * Indicates that the workplace has changed.
564
+ *
565
+ */
566
+ SessionEventType[SessionEventType["WorkplaceChanged"] = 2] = "WorkplaceChanged";
567
+ /**
568
+ * Indicates that a new operation has been created.
569
+ *
570
+ */
571
+ SessionEventType[SessionEventType["OperationCreated"] = 3] = "OperationCreated";
572
+ /**
573
+ * Indicates that a property of an operation has changed.
574
+ *
575
+ */
576
+ SessionEventType[SessionEventType["OperationPropertyChanged"] = 4] = "OperationPropertyChanged";
577
+ /**
578
+ * Indicates that a new event has been created within an operation.
579
+ *
580
+ */
581
+ SessionEventType[SessionEventType["OperationEventCreated"] = 5] = "OperationEventCreated";
582
+ /**
583
+ * Indicates that documentation for an operation has been created.
584
+ *
585
+ */
586
+ SessionEventType[SessionEventType["OperationDocumentationCreated"] = 6] = "OperationDocumentationCreated";
587
+ /**
588
+ * Indicates that a patient record for an operation has been created.
589
+ *
590
+ */
591
+ SessionEventType[SessionEventType["OperationPatientCreated"] = 7] = "OperationPatientCreated";
592
+ /**
593
+ * Indicates that a task within an operation has been created.
594
+ *
595
+ */
596
+ SessionEventType[SessionEventType["OperationTaskCreated"] = 8] = "OperationTaskCreated";
597
+ /**
598
+ * Indicates that a task within an operation has been removed.
599
+ *
600
+ */
601
+ SessionEventType[SessionEventType["OperationTaskRemoved"] = 9] = "OperationTaskRemoved";
602
+ /**
603
+ * Indicates that a task within an operation is set to execute.
604
+ *
605
+ */
606
+ SessionEventType[SessionEventType["OperationTaskExecute"] = 10] = "OperationTaskExecute";
607
+ /**
608
+ * Indicates that a resource is now suggested for use.
609
+ *
610
+ */
611
+ SessionEventType[SessionEventType["ResourceNowSuggested"] = 11] = "ResourceNowSuggested";
612
+ /**
613
+ * Indicates that a resource is no longer suggested for use.
614
+ *
615
+ */
616
+ SessionEventType[SessionEventType["ResourceNoLongerSuggested"] = 12] = "ResourceNoLongerSuggested";
617
+ /**
618
+ * Indicates that the status of a resource has changed.
619
+ *
620
+ */
621
+ SessionEventType[SessionEventType["ResourceStatusChanged"] = 13] = "ResourceStatusChanged";
622
+ /**
623
+ * Indicates that a resource has been dispatched.
624
+ *
625
+ */
626
+ SessionEventType[SessionEventType["ResourceDispatched"] = 14] = "ResourceDispatched";
627
+ /**
628
+ * Indicates that the dispatch of a resource has been canceled.
629
+ *
630
+ */
631
+ SessionEventType[SessionEventType["ResourceDispatchCanceled"] = 15] = "ResourceDispatchCanceled";
632
+ /**
633
+ * Indicates that the dispatch of a resource has been completed.
634
+ *
635
+ */
636
+ SessionEventType[SessionEventType["ResourceDispatchCompleted"] = 16] = "ResourceDispatchCompleted";
637
+ /**
638
+ * Indicates that the position of a resource has changed.
639
+ *
640
+ */
641
+ SessionEventType[SessionEventType["ResourcePositionChanged"] = 17] = "ResourcePositionChanged";
642
+ /**
643
+ * Indicates a request for a resource to speak.
644
+ *
645
+ */
646
+ SessionEventType[SessionEventType["ResourceSpeakRequest"] = 18] = "ResourceSpeakRequest";
647
+ /**
648
+ * Indicates that a notification has been created.
649
+ *
650
+ */
651
+ SessionEventType[SessionEventType["NotificationCreated"] = 19] = "NotificationCreated";
652
+ })(SessionEventType || (exports.SessionEventType = SessionEventType = {}));
653
+ var SessionState;
654
+ (function (SessionState) {
655
+ /**
656
+ * The session has been requested but not yet processed.
657
+ *
658
+ */
659
+ SessionState[SessionState["Requested"] = 0] = "Requested";
660
+ /**
661
+ * The session is ready for use.
662
+ *
663
+ */
664
+ SessionState[SessionState["Ready"] = 100] = "Ready";
665
+ /**
666
+ * The session has failed due to an error or issue.
667
+ *
668
+ */
669
+ SessionState[SessionState["Failed"] = 200] = "Failed";
670
+ })(SessionState || (exports.SessionState = SessionState = {}));
671
+ var SessionWebhookMethod;
672
+ (function (SessionWebhookMethod) {
673
+ SessionWebhookMethod[SessionWebhookMethod["GET"] = 0] = "GET";
674
+ SessionWebhookMethod[SessionWebhookMethod["POST"] = 1] = "POST";
675
+ SessionWebhookMethod[SessionWebhookMethod["PUT"] = 2] = "PUT";
676
+ SessionWebhookMethod[SessionWebhookMethod["DELETE"] = 3] = "DELETE";
677
+ })(SessionWebhookMethod || (exports.SessionWebhookMethod = SessionWebhookMethod = {}));
678
+ var Sound;
679
+ (function (Sound) {
680
+ /**
681
+ * The sound for an emergency ringtone.
682
+ *
683
+ */
684
+ Sound[Sound["RingtoneEmergency"] = 1] = "RingtoneEmergency";
685
+ /**
686
+ * The sound for an office ringtone.
687
+ *
688
+ */
689
+ Sound[Sound["RingtoneOffice"] = 2] = "RingtoneOffice";
690
+ /**
691
+ * The sound for an incoming radio communication.
692
+ *
693
+ */
694
+ Sound[Sound["RadioIncoming"] = 3] = "RadioIncoming";
695
+ /**
696
+ * The sound for an outgoing radio communication.
697
+ *
698
+ */
699
+ Sound[Sound["RadioOutgoing"] = 4] = "RadioOutgoing";
700
+ /**
701
+ * The sound for a fire alarm system notification.
702
+ *
703
+ */
704
+ Sound[Sound["FireAlarmSystem"] = 5] = "FireAlarmSystem";
705
+ /**
706
+ * The sound for a reminder notification.
707
+ *
708
+ */
709
+ Sound[Sound["Reminder"] = 6] = "Reminder";
710
+ /**
711
+ * The sound for a speak request notification.
712
+ *
713
+ */
714
+ Sound[Sound["SpeakRequest"] = 7] = "SpeakRequest";
715
+ /**
716
+ * The sound for an urgent speak request notification.
717
+ *
718
+ */
719
+ Sound[Sound["UrgentSpeakRequest"] = 8] = "UrgentSpeakRequest";
720
+ /**
721
+ * The sound for a dispatch notification.
722
+ *
723
+ */
724
+ Sound[Sound["Dispatch"] = 9] = "Dispatch";
725
+ /**
726
+ * The sound for a status change notification.
727
+ *
728
+ */
729
+ Sound[Sound["StatusChange"] = 10] = "StatusChange";
730
+ })(Sound || (exports.Sound = Sound = {}));
731
+ var StatuspageDisplayOption;
732
+ (function (StatuspageDisplayOption) {
733
+ StatuspageDisplayOption[StatuspageDisplayOption["CallSign"] = 0] = "CallSign";
734
+ StatuspageDisplayOption[StatuspageDisplayOption["CallSignShort"] = 1] = "CallSignShort";
735
+ })(StatuspageDisplayOption || (exports.StatuspageDisplayOption = StatuspageDisplayOption = {}));
736
+ var TaskConditionField;
737
+ (function (TaskConditionField) {
738
+ /**
739
+ * Represents the field for a condition.
740
+ *
741
+ */
742
+ TaskConditionField[TaskConditionField["Location"] = 0] = "Location";
743
+ /**
744
+ * Represents the district within the in the field for a condition.
745
+ *
746
+ */
747
+ TaskConditionField[TaskConditionField["LocationDistrict"] = 1] = "LocationDistrict";
748
+ /**
749
+ * Represents the city within the in the field for a condition.
750
+ *
751
+ */
752
+ TaskConditionField[TaskConditionField["LocationCity"] = 2] = "LocationCity";
753
+ /**
754
+ * Represents the object ID within the in the field for a condition.
755
+ *
756
+ */
757
+ TaskConditionField[TaskConditionField["LocationPoiId"] = 3] = "LocationPoiId";
758
+ /**
759
+ * Represents the object name within the in the field for a condition.
760
+ *
761
+ */
762
+ TaskConditionField[TaskConditionField["LocationPoiName"] = 4] = "LocationPoiName";
763
+ /**
764
+ * Represents the keyword name within the field for a condition.
765
+ *
766
+ */
767
+ TaskConditionField[TaskConditionField["Keyword"] = 5] = "Keyword";
768
+ /**
769
+ * Represents the resource field for a condition.
770
+ *
771
+ */
772
+ TaskConditionField[TaskConditionField["Resource"] = 6] = "Resource";
773
+ /**
774
+ * Represents the resource field for a condition.
775
+ *
776
+ */
777
+ TaskConditionField[TaskConditionField["ResourceStation"] = 7] = "ResourceStation";
778
+ })(TaskConditionField || (exports.TaskConditionField = TaskConditionField = {}));
779
+ var TaskConditionOperator;
780
+ (function (TaskConditionOperator) {
781
+ /**
782
+ * Specifies that the condition should check if a value contains a specified substring.
783
+ *
784
+ */
785
+ TaskConditionOperator[TaskConditionOperator["Contains"] = 0] = "Contains";
786
+ /**
787
+ * Specifies that the condition should check if a value does not contain a specified substring.
788
+ *
789
+ */
790
+ TaskConditionOperator[TaskConditionOperator["DoesNotContain"] = 1] = "DoesNotContain";
791
+ /**
792
+ * Specifies that the condition should check if a value starts with a specified substring.
793
+ *
794
+ */
795
+ TaskConditionOperator[TaskConditionOperator["StartsWith"] = 2] = "StartsWith";
796
+ /**
797
+ * Specifies that the condition should check if a value ends with a specified substring.
798
+ *
799
+ */
800
+ TaskConditionOperator[TaskConditionOperator["EndsWith"] = 3] = "EndsWith";
801
+ TaskConditionOperator[TaskConditionOperator["Equals"] = 4] = "Equals";
802
+ })(TaskConditionOperator || (exports.TaskConditionOperator = TaskConditionOperator = {}));
803
+ var TaskExecution;
804
+ (function (TaskExecution) {
805
+ /**
806
+ * Indicates the task should be manually executed once.
807
+ *
808
+ */
809
+ TaskExecution[TaskExecution["ManualOnce"] = 0] = "ManualOnce";
810
+ /**
811
+ * Indicates the task can be manually executed multiple times.
812
+ *
813
+ */
814
+ TaskExecution[TaskExecution["ManualMultiple"] = 1] = "ManualMultiple";
815
+ /**
816
+ * Indicates the task should be automatically executed once.
817
+ *
818
+ */
819
+ TaskExecution[TaskExecution["AutomaticOnce"] = 2] = "AutomaticOnce";
820
+ /**
821
+ * Indicates the task should always be automatically executed.
822
+ *
823
+ */
824
+ TaskExecution[TaskExecution["AutomaticAlways"] = 3] = "AutomaticAlways";
825
+ })(TaskExecution || (exports.TaskExecution = TaskExecution = {}));
826
+ var TaskStatus;
827
+ (function (TaskStatus) {
828
+ /**
829
+ * Indicates the task is available to be picked up or started.
830
+ *
831
+ */
832
+ TaskStatus[TaskStatus["Available"] = 0] = "Available";
833
+ /**
834
+ * Indicates the task is queued and awaiting execution.
835
+ *
836
+ */
837
+ TaskStatus[TaskStatus["InQueue"] = 1] = "InQueue";
838
+ /**
839
+ * Indicates the task is currently being processed.
840
+ *
841
+ */
842
+ TaskStatus[TaskStatus["IsProcessing"] = 2] = "IsProcessing";
843
+ /**
844
+ * Indicates the task has finished successfully.
845
+ *
846
+ */
847
+ TaskStatus[TaskStatus["Finished"] = 3] = "Finished";
848
+ /**
849
+ * Indicates the task has ended due to an error.
850
+ *
851
+ */
852
+ TaskStatus[TaskStatus["EndedWithError"] = 4] = "EndedWithError";
853
+ })(TaskStatus || (exports.TaskStatus = TaskStatus = {}));
854
+ var UnitCategory;
855
+ (function (UnitCategory) {
856
+ UnitCategory[UnitCategory["DLK"] = 0] = "DLK";
857
+ UnitCategory[UnitCategory["ELW1"] = 1] = "ELW1";
858
+ UnitCategory[UnitCategory["ELW2"] = 2] = "ELW2";
859
+ UnitCategory[UnitCategory["GWG"] = 3] = "GWG";
860
+ UnitCategory[UnitCategory["GWL"] = 4] = "GWL";
861
+ UnitCategory[UnitCategory["GWDEKON"] = 5] = "GWDEKON";
862
+ UnitCategory[UnitCategory["HLF"] = 6] = "HLF";
863
+ UnitCategory[UnitCategory["ITH"] = 7] = "ITH";
864
+ UnitCategory[UnitCategory["ITW"] = 8] = "ITW";
865
+ UnitCategory[UnitCategory["KDOW"] = 9] = "KDOW";
866
+ UnitCategory[UnitCategory["KLF"] = 10] = "KLF";
867
+ UnitCategory[UnitCategory["KRBM"] = 11] = "KRBM";
868
+ UnitCategory[UnitCategory["STBM"] = 12] = "STBM";
869
+ UnitCategory[UnitCategory["GEBM"] = 13] = "GEBM";
870
+ UnitCategory[UnitCategory["KTW"] = 14] = "KTW";
871
+ UnitCategory[UnitCategory["LF"] = 15] = "LF";
872
+ UnitCategory[UnitCategory["LNA"] = 16] = "LNA";
873
+ UnitCategory[UnitCategory["MLF"] = 17] = "MLF";
874
+ UnitCategory[UnitCategory["MTW"] = 18] = "MTW";
875
+ UnitCategory[UnitCategory["MZF"] = 19] = "MZF";
876
+ UnitCategory[UnitCategory["NEF"] = 20] = "NEF";
877
+ UnitCategory[UnitCategory["ORGL"] = 21] = "ORGL";
878
+ UnitCategory[UnitCategory["PKW"] = 22] = "PKW";
879
+ UnitCategory[UnitCategory["RTH"] = 23] = "RTH";
880
+ UnitCategory[UnitCategory["RTW"] = 24] = "RTW";
881
+ UnitCategory[UnitCategory["RW"] = 25] = "RW";
882
+ UnitCategory[UnitCategory["SRTW"] = 26] = "SRTW";
883
+ UnitCategory[UnitCategory["TLF"] = 27] = "TLF";
884
+ UnitCategory[UnitCategory["WLF"] = 28] = "WLF";
885
+ UnitCategory[UnitCategory["NAW"] = 29] = "NAW";
886
+ UnitCategory[UnitCategory["KEF"] = 30] = "KEF";
887
+ })(UnitCategory || (exports.UnitCategory = UnitCategory = {}));
888
+ var UnitDispatchOption;
889
+ (function (UnitDispatchOption) {
890
+ /**
891
+ * Indicates a normal dispatch option.
892
+ *
893
+ */
894
+ UnitDispatchOption[UnitDispatchOption["Normal"] = 0] = "Normal";
895
+ /**
896
+ * Indicates that the unit should be excluded from automatic dispatch.
897
+ *
898
+ */
899
+ UnitDispatchOption[UnitDispatchOption["Exclude"] = 1] = "Exclude";
900
+ /**
901
+ * Indicates that the unit should be dispatched based on the closest distance to the location, with a minimum distance override.
902
+ *
903
+ */
904
+ UnitDispatchOption[UnitDispatchOption["MinDistance"] = 2] = "MinDistance";
905
+ /**
906
+ * Indicates that the unit should be dispatched based on the closest distance to the location, with a maximum distance override.
907
+ *
908
+ */
909
+ UnitDispatchOption[UnitDispatchOption["MaxDistance"] = 3] = "MaxDistance";
910
+ })(UnitDispatchOption || (exports.UnitDispatchOption = UnitDispatchOption = {}));
911
+ var UnitDoctorOption;
912
+ (function (UnitDoctorOption) {
913
+ /**
914
+ * Indicates that there is no doctor assigned to the unit.
915
+ *
916
+ */
917
+ UnitDoctorOption[UnitDoctorOption["NoDoctor"] = 0] = "NoDoctor";
918
+ /**
919
+ * Indicates that the unit has a doctor assigned to it.
920
+ *
921
+ */
922
+ UnitDoctorOption[UnitDoctorOption["HasDoctor"] = 1] = "HasDoctor";
923
+ /**
924
+ * Indicates that the doctor is picked up at the specified doctor pickup point of interest (POI) after dispatch. This option must be set at if is selected.
925
+ *
926
+ */
927
+ UnitDoctorOption[UnitDoctorOption["PickUpAtPoi"] = 2] = "PickUpAtPoi";
928
+ })(UnitDoctorOption || (exports.UnitDoctorOption = UnitDoctorOption = {}));
929
+ var UnitDutyOptions;
930
+ (function (UnitDutyOptions) {
931
+ /**
932
+ * The unit is always on duty.
933
+ *
934
+ */
935
+ UnitDutyOptions[UnitDutyOptions["AlwaysOnDuty"] = 0] = "AlwaysOnDuty";
936
+ /**
937
+ * The unit is only on duty during specified duty periods. must be set.
938
+ *
939
+ */
940
+ UnitDutyOptions[UnitDutyOptions["OnlyOnPeriods"] = 1] = "OnlyOnPeriods";
941
+ /**
942
+ * The unit is on duty during the day.
943
+ *
944
+ */
945
+ UnitDutyOptions[UnitDutyOptions["DuringDay"] = 2] = "DuringDay";
946
+ /**
947
+ * The unit is on duty during the night.
948
+ *
949
+ */
950
+ UnitDutyOptions[UnitDutyOptions["DuringNight"] = 3] = "DuringNight";
951
+ })(UnitDutyOptions || (exports.UnitDutyOptions = UnitDutyOptions = {}));
952
+ var UnitEquipment;
953
+ (function (UnitEquipment) {
954
+ UnitEquipment[UnitEquipment["Lighting"] = 0] = "Lighting";
955
+ UnitEquipment[UnitEquipment["Boat"] = 1] = "Boat";
956
+ UnitEquipment[UnitEquipment["Ventilator"] = 2] = "Ventilator";
957
+ UnitEquipment[UnitEquipment["IceRescue"] = 3] = "IceRescue";
958
+ UnitEquipment[UnitEquipment["Waterpump"] = 4] = "Waterpump";
959
+ UnitEquipment[UnitEquipment["GasWarning"] = 5] = "GasWarning";
960
+ UnitEquipment[UnitEquipment["AerialLadderTruck"] = 6] = "AerialLadderTruck";
961
+ UnitEquipment[UnitEquipment["SmallFastExtinguishing"] = 7] = "SmallFastExtinguishing";
962
+ UnitEquipment[UnitEquipment["Chainsaw"] = 8] = "Chainsaw";
963
+ UnitEquipment[UnitEquipment["OilDamage"] = 9] = "OilDamage";
964
+ UnitEquipment[UnitEquipment["FoamExtinguishing"] = 10] = "FoamExtinguishing";
965
+ UnitEquipment[UnitEquipment["RailroadKit"] = 11] = "RailroadKit";
966
+ UnitEquipment[UnitEquipment["BasketStretcher"] = 12] = "BasketStretcher";
967
+ UnitEquipment[UnitEquipment["CutterSpreader"] = 13] = "CutterSpreader";
968
+ UnitEquipment[UnitEquipment["JumpCushion"] = 14] = "JumpCushion";
969
+ UnitEquipment[UnitEquipment["DoorOpeningKit"] = 15] = "DoorOpeningKit";
970
+ UnitEquipment[UnitEquipment["WaterDamage"] = 16] = "WaterDamage";
971
+ UnitEquipment[UnitEquipment["WatertankSmall"] = 17] = "WatertankSmall";
972
+ UnitEquipment[UnitEquipment["WatertankMedium"] = 18] = "WatertankMedium";
973
+ UnitEquipment[UnitEquipment["Commander"] = 19] = "Commander";
974
+ UnitEquipment[UnitEquipment["Command"] = 20] = "Command";
975
+ UnitEquipment[UnitEquipment["Engine"] = 21] = "Engine";
976
+ UnitEquipment[UnitEquipment["Tanker"] = 22] = "Tanker";
977
+ UnitEquipment[UnitEquipment["Ladder"] = 23] = "Ladder";
978
+ UnitEquipment[UnitEquipment["Custom1"] = 25] = "Custom1";
979
+ UnitEquipment[UnitEquipment["Custom2"] = 26] = "Custom2";
980
+ UnitEquipment[UnitEquipment["Custom3"] = 27] = "Custom3";
981
+ UnitEquipment[UnitEquipment["Custom4"] = 28] = "Custom4";
982
+ UnitEquipment[UnitEquipment["Custom5"] = 29] = "Custom5";
983
+ UnitEquipment[UnitEquipment["Custom6"] = 30] = "Custom6";
984
+ UnitEquipment[UnitEquipment["Custom7"] = 31] = "Custom7";
985
+ UnitEquipment[UnitEquipment["Custom8"] = 32] = "Custom8";
986
+ UnitEquipment[UnitEquipment["Custom9"] = 33] = "Custom9";
987
+ UnitEquipment[UnitEquipment["Custom10"] = 34] = "Custom10";
988
+ UnitEquipment[UnitEquipment["Custom11"] = 35] = "Custom11";
989
+ UnitEquipment[UnitEquipment["Custom12"] = 36] = "Custom12";
990
+ UnitEquipment[UnitEquipment["Custom13"] = 37] = "Custom13";
991
+ UnitEquipment[UnitEquipment["Custom14"] = 38] = "Custom14";
992
+ UnitEquipment[UnitEquipment["Custom15"] = 39] = "Custom15";
993
+ UnitEquipment[UnitEquipment["Custom16"] = 40] = "Custom16";
994
+ UnitEquipment[UnitEquipment["Custom17"] = 41] = "Custom17";
995
+ UnitEquipment[UnitEquipment["Custom18"] = 42] = "Custom18";
996
+ UnitEquipment[UnitEquipment["Custom19"] = 43] = "Custom19";
997
+ UnitEquipment[UnitEquipment["Custom20"] = 44] = "Custom20";
998
+ })(UnitEquipment || (exports.UnitEquipment = UnitEquipment = {}));
999
+ var UnitStatus;
1000
+ (function (UnitStatus) {
1001
+ UnitStatus[UnitStatus["UrgentSpeakRequest"] = 0] = "UrgentSpeakRequest";
1002
+ UnitStatus[UnitStatus["OnDutyAlongWay"] = 1] = "OnDutyAlongWay";
1003
+ UnitStatus[UnitStatus["OnDuty"] = 2] = "OnDuty";
1004
+ UnitStatus[UnitStatus["OnTheWay"] = 3] = "OnTheWay";
1005
+ UnitStatus[UnitStatus["OnScene"] = 4] = "OnScene";
1006
+ UnitStatus[UnitStatus["SpeakRequest"] = 5] = "SpeakRequest";
1007
+ UnitStatus[UnitStatus["NotOnDuty"] = 6] = "NotOnDuty";
1008
+ UnitStatus[UnitStatus["DriveToDestination"] = 7] = "DriveToDestination";
1009
+ UnitStatus[UnitStatus["ArrivedAtDestination"] = 8] = "ArrivedAtDestination";
1010
+ UnitStatus[UnitStatus["Individual"] = 9] = "Individual";
1011
+ })(UnitStatus || (exports.UnitStatus = UnitStatus = {}));
1012
+ var UnitStatusNonPersistent;
1013
+ (function (UnitStatusNonPersistent) {
1014
+ /**
1015
+ * Indicates that the current status is not allowed.
1016
+ *
1017
+ */
1018
+ UnitStatusNonPersistent[UnitStatusNonPersistent["StatusNotAllowed"] = 0] = "StatusNotAllowed";
1019
+ /**
1020
+ * Indicates that a request to speak is pending.
1021
+ *
1022
+ */
1023
+ UnitStatusNonPersistent[UnitStatusNonPersistent["PendingSpeakRequest"] = 1] = "PendingSpeakRequest";
1024
+ /**
1025
+ * Indicates a prompt to speak.
1026
+ *
1027
+ */
1028
+ UnitStatusNonPersistent[UnitStatusNonPersistent["SpeakPrompt"] = 2] = "SpeakPrompt";
1029
+ /**
1030
+ * Indicates that the unit has been dispatched.
1031
+ *
1032
+ */
1033
+ UnitStatusNonPersistent[UnitStatusNonPersistent["Dispatched"] = 3] = "Dispatched";
1034
+ /**
1035
+ * Indicates that the dispatch has been canceled.
1036
+ *
1037
+ */
1038
+ UnitStatusNonPersistent[UnitStatusNonPersistent["CancelDispatch"] = 4] = "CancelDispatch";
1039
+ })(UnitStatusNonPersistent || (exports.UnitStatusNonPersistent = UnitStatusNonPersistent = {}));
1040
+ var WorkplaceStatus;
1041
+ (function (WorkplaceStatus) {
1042
+ /**
1043
+ * The workplace is off or inactive.
1044
+ *
1045
+ */
1046
+ WorkplaceStatus[WorkplaceStatus["Off"] = 0] = "Off";
1047
+ /**
1048
+ * The workplace is taken by a user, and the user is available.
1049
+ *
1050
+ */
1051
+ WorkplaceStatus[WorkplaceStatus["Blue"] = 1] = "Blue";
1052
+ /**
1053
+ * The workplace is taken by a user, and the user is not available or in "do not disturb" mode.
1054
+ *
1055
+ */
1056
+ WorkplaceStatus[WorkplaceStatus["Yellow"] = 2] = "Yellow";
1057
+ /**
1058
+ * The workplace is taken by a user, and the user is currently on a call or using a phone or radio.
1059
+ *
1060
+ */
1061
+ WorkplaceStatus[WorkplaceStatus["Red"] = 3] = "Red";
1062
+ })(WorkplaceStatus || (exports.WorkplaceStatus = WorkplaceStatus = {}));
1063
+ var DayOfWeek;
1064
+ (function (DayOfWeek) {
1065
+ DayOfWeek[DayOfWeek["Sunday"] = 0] = "Sunday";
1066
+ DayOfWeek[DayOfWeek["Monday"] = 1] = "Monday";
1067
+ DayOfWeek[DayOfWeek["Tuesday"] = 2] = "Tuesday";
1068
+ DayOfWeek[DayOfWeek["Wednesday"] = 3] = "Wednesday";
1069
+ DayOfWeek[DayOfWeek["Thursday"] = 4] = "Thursday";
1070
+ DayOfWeek[DayOfWeek["Friday"] = 5] = "Friday";
1071
+ DayOfWeek[DayOfWeek["Saturday"] = 6] = "Saturday";
1072
+ })(DayOfWeek || (exports.DayOfWeek = DayOfWeek = {}));
1073
+ var GISDefaults;
1074
+ (function (GISDefaults) {
1075
+ /**
1076
+ * The default format string used for geocoding search queries. This format is used to construct address queries when no custom format is specified in a command center's settings. It combines multiple address components into a single string that can be interpreted by geocoding services to locate precise geographical coordinates. The format includes placeholders for house number, street name, city name, district name, state name, and postal code.
1077
+ *
1078
+ */
1079
+ GISDefaults.GeocodingSearchFormat = "{houseNumber} {street} {cityName} {districtName} {stateName} {districtZip}";
1080
+ })(GISDefaults || (exports.GISDefaults = GISDefaults = {}));
1081
+ var SignalRDefaults;
1082
+ (function (SignalRDefaults) {
1083
+ /**
1084
+ * The interval, in seconds, at which the SignalR client sends keep-alive messages to the server.
1085
+ *
1086
+ */
1087
+ SignalRDefaults.KeepAliveIntervalSeconds = 3;
1088
+ /**
1089
+ * The timeout, in seconds, for the SignalR server to wait before considering the client disconnected.
1090
+ *
1091
+ *
1092
+ * @remarks
1093
+ * This value represents the time to wait for a response. For example, two retries at 3 seconds each would result in a 6-second timeout, causing a failure.
1094
+ */
1095
+ SignalRDefaults.ServerTimeoutSeconds = 7;
1096
+ })(SignalRDefaults || (exports.SignalRDefaults = SignalRDefaults = {}));
1097
+ var SIMDispatcherDefaults;
1098
+ (function (SIMDispatcherDefaults) {
1099
+ /**
1100
+ * URL for accessing forums.
1101
+ *
1102
+ */
1103
+ SIMDispatcherDefaults.Forums = "https://forums.sim-dispatcher.com";
1104
+ })(SIMDispatcherDefaults || (exports.SIMDispatcherDefaults = SIMDispatcherDefaults = {}));
1105
+ var UrlDefaults;
1106
+ (function (UrlDefaults) {
1107
+ /**
1108
+ * URL for contact the customer support.
1109
+ *
1110
+ */
1111
+ UrlDefaults.CustomerSupport = "https://www.xenbit.de/contact";
1112
+ /**
1113
+ * URL for (developer) documentation.
1114
+ *
1115
+ */
1116
+ UrlDefaults.Docs = "https://docs.resqueserve.com";
1117
+ /**
1118
+ * URL of the bugtracker.
1119
+ *
1120
+ */
1121
+ UrlDefaults.Bugtracker = "https://track.xenbit.app";
1122
+ })(UrlDefaults || (exports.UrlDefaults = UrlDefaults = {}));
1123
+ var UserInterfaceDefaults;
1124
+ (function (UserInterfaceDefaults) {
1125
+ let UnitStatusBackground;
1126
+ (function (UnitStatusBackground) {
1127
+ UnitStatusBackground.UrgentSpeakRequest = "#CE3B14";
1128
+ UnitStatusBackground.OnDutyAlongWay = "#0A8619";
1129
+ UnitStatusBackground.OnDuty = "#0A8619";
1130
+ UnitStatusBackground.OnTheWay = "#2E8BC0";
1131
+ UnitStatusBackground.OnScene = "#2E8BC0";
1132
+ UnitStatusBackground.SpeakRequest = "#8C0A0A";
1133
+ UnitStatusBackground.NotOnDuty = "#373737";
1134
+ UnitStatusBackground.DriveToDestination = "#2E8BC0";
1135
+ UnitStatusBackground.ArrivedAtDestination = "#896606";
1136
+ UnitStatusBackground.Individual = "#145DA0";
1137
+ })(UnitStatusBackground = UserInterfaceDefaults.UnitStatusBackground || (UserInterfaceDefaults.UnitStatusBackground = {}));
1138
+ let UnitStatusForeground;
1139
+ (function (UnitStatusForeground) {
1140
+ UnitStatusForeground.UrgentSpeakRequest = "#ffffff";
1141
+ UnitStatusForeground.OnDutyAlongWay = "#ffffff";
1142
+ UnitStatusForeground.OnDuty = "#ffffff";
1143
+ UnitStatusForeground.OnTheWay = "#ffffff";
1144
+ UnitStatusForeground.OnScene = "#ffffff";
1145
+ UnitStatusForeground.SpeakRequest = "#ffffff";
1146
+ UnitStatusForeground.NotOnDuty = "#ffffff";
1147
+ UnitStatusForeground.DriveToDestination = "#ffffff";
1148
+ UnitStatusForeground.ArrivedAtDestination = "#ffffff";
1149
+ UnitStatusForeground.Individual = "#ffffff";
1150
+ })(UnitStatusForeground = UserInterfaceDefaults.UnitStatusForeground || (UserInterfaceDefaults.UnitStatusForeground = {}));
1151
+ let Sizes;
1152
+ (function (Sizes) {
1153
+ Sizes.CommandcenterHeaderImageWidth = 1600;
1154
+ Sizes.CommandcenterHeaderImageHeight = 500;
1155
+ })(Sizes = UserInterfaceDefaults.Sizes || (UserInterfaceDefaults.Sizes = {}));
1156
+ })(UserInterfaceDefaults || (exports.UserInterfaceDefaults = UserInterfaceDefaults = {}));