@trakit/objects 0.0.14 → 0.0.16
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/API/Base.d.ts +1 -6
- package/Accounts/Contact.d.ts +2 -2
- package/Accounts/Machine.d.ts +2 -1
- package/Accounts/Session.d.ts +1 -16
- package/Accounts/User.d.ts +2 -3
- package/Accounts/UserAdvanced.d.ts +2 -1
- package/Accounts/UserAuthentication.d.ts +2 -1
- package/Accounts/UserGeneral.d.ts +2 -1
- package/Accounts/UserGroup.d.ts +2 -1
- package/Assets/Asset.d.ts +35 -5
- package/Assets/AssetAdvanced.d.ts +2 -1
- package/Assets/AssetDispatch.d.ts +18 -2
- package/Assets/AssetGeneral.d.ts +34 -2
- package/Behaviours/Behaviour.d.ts +1 -0
- package/Behaviours/BehaviourLog.d.ts +1 -0
- package/Behaviours/BehaviourScript.d.ts +1 -0
- package/Billing/BillingProfile.d.ts +1 -0
- package/Billing/Hosting/BillableHostingLicense.d.ts +1 -0
- package/Billing/Hosting/BillableHostingRule.d.ts +1 -0
- package/Billing/Report/BillingReport.d.ts +1 -0
- package/Companies/Company.d.ts +3 -24
- package/Companies/CompanyDirectory.d.ts +2 -9
- package/Companies/CompanyGeneral.d.ts +2 -1
- package/Companies/CompanyPolicy.d.ts +2 -1
- package/Companies/CompanyReseller.d.ts +2 -1
- package/Companies/CompanyStyle.d.ts +2 -1
- package/Dispatch/DispatchJob.d.ts +2 -1
- package/Dispatch/DispatchTask.d.ts +1 -0
- package/Hosting/Document.d.ts +2 -1
- package/Hosting/FormResult.d.ts +2 -1
- package/Hosting/FormTemplate.d.ts +2 -1
- package/Images/Dashcam.d.ts +3 -2
- package/Images/DashcamLive.d.ts +3 -2
- package/Images/Icon.d.ts +15 -2
- package/Images/Picture.d.ts +2 -1
- package/Maintenance/MaintenanceJob.d.ts +2 -1
- package/Maintenance/MaintenanceSchedule.d.ts +2 -1
- package/Messaging/AssetAlert.d.ts +2 -1
- package/Messaging/AssetMessage.d.ts +2 -1
- package/Places/Place.d.ts +2 -1
- package/Providers/Config/ProviderConfig.d.ts +2 -1
- package/Providers/Config/ProviderRegistration.d.ts +2 -1
- package/Providers/Config/ProviderScript.d.ts +2 -1
- package/Providers/Configuration/ProviderConfiguration.d.ts +2 -1
- package/Providers/Configuration/ProviderConfigurationType.d.ts +2 -1
- package/Providers/Provider.d.ts +3 -13
- package/Providers/ProviderAdvanced.d.ts +2 -1
- package/Providers/ProviderControl.d.ts +2 -1
- package/Providers/ProviderGeneral.d.ts +2 -1
- package/README.md +24 -24
- package/Reports/ReportBreakdown.d.ts +32 -1
- package/Reports/ReportBreakdownJob.d.ts +32 -1
- package/Reports/ReportBreakdownMessage.d.ts +32 -1
- package/Reports/ReportBreakdownTask.d.ts +32 -1
- package/Reports/ReportResult.d.ts +2 -1
- package/Reports/ReportSchedule.d.ts +2 -1
- package/Reports/ReportSummary.d.ts +64 -2
- package/Reports/ReportTemplate.d.ts +2 -1
- package/index.d.ts +1 -1
- package/objects/API/Arrays.d.ts +46 -0
- package/objects/API/Base.d.ts +19 -0
- package/objects/API/BaseComponent.d.ts +40 -0
- package/objects/API/BaseCompound.d.ts +19 -0
- package/objects/API/Codifier.d.ts +15 -0
- package/objects/API/Constants.d.ts +39 -0
- package/objects/API/Conversion.d.ts +255 -0
- package/objects/API/Encoding.d.ts +9 -0
- package/objects/API/Files.d.ts +21 -0
- package/objects/API/Functions.d.ts +196 -0
- package/objects/API/Geography/Functions.d.ts +236 -0
- package/objects/API/Geography/Interfaces.d.ts +150 -0
- package/objects/API/Geography/LatLng.d.ts +86 -0
- package/objects/API/Geography/LatLngBounds.d.ts +146 -0
- package/objects/API/Geography/Position.d.ts +74 -0
- package/objects/API/Geography/StreetAddress.d.ts +59 -0
- package/objects/API/Geometry/Functions.d.ts +114 -0
- package/objects/API/Geometry/Interfaces.d.ts +111 -0
- package/objects/API/Geometry/Point.d.ts +81 -0
- package/objects/API/Geometry/Radial.d.ts +110 -0
- package/objects/API/Geometry/Rectangle.d.ts +159 -0
- package/objects/API/Geometry/Size.d.ts +58 -0
- package/objects/API/Guid.d.ts +4 -0
- package/objects/API/Interfaces/IAmCompany.d.ts +11 -0
- package/objects/API/Interfaces/IBelongAsset.d.ts +15 -0
- package/objects/API/Interfaces/IBelongBillingProfile.d.ts +15 -0
- package/objects/API/Interfaces/IBelongCompany.d.ts +15 -0
- package/objects/API/Interfaces/IDeserializable.d.ts +13 -0
- package/objects/API/Interfaces/IEnabled.d.ts +10 -0
- package/objects/API/Interfaces/IFileSize.d.ts +9 -0
- package/objects/API/Interfaces/IGlobal.d.ts +11 -0
- package/objects/API/Interfaces/IHavePermissions.d.ts +20 -0
- package/objects/API/Interfaces/IHavePreferences.d.ts +29 -0
- package/objects/API/Interfaces/IIconic.d.ts +15 -0
- package/objects/API/Interfaces/IIdUlong.d.ts +10 -0
- package/objects/API/Interfaces/ILabelled.d.ts +10 -0
- package/objects/API/Interfaces/INamed.d.ts +13 -0
- package/objects/API/Interfaces/IPictured.d.ts +15 -0
- package/objects/API/Interfaces/IRequestable.d.ts +22 -0
- package/objects/API/Interfaces/ISerializable.d.ts +10 -0
- package/objects/API/Interfaces/ISuspendable.d.ts +16 -0
- package/objects/API/Interfaces/IVisual.d.ts +18 -0
- package/objects/API/Maps.d.ts +28 -0
- package/objects/API/Objects.d.ts +5 -0
- package/objects/API/SearchPattern.d.ts +46 -0
- package/objects/API/TimeSpan.d.ts +109 -0
- package/objects/API/Timezone.d.ts +44 -0
- package/objects/API/Timezones.d.ts +7 -0
- package/objects/API/Types.d.ts +132 -0
- package/objects/Accounts/Contact.d.ts +139 -0
- package/objects/Accounts/Machine.d.ts +139 -0
- package/objects/Accounts/MultiFactorType.d.ts +17 -0
- package/objects/Accounts/NotificationMethod.d.ts +17 -0
- package/objects/Accounts/Permissions/Authorizer.d.ts +204 -0
- package/objects/Accounts/Permissions/Permission.d.ts +56 -0
- package/objects/Accounts/Permissions/PermissionEscalation.d.ts +41 -0
- package/objects/Accounts/Permissions/PermissionEscalationState.d.ts +19 -0
- package/objects/Accounts/Permissions/PermissionEscalationType.d.ts +13 -0
- package/objects/Accounts/Permissions/PermissionLevel.d.ts +17 -0
- package/objects/Accounts/Permissions/PermissionMethod.d.ts +13 -0
- package/objects/Accounts/Permissions/PermissionType.d.ts +280 -0
- package/objects/Accounts/SSOIdentityProvider.d.ts +25 -0
- package/objects/Accounts/Session.d.ts +89 -0
- package/objects/Accounts/SessionStatus.d.ts +29 -0
- package/objects/Accounts/SystemsOfUnits.d.ts +13 -0
- package/objects/Accounts/User.d.ts +167 -0
- package/objects/Accounts/UserAdvanced.d.ts +53 -0
- package/objects/Accounts/UserAuthentication.d.ts +55 -0
- package/objects/Accounts/UserGeneral.d.ts +98 -0
- package/objects/Accounts/UserGroup.d.ts +51 -0
- package/objects/Accounts/UserMFA.d.ts +47 -0
- package/objects/Accounts/UserNotifications.d.ts +76 -0
- package/objects/Accounts/UserSSO.d.ts +37 -0
- package/objects/Assets/Asset.d.ts +218 -0
- package/objects/Assets/AssetAdvanced.d.ts +77 -0
- package/objects/Assets/AssetAttribute.d.ts +71 -0
- package/objects/Assets/AssetDispatch.d.ts +55 -0
- package/objects/Assets/AssetGeneral.d.ts +127 -0
- package/objects/Assets/AssetPlaceStatus.d.ts +31 -0
- package/objects/Assets/AssetPlaceStatusType.d.ts +17 -0
- package/objects/Assets/AssetType.d.ts +21 -0
- package/objects/Behaviours/Behaviour.d.ts +78 -0
- package/objects/Behaviours/BehaviourLog.d.ts +95 -0
- package/objects/Behaviours/BehaviourLogType.d.ts +21 -0
- package/objects/Behaviours/BehaviourParameter.d.ts +38 -0
- package/objects/Behaviours/BehaviourParameterType.d.ts +21 -0
- package/objects/Behaviours/BehaviourScript.d.ts +83 -0
- package/objects/Billing/BillableBase.d.ts +83 -0
- package/objects/Billing/BillableSmsProfile.d.ts +26 -0
- package/objects/Billing/BillingCurrency.d.ts +17 -0
- package/objects/Billing/BillingCycle.d.ts +17 -0
- package/objects/Billing/BillingProfile.d.ts +104 -0
- package/objects/Billing/Hosting/BillableHostingBase.d.ts +41 -0
- package/objects/Billing/Hosting/BillableHostingLicense.d.ts +30 -0
- package/objects/Billing/Hosting/BillableHostingLicenseType.d.ts +20 -0
- package/objects/Billing/Hosting/BillableHostingRule.d.ts +30 -0
- package/objects/Billing/Hosting/BillableHostingType.d.ts +41 -0
- package/objects/Billing/Report/BillingReport.d.ts +112 -0
- package/objects/Billing/Report/BillingReportBreakdown.d.ts +34 -0
- package/objects/Billing/Report/BillingReportHostingSummary.d.ts +36 -0
- package/objects/Billing/Report/BillingReportLicenseBreakdown.d.ts +79 -0
- package/objects/Billing/Report/BillingReportServiceBreakdown.d.ts +124 -0
- package/objects/Billing/Report/BillingReportStatus.d.ts +25 -0
- package/objects/Billing/Report/BillingReportSummary.d.ts +49 -0
- package/objects/Companies/ColourStyle.d.ts +25 -0
- package/objects/Companies/Company.d.ts +167 -0
- package/objects/Companies/CompanyDirectory.d.ts +52 -0
- package/objects/Companies/CompanyGeneral.d.ts +55 -0
- package/objects/Companies/CompanyPolicy.d.ts +66 -0
- package/objects/Companies/CompanyReseller.d.ts +166 -0
- package/objects/Companies/CompanyStyle.d.ts +50 -0
- package/objects/Companies/LabelStyle.d.ts +46 -0
- package/objects/Companies/NotificationServerEmail.d.ts +99 -0
- package/objects/Companies/NotificationServerSms.d.ts +25 -0
- package/objects/Companies/PasswordExpiryMode.d.ts +17 -0
- package/objects/Companies/PasswordPolicy.d.ts +51 -0
- package/objects/Companies/SessionMultiUser.d.ts +17 -0
- package/objects/Companies/SessionPolicy.d.ts +47 -0
- package/objects/Dispatch/DispatchDirection.d.ts +53 -0
- package/objects/Dispatch/DispatchJob.d.ts +107 -0
- package/objects/Dispatch/DispatchJobPriority.d.ts +25 -0
- package/objects/Dispatch/DispatchStep.d.ts +99 -0
- package/objects/Dispatch/DispatchStepState.d.ts +27 -0
- package/objects/Dispatch/DispatchStepStatus.d.ts +21 -0
- package/objects/Dispatch/DispatchTask.d.ts +154 -0
- package/objects/Dispatch/DispatchTaskStatus.d.ts +50 -0
- package/objects/Hosting/Document.d.ts +70 -0
- package/objects/Hosting/Fields/FormFieldAttachments.d.ts +31 -0
- package/objects/Hosting/Fields/FormFieldBase.d.ts +56 -0
- package/objects/Hosting/Fields/FormFieldBase_fromJSON.d.ts +1 -0
- package/objects/Hosting/Fields/FormFieldBoolean.d.ts +38 -0
- package/objects/Hosting/Fields/FormFieldChoice.d.ts +46 -0
- package/objects/Hosting/Fields/FormFieldDate.d.ts +26 -0
- package/objects/Hosting/Fields/FormFieldNumeric.d.ts +54 -0
- package/objects/Hosting/Fields/FormFieldNumericSize.d.ts +32 -0
- package/objects/Hosting/Fields/FormFieldSignature.d.ts +17 -0
- package/objects/Hosting/Fields/FormFieldText.d.ts +32 -0
- package/objects/Hosting/Fields/FormFieldTime.d.ts +37 -0
- package/objects/Hosting/Fields/FormFieldTimezone.d.ts +14 -0
- package/objects/Hosting/FormFieldType.d.ts +127 -0
- package/objects/Hosting/FormResult.d.ts +95 -0
- package/objects/Hosting/FormTemplate.d.ts +80 -0
- package/objects/Images/Dashcam.d.ts +63 -0
- package/objects/Images/DashcamBase.d.ts +97 -0
- package/objects/Images/DashcamLive.d.ts +36 -0
- package/objects/Images/DashcamMediaType.d.ts +17 -0
- package/objects/Images/Icon.d.ts +66 -0
- package/objects/Images/IconGlyph.d.ts +47 -0
- package/objects/Images/IconLabel.d.ts +29 -0
- package/objects/Images/IconLayer.d.ts +33 -0
- package/objects/Images/Picture.d.ts +72 -0
- package/objects/Maintenance/MaintenanceInterval.d.ts +48 -0
- package/objects/Maintenance/MaintenanceJob.d.ts +134 -0
- package/objects/Maintenance/MaintenanceJobStatus.d.ts +21 -0
- package/objects/Maintenance/MaintenanceSchedule.d.ts +118 -0
- package/objects/Messaging/AlertPriority.d.ts +17 -0
- package/objects/Messaging/AssetAlert.d.ts +29 -0
- package/objects/Messaging/AssetMessage.d.ts +40 -0
- package/objects/Messaging/MessageBase.d.ts +99 -0
- package/objects/Messaging/MessageFolder.d.ts +13 -0
- package/objects/Messaging/MessageStatus.d.ts +29 -0
- package/objects/Messaging/MessageType.d.ts +33 -0
- package/objects/Places/Place.d.ts +114 -0
- package/objects/Places/PlaceType.d.ts +25 -0
- package/objects/Providers/Config/ProviderConfig.d.ts +70 -0
- package/objects/Providers/Config/ProviderRegistration.d.ts +119 -0
- package/objects/Providers/Config/ProviderScript.d.ts +86 -0
- package/objects/Providers/Config/ProviderScriptBlock.d.ts +41 -0
- package/objects/Providers/Config/ProviderScriptParameter.d.ts +49 -0
- package/objects/Providers/Config/ProviderScriptParameterType.d.ts +17 -0
- package/objects/Providers/Configuration/ProviderConfiguration.d.ts +66 -0
- package/objects/Providers/Configuration/ProviderConfigurationNode.d.ts +66 -0
- package/objects/Providers/Configuration/ProviderConfigurationType.d.ts +62 -0
- package/objects/Providers/Configuration/ProviderGeofenceBase.d.ts +29 -0
- package/objects/Providers/Configuration/ProviderGeofenceBase_fromJSON.d.ts +1 -0
- package/objects/Providers/Configuration/ProviderGeofenceCircular.d.ts +28 -0
- package/objects/Providers/Configuration/ProviderGeofencePoint.d.ts +12 -0
- package/objects/Providers/Configuration/ProviderGeofencePolygon.d.ts +23 -0
- package/objects/Providers/Configuration/ProviderGeofenceRectangle.d.ts +28 -0
- package/objects/Providers/Provider.d.ts +205 -0
- package/objects/Providers/ProviderAdvanced.d.ts +50 -0
- package/objects/Providers/ProviderCommand.d.ts +36 -0
- package/objects/Providers/ProviderCommandStatus.d.ts +29 -0
- package/objects/Providers/ProviderCommandType.d.ts +37 -0
- package/objects/Providers/ProviderControl.d.ts +41 -0
- package/objects/Providers/ProviderData.d.ts +30 -0
- package/objects/Providers/ProviderGeneral.d.ts +121 -0
- package/objects/Providers/ProviderType.d.ts +106 -0
- package/objects/Reports/ReportBreakdown.d.ts +49 -0
- package/objects/Reports/ReportBreakdownJob.d.ts +37 -0
- package/objects/Reports/ReportBreakdownMessage.d.ts +40 -0
- package/objects/Reports/ReportBreakdownTask.d.ts +46 -0
- package/objects/Reports/ReportBreakdown_fromJSON.d.ts +1 -0
- package/objects/Reports/ReportFilterMode.d.ts +17 -0
- package/objects/Reports/ReportNotifications.d.ts +31 -0
- package/objects/Reports/ReportOptions.d.ts +52 -0
- package/objects/Reports/ReportParameter.d.ts +26 -0
- package/objects/Reports/ReportParameterType.d.ts +59 -0
- package/objects/Reports/ReportRecurrence.d.ts +54 -0
- package/objects/Reports/ReportRecurrenceType.d.ts +34 -0
- package/objects/Reports/ReportResult.d.ts +169 -0
- package/objects/Reports/ReportResultData.d.ts +17 -0
- package/objects/Reports/ReportSchedule.d.ts +111 -0
- package/objects/Reports/ReportScorecard.d.ts +38 -0
- package/objects/Reports/ReportScorecardParameter.d.ts +31 -0
- package/objects/Reports/ReportScorecardRules.d.ts +26 -0
- package/objects/Reports/ReportStatus.d.ts +29 -0
- package/objects/Reports/ReportSummary.d.ts +90 -0
- package/objects/Reports/ReportSummaryReason.d.ts +27 -0
- package/objects/Reports/ReportTemplate.d.ts +81 -0
- package/objects/Reports/ReportTotal.d.ts +47 -0
- package/objects/Reports/ReportType.d.ts +42 -0
- package/objects/index.d.ts +406 -0
- package/objects/storage.d.ts +176 -0
- package/package.json +36 -36
- package/trakit-objects.min.js +2 -2
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { ISerializable } from "../API/Interfaces/ISerializable";
|
|
2
|
+
import { email, JsonObject, uint, ushort } from "../API/Types";
|
|
3
|
+
/**
|
|
4
|
+
* The types of email protocols supported for incoming mail servers.
|
|
5
|
+
*/
|
|
6
|
+
export declare enum IncomingEmailServerType {
|
|
7
|
+
/**
|
|
8
|
+
* Internet Message Access Protocol (default)
|
|
9
|
+
*/
|
|
10
|
+
"IMAP" = "IMAP",
|
|
11
|
+
/**
|
|
12
|
+
* Post Office Protocol v3
|
|
13
|
+
*/
|
|
14
|
+
"POP3" = "POP3"
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* The types of email protocols supported for sending messages.
|
|
18
|
+
*/
|
|
19
|
+
export declare enum OutgoingEmailServerType {
|
|
20
|
+
/**
|
|
21
|
+
* Simple Mail Transfer Protocol
|
|
22
|
+
*/
|
|
23
|
+
"SMTP" = "SMTP"
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* The server used for notification and conversational email messages sent and received by the system.
|
|
27
|
+
*/
|
|
28
|
+
export declare class NotificationServerEmail implements ISerializable {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @param json
|
|
32
|
+
*/
|
|
33
|
+
static fromJSON(json: JsonObject): NotificationServerEmail;
|
|
34
|
+
/**
|
|
35
|
+
* The type of incoming protocol to use (IMAP or POP3).
|
|
36
|
+
*/
|
|
37
|
+
incomingType: IncomingEmailServerType;
|
|
38
|
+
/**
|
|
39
|
+
* The domain or IP address of the incoming email server.
|
|
40
|
+
*/
|
|
41
|
+
incomingAddress: string;
|
|
42
|
+
/**
|
|
43
|
+
* The port number of the incoming email server.
|
|
44
|
+
*/
|
|
45
|
+
incomingPort: ushort;
|
|
46
|
+
/**
|
|
47
|
+
* The username used to login to the incoming email server.
|
|
48
|
+
*/
|
|
49
|
+
incomingLogin: string;
|
|
50
|
+
/**
|
|
51
|
+
* Is the incoming email server using a secure SSL/TLS connection (it should).
|
|
52
|
+
*/
|
|
53
|
+
incomingSecure: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Is the incoming email server /**
|
|
56
|
+
* IMAP message sequence number so only recent messages are retrieved.
|
|
57
|
+
*/
|
|
58
|
+
incomingMessageNumber: uint;
|
|
59
|
+
/**
|
|
60
|
+
* The type of outgoing protocol to use (only SMTP).
|
|
61
|
+
*/
|
|
62
|
+
outgoingType: OutgoingEmailServerType;
|
|
63
|
+
/**
|
|
64
|
+
* The domain or IP address of the outgoing email server.
|
|
65
|
+
*/
|
|
66
|
+
outgoingAddress: string;
|
|
67
|
+
/**
|
|
68
|
+
* The port number of the outgoing email server.
|
|
69
|
+
*/
|
|
70
|
+
outgoingPort: ushort;
|
|
71
|
+
/**
|
|
72
|
+
* The username used to login to the outgoing email server.
|
|
73
|
+
*/
|
|
74
|
+
outgoingLogin: string;
|
|
75
|
+
/**
|
|
76
|
+
* Is the outgoing email server using a secure SSL/TLS connection (it should).
|
|
77
|
+
*/
|
|
78
|
+
outgoingSecure: boolean;
|
|
79
|
+
/**
|
|
80
|
+
* Is the outgoing email server /**
|
|
81
|
+
* An optional field which can be set as the "sent from" and/or "reply-to" address.
|
|
82
|
+
*/
|
|
83
|
+
outgoingReplyTo: email;
|
|
84
|
+
constructor(incomingType?: IncomingEmailServerType, incomingAddress?: string, incomingPort?: ushort, incomingLogin?: string, incomingSecure?: boolean, incomingMessageNumber?: uint, outgoingType?: OutgoingEmailServerType, outgoingAddress?: string, outgoingPort?: ushort, outgoingLogin?: string, outgoingSecure?: boolean, outgoingReplyTo?: string);
|
|
85
|
+
toJSON(): {
|
|
86
|
+
incomingType: IncomingEmailServerType;
|
|
87
|
+
incomingAddress: string;
|
|
88
|
+
incomingPort: number | null;
|
|
89
|
+
incomingLogin: string;
|
|
90
|
+
incomingSecure: boolean;
|
|
91
|
+
incomingMessageNumber: number | null;
|
|
92
|
+
outgoingType: OutgoingEmailServerType;
|
|
93
|
+
outgoingAddress: string;
|
|
94
|
+
outgoingPort: number | null;
|
|
95
|
+
outgoingLogin: string;
|
|
96
|
+
outgoingSecure: boolean;
|
|
97
|
+
outgoingReplyTo: string;
|
|
98
|
+
};
|
|
99
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ISerializable } from "../API/Interfaces/ISerializable";
|
|
2
|
+
import { JsonObject, ulong, ushort } from "../API/Types";
|
|
3
|
+
/**
|
|
4
|
+
* Definition for load-balanced outbound SMS numbers for the White-labelling profile.
|
|
5
|
+
*/
|
|
6
|
+
export declare class NotificationServerSms implements ISerializable {
|
|
7
|
+
/**
|
|
8
|
+
*
|
|
9
|
+
* @param json
|
|
10
|
+
*/
|
|
11
|
+
static fromJSON(json: JsonObject): NotificationServerSms;
|
|
12
|
+
/**
|
|
13
|
+
* A per-number/per-day limit on the amount of Notifications sent.
|
|
14
|
+
*/
|
|
15
|
+
notifyLimit: ushort;
|
|
16
|
+
/**
|
|
17
|
+
* All phone numbers listed by the country (using two-digit ISO 3166-1 alpha-2 country codes) they each serve.
|
|
18
|
+
*/
|
|
19
|
+
phoneNumbers: Map<string, ulong[]>;
|
|
20
|
+
constructor(notifyLimit?: ushort, phoneNumbers?: Map<string, ulong[]>);
|
|
21
|
+
toJSON(): {
|
|
22
|
+
notifyLimit: number | null;
|
|
23
|
+
phoneNumbers: JsonObject;
|
|
24
|
+
};
|
|
25
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Defines how User passwords expire.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum PasswordExpiryMode {
|
|
5
|
+
/**
|
|
6
|
+
* Passwords never expire.
|
|
7
|
+
*/
|
|
8
|
+
never = "never",
|
|
9
|
+
/**
|
|
10
|
+
* Passwords expire after a defined number of days.
|
|
11
|
+
*/
|
|
12
|
+
days = "days",
|
|
13
|
+
/**
|
|
14
|
+
* Passwords expire after a defined number of successful logins.
|
|
15
|
+
*/
|
|
16
|
+
sessions = "sessions"
|
|
17
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ISerializable } from "../API/Interfaces/ISerializable";
|
|
2
|
+
import { byte, JsonObject } from "../API/Types";
|
|
3
|
+
import { PasswordExpiryMode } from "./PasswordExpiryMode";
|
|
4
|
+
/**
|
|
5
|
+
* The password complexity and expiry policy.
|
|
6
|
+
*/
|
|
7
|
+
export declare class PasswordPolicy implements ISerializable {
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
* @param json
|
|
11
|
+
*/
|
|
12
|
+
static fromJSON(json: JsonObject): PasswordPolicy;
|
|
13
|
+
/**
|
|
14
|
+
* The minimum number of characters required.
|
|
15
|
+
*/
|
|
16
|
+
minimumLength: byte;
|
|
17
|
+
/**
|
|
18
|
+
* Do passwords require alphabetical characters.
|
|
19
|
+
*/
|
|
20
|
+
includeLetters: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Do passwords require numeric characters.
|
|
23
|
+
*/
|
|
24
|
+
includeNumbers: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Do passwords require upper-case and lower-case letters.
|
|
27
|
+
*/
|
|
28
|
+
includeUpperLower: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Do passwords require non-alphanumeric characters.
|
|
31
|
+
*/
|
|
32
|
+
includeSpecial: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Defines how passwords expire.
|
|
35
|
+
*/
|
|
36
|
+
expireMode: PasswordExpiryMode;
|
|
37
|
+
/**
|
|
38
|
+
* The threshold for expiry.
|
|
39
|
+
*/
|
|
40
|
+
expireThreshold: byte;
|
|
41
|
+
constructor(minimumLength?: byte, includeLetters?: boolean, includeNumbers?: boolean, includeUpperLower?: boolean, includeSpecial?: boolean, expireMode?: PasswordExpiryMode, expireThreshold?: byte);
|
|
42
|
+
toJSON(): {
|
|
43
|
+
minimumLength: number | null;
|
|
44
|
+
includeLetters: boolean;
|
|
45
|
+
includeNumbers: boolean;
|
|
46
|
+
includeUpperLower: boolean;
|
|
47
|
+
includeSpecial: boolean;
|
|
48
|
+
expireMode: PasswordExpiryMode;
|
|
49
|
+
expireThreshold: number | null;
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Defines the behaviour of the system when a user creates multiple sessions.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum SessionMultiUser {
|
|
5
|
+
/**
|
|
6
|
+
* Allow users to create multiple simultaneous sessions.
|
|
7
|
+
*/
|
|
8
|
+
allow = "allow",
|
|
9
|
+
/**
|
|
10
|
+
* Deny users from creating new sessions if they already have an active session.
|
|
11
|
+
*/
|
|
12
|
+
deny = "deny",
|
|
13
|
+
/**
|
|
14
|
+
* Allow users to create a new session, but automatically kill the previous session.
|
|
15
|
+
*/
|
|
16
|
+
replace = "replace"
|
|
17
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { ISerializable } from "../API/Interfaces/ISerializable";
|
|
2
|
+
import { byte, ipv4, JsonObject, ushort } from "../API/Types";
|
|
3
|
+
import { SessionMultiUser } from "./SessionMultiUser";
|
|
4
|
+
/**
|
|
5
|
+
* The session lifetime policy.
|
|
6
|
+
*/
|
|
7
|
+
export declare class SessionPolicy implements ISerializable {
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
* @param json
|
|
11
|
+
*/
|
|
12
|
+
static fromJSON(json: JsonObject): SessionPolicy;
|
|
13
|
+
/**
|
|
14
|
+
* The list of applications users are allowed to use to create sessions.
|
|
15
|
+
*/
|
|
16
|
+
applications: string[];
|
|
17
|
+
/**
|
|
18
|
+
* Ranges of IPv4 addresses (using Cisco notation) to limit session creation to certain IPs.
|
|
19
|
+
*/
|
|
20
|
+
ipv4Ranges: ipv4[];
|
|
21
|
+
/**
|
|
22
|
+
* Restrict session creation to only the provided IPv4 ranges ( /**
|
|
23
|
+
* Defines the behaviour of the system when a user creates multiple sessions.
|
|
24
|
+
*/
|
|
25
|
+
multiUser: SessionMultiUser;
|
|
26
|
+
/**
|
|
27
|
+
* Defines whether a session should be automatically killed when the connection breaks.
|
|
28
|
+
*/
|
|
29
|
+
idleAllowed: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* The lifetime duration of a session in minutes.
|
|
32
|
+
*/
|
|
33
|
+
expireTimeout: ushort;
|
|
34
|
+
/**
|
|
35
|
+
* The maximum number of sessions allowed per user.
|
|
36
|
+
*/
|
|
37
|
+
maxSessions: byte;
|
|
38
|
+
constructor(applications?: string[], ipv4Ranges?: ipv4[], multiUser?: SessionMultiUser, idleAllowed?: boolean, expireTimeout?: ushort, maxSessions?: byte);
|
|
39
|
+
toJSON(): {
|
|
40
|
+
applications: string[];
|
|
41
|
+
ipv4Ranges: string[];
|
|
42
|
+
multiUser: SessionMultiUser;
|
|
43
|
+
idleAllowed: boolean;
|
|
44
|
+
expireTimeout: number | null;
|
|
45
|
+
maxSessions: number | null;
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ILatLng } from "../API/Geography/Interfaces";
|
|
2
|
+
import { LatLng } from "../API/Geography/LatLng";
|
|
3
|
+
import { ISerializable } from "../API/Interfaces/ISerializable";
|
|
4
|
+
import { TimeSpan } from "../API/TimeSpan";
|
|
5
|
+
import { double, timespan, ulong, JsonObject } from "../API/Types";
|
|
6
|
+
/**
|
|
7
|
+
* Driving directions and details like duration and distance.
|
|
8
|
+
*/
|
|
9
|
+
export declare class DispatchDirection implements ISerializable {
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @param json
|
|
13
|
+
*/
|
|
14
|
+
static fromJSON(json: JsonObject): DispatchDirection;
|
|
15
|
+
/**
|
|
16
|
+
* The total distance of these directions (including sub-directions if applicable).
|
|
17
|
+
*/
|
|
18
|
+
distance: double;
|
|
19
|
+
/**
|
|
20
|
+
* The total duration of these directions (including sub-directions if applicable).
|
|
21
|
+
*/
|
|
22
|
+
duration: TimeSpan;
|
|
23
|
+
/**
|
|
24
|
+
* Text hint for the driver for the action to perform.
|
|
25
|
+
*/
|
|
26
|
+
instructions: string;
|
|
27
|
+
/**
|
|
28
|
+
* A <format id="polyline">route path</format> to display on a map.
|
|
29
|
+
*/
|
|
30
|
+
path: LatLng[];
|
|
31
|
+
/**
|
|
32
|
+
* For complex routes, the sub-directions provide a breakdown or additional details.
|
|
33
|
+
*/
|
|
34
|
+
directions: DispatchDirection[];
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier of the {@link DispatchJob} or {@link DispatchTask}.
|
|
37
|
+
*/
|
|
38
|
+
job: ulong;
|
|
39
|
+
/**
|
|
40
|
+
* The {@link DispatchStep.id}, if this direction is for {@link DispatchJob}s.
|
|
41
|
+
*/
|
|
42
|
+
step: ulong;
|
|
43
|
+
constructor(distance?: double, duration?: TimeSpan | timespan | number, instructions?: string, path?: (ILatLng | JsonObject)[], directions?: DispatchDirection[], job?: ulong, step?: ulong);
|
|
44
|
+
toJSON(): {
|
|
45
|
+
distance: number;
|
|
46
|
+
duration: string | null;
|
|
47
|
+
instructions: string;
|
|
48
|
+
path: any[];
|
|
49
|
+
directions: any[];
|
|
50
|
+
job: number | null;
|
|
51
|
+
step: number | null;
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { BaseComponent } from "../API/BaseComponent";
|
|
2
|
+
import { IBelongAsset } from "../API/Interfaces/IBelongAsset";
|
|
3
|
+
import { IBelongCompany } from "../API/Interfaces/IBelongCompany";
|
|
4
|
+
import { IIdUlong } from "../API/Interfaces/IIdUlong";
|
|
5
|
+
import { ILabelled } from "../API/Interfaces/ILabelled";
|
|
6
|
+
import { codified, JsonObject, ulong } from "../API/Types";
|
|
7
|
+
import { Asset } from "../Assets/Asset";
|
|
8
|
+
import { Company } from "../Companies/Company";
|
|
9
|
+
import { FormResult } from "../Hosting/FormResult";
|
|
10
|
+
import { DispatchJobPriority } from "./DispatchJobPriority";
|
|
11
|
+
import { DispatchStep } from "./DispatchStep";
|
|
12
|
+
/**
|
|
13
|
+
* Some work that needs to be done by performing one or more {@link DispatchStep}s.
|
|
14
|
+
*/
|
|
15
|
+
export declare class DispatchJob extends BaseComponent implements IIdUlong, ILabelled, IBelongCompany, IBelongAsset {
|
|
16
|
+
/**
|
|
17
|
+
* Unique identifier of this job.
|
|
18
|
+
*/
|
|
19
|
+
id: ulong;
|
|
20
|
+
/**
|
|
21
|
+
* The company to which this job belongs.
|
|
22
|
+
* {@link Company.id}
|
|
23
|
+
*/
|
|
24
|
+
companyId: ulong;
|
|
25
|
+
/**
|
|
26
|
+
* The {@link Company} to which this job belongs.
|
|
27
|
+
*/
|
|
28
|
+
get company(): Company;
|
|
29
|
+
/**
|
|
30
|
+
* The {@link Asset} to which this job belongs.
|
|
31
|
+
* This value is null when unassigned.
|
|
32
|
+
* {@link Asset.id}
|
|
33
|
+
*/
|
|
34
|
+
assetId: ulong;
|
|
35
|
+
/**
|
|
36
|
+
* The {@link Asset} to which this job belongs.
|
|
37
|
+
* This value is null when unassigned.
|
|
38
|
+
*/
|
|
39
|
+
get asset(): Asset;
|
|
40
|
+
set asset(value: Asset);
|
|
41
|
+
/**
|
|
42
|
+
* A name for the work needed to be performed.
|
|
43
|
+
*/
|
|
44
|
+
name: string;
|
|
45
|
+
/**
|
|
46
|
+
* Name/value collections of custom fields used to refer to external systems.
|
|
47
|
+
*/
|
|
48
|
+
references: Map<string, string>;
|
|
49
|
+
/**
|
|
50
|
+
* Instructions (filled out by dispatcher) for the field-employee to help them complete the job.
|
|
51
|
+
*/
|
|
52
|
+
instructions: string;
|
|
53
|
+
/**
|
|
54
|
+
* A list of hosted {@link FormResult.id} attached to this job.
|
|
55
|
+
*/
|
|
56
|
+
formIds: ulong[];
|
|
57
|
+
/**
|
|
58
|
+
* A list of hosted {@link FormResult}s attached to this job.
|
|
59
|
+
*/
|
|
60
|
+
get forms(): FormResult[];
|
|
61
|
+
set forms(value: FormResult[]);
|
|
62
|
+
/**
|
|
63
|
+
* The importance of this job when scheduling for an asset.
|
|
64
|
+
*/
|
|
65
|
+
priority: DispatchJobPriority;
|
|
66
|
+
/**
|
|
67
|
+
* Codified label names used to relate (unassigned) jobs to {@link Asset}s.
|
|
68
|
+
*/
|
|
69
|
+
labels: codified[];
|
|
70
|
+
/**
|
|
71
|
+
* The codified status tag names reflecting the conditions of this job.
|
|
72
|
+
*/
|
|
73
|
+
tags: codified[];
|
|
74
|
+
/**
|
|
75
|
+
* A list of coordinates to visit in order to carry out the work for this job.
|
|
76
|
+
*/
|
|
77
|
+
steps: DispatchStep[];
|
|
78
|
+
/**
|
|
79
|
+
* When this job was originally created.
|
|
80
|
+
*/
|
|
81
|
+
created: Date;
|
|
82
|
+
/**
|
|
83
|
+
* Clocked-in driver name who made the update.
|
|
84
|
+
* Null if not clocked-in, or no changes have been made.
|
|
85
|
+
*/
|
|
86
|
+
driver: string;
|
|
87
|
+
toJSON(): {
|
|
88
|
+
id: number | null;
|
|
89
|
+
company: number | null;
|
|
90
|
+
v: number[];
|
|
91
|
+
driver: string;
|
|
92
|
+
created: string | null;
|
|
93
|
+
name: string;
|
|
94
|
+
instructions: string;
|
|
95
|
+
priority: DispatchJobPriority;
|
|
96
|
+
references: JsonObject;
|
|
97
|
+
labels: string[];
|
|
98
|
+
tags: string[];
|
|
99
|
+
forms: number[];
|
|
100
|
+
steps: any[];
|
|
101
|
+
};
|
|
102
|
+
fromJSON(json: JsonObject, force?: boolean): boolean;
|
|
103
|
+
/**
|
|
104
|
+
* The {@link id} is the key.
|
|
105
|
+
*/
|
|
106
|
+
getKey(): number;
|
|
107
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A value assigned to {@link DispatchJob}s in order to weigh them when optimizing a route.
|
|
3
|
+
*/
|
|
4
|
+
export declare enum DispatchJobPriority {
|
|
5
|
+
/**
|
|
6
|
+
* Will be done last, after all others, if at all.
|
|
7
|
+
*/
|
|
8
|
+
standby = "standby",
|
|
9
|
+
/**
|
|
10
|
+
* Low priority jobs are assigned towards the end of a dispatch, unless they are in very close proximity to another job.
|
|
11
|
+
*/
|
|
12
|
+
low = "low",
|
|
13
|
+
/**
|
|
14
|
+
* A normal job that will be done at the first opportunity.
|
|
15
|
+
*/
|
|
16
|
+
medium = "medium",
|
|
17
|
+
/**
|
|
18
|
+
* More important job that will be routed to first unless the next high importance job is much farther away.
|
|
19
|
+
*/
|
|
20
|
+
high = "high",
|
|
21
|
+
/**
|
|
22
|
+
* Must be done first, before all others.
|
|
23
|
+
*/
|
|
24
|
+
urgent = "urgent"
|
|
25
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { ILatLng } from "../API/Geography/Interfaces";
|
|
2
|
+
import { LatLng } from "../API/Geography/LatLng";
|
|
3
|
+
import { IIdUlong } from "../API/Interfaces/IIdUlong";
|
|
4
|
+
import { INamed } from "../API/Interfaces/INamed";
|
|
5
|
+
import { ISerializable } from "../API/Interfaces/ISerializable";
|
|
6
|
+
import { TimeSpan } from "../API/TimeSpan";
|
|
7
|
+
import { datetime, nothing, timespan, ulong, JsonObject } from "../API/Types";
|
|
8
|
+
import { Place } from "../Places/Place";
|
|
9
|
+
import { DispatchStepState } from "./DispatchStepState";
|
|
10
|
+
import { DispatchStepStatus } from "./DispatchStepStatus";
|
|
11
|
+
/**
|
|
12
|
+
* A portion of work for a {@link DispatchJob}.
|
|
13
|
+
*/
|
|
14
|
+
export declare class DispatchStep implements IIdUlong, INamed, ISerializable {
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @param json
|
|
18
|
+
*/
|
|
19
|
+
static fromJSON(json: JsonObject): DispatchStep;
|
|
20
|
+
/**
|
|
21
|
+
* Identifier for this {@link DispatchStep}.
|
|
22
|
+
* This value is unique per {@link DispatchJob}, but is not unique system-wide.
|
|
23
|
+
*/
|
|
24
|
+
id: ulong;
|
|
25
|
+
/**
|
|
26
|
+
* A name for the work needed to be performed.
|
|
27
|
+
*/
|
|
28
|
+
name: string;
|
|
29
|
+
/**
|
|
30
|
+
* The most recently updated state for this step.
|
|
31
|
+
*/
|
|
32
|
+
get status(): DispatchStepStatus;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
*/
|
|
36
|
+
get updated(): Date;
|
|
37
|
+
/**
|
|
38
|
+
* The progress of this step.
|
|
39
|
+
*/
|
|
40
|
+
states: Map<DispatchStepStatus, DispatchStepState>;
|
|
41
|
+
/**
|
|
42
|
+
* The optional estimated time of arrival for the asset.
|
|
43
|
+
*/
|
|
44
|
+
eta: Date;
|
|
45
|
+
/**
|
|
46
|
+
* The optional expected duration of the work for this step.
|
|
47
|
+
*/
|
|
48
|
+
duration: TimeSpan;
|
|
49
|
+
/**
|
|
50
|
+
* The total number of seconds in the {@link duration}.
|
|
51
|
+
*/
|
|
52
|
+
get timeOnSite(): number;
|
|
53
|
+
set timeOnSite(value: number);
|
|
54
|
+
/**
|
|
55
|
+
* An optional place which can be used as a template instead of providing lat/long coordinates and a street address.
|
|
56
|
+
* {@link Place.id}
|
|
57
|
+
*/
|
|
58
|
+
placeId: ulong;
|
|
59
|
+
/**
|
|
60
|
+
* An optional place which can be used as a template instead of providing lat/long coordinates and a street address.
|
|
61
|
+
* {@link Place.id}
|
|
62
|
+
*/
|
|
63
|
+
get place(): Place;
|
|
64
|
+
set place(value: Place);
|
|
65
|
+
/**
|
|
66
|
+
* The street address of where the step must be completed.
|
|
67
|
+
*/
|
|
68
|
+
address: string;
|
|
69
|
+
/**
|
|
70
|
+
* The lat/long coordinates of where the step must be {@link DispatchStepStatus.completed}.
|
|
71
|
+
*/
|
|
72
|
+
latlng: LatLng | null;
|
|
73
|
+
/**
|
|
74
|
+
* Notes about the status of the work filled in by field-employee.
|
|
75
|
+
*/
|
|
76
|
+
notes: string;
|
|
77
|
+
/**
|
|
78
|
+
* Indicates whether this step requires a signature.
|
|
79
|
+
*/
|
|
80
|
+
signature: boolean;
|
|
81
|
+
/**
|
|
82
|
+
* The name of the person who signed the step's completion.
|
|
83
|
+
*/
|
|
84
|
+
signatory: string;
|
|
85
|
+
constructor(id?: ulong | nothing, name?: string | nothing, states?: Map<DispatchStepStatus, DispatchStepState> | nothing, eta?: Date | number | datetime | nothing, duration?: TimeSpan | timespan | number | nothing, place?: ulong | nothing, address?: string | nothing, latlng?: ILatLng | JsonObject | nothing, notes?: string | nothing, signature?: boolean | nothing, signatory?: string | nothing);
|
|
86
|
+
toJSON(): {
|
|
87
|
+
id: number | null;
|
|
88
|
+
address: string;
|
|
89
|
+
duration: string;
|
|
90
|
+
eta: string;
|
|
91
|
+
latlng: ILatLng | null;
|
|
92
|
+
name: string;
|
|
93
|
+
notes: string;
|
|
94
|
+
place: number | null;
|
|
95
|
+
signature: boolean;
|
|
96
|
+
signatory: string;
|
|
97
|
+
states: JsonObject;
|
|
98
|
+
};
|
|
99
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ILatLng } from "../API/Geography/Interfaces";
|
|
2
|
+
import { LatLng } from "../API/Geography/LatLng";
|
|
3
|
+
import { ISerializable } from "../API/Interfaces/ISerializable";
|
|
4
|
+
import { datetime, JsonObject, nothing } from "../API/Types";
|
|
5
|
+
/**
|
|
6
|
+
* Details about the lifetime of a {@link DispatchStep}.
|
|
7
|
+
*/
|
|
8
|
+
export declare class DispatchStepState implements ISerializable {
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param json
|
|
12
|
+
*/
|
|
13
|
+
static fromJSON(json: JsonObject): DispatchStepState;
|
|
14
|
+
/**
|
|
15
|
+
* A timestamp from when the lifetime was updated.
|
|
16
|
+
*/
|
|
17
|
+
updated: Date;
|
|
18
|
+
/**
|
|
19
|
+
* The coordinates from the {@link Asset} when the update happened.
|
|
20
|
+
*/
|
|
21
|
+
latlng: LatLng | null;
|
|
22
|
+
constructor(updated?: Date | number | datetime | nothing, latlng?: ILatLng | JsonObject | nothing);
|
|
23
|
+
toJSON(): {
|
|
24
|
+
updated: string | null;
|
|
25
|
+
latlng: ILatLng | null;
|
|
26
|
+
};
|
|
27
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The lifetime of all {@link DispatchStep}s (in order).
|
|
3
|
+
*/
|
|
4
|
+
export declare enum DispatchStepStatus {
|
|
5
|
+
/**
|
|
6
|
+
* The {@link DispatchStep} has not yet been started.
|
|
7
|
+
*/
|
|
8
|
+
pending = "pending",
|
|
9
|
+
/**
|
|
10
|
+
* The asset is on the way to the {@link DispatchStep}'s location next.
|
|
11
|
+
*/
|
|
12
|
+
onRoute = "onRoute",
|
|
13
|
+
/**
|
|
14
|
+
* The asset has arrived at the {@link DispatchStep}'s location.
|
|
15
|
+
*/
|
|
16
|
+
arrived = "arrived",
|
|
17
|
+
/**
|
|
18
|
+
* The {@link DispatchStep} is done (or the asset has departed the location).
|
|
19
|
+
*/
|
|
20
|
+
completed = "completed"
|
|
21
|
+
}
|