@trakit/objects 0.0.5 → 0.0.6

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.
Files changed (429) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +24 -0
  3. package/_publish/index.d.ts +406 -0
  4. package/_publish/objects/API/Arrays.d.ts +46 -0
  5. package/_publish/objects/API/Base.d.ts +19 -0
  6. package/_publish/objects/API/BaseComponent.d.ts +40 -0
  7. package/_publish/objects/API/BaseCompound.d.ts +19 -0
  8. package/_publish/objects/API/Codifier.d.ts +15 -0
  9. package/_publish/objects/API/Constants.d.ts +39 -0
  10. package/_publish/objects/API/Conversion.d.ts +255 -0
  11. package/_publish/objects/API/Encoding.d.ts +9 -0
  12. package/_publish/objects/API/Files.d.ts +21 -0
  13. package/_publish/objects/API/Functions.d.ts +196 -0
  14. package/_publish/objects/API/Geography/Functions.d.ts +236 -0
  15. package/_publish/objects/API/Geography/Interfaces.d.ts +150 -0
  16. package/_publish/objects/API/Geography/LatLng.d.ts +86 -0
  17. package/_publish/objects/API/Geography/LatLngBounds.d.ts +146 -0
  18. package/_publish/objects/API/Geography/Position.d.ts +74 -0
  19. package/_publish/objects/API/Geography/StreetAddress.d.ts +59 -0
  20. package/_publish/objects/API/Geometry/Functions.d.ts +114 -0
  21. package/_publish/objects/API/Geometry/Interfaces.d.ts +111 -0
  22. package/_publish/objects/API/Geometry/Point.d.ts +81 -0
  23. package/_publish/objects/API/Geometry/Radial.d.ts +110 -0
  24. package/_publish/objects/API/Geometry/Rectangle.d.ts +159 -0
  25. package/_publish/objects/API/Geometry/Size.d.ts +58 -0
  26. package/_publish/objects/API/Guid.d.ts +4 -0
  27. package/_publish/objects/API/Interfaces/IAmCompany.d.ts +11 -0
  28. package/_publish/objects/API/Interfaces/IBelongAsset.d.ts +15 -0
  29. package/_publish/objects/API/Interfaces/IBelongBillingProfile.d.ts +15 -0
  30. package/_publish/objects/API/Interfaces/IBelongCompany.d.ts +15 -0
  31. package/_publish/objects/API/Interfaces/IDeserializable.d.ts +13 -0
  32. package/_publish/objects/API/Interfaces/IEnabled.d.ts +10 -0
  33. package/_publish/objects/API/Interfaces/IFileSize.d.ts +9 -0
  34. package/_publish/objects/API/Interfaces/IGlobal.d.ts +11 -0
  35. package/_publish/objects/API/Interfaces/IHavePermissions.d.ts +20 -0
  36. package/_publish/objects/API/Interfaces/IHavePreferences.d.ts +29 -0
  37. package/_publish/objects/API/Interfaces/IIconic.d.ts +15 -0
  38. package/_publish/objects/API/Interfaces/IIdUlong.d.ts +10 -0
  39. package/_publish/objects/API/Interfaces/ILabelled.d.ts +10 -0
  40. package/_publish/objects/API/Interfaces/INamed.d.ts +13 -0
  41. package/_publish/objects/API/Interfaces/IPictured.d.ts +15 -0
  42. package/_publish/objects/API/Interfaces/IRequestable.d.ts +22 -0
  43. package/_publish/objects/API/Interfaces/ISerializable.d.ts +10 -0
  44. package/_publish/objects/API/Interfaces/ISuspendable.d.ts +16 -0
  45. package/_publish/objects/API/Interfaces/IVisual.d.ts +18 -0
  46. package/_publish/objects/API/Maps.d.ts +28 -0
  47. package/_publish/objects/API/Objects.d.ts +5 -0
  48. package/_publish/objects/API/SearchPattern.d.ts +46 -0
  49. package/_publish/objects/API/TimeSpan.d.ts +109 -0
  50. package/_publish/objects/API/Timezone.d.ts +44 -0
  51. package/_publish/objects/API/Timezones.d.ts +7 -0
  52. package/_publish/objects/API/Types.d.ts +132 -0
  53. package/_publish/objects/Accounts/Contact.d.ts +139 -0
  54. package/_publish/objects/Accounts/Machine.d.ts +139 -0
  55. package/_publish/objects/Accounts/MultiFactorType.d.ts +17 -0
  56. package/_publish/objects/Accounts/NotificationMethod.d.ts +17 -0
  57. package/_publish/objects/Accounts/Permissions/Authorizer.d.ts +204 -0
  58. package/_publish/objects/Accounts/Permissions/Permission.d.ts +56 -0
  59. package/_publish/objects/Accounts/Permissions/PermissionEscalation.d.ts +41 -0
  60. package/_publish/objects/Accounts/Permissions/PermissionEscalationState.d.ts +19 -0
  61. package/_publish/objects/Accounts/Permissions/PermissionEscalationType.d.ts +13 -0
  62. package/_publish/objects/Accounts/Permissions/PermissionLevel.d.ts +17 -0
  63. package/_publish/objects/Accounts/Permissions/PermissionMethod.d.ts +13 -0
  64. package/_publish/objects/Accounts/Permissions/PermissionType.d.ts +280 -0
  65. package/_publish/objects/Accounts/SSOIdentityProvider.d.ts +25 -0
  66. package/_publish/objects/Accounts/Session.d.ts +89 -0
  67. package/_publish/objects/Accounts/SessionStatus.d.ts +29 -0
  68. package/_publish/objects/Accounts/SystemsOfUnits.d.ts +13 -0
  69. package/_publish/objects/Accounts/User.d.ts +167 -0
  70. package/_publish/objects/Accounts/UserAdvanced.d.ts +53 -0
  71. package/_publish/objects/Accounts/UserAuthentication.d.ts +55 -0
  72. package/_publish/objects/Accounts/UserGeneral.d.ts +98 -0
  73. package/_publish/objects/Accounts/UserGroup.d.ts +51 -0
  74. package/_publish/objects/Accounts/UserMFA.d.ts +47 -0
  75. package/_publish/objects/Accounts/UserNotifications.d.ts +76 -0
  76. package/_publish/objects/Accounts/UserSSO.d.ts +37 -0
  77. package/_publish/objects/Assets/Asset.d.ts +218 -0
  78. package/_publish/objects/Assets/AssetAdvanced.d.ts +77 -0
  79. package/_publish/objects/Assets/AssetAttribute.d.ts +71 -0
  80. package/_publish/objects/Assets/AssetDispatch.d.ts +55 -0
  81. package/_publish/objects/Assets/AssetGeneral.d.ts +127 -0
  82. package/_publish/objects/Assets/AssetPlaceStatus.d.ts +31 -0
  83. package/_publish/objects/Assets/AssetPlaceStatusType.d.ts +17 -0
  84. package/_publish/objects/Assets/AssetType.d.ts +21 -0
  85. package/_publish/objects/Behaviours/Behaviour.d.ts +78 -0
  86. package/_publish/objects/Behaviours/BehaviourLog.d.ts +95 -0
  87. package/_publish/objects/Behaviours/BehaviourLogType.d.ts +21 -0
  88. package/_publish/objects/Behaviours/BehaviourParameter.d.ts +38 -0
  89. package/_publish/objects/Behaviours/BehaviourParameterType.d.ts +21 -0
  90. package/_publish/objects/Behaviours/BehaviourScript.d.ts +83 -0
  91. package/_publish/objects/Billing/BillableBase.d.ts +83 -0
  92. package/_publish/objects/Billing/BillableSmsProfile.d.ts +26 -0
  93. package/_publish/objects/Billing/BillingCurrency.d.ts +17 -0
  94. package/_publish/objects/Billing/BillingCycle.d.ts +17 -0
  95. package/_publish/objects/Billing/BillingProfile.d.ts +104 -0
  96. package/_publish/objects/Billing/Hosting/BillableHostingBase.d.ts +41 -0
  97. package/_publish/objects/Billing/Hosting/BillableHostingLicense.d.ts +30 -0
  98. package/_publish/objects/Billing/Hosting/BillableHostingLicenseType.d.ts +20 -0
  99. package/_publish/objects/Billing/Hosting/BillableHostingRule.d.ts +30 -0
  100. package/_publish/objects/Billing/Hosting/BillableHostingType.d.ts +41 -0
  101. package/_publish/objects/Billing/Report/BillingReport.d.ts +112 -0
  102. package/_publish/objects/Billing/Report/BillingReportBreakdown.d.ts +34 -0
  103. package/_publish/objects/Billing/Report/BillingReportHostingSummary.d.ts +36 -0
  104. package/_publish/objects/Billing/Report/BillingReportLicenseBreakdown.d.ts +79 -0
  105. package/_publish/objects/Billing/Report/BillingReportServiceBreakdown.d.ts +124 -0
  106. package/_publish/objects/Billing/Report/BillingReportStatus.d.ts +25 -0
  107. package/_publish/objects/Billing/Report/BillingReportSummary.d.ts +49 -0
  108. package/_publish/objects/Companies/ColourStyle.d.ts +25 -0
  109. package/_publish/objects/Companies/Company.d.ts +167 -0
  110. package/_publish/objects/Companies/CompanyDirectory.d.ts +52 -0
  111. package/_publish/objects/Companies/CompanyGeneral.d.ts +55 -0
  112. package/_publish/objects/Companies/CompanyPolicy.d.ts +66 -0
  113. package/_publish/objects/Companies/CompanyReseller.d.ts +166 -0
  114. package/_publish/objects/Companies/CompanyStyle.d.ts +50 -0
  115. package/_publish/objects/Companies/LabelStyle.d.ts +46 -0
  116. package/_publish/objects/Companies/NotificationServerEmail.d.ts +99 -0
  117. package/_publish/objects/Companies/NotificationServerSms.d.ts +25 -0
  118. package/_publish/objects/Companies/PasswordExpiryMode.d.ts +17 -0
  119. package/_publish/objects/Companies/PasswordPolicy.d.ts +51 -0
  120. package/_publish/objects/Companies/SessionMultiUser.d.ts +17 -0
  121. package/_publish/objects/Companies/SessionPolicy.d.ts +47 -0
  122. package/_publish/objects/Dispatch/DispatchDirection.d.ts +53 -0
  123. package/_publish/objects/Dispatch/DispatchJob.d.ts +107 -0
  124. package/_publish/objects/Dispatch/DispatchJobPriority.d.ts +25 -0
  125. package/_publish/objects/Dispatch/DispatchStep.d.ts +99 -0
  126. package/_publish/objects/Dispatch/DispatchStepState.d.ts +27 -0
  127. package/_publish/objects/Dispatch/DispatchStepStatus.d.ts +21 -0
  128. package/_publish/objects/Dispatch/DispatchTask.d.ts +154 -0
  129. package/_publish/objects/Dispatch/DispatchTaskStatus.d.ts +50 -0
  130. package/_publish/objects/Hosting/Document.d.ts +70 -0
  131. package/_publish/objects/Hosting/Fields/FormFieldAttachments.d.ts +31 -0
  132. package/_publish/objects/Hosting/Fields/FormFieldBase.d.ts +56 -0
  133. package/_publish/objects/Hosting/Fields/FormFieldBase_fromJSON.d.ts +1 -0
  134. package/_publish/objects/Hosting/Fields/FormFieldBoolean.d.ts +38 -0
  135. package/_publish/objects/Hosting/Fields/FormFieldChoice.d.ts +46 -0
  136. package/_publish/objects/Hosting/Fields/FormFieldDate.d.ts +26 -0
  137. package/_publish/objects/Hosting/Fields/FormFieldNumeric.d.ts +54 -0
  138. package/_publish/objects/Hosting/Fields/FormFieldNumericSize.d.ts +32 -0
  139. package/_publish/objects/Hosting/Fields/FormFieldSignature.d.ts +17 -0
  140. package/_publish/objects/Hosting/Fields/FormFieldText.d.ts +32 -0
  141. package/_publish/objects/Hosting/Fields/FormFieldTime.d.ts +37 -0
  142. package/_publish/objects/Hosting/Fields/FormFieldTimezone.d.ts +14 -0
  143. package/_publish/objects/Hosting/FormFieldType.d.ts +127 -0
  144. package/_publish/objects/Hosting/FormResult.d.ts +95 -0
  145. package/_publish/objects/Hosting/FormTemplate.d.ts +80 -0
  146. package/_publish/objects/Images/Dashcam.d.ts +63 -0
  147. package/_publish/objects/Images/DashcamBase.d.ts +97 -0
  148. package/_publish/objects/Images/DashcamLive.d.ts +36 -0
  149. package/_publish/objects/Images/DashcamMediaType.d.ts +17 -0
  150. package/_publish/objects/Images/Icon.d.ts +66 -0
  151. package/_publish/objects/Images/IconGlyph.d.ts +47 -0
  152. package/_publish/objects/Images/IconLabel.d.ts +29 -0
  153. package/_publish/objects/Images/IconLayer.d.ts +33 -0
  154. package/_publish/objects/Images/Picture.d.ts +72 -0
  155. package/_publish/objects/Maintenance/MaintenanceInterval.d.ts +48 -0
  156. package/_publish/objects/Maintenance/MaintenanceJob.d.ts +134 -0
  157. package/_publish/objects/Maintenance/MaintenanceJobStatus.d.ts +21 -0
  158. package/_publish/objects/Maintenance/MaintenanceSchedule.d.ts +118 -0
  159. package/_publish/objects/Messaging/AlertPriority.d.ts +17 -0
  160. package/_publish/objects/Messaging/AssetAlert.d.ts +29 -0
  161. package/_publish/objects/Messaging/AssetMessage.d.ts +40 -0
  162. package/_publish/objects/Messaging/MessageBase.d.ts +99 -0
  163. package/_publish/objects/Messaging/MessageFolder.d.ts +13 -0
  164. package/_publish/objects/Messaging/MessageStatus.d.ts +29 -0
  165. package/_publish/objects/Messaging/MessageType.d.ts +33 -0
  166. package/_publish/objects/Places/Place.d.ts +114 -0
  167. package/_publish/objects/Places/PlaceType.d.ts +25 -0
  168. package/_publish/objects/Providers/Config/ProviderConfig.d.ts +70 -0
  169. package/_publish/objects/Providers/Config/ProviderRegistration.d.ts +119 -0
  170. package/_publish/objects/Providers/Config/ProviderScript.d.ts +86 -0
  171. package/_publish/objects/Providers/Config/ProviderScriptBlock.d.ts +41 -0
  172. package/_publish/objects/Providers/Config/ProviderScriptParameter.d.ts +49 -0
  173. package/_publish/objects/Providers/Config/ProviderScriptParameterType.d.ts +17 -0
  174. package/_publish/objects/Providers/Configuration/ProviderConfiguration.d.ts +66 -0
  175. package/_publish/objects/Providers/Configuration/ProviderConfigurationNode.d.ts +66 -0
  176. package/_publish/objects/Providers/Configuration/ProviderConfigurationType.d.ts +62 -0
  177. package/_publish/objects/Providers/Configuration/ProviderGeofenceBase.d.ts +29 -0
  178. package/_publish/objects/Providers/Configuration/ProviderGeofenceBase_fromJSON.d.ts +1 -0
  179. package/_publish/objects/Providers/Configuration/ProviderGeofenceCircular.d.ts +28 -0
  180. package/_publish/objects/Providers/Configuration/ProviderGeofencePoint.d.ts +12 -0
  181. package/_publish/objects/Providers/Configuration/ProviderGeofencePolygon.d.ts +23 -0
  182. package/_publish/objects/Providers/Configuration/ProviderGeofenceRectangle.d.ts +28 -0
  183. package/_publish/objects/Providers/Provider.d.ts +205 -0
  184. package/_publish/objects/Providers/ProviderAdvanced.d.ts +50 -0
  185. package/_publish/objects/Providers/ProviderCommand.d.ts +36 -0
  186. package/_publish/objects/Providers/ProviderCommandStatus.d.ts +29 -0
  187. package/_publish/objects/Providers/ProviderCommandType.d.ts +37 -0
  188. package/_publish/objects/Providers/ProviderControl.d.ts +41 -0
  189. package/_publish/objects/Providers/ProviderData.d.ts +30 -0
  190. package/_publish/objects/Providers/ProviderGeneral.d.ts +121 -0
  191. package/_publish/objects/Providers/ProviderType.d.ts +106 -0
  192. package/_publish/objects/Reports/ReportBreakdown.d.ts +49 -0
  193. package/_publish/objects/Reports/ReportBreakdownJob.d.ts +37 -0
  194. package/_publish/objects/Reports/ReportBreakdownMessage.d.ts +40 -0
  195. package/_publish/objects/Reports/ReportBreakdownTask.d.ts +46 -0
  196. package/_publish/objects/Reports/ReportBreakdown_fromJSON.d.ts +1 -0
  197. package/_publish/objects/Reports/ReportFilterMode.d.ts +17 -0
  198. package/_publish/objects/Reports/ReportNotifications.d.ts +31 -0
  199. package/_publish/objects/Reports/ReportOptions.d.ts +52 -0
  200. package/_publish/objects/Reports/ReportParameter.d.ts +26 -0
  201. package/_publish/objects/Reports/ReportParameterType.d.ts +59 -0
  202. package/_publish/objects/Reports/ReportRecurrence.d.ts +54 -0
  203. package/_publish/objects/Reports/ReportRecurrenceType.d.ts +34 -0
  204. package/_publish/objects/Reports/ReportResult.d.ts +169 -0
  205. package/_publish/objects/Reports/ReportResultData.d.ts +17 -0
  206. package/_publish/objects/Reports/ReportSchedule.d.ts +111 -0
  207. package/_publish/objects/Reports/ReportScorecard.d.ts +38 -0
  208. package/_publish/objects/Reports/ReportScorecardParameter.d.ts +31 -0
  209. package/_publish/objects/Reports/ReportScorecardRules.d.ts +26 -0
  210. package/_publish/objects/Reports/ReportStatus.d.ts +29 -0
  211. package/_publish/objects/Reports/ReportSummary.d.ts +90 -0
  212. package/_publish/objects/Reports/ReportSummaryReason.d.ts +27 -0
  213. package/_publish/objects/Reports/ReportTemplate.d.ts +81 -0
  214. package/_publish/objects/Reports/ReportTotal.d.ts +47 -0
  215. package/_publish/objects/Reports/ReportType.d.ts +42 -0
  216. package/_publish/storage.d.ts +176 -0
  217. package/{trakit-objects.min.js → _publish/trakit-objects.min.js} +2 -2
  218. package/package.json +6 -1
  219. package/index.d.ts +0 -406
  220. /package/{API → _publish/API}/Arrays.d.ts +0 -0
  221. /package/{API → _publish/API}/Base.d.ts +0 -0
  222. /package/{API → _publish/API}/BaseComponent.d.ts +0 -0
  223. /package/{API → _publish/API}/BaseCompound.d.ts +0 -0
  224. /package/{API → _publish/API}/Codifier.d.ts +0 -0
  225. /package/{API → _publish/API}/Constants.d.ts +0 -0
  226. /package/{API → _publish/API}/Conversion.d.ts +0 -0
  227. /package/{API → _publish/API}/Encoding.d.ts +0 -0
  228. /package/{API → _publish/API}/Files.d.ts +0 -0
  229. /package/{API → _publish/API}/Functions.d.ts +0 -0
  230. /package/{API → _publish/API}/Geography/Functions.d.ts +0 -0
  231. /package/{API → _publish/API}/Geography/Interfaces.d.ts +0 -0
  232. /package/{API → _publish/API}/Geography/LatLng.d.ts +0 -0
  233. /package/{API → _publish/API}/Geography/LatLngBounds.d.ts +0 -0
  234. /package/{API → _publish/API}/Geography/Position.d.ts +0 -0
  235. /package/{API → _publish/API}/Geography/StreetAddress.d.ts +0 -0
  236. /package/{API → _publish/API}/Geometry/Functions.d.ts +0 -0
  237. /package/{API → _publish/API}/Geometry/Interfaces.d.ts +0 -0
  238. /package/{API → _publish/API}/Geometry/Point.d.ts +0 -0
  239. /package/{API → _publish/API}/Geometry/Radial.d.ts +0 -0
  240. /package/{API → _publish/API}/Geometry/Rectangle.d.ts +0 -0
  241. /package/{API → _publish/API}/Geometry/Size.d.ts +0 -0
  242. /package/{API → _publish/API}/Guid.d.ts +0 -0
  243. /package/{API → _publish/API}/Interfaces/IAmCompany.d.ts +0 -0
  244. /package/{API → _publish/API}/Interfaces/IAuditable.d.ts +0 -0
  245. /package/{API → _publish/API}/Interfaces/IBelongAsset.d.ts +0 -0
  246. /package/{API → _publish/API}/Interfaces/IBelongBillingProfile.d.ts +0 -0
  247. /package/{API → _publish/API}/Interfaces/IBelongCompany.d.ts +0 -0
  248. /package/{API → _publish/API}/Interfaces/IDeserializable.d.ts +0 -0
  249. /package/{API → _publish/API}/Interfaces/IEnabled.d.ts +0 -0
  250. /package/{API → _publish/API}/Interfaces/IFileSize.d.ts +0 -0
  251. /package/{API → _publish/API}/Interfaces/IGlobal.d.ts +0 -0
  252. /package/{API → _publish/API}/Interfaces/IHavePermissions.d.ts +0 -0
  253. /package/{API → _publish/API}/Interfaces/IHavePreferences.d.ts +0 -0
  254. /package/{API → _publish/API}/Interfaces/IIconic.d.ts +0 -0
  255. /package/{API → _publish/API}/Interfaces/IIdUlong.d.ts +0 -0
  256. /package/{API → _publish/API}/Interfaces/ILabelled.d.ts +0 -0
  257. /package/{API → _publish/API}/Interfaces/INamed.d.ts +0 -0
  258. /package/{API → _publish/API}/Interfaces/IPictured.d.ts +0 -0
  259. /package/{API → _publish/API}/Interfaces/IRequestable.d.ts +0 -0
  260. /package/{API → _publish/API}/Interfaces/ISerializable.d.ts +0 -0
  261. /package/{API → _publish/API}/Interfaces/ISuspendable.d.ts +0 -0
  262. /package/{API → _publish/API}/Interfaces/IVisual.d.ts +0 -0
  263. /package/{API → _publish/API}/Maps.d.ts +0 -0
  264. /package/{API → _publish/API}/Objects.d.ts +0 -0
  265. /package/{API → _publish/API}/SearchPattern.d.ts +0 -0
  266. /package/{API → _publish/API}/TimeSpan.d.ts +0 -0
  267. /package/{API → _publish/API}/Timezone.d.ts +0 -0
  268. /package/{API → _publish/API}/Timezones.d.ts +0 -0
  269. /package/{API → _publish/API}/Types.d.ts +0 -0
  270. /package/{Accounts → _publish/Accounts}/Contact.d.ts +0 -0
  271. /package/{Accounts → _publish/Accounts}/Machine.d.ts +0 -0
  272. /package/{Accounts → _publish/Accounts}/NotificationMethod.d.ts +0 -0
  273. /package/{Accounts → _publish/Accounts}/Permissions/Authorizer.d.ts +0 -0
  274. /package/{Accounts → _publish/Accounts}/Permissions/Permission.d.ts +0 -0
  275. /package/{Accounts → _publish/Accounts}/Permissions/PermissionEscalation.d.ts +0 -0
  276. /package/{Accounts → _publish/Accounts}/Permissions/PermissionEscalationState.d.ts +0 -0
  277. /package/{Accounts → _publish/Accounts}/Permissions/PermissionEscalationType.d.ts +0 -0
  278. /package/{Accounts → _publish/Accounts}/Permissions/PermissionLevel.d.ts +0 -0
  279. /package/{Accounts → _publish/Accounts}/Permissions/PermissionMethod.d.ts +0 -0
  280. /package/{Accounts → _publish/Accounts}/Permissions/PermissionType.d.ts +0 -0
  281. /package/{Accounts → _publish/Accounts}/Session.d.ts +0 -0
  282. /package/{Accounts → _publish/Accounts}/SessionStatus.d.ts +0 -0
  283. /package/{Accounts → _publish/Accounts}/SystemsOfUnits.d.ts +0 -0
  284. /package/{Accounts → _publish/Accounts}/User.d.ts +0 -0
  285. /package/{Accounts → _publish/Accounts}/UserAdvanced.d.ts +0 -0
  286. /package/{Accounts → _publish/Accounts}/UserGeneral.d.ts +0 -0
  287. /package/{Accounts → _publish/Accounts}/UserGroup.d.ts +0 -0
  288. /package/{Accounts → _publish/Accounts}/UserNotifications.d.ts +0 -0
  289. /package/{Assets → _publish/Assets}/Asset.d.ts +0 -0
  290. /package/{Assets → _publish/Assets}/AssetAdvanced.d.ts +0 -0
  291. /package/{Assets → _publish/Assets}/AssetAttribute.d.ts +0 -0
  292. /package/{Assets → _publish/Assets}/AssetDispatch.d.ts +0 -0
  293. /package/{Assets → _publish/Assets}/AssetGeneral.d.ts +0 -0
  294. /package/{Assets → _publish/Assets}/AssetPlaceStatus.d.ts +0 -0
  295. /package/{Assets → _publish/Assets}/AssetPlaceStatusType.d.ts +0 -0
  296. /package/{Assets → _publish/Assets}/AssetType.d.ts +0 -0
  297. /package/{Behaviours → _publish/Behaviours}/Behaviour.d.ts +0 -0
  298. /package/{Behaviours → _publish/Behaviours}/BehaviourLog.d.ts +0 -0
  299. /package/{Behaviours → _publish/Behaviours}/BehaviourLogType.d.ts +0 -0
  300. /package/{Behaviours → _publish/Behaviours}/BehaviourParameter.d.ts +0 -0
  301. /package/{Behaviours → _publish/Behaviours}/BehaviourParameterType.d.ts +0 -0
  302. /package/{Behaviours → _publish/Behaviours}/BehaviourScript.d.ts +0 -0
  303. /package/{Billing → _publish/Billing}/BillableBase.d.ts +0 -0
  304. /package/{Billing → _publish/Billing}/BillableSmsProfile.d.ts +0 -0
  305. /package/{Billing → _publish/Billing}/BillingCurrency.d.ts +0 -0
  306. /package/{Billing → _publish/Billing}/BillingCycle.d.ts +0 -0
  307. /package/{Billing → _publish/Billing}/BillingProfile.d.ts +0 -0
  308. /package/{Billing → _publish/Billing}/Hosting/BillableHostingBase.d.ts +0 -0
  309. /package/{Billing → _publish/Billing}/Hosting/BillableHostingDiscount.d.ts +0 -0
  310. /package/{Billing → _publish/Billing}/Hosting/BillableHostingLicense.d.ts +0 -0
  311. /package/{Billing → _publish/Billing}/Hosting/BillableHostingLicenseType.d.ts +0 -0
  312. /package/{Billing → _publish/Billing}/Hosting/BillableHostingRule.d.ts +0 -0
  313. /package/{Billing → _publish/Billing}/Hosting/BillableHostingType.d.ts +0 -0
  314. /package/{Billing → _publish/Billing}/Report/BillingReport.d.ts +0 -0
  315. /package/{Billing → _publish/Billing}/Report/BillingReportBreakdown.d.ts +0 -0
  316. /package/{Billing → _publish/Billing}/Report/BillingReportHostingSummary.d.ts +0 -0
  317. /package/{Billing → _publish/Billing}/Report/BillingReportLicenseBreakdown.d.ts +0 -0
  318. /package/{Billing → _publish/Billing}/Report/BillingReportServiceBreakdown.d.ts +0 -0
  319. /package/{Billing → _publish/Billing}/Report/BillingReportStatus.d.ts +0 -0
  320. /package/{Billing → _publish/Billing}/Report/BillingReportSummary.d.ts +0 -0
  321. /package/{Companies → _publish/Companies}/ColourStyle.d.ts +0 -0
  322. /package/{Companies → _publish/Companies}/Company.d.ts +0 -0
  323. /package/{Companies → _publish/Companies}/CompanyDirectory.d.ts +0 -0
  324. /package/{Companies → _publish/Companies}/CompanyGeneral.d.ts +0 -0
  325. /package/{Companies → _publish/Companies}/CompanyPolicy.d.ts +0 -0
  326. /package/{Companies → _publish/Companies}/CompanyReseller.d.ts +0 -0
  327. /package/{Companies → _publish/Companies}/CompanyStyle.d.ts +0 -0
  328. /package/{Companies → _publish/Companies}/LabelStyle.d.ts +0 -0
  329. /package/{Companies → _publish/Companies}/NotificationServerEmail.d.ts +0 -0
  330. /package/{Companies → _publish/Companies}/NotificationServerSms.d.ts +0 -0
  331. /package/{Companies → _publish/Companies}/PasswordExpiryMode.d.ts +0 -0
  332. /package/{Companies → _publish/Companies}/PasswordPolicy.d.ts +0 -0
  333. /package/{Companies → _publish/Companies}/SessionMultiUser.d.ts +0 -0
  334. /package/{Companies → _publish/Companies}/SessionPolicy.d.ts +0 -0
  335. /package/{Dispatch → _publish/Dispatch}/DispatchDirection.d.ts +0 -0
  336. /package/{Dispatch → _publish/Dispatch}/DispatchJob.d.ts +0 -0
  337. /package/{Dispatch → _publish/Dispatch}/DispatchJobPriority.d.ts +0 -0
  338. /package/{Dispatch → _publish/Dispatch}/DispatchStep.d.ts +0 -0
  339. /package/{Dispatch → _publish/Dispatch}/DispatchStepState.d.ts +0 -0
  340. /package/{Dispatch → _publish/Dispatch}/DispatchStepStatus.d.ts +0 -0
  341. /package/{Dispatch → _publish/Dispatch}/DispatchTask.d.ts +0 -0
  342. /package/{Dispatch → _publish/Dispatch}/DispatchTaskStatus.d.ts +0 -0
  343. /package/{Hosting → _publish/Hosting}/Document.d.ts +0 -0
  344. /package/{Hosting → _publish/Hosting}/Fields/FormFieldAttachments.d.ts +0 -0
  345. /package/{Hosting → _publish/Hosting}/Fields/FormFieldBase.d.ts +0 -0
  346. /package/{Hosting → _publish/Hosting}/Fields/FormFieldBase_fromJSON.d.ts +0 -0
  347. /package/{Hosting → _publish/Hosting}/Fields/FormFieldBoolean.d.ts +0 -0
  348. /package/{Hosting → _publish/Hosting}/Fields/FormFieldChoice.d.ts +0 -0
  349. /package/{Hosting → _publish/Hosting}/Fields/FormFieldDate.d.ts +0 -0
  350. /package/{Hosting → _publish/Hosting}/Fields/FormFieldNumeric.d.ts +0 -0
  351. /package/{Hosting → _publish/Hosting}/Fields/FormFieldNumericSize.d.ts +0 -0
  352. /package/{Hosting → _publish/Hosting}/Fields/FormFieldSignature.d.ts +0 -0
  353. /package/{Hosting → _publish/Hosting}/Fields/FormFieldText.d.ts +0 -0
  354. /package/{Hosting → _publish/Hosting}/Fields/FormFieldTime.d.ts +0 -0
  355. /package/{Hosting → _publish/Hosting}/Fields/FormFieldTimezone.d.ts +0 -0
  356. /package/{Hosting → _publish/Hosting}/FormFieldType.d.ts +0 -0
  357. /package/{Hosting → _publish/Hosting}/FormResult.d.ts +0 -0
  358. /package/{Hosting → _publish/Hosting}/FormTemplate.d.ts +0 -0
  359. /package/{Images → _publish/Images}/Dashcam.d.ts +0 -0
  360. /package/{Images → _publish/Images}/DashcamBase.d.ts +0 -0
  361. /package/{Images → _publish/Images}/DashcamLive.d.ts +0 -0
  362. /package/{Images → _publish/Images}/DashcamMediaType.d.ts +0 -0
  363. /package/{Images → _publish/Images}/Icon.d.ts +0 -0
  364. /package/{Images → _publish/Images}/IconGlyph.d.ts +0 -0
  365. /package/{Images → _publish/Images}/IconLabel.d.ts +0 -0
  366. /package/{Images → _publish/Images}/IconLayer.d.ts +0 -0
  367. /package/{Images → _publish/Images}/Picture.d.ts +0 -0
  368. /package/{Maintenance → _publish/Maintenance}/MaintenanceInterval.d.ts +0 -0
  369. /package/{Maintenance → _publish/Maintenance}/MaintenanceJob.d.ts +0 -0
  370. /package/{Maintenance → _publish/Maintenance}/MaintenanceJobStatus.d.ts +0 -0
  371. /package/{Maintenance → _publish/Maintenance}/MaintenanceSchedule.d.ts +0 -0
  372. /package/{Messaging → _publish/Messaging}/AlertPriority.d.ts +0 -0
  373. /package/{Messaging → _publish/Messaging}/AssetAlert.d.ts +0 -0
  374. /package/{Messaging → _publish/Messaging}/AssetMessage.d.ts +0 -0
  375. /package/{Messaging → _publish/Messaging}/MessageBase.d.ts +0 -0
  376. /package/{Messaging → _publish/Messaging}/MessageFolder.d.ts +0 -0
  377. /package/{Messaging → _publish/Messaging}/MessageStatus.d.ts +0 -0
  378. /package/{Messaging → _publish/Messaging}/MessageType.d.ts +0 -0
  379. /package/{Places → _publish/Places}/Place.d.ts +0 -0
  380. /package/{Places → _publish/Places}/PlaceType.d.ts +0 -0
  381. /package/{Providers → _publish/Providers}/Config/ProviderConfig.d.ts +0 -0
  382. /package/{Providers → _publish/Providers}/Config/ProviderRegistration.d.ts +0 -0
  383. /package/{Providers → _publish/Providers}/Config/ProviderScript.d.ts +0 -0
  384. /package/{Providers → _publish/Providers}/Config/ProviderScriptBlock.d.ts +0 -0
  385. /package/{Providers → _publish/Providers}/Config/ProviderScriptParameter.d.ts +0 -0
  386. /package/{Providers → _publish/Providers}/Config/ProviderScriptParameterType.d.ts +0 -0
  387. /package/{Providers → _publish/Providers}/Configuration/ProviderConfiguration.d.ts +0 -0
  388. /package/{Providers → _publish/Providers}/Configuration/ProviderConfigurationNode.d.ts +0 -0
  389. /package/{Providers → _publish/Providers}/Configuration/ProviderConfigurationType.d.ts +0 -0
  390. /package/{Providers → _publish/Providers}/Configuration/ProviderGeofenceBase.d.ts +0 -0
  391. /package/{Providers → _publish/Providers}/Configuration/ProviderGeofenceBase_fromJSON.d.ts +0 -0
  392. /package/{Providers → _publish/Providers}/Configuration/ProviderGeofenceCircular.d.ts +0 -0
  393. /package/{Providers → _publish/Providers}/Configuration/ProviderGeofencePoint.d.ts +0 -0
  394. /package/{Providers → _publish/Providers}/Configuration/ProviderGeofencePolygon.d.ts +0 -0
  395. /package/{Providers → _publish/Providers}/Configuration/ProviderGeofenceRectangle.d.ts +0 -0
  396. /package/{Providers → _publish/Providers}/Provider.d.ts +0 -0
  397. /package/{Providers → _publish/Providers}/ProviderAdvanced.d.ts +0 -0
  398. /package/{Providers → _publish/Providers}/ProviderCommand.d.ts +0 -0
  399. /package/{Providers → _publish/Providers}/ProviderCommandStatus.d.ts +0 -0
  400. /package/{Providers → _publish/Providers}/ProviderCommandType.d.ts +0 -0
  401. /package/{Providers → _publish/Providers}/ProviderControl.d.ts +0 -0
  402. /package/{Providers → _publish/Providers}/ProviderData.d.ts +0 -0
  403. /package/{Providers → _publish/Providers}/ProviderGeneral.d.ts +0 -0
  404. /package/{Providers → _publish/Providers}/ProviderType.d.ts +0 -0
  405. /package/{Reports → _publish/Reports}/ReportBreakdown.d.ts +0 -0
  406. /package/{Reports → _publish/Reports}/ReportBreakdownJob.d.ts +0 -0
  407. /package/{Reports → _publish/Reports}/ReportBreakdownMessage.d.ts +0 -0
  408. /package/{Reports → _publish/Reports}/ReportBreakdownTask.d.ts +0 -0
  409. /package/{Reports → _publish/Reports}/ReportBreakdown_fromJSON.d.ts +0 -0
  410. /package/{Reports → _publish/Reports}/ReportFilterMode.d.ts +0 -0
  411. /package/{Reports → _publish/Reports}/ReportNotifications.d.ts +0 -0
  412. /package/{Reports → _publish/Reports}/ReportOptions.d.ts +0 -0
  413. /package/{Reports → _publish/Reports}/ReportParameter.d.ts +0 -0
  414. /package/{Reports → _publish/Reports}/ReportParameterType.d.ts +0 -0
  415. /package/{Reports → _publish/Reports}/ReportRecurrence.d.ts +0 -0
  416. /package/{Reports → _publish/Reports}/ReportRecurrenceType.d.ts +0 -0
  417. /package/{Reports → _publish/Reports}/ReportResult.d.ts +0 -0
  418. /package/{Reports → _publish/Reports}/ReportResultData.d.ts +0 -0
  419. /package/{Reports → _publish/Reports}/ReportSchedule.d.ts +0 -0
  420. /package/{Reports → _publish/Reports}/ReportScorecard.d.ts +0 -0
  421. /package/{Reports → _publish/Reports}/ReportScorecardParameter.d.ts +0 -0
  422. /package/{Reports → _publish/Reports}/ReportScorecardRules.d.ts +0 -0
  423. /package/{Reports → _publish/Reports}/ReportStatus.d.ts +0 -0
  424. /package/{Reports → _publish/Reports}/ReportSummary.d.ts +0 -0
  425. /package/{Reports → _publish/Reports}/ReportSummaryReason.d.ts +0 -0
  426. /package/{Reports → _publish/Reports}/ReportTemplate.d.ts +0 -0
  427. /package/{Reports → _publish/Reports}/ReportTotal.d.ts +0 -0
  428. /package/{Reports → _publish/Reports}/ReportType.d.ts +0 -0
  429. /package/{storage.d.ts → _publish/objects/storage.d.ts} +0 -0
@@ -0,0 +1,176 @@
1
+ import { Contact } from './Accounts/Contact';
2
+ import { Machine } from './Accounts/Machine';
3
+ import { Session } from './Accounts/Session';
4
+ import { User } from './Accounts/User';
5
+ import { UserGroup } from './Accounts/UserGroup';
6
+ import { email, guid, ulong } from './API/Types';
7
+ import { Asset } from './Assets/Asset';
8
+ import { Behaviour } from './Behaviours/Behaviour';
9
+ import { BehaviourLog } from './Behaviours/BehaviourLog';
10
+ import { BehaviourScript } from './Behaviours/BehaviourScript';
11
+ import { BillingProfile } from './Billing/BillingProfile';
12
+ import { BillableHostingLicense } from './Billing/Hosting/BillableHostingLicense';
13
+ import { BillableHostingRule } from './Billing/Hosting/BillableHostingRule';
14
+ import { BillingReport } from './Billing/Report/BillingReport';
15
+ import { Company } from './Companies/Company';
16
+ import { DispatchJob } from './Dispatch/DispatchJob';
17
+ import { DispatchTask } from './Dispatch/DispatchTask';
18
+ import { Document } from './Hosting/Document';
19
+ import { FormResult } from './Hosting/FormResult';
20
+ import { FormTemplate } from './Hosting/FormTemplate';
21
+ import { Dashcam } from './Images/Dashcam';
22
+ import { Icon } from './Images/Icon';
23
+ import { Picture } from './Images/Picture';
24
+ import { MaintenanceJob } from './Maintenance/MaintenanceJob';
25
+ import { MaintenanceSchedule } from './Maintenance/MaintenanceSchedule';
26
+ import { AssetMessage } from './Messaging/AssetMessage';
27
+ import { Place } from './Places/Place';
28
+ import { ProviderConfig } from './Providers/Config/ProviderConfig';
29
+ import { ProviderRegistration } from './Providers/Config/ProviderRegistration';
30
+ import { ProviderScript } from './Providers/Config/ProviderScript';
31
+ import { ProviderConfiguration } from './Providers/Configuration/ProviderConfiguration';
32
+ import { ProviderConfigurationType } from './Providers/Configuration/ProviderConfigurationType';
33
+ import { Provider } from './Providers/Provider';
34
+ import { ReportResult } from './Reports/ReportResult';
35
+ import { ReportSchedule } from './Reports/ReportSchedule';
36
+ import { ReportTemplate } from './Reports/ReportTemplate';
37
+ /**
38
+ *
39
+ */
40
+ export declare const COMPANIES: Map<ulong, Company>;
41
+ /**
42
+ *
43
+ */
44
+ export declare const CONTACTS: Map<ulong, Contact>;
45
+ /**
46
+ *
47
+ */
48
+ export declare const MACHINES: Map<string, Machine>;
49
+ /**
50
+ *
51
+ */
52
+ export declare const USERS: Map<email, User>;
53
+ /**
54
+ *
55
+ */
56
+ export declare const GROUPS: Map<ulong, UserGroup>;
57
+ /**
58
+ *
59
+ */
60
+ export declare const SESSIONS: Map<string, Session>;
61
+ /**
62
+ *
63
+ */
64
+ export declare const ASSETS: Map<ulong, Asset>;
65
+ /**
66
+ *
67
+ */
68
+ export declare const MESSAGES: Map<ulong, AssetMessage>;
69
+ /**
70
+ *
71
+ */
72
+ export declare const BEHAVIOURS: Map<ulong, Behaviour>;
73
+ /**
74
+ *
75
+ */
76
+ export declare const BEHAVIOUR_SCRIPTS: Map<ulong, BehaviourScript>;
77
+ /**
78
+ *
79
+ */
80
+ export declare const BEHAVIOUR_LOGS: Map<ulong, BehaviourLog>;
81
+ /**
82
+ *
83
+ */
84
+ export declare const BILLING_PROFILES: Map<ulong, BillingProfile>;
85
+ /**
86
+ *
87
+ */
88
+ export declare const BILLING_REPORTS: Map<ulong, BillingReport>;
89
+ /**
90
+ *
91
+ */
92
+ export declare const BILLING_RULES: Map<ulong, BillableHostingRule>;
93
+ /**
94
+ *
95
+ */
96
+ export declare const BILLING_LICENSES: Map<ulong, BillableHostingLicense>;
97
+ /**
98
+ *
99
+ */
100
+ export declare const DISPATCH_TASKS: Map<ulong, DispatchTask>;
101
+ /**
102
+ *
103
+ */
104
+ export declare const DISPATCH_JOBS: Map<ulong, DispatchJob>;
105
+ /**
106
+ *
107
+ */
108
+ export declare const DOCUMENTS: Map<ulong, Document>;
109
+ /**
110
+ *
111
+ */
112
+ export declare const FORM_TEMPLATES: Map<ulong, FormTemplate>;
113
+ /**
114
+ *
115
+ */
116
+ export declare const FORM_RESULTS: Map<ulong, FormResult>;
117
+ /**
118
+ *
119
+ */
120
+ export declare const PICTURES: Map<ulong, Picture>;
121
+ /**
122
+ *
123
+ */
124
+ export declare const ICONS: Map<ulong, Icon>;
125
+ /**
126
+ *
127
+ */
128
+ export declare const DASHCAMS: Map<guid, Dashcam>;
129
+ /**
130
+ *
131
+ */
132
+ export declare const MAINTENANCE_SCHEDULES: Map<ulong, MaintenanceSchedule>;
133
+ /**
134
+ *
135
+ */
136
+ export declare const MAINTENANCE_JOBS: Map<ulong, MaintenanceJob>;
137
+ /**
138
+ *
139
+ */
140
+ export declare const PLACES: Map<ulong, Place>;
141
+ /**
142
+ *
143
+ */
144
+ export declare const PROVIDERS: Map<string, Provider>;
145
+ /**
146
+ *
147
+ */
148
+ export declare const PROVIDER_SCRIPTS: Map<ulong, ProviderScript>;
149
+ /**
150
+ *
151
+ */
152
+ export declare const PROVIDER_CONFIGS: Map<ulong, ProviderConfig>;
153
+ /**
154
+ *
155
+ */
156
+ export declare const PROVIDER_CONFIGURATION_TYPES: Map<ulong, ProviderConfigurationType>;
157
+ /**
158
+ *
159
+ */
160
+ export declare const PROVIDER_CONFIGURATIONS: Map<ulong, ProviderConfiguration>;
161
+ /**
162
+ *
163
+ */
164
+ export declare const PROVIDER_REGISTRATIONS: Map<string, ProviderRegistration>;
165
+ /**
166
+ *
167
+ */
168
+ export declare const REPORT_TEMPLATES: Map<ulong, ReportTemplate>;
169
+ /**
170
+ *
171
+ */
172
+ export declare const REPORT_SCHEDULES: Map<ulong, ReportSchedule>;
173
+ /**
174
+ *
175
+ */
176
+ export declare const REPORT_RESULTS: Map<ulong, ReportResult>;
@@ -3,6 +3,6 @@ function t(t){const s=[];for(let e=0,i=t.length;e<i;e++)s.indexOf(t[e])<0&&s.pus
3
3
  * Trak-iT API Object Model.
4
4
  * {@link https://github.com/trakitwireless/trakit-ts-objects|Object definition.}
5
5
  * All of the Trak-iT APIs use the same object definitions. Use this package in your TypeScript or JavaScript project.
6
- * Last updated on Thu Feb 27 2025 11:59:01
6
+ * Last updated on Friday December 19, 2025
7
7
  * @copyright Trak-iT Wireless Inc. 2025
8
- */const hh=5.04,ah={Company:kn,CompanyGeneral:wn,CompanyStyle:Jn,CompanyDirectory:Nn,CompanyPolicy:vn,CompanyReseller:On,Contact:ae,Machine:Ne,Session:xe,User:He,UserGeneral:je,UserAdvanced:Ie,UserGroup:qe,Asset:Xi,AssetGeneral:Zi,AssetAdvanced:_i,AssetDispatch:$i,AssetAlert:vr,AssetMessage:Tr,Behaviour:tn,BehaviourScript:en,BehaviourLog:sn,BillableHostingLicense:on,BillableHostingRule:un,BillingProfile:rn,BillingReport:gn,DispatchJob:In,DispatchTask:Mn,Document:An,FormResult:_n,FormTemplate:Yn,Dashcam:Zn,Icon:sr,Picture:er,MaintenanceSchedule:rr,MaintenanceJob:nr,Place:br,Provider:Hr,ProviderGeneral:jr,ProviderAdvanced:Rr,ProviderControl:Lr,ProviderScript:xr,ProviderConfig:Or,ProviderConfigurationType:Mr,ProviderConfiguration:Ur,ProviderRegistration:Cr,ReportTemplate:rh,ReportSchedule:ih,ReportResult:sh},oh={Company:Ss,CompanyGeneral:Ss,CompanyStyle:Ss,CompanyDirectory:Ss,CompanyPolicy:Ss,CompanyReseller:Ss,Contact:vs,Machine:Ts,Session:Cs,User:bs,UserGeneral:bs,UserAdvanced:bs,UserGroup:Os,Asset:Js,AssetGeneral:Js,AssetAdvanced:Js,AssetDispatch:Js,AssetAlert:ks,AssetMessage:ks,Behaviour:xs,BehaviourScript:Us,BehaviourLog:Is,BillingProfile:Ms,BillingReport:As,BillableHostingRule:Ds,BillableHostingLicense:Ps,DispatchTask:Es,DispatchJob:zs,Document:Ks,FormTemplate:Rs,FormResult:Bs,Dashcam:Hs,Icon:js,Picture:Ls,MaintenanceSchedule:qs,MaintenanceJob:Gs,Place:Vs,Provider:Fs,ProviderGeneral:Fs,ProviderAdvanced:Fs,ProviderControl:Fs,ProviderScript:Ws,ProviderConfig:_s,ProviderConfigurationType:Ys,ProviderConfiguration:$s,ProviderRegistration:Zs,ReportTemplate:Xs,ReportSchedule:Qs,ReportResult:te},uh={capitalize:function(t,s=!0){return t?.length?t[0][s?"toUpperCase":"toLowerCase"]()+t.slice(1):""},codify:J,date:m,douglasPeucker:function(t,s,e){if(!Array.isArray(t))throw new TypeError("source is not an Array.");if(!("function"==typeof(i=s)||i instanceof Function))throw new TypeError("triangleHeight is not an Function.");var i;if(!u(e)||e<0)throw new TypeError("tolerance is not an Number or less than zero.");return t.length<3?[...t]:t.filter(n,p(t,s,e))},fileSize:function(t,s=0,e="MB",i=3,n=",",r=n,h="."){let a=0;if(t){const s=oi.includes(e)?oi.indexOf(e):ui;for(;a<s&&t>=1024;)t/=1024,a++}return ot(c(t,s),i,n,r,h)+" "+oi[a]},findTimeZoneById:U,guid:function(){const t=(new Date).valueOf().toString(16).substring(1).split("").reduce(Bt,[...Ti]);for(let s=0;s<36;s++)if(" "===t[s]){let e=16*Zt.random()|0;t[s]=(19!==s?e:3&e|8).toString(16)}return t.join("")},highlight:function(t,s,[e,i]=["<b>","</b>"]){if(!t||!s?.length)return t;let n,r="",h=0;const a=new RegExp(s.map((t=>J(t).split("-").map((t=>t.split("").map((t=>ys+t)).join("")+ys)).join("[^a-z0-9]+"))).join("|"),"gim");for(;n=a.exec(t);)r+=t.slice(h,n.index)+e+n[0]+i,h=n.index+n[0].length;return r+t.slice(h)},id:d,isNothing:h,isntNaN:u,numberGroups:ot,roundTo:c,parseTime:function(t){return new Be(t).totalSeconds},phoneNumber:g,pluralize:function(t){return t.endsWith("y")?t.slice(0,-1)+"ies":t.endsWith("ch")?t+"es":t+"s"},singularize:function(t){return t.endsWith("ies")?t.slice(0,-3)+"y":t.endsWith("ches")?t.slice(0,-2):t.endsWith("s")?t.slice(0,-1):t},stringifyTime:function(t){return new Be(t*Pe).toString()}},ch=ai,lh={toPassword:function(t){return encodeURIComponent([...h(t)?"":String(t)].reduce((function(t,s){return t+String.fromCharCode(111^s.charCodeAt(0))}),""))},fromPassword:function(t){return[...decodeURIComponent(h(t)?"":String(t))].reduce((function(t,s){return t+String.fromCharCode(111^s.charCodeAt(0))}),"")}},dh={fromMap:N,fromMapPredicate:w,toMap:S,toMapPredicate:y},mh={pathLength:function(t){let s=0,e=0,i=t.length-1,n=t[e],r=n;for(;e<i;e++)n=t[e],r=t[e+1],s+=l(r.x-n.x,r.y-n.y);return s},pathOrthogonal:At,pathReduce:function(t,s=0){return t.length<3?t.slice():(s>0||(s=0),t.filter(n,p(t,Dt,s)))},pointAngle:xt,pointDistance:Ut,pointPythagora:l,pointVector:Mt,polyArea:Pt,polyContains:function(t,s){let e=t.slice(),i=0,n=e.length,r=n-1,h=!1;if(e[i].x===e[r].x&&e[i].y===e[r].y&&(e.pop(),n=e.length,r=n-1),zt(Et(e),s))for(;i<n;r=i++){const t=e[i],n=e[r];t.y>s.y!=n.y>s.y&&s.x<(n.x-t.x)*(s.y-t.y)/(n.y-t.y)+t.x&&(h=!h)}return h},polyReduce:function(t,s=0){let e=[...t],i=t.length;if(i<3)return e;{let t=0,r=0;s>0||(s=0);for(let s=0;s<i;s++){const n=e[s];for(let h=s+1;h<i;h++){const i=Ut(n,e[h]);i>t&&(r=s,t=i)}}return e=e.splice(r,i).concat(e),Ut(e[0],e[i-1])>0&&(i=e.push(e[0])),e=e.filter(n,p(e,Dt,s)),i=e.length,Ut(e[0],e[i-1])<=0&&e.pop(),e}},polyWrapper:function(t){let s=t.slice().sort(It),e=s[0],i=[e];for(;s.length>1;){let t=0,n=0,r=360;for(let i=0,h=s.length;i<h;i++){const a=s[i],o=xt(e,a),u=Ut(e,a);a!==e&&(u?(o<r||o===r&&u>n)&&(o===r&&(s.splice(t,1),i--,h--),r=o,n=u,t=i):(s.splice(i--,1),h--))}if(0===t)break;i.push(e=s.splice(t,1)[0])}return i},radialCircumference:function(t){return 2*Xt*t},radialArea:function(t){return Xt*(t*t)},radialSmallest:function(t,s){let e=t[0],i=0;switch(t.length){case 1:return{x:e.x,y:e.y,r:i};case 2:return function(t){const s=function(t){return{x:t.left+(t.right-t.left)/2,y:t.top+(t.bottom-t.top)/2}}(t);t.right,t.left,t.bottom,t.top;return{x:s.x,y:s.y,r:Ut(s,{x:t.left,y:t.top})}}(Et(t))}s||(s=1e4);for(let n=0;n<s;n++){let s=t[0],r=0;for(let i=0;i<t.length;i++){const n=t[i],h=Ut(e,n);h>r&&(s=n,r=h)}e={x:e.x+1/(n+1)*(s.x-e.x),y:e.y+1/(n+1)*(s.y-e.y)},i=r}return{x:e.x,y:e.y,r:i}},radialOverlapsRectangle:function(t,s){const e=kt(s),i=kt(s);return e.top-=t.r,e.bottom+=t.r,i.left-=t.r,i.right+=t.r,zt(e,t)||zt(i,t)||Ut(t,{x:s.left,y:s.top})<=t.r||Ut(t,{x:s.right,y:s.top})<=t.r||Ut(t,{x:s.left,y:s.bottom})<=t.r||Ut(t,{x:s.right,y:s.bottom})<=t.r}},ph={earthRadius:ci,clampLat:ct,clampLng:lt,pathLength:function(t){const s=[...t],e=s.length-1;for(let t=0,i=0;t<e;t++)i+=mt(s[t],s[t+1]);return length},pathReduce:function(t,s){return t.length<3?[...t]:(s>0||(s=0),t.filter(n,p(t,Nt,s)))},pathEncode:yt,pathDecode:St,pointAngle:dt,pointDistance:mt,pointMiddle:ft,pointOrthogonal:pt,pointTranslate:gt,pointVincenty:function(t,s){const e=ct(t.lat),i=ct(s.lat),n=lt(t.lng,e),r=(lt(s.lng,i)-n)*ms,h=ss((1-li)*ls(e*ms)),a=ss((1-li)*ls(e*ms)),o=us(h),c=is(h),l=us(a),d=is(a);let m,p,g,f,N,w,y,S,v,T,b=r,O=100;do{if(p=us(b),g=is(b),f=cs(d*p*(d*p)+(c*l-o*d*g)*(c*l-o*d*g)),0===f)return 0;N=o*l+c*d*g,w=es(f,N),y=c*d*p/f,S=1-y*y,v=N-2*o*l/S,T=li/16*S*(4+li*(4-3*S)),u(v)||(v=0),m=b,b=r+(1-T)*li*y*(w+T*f*(v+T*N*(2*v*v-1)))}while(Qt(b-m)>1e-12&&--O>0);if(!O)return 0;const C=272331606107.5547*S/40408299984661.445,J=C/1024*(256+C*(C*(74-47*C)-128));return di*(1+C/16384*(4096+C*(C*(320-175*C)-768)))*(w-J*f*(v+J/4*(N*(2*v*v-1)-J/6*v*(4*f*f-3)*(4*v*v-3))))},polyArea:function(t){const s=[...t];let e,i=0,n=0,r=s.length-1,h=s[n],a=s[r];if(h&&a&&mt(h,a)<=mi&&(s.pop(),r--),r<1)throw new Error("Not enough coordinates");if(r>1)for(n=1;n<r;n++)e=s[n],a=s[n+1],i+=Tt(h,e,a)*bt(h,e,a);return Qt(40680631590769*i)},polyContains:function(t,s){throw"not implemented"},polyReduce:function(t,s=1e-9){let e=[...t],i=t.length;if(i>2){const[t,r,h]=vt(e);s>0||(s=mi),e=e.splice(r,i).concat(e),mt(e[0],e[i-1])>s&&(i=e.push(e[0])),e=e.filter(n,p(e,Nt,s)),i=e.length,mt(e[0],e[i-1])<=s&&e.pop()}return e},polyWidest:vt},gh={computeAll:j,compute:H,computeAllSimple:function(t,s,e){return j(t,(s||[]).filter(R),(e||[]).filter(R))},computeSimple:q,computeSimpleLevels:function(t,s,e,i){const n=new Map;return q(t,s,e,i).forEach((function(t){n.set(t.kind,t.level)})),n},getSimpleLevel:function(t,s,e,i,n){return V(t,q(t,s,e,i),n)},hasSimple:function(t,s,e,i,n,r){return G(t,q(t,s,e,i),n,r)},findSimple:G,findSimpleLevel:V,computeAllComplex:function(t,s,e){const i=new Map;return j(t,(s||[]).filter(K),(e||[]).filter(K)).forEach((function(t,s){for(let s,e=0;s=t[e];e++)K(s)||t.splice(e--,1);t.length>0&&i.set(s,t)})),i},computeComplex:F,getComplexLevel:function(t,s,e,i,n,r,h){return _(t,F(t,s,e,i),n,r,h)},findComplexLevel:_,hasComplex:function(t,s,e,i,n,r,h,a){return W(t,F(t,s,e,i),n,r,h,a)},findComplex:W,hasAnyComplex:function(t,s,e,i,n,r){return Y(t,F(t,s,e,i),n,r)},findAnyComplex:Y,findAllEscalations:function(t,s,e,i){const n=new Map;return e.forEach((function(e,r){if(s.has(r)){const h=$(t,s.get(r),e,i&&i.get(r));h.length&&n.set(r,h)}else n.set(r,e.map((function(t){return new ye(ge.vertical,t.companyId,t.kind,t.level,t.labels)})))})),n},findEscalations:$,findAllLabelEscalations:function(t,s,e,i,n,r){const h=[];return(e||[]).length>0&&e.forEach((function(e){const a=Z(t,s,e,i,n,r);a&&h.push(a)})),h},findLabelEscalation:Z,implied:$t(ve),simple:$t(s(Yt(de),Te)),complex:$t(Te)};export{hr as AlertPriority,Xi as Asset,_i as AssetAdvanced,vr as AssetAlert,xi as AssetAttribute,$i as AssetDispatch,Zi as AssetGeneral,Tr as AssetMessage,Wi as AssetPlaceStatus,Ui as AssetPlaceStatusType,Ii as AssetType,Gt as Base,Vt as BaseComponent,Ue as BaseCompound,tn as Behaviour,sn as BehaviourLog,Ai as BehaviourLogType,Qi as BehaviourParameter,Mi as BehaviourParameterType,en as BehaviourScript,on as BillableHostingLicense,Ei as BillableHostingLicenseType,un as BillableHostingRule,zi as BillableHostingType,Di as BillingCurrency,Pi as BillingCycle,rn as BillingProfile,gn as BillingReport,dn as BillingReportBreakdown,mn as BillingReportHostingSummary,cn as BillingReportLicenseBreakdown,ln as BillingReportServiceBreakdown,Ri as BillingReportStatus,pn as BillingReportSummary,fn as ColourStyle,kn as Company,Nn as CompanyDirectory,wn as CompanyGeneral,vn as CompanyPolicy,On as CompanyReseller,Jn as CompanyStyle,ae as Contact,Zn as Dashcam,$n as DashcamBase,Xn as DashcamLive,Ln as DashcamMediaType,Yi as DispatchDirection,In as DispatchJob,qi as DispatchJobPriority,Un as DispatchStep,xn as DispatchStepState,Gi as DispatchStepStatus,Mn as DispatchTask,Vi as DispatchTaskStatus,An as Document,Pn as FormFieldAttachments,Dn as FormFieldBase,En as FormFieldBoolean,Kn as FormFieldChoice,Rn as FormFieldDate,qn as FormFieldNumeric,Bn as FormFieldNumericSize,Gn as FormFieldSignature,Vn as FormFieldText,Fn as FormFieldTime,Wn as FormFieldTimezone,Fi as FormFieldType,_n as FormResult,Yn as FormTemplate,sr as Icon,Qn as IconGlyph,tr as IconLabel,jn as IconLayer,Cn as LabelStyle,yi as LatLng,wi as LatLngBounds,Ne as Machine,ir as MaintenanceInterval,nr as MaintenanceJob,Hn as MaintenanceJobStatus,rr as MaintenanceSchedule,ur as MessageFolder,ar as MessageStatus,or as MessageType,pe as NotificationMethod,Tn as NotificationServerEmail,bn as NotificationServerSms,Bi as PasswordExpiryMode,yn as PasswordPolicy,fe as Permission,ye as PermissionEscalation,we as PermissionEscalationState,ge as PermissionEscalationType,ce as PermissionLevel,le as PermissionMethod,de as PermissionType,er as Picture,br as Place,cr as PlaceType,Ni as Point,vi as Position,Hr as Provider,Rr as ProviderAdvanced,Br as ProviderCommand,dr as ProviderCommandStatus,mr as ProviderCommandType,Or as ProviderConfig,Ur as ProviderConfiguration,Ir as ProviderConfigurationNode,Mr as ProviderConfigurationType,Lr as ProviderControl,Kr as ProviderData,jr as ProviderGeneral,Ar as ProviderGeofenceBase,Dr as ProviderGeofenceCircular,Pr as ProviderGeofencePoint,Er as ProviderGeofencePolygon,zr as ProviderGeofenceRectangle,Cr as ProviderRegistration,xr as ProviderScript,Jr as ProviderScriptBlock,kr as ProviderScriptParameter,lr as ProviderScriptParameterType,Ki as ProviderType,fi as Radial,gi as Rectangle,qr as ReportBreakdown,Gr as ReportBreakdownJob,Vr as ReportBreakdownMessage,Fr as ReportBreakdownTask,pr as ReportFilterMode,Wr as ReportNotifications,Zr as ReportOptions,_r as ReportParameter,gr as ReportParameterType,Xr as ReportRecurrence,fr as ReportRecurrenceType,sh as ReportResult,eh as ReportResultData,ih as ReportSchedule,Qr as ReportScorecard,Yr as ReportScorecardParameter,$r as ReportScorecardRules,Nr as ReportStatus,nh as ReportSummary,yr as ReportSummaryReason,rh as ReportTemplate,th as ReportTotal,wr as ReportType,ki as SearchPattern,xe as Session,Li as SessionMultiUser,Sn as SessionPolicy,Ce as SessionStatus,pi as Size,Si as StreetAddress,me as SystemsOfUnits,Be as TimeSpan,oe as Timezone,He as User,Ie as UserAdvanced,je as UserGeneral,qe as UserGroup,Le as UserNotifications,gh as authorizer,ah as classes,ch as convert,lh as encoding,ph as geography,mh as geometry,dh as serialization,oh as storage,uh as utility,hh as version};
8
+ */const hh=5.06,ah={Company:kn,CompanyGeneral:wn,CompanyStyle:Jn,CompanyDirectory:Nn,CompanyPolicy:vn,CompanyReseller:On,Contact:ae,Machine:Ne,Session:xe,User:He,UserGeneral:je,UserAdvanced:Ie,UserGroup:qe,Asset:Xi,AssetGeneral:Zi,AssetAdvanced:_i,AssetDispatch:$i,AssetAlert:vr,AssetMessage:Tr,Behaviour:tn,BehaviourScript:en,BehaviourLog:sn,BillableHostingLicense:on,BillableHostingRule:un,BillingProfile:rn,BillingReport:gn,DispatchJob:In,DispatchTask:Mn,Document:An,FormResult:_n,FormTemplate:Yn,Dashcam:Zn,Icon:sr,Picture:er,MaintenanceSchedule:rr,MaintenanceJob:nr,Place:br,Provider:Hr,ProviderGeneral:jr,ProviderAdvanced:Rr,ProviderControl:Lr,ProviderScript:xr,ProviderConfig:Or,ProviderConfigurationType:Mr,ProviderConfiguration:Ur,ProviderRegistration:Cr,ReportTemplate:rh,ReportSchedule:ih,ReportResult:sh},oh={Company:Ss,CompanyGeneral:Ss,CompanyStyle:Ss,CompanyDirectory:Ss,CompanyPolicy:Ss,CompanyReseller:Ss,Contact:vs,Machine:Ts,Session:Cs,User:bs,UserGeneral:bs,UserAdvanced:bs,UserGroup:Os,Asset:Js,AssetGeneral:Js,AssetAdvanced:Js,AssetDispatch:Js,AssetAlert:ks,AssetMessage:ks,Behaviour:xs,BehaviourScript:Us,BehaviourLog:Is,BillingProfile:Ms,BillingReport:As,BillableHostingRule:Ds,BillableHostingLicense:Ps,DispatchTask:Es,DispatchJob:zs,Document:Ks,FormTemplate:Rs,FormResult:Bs,Dashcam:Hs,Icon:js,Picture:Ls,MaintenanceSchedule:qs,MaintenanceJob:Gs,Place:Vs,Provider:Fs,ProviderGeneral:Fs,ProviderAdvanced:Fs,ProviderControl:Fs,ProviderScript:Ws,ProviderConfig:_s,ProviderConfigurationType:Ys,ProviderConfiguration:$s,ProviderRegistration:Zs,ReportTemplate:Xs,ReportSchedule:Qs,ReportResult:te},uh={capitalize:function(t,s=!0){return t?.length?t[0][s?"toUpperCase":"toLowerCase"]()+t.slice(1):""},codify:J,date:m,douglasPeucker:function(t,s,e){if(!Array.isArray(t))throw new TypeError("source is not an Array.");if(!("function"==typeof(i=s)||i instanceof Function))throw new TypeError("triangleHeight is not an Function.");var i;if(!u(e)||e<0)throw new TypeError("tolerance is not an Number or less than zero.");return t.length<3?[...t]:t.filter(n,p(t,s,e))},fileSize:function(t,s=0,e="MB",i=3,n=",",r=n,h="."){let a=0;if(t){const s=oi.includes(e)?oi.indexOf(e):ui;for(;a<s&&t>=1024;)t/=1024,a++}return ot(c(t,s),i,n,r,h)+" "+oi[a]},findTimeZoneById:U,guid:function(){const t=(new Date).valueOf().toString(16).substring(1).split("").reduce(Bt,[...Ti]);for(let s=0;s<36;s++)if(" "===t[s]){let e=16*Zt.random()|0;t[s]=(19!==s?e:3&e|8).toString(16)}return t.join("")},highlight:function(t,s,[e,i]=["<b>","</b>"]){if(!t||!s?.length)return t;let n,r="",h=0;const a=new RegExp(s.map((t=>J(t).split("-").map((t=>t.split("").map((t=>ys+t)).join("")+ys)).join("[^a-z0-9]+"))).join("|"),"gim");for(;n=a.exec(t);)r+=t.slice(h,n.index)+e+n[0]+i,h=n.index+n[0].length;return r+t.slice(h)},id:d,isNothing:h,isntNaN:u,numberGroups:ot,roundTo:c,parseTime:function(t){return new Be(t).totalSeconds},phoneNumber:g,pluralize:function(t){return t.endsWith("y")?t.slice(0,-1)+"ies":t.endsWith("ch")?t+"es":t+"s"},singularize:function(t){return t.endsWith("ies")?t.slice(0,-3)+"y":t.endsWith("ches")?t.slice(0,-2):t.endsWith("s")?t.slice(0,-1):t},stringifyTime:function(t){return new Be(t*Pe).toString()}},ch=ai,lh={toPassword:function(t){return encodeURIComponent([...h(t)?"":String(t)].reduce((function(t,s){return t+String.fromCharCode(111^s.charCodeAt(0))}),""))},fromPassword:function(t){return[...decodeURIComponent(h(t)?"":String(t))].reduce((function(t,s){return t+String.fromCharCode(111^s.charCodeAt(0))}),"")}},dh={fromMap:N,fromMapPredicate:w,toMap:S,toMapPredicate:y},mh={pathLength:function(t){let s=0,e=0,i=t.length-1,n=t[e],r=n;for(;e<i;e++)n=t[e],r=t[e+1],s+=l(r.x-n.x,r.y-n.y);return s},pathOrthogonal:At,pathReduce:function(t,s=0){return t.length<3?t.slice():(s>0||(s=0),t.filter(n,p(t,Dt,s)))},pointAngle:xt,pointDistance:Ut,pointPythagora:l,pointVector:Mt,polyArea:Pt,polyContains:function(t,s){let e=t.slice(),i=0,n=e.length,r=n-1,h=!1;if(e[i].x===e[r].x&&e[i].y===e[r].y&&(e.pop(),n=e.length,r=n-1),zt(Et(e),s))for(;i<n;r=i++){const t=e[i],n=e[r];t.y>s.y!=n.y>s.y&&s.x<(n.x-t.x)*(s.y-t.y)/(n.y-t.y)+t.x&&(h=!h)}return h},polyReduce:function(t,s=0){let e=[...t],i=t.length;if(i<3)return e;{let t=0,r=0;s>0||(s=0);for(let s=0;s<i;s++){const n=e[s];for(let h=s+1;h<i;h++){const i=Ut(n,e[h]);i>t&&(r=s,t=i)}}return e=e.splice(r,i).concat(e),Ut(e[0],e[i-1])>0&&(i=e.push(e[0])),e=e.filter(n,p(e,Dt,s)),i=e.length,Ut(e[0],e[i-1])<=0&&e.pop(),e}},polyWrapper:function(t){let s=t.slice().sort(It),e=s[0],i=[e];for(;s.length>1;){let t=0,n=0,r=360;for(let i=0,h=s.length;i<h;i++){const a=s[i],o=xt(e,a),u=Ut(e,a);a!==e&&(u?(o<r||o===r&&u>n)&&(o===r&&(s.splice(t,1),i--,h--),r=o,n=u,t=i):(s.splice(i--,1),h--))}if(0===t)break;i.push(e=s.splice(t,1)[0])}return i},radialCircumference:function(t){return 2*Xt*t},radialArea:function(t){return Xt*(t*t)},radialSmallest:function(t,s){let e=t[0],i=0;switch(t.length){case 1:return{x:e.x,y:e.y,r:i};case 2:return function(t){const s=function(t){return{x:t.left+(t.right-t.left)/2,y:t.top+(t.bottom-t.top)/2}}(t);t.right,t.left,t.bottom,t.top;return{x:s.x,y:s.y,r:Ut(s,{x:t.left,y:t.top})}}(Et(t))}s||(s=1e4);for(let n=0;n<s;n++){let s=t[0],r=0;for(let i=0;i<t.length;i++){const n=t[i],h=Ut(e,n);h>r&&(s=n,r=h)}e={x:e.x+1/(n+1)*(s.x-e.x),y:e.y+1/(n+1)*(s.y-e.y)},i=r}return{x:e.x,y:e.y,r:i}},radialOverlapsRectangle:function(t,s){const e=kt(s),i=kt(s);return e.top-=t.r,e.bottom+=t.r,i.left-=t.r,i.right+=t.r,zt(e,t)||zt(i,t)||Ut(t,{x:s.left,y:s.top})<=t.r||Ut(t,{x:s.right,y:s.top})<=t.r||Ut(t,{x:s.left,y:s.bottom})<=t.r||Ut(t,{x:s.right,y:s.bottom})<=t.r}},ph={earthRadius:ci,clampLat:ct,clampLng:lt,pathLength:function(t){const s=[...t],e=s.length-1;for(let t=0,i=0;t<e;t++)i+=mt(s[t],s[t+1]);return length},pathReduce:function(t,s){return t.length<3?[...t]:(s>0||(s=0),t.filter(n,p(t,Nt,s)))},pathEncode:yt,pathDecode:St,pointAngle:dt,pointDistance:mt,pointMiddle:ft,pointOrthogonal:pt,pointTranslate:gt,pointVincenty:function(t,s){const e=ct(t.lat),i=ct(s.lat),n=lt(t.lng,e),r=(lt(s.lng,i)-n)*ms,h=ss((1-li)*ls(e*ms)),a=ss((1-li)*ls(e*ms)),o=us(h),c=is(h),l=us(a),d=is(a);let m,p,g,f,N,w,y,S,v,T,b=r,O=100;do{if(p=us(b),g=is(b),f=cs(d*p*(d*p)+(c*l-o*d*g)*(c*l-o*d*g)),0===f)return 0;N=o*l+c*d*g,w=es(f,N),y=c*d*p/f,S=1-y*y,v=N-2*o*l/S,T=li/16*S*(4+li*(4-3*S)),u(v)||(v=0),m=b,b=r+(1-T)*li*y*(w+T*f*(v+T*N*(2*v*v-1)))}while(Qt(b-m)>1e-12&&--O>0);if(!O)return 0;const C=272331606107.5547*S/40408299984661.445,J=C/1024*(256+C*(C*(74-47*C)-128));return di*(1+C/16384*(4096+C*(C*(320-175*C)-768)))*(w-J*f*(v+J/4*(N*(2*v*v-1)-J/6*v*(4*f*f-3)*(4*v*v-3))))},polyArea:function(t){const s=[...t];let e,i=0,n=0,r=s.length-1,h=s[n],a=s[r];if(h&&a&&mt(h,a)<=mi&&(s.pop(),r--),r<1)throw new Error("Not enough coordinates");if(r>1)for(n=1;n<r;n++)e=s[n],a=s[n+1],i+=Tt(h,e,a)*bt(h,e,a);return Qt(40680631590769*i)},polyContains:function(t,s){throw"not implemented"},polyReduce:function(t,s=1e-9){let e=[...t],i=t.length;if(i>2){const[t,r,h]=vt(e);s>0||(s=mi),e=e.splice(r,i).concat(e),mt(e[0],e[i-1])>s&&(i=e.push(e[0])),e=e.filter(n,p(e,Nt,s)),i=e.length,mt(e[0],e[i-1])<=s&&e.pop()}return e},polyWidest:vt},gh={computeAll:j,compute:H,computeAllSimple:function(t,s,e){return j(t,(s||[]).filter(R),(e||[]).filter(R))},computeSimple:q,computeSimpleLevels:function(t,s,e,i){const n=new Map;return q(t,s,e,i).forEach((function(t){n.set(t.kind,t.level)})),n},getSimpleLevel:function(t,s,e,i,n){return V(t,q(t,s,e,i),n)},hasSimple:function(t,s,e,i,n,r){return G(t,q(t,s,e,i),n,r)},findSimple:G,findSimpleLevel:V,computeAllComplex:function(t,s,e){const i=new Map;return j(t,(s||[]).filter(K),(e||[]).filter(K)).forEach((function(t,s){for(let s,e=0;s=t[e];e++)K(s)||t.splice(e--,1);t.length>0&&i.set(s,t)})),i},computeComplex:F,getComplexLevel:function(t,s,e,i,n,r,h){return _(t,F(t,s,e,i),n,r,h)},findComplexLevel:_,hasComplex:function(t,s,e,i,n,r,h,a){return W(t,F(t,s,e,i),n,r,h,a)},findComplex:W,hasAnyComplex:function(t,s,e,i,n,r){return Y(t,F(t,s,e,i),n,r)},findAnyComplex:Y,findAllEscalations:function(t,s,e,i){const n=new Map;return e.forEach((function(e,r){if(s.has(r)){const h=$(t,s.get(r),e,i&&i.get(r));h.length&&n.set(r,h)}else n.set(r,e.map((function(t){return new ye(ge.vertical,t.companyId,t.kind,t.level,t.labels)})))})),n},findEscalations:$,findAllLabelEscalations:function(t,s,e,i,n,r){const h=[];return(e||[]).length>0&&e.forEach((function(e){const a=Z(t,s,e,i,n,r);a&&h.push(a)})),h},findLabelEscalation:Z,implied:$t(ve),simple:$t(s(Yt(de),Te)),complex:$t(Te)};export{hr as AlertPriority,Xi as Asset,_i as AssetAdvanced,vr as AssetAlert,xi as AssetAttribute,$i as AssetDispatch,Zi as AssetGeneral,Tr as AssetMessage,Wi as AssetPlaceStatus,Ui as AssetPlaceStatusType,Ii as AssetType,Gt as Base,Vt as BaseComponent,Ue as BaseCompound,tn as Behaviour,sn as BehaviourLog,Ai as BehaviourLogType,Qi as BehaviourParameter,Mi as BehaviourParameterType,en as BehaviourScript,on as BillableHostingLicense,Ei as BillableHostingLicenseType,un as BillableHostingRule,zi as BillableHostingType,Di as BillingCurrency,Pi as BillingCycle,rn as BillingProfile,gn as BillingReport,dn as BillingReportBreakdown,mn as BillingReportHostingSummary,cn as BillingReportLicenseBreakdown,ln as BillingReportServiceBreakdown,Ri as BillingReportStatus,pn as BillingReportSummary,fn as ColourStyle,kn as Company,Nn as CompanyDirectory,wn as CompanyGeneral,vn as CompanyPolicy,On as CompanyReseller,Jn as CompanyStyle,ae as Contact,Zn as Dashcam,$n as DashcamBase,Xn as DashcamLive,Ln as DashcamMediaType,Yi as DispatchDirection,In as DispatchJob,qi as DispatchJobPriority,Un as DispatchStep,xn as DispatchStepState,Gi as DispatchStepStatus,Mn as DispatchTask,Vi as DispatchTaskStatus,An as Document,Pn as FormFieldAttachments,Dn as FormFieldBase,En as FormFieldBoolean,Kn as FormFieldChoice,Rn as FormFieldDate,qn as FormFieldNumeric,Bn as FormFieldNumericSize,Gn as FormFieldSignature,Vn as FormFieldText,Fn as FormFieldTime,Wn as FormFieldTimezone,Fi as FormFieldType,_n as FormResult,Yn as FormTemplate,sr as Icon,Qn as IconGlyph,tr as IconLabel,jn as IconLayer,Cn as LabelStyle,yi as LatLng,wi as LatLngBounds,Ne as Machine,ir as MaintenanceInterval,nr as MaintenanceJob,Hn as MaintenanceJobStatus,rr as MaintenanceSchedule,ur as MessageFolder,ar as MessageStatus,or as MessageType,pe as NotificationMethod,Tn as NotificationServerEmail,bn as NotificationServerSms,Bi as PasswordExpiryMode,yn as PasswordPolicy,fe as Permission,ye as PermissionEscalation,we as PermissionEscalationState,ge as PermissionEscalationType,ce as PermissionLevel,le as PermissionMethod,de as PermissionType,er as Picture,br as Place,cr as PlaceType,Ni as Point,vi as Position,Hr as Provider,Rr as ProviderAdvanced,Br as ProviderCommand,dr as ProviderCommandStatus,mr as ProviderCommandType,Or as ProviderConfig,Ur as ProviderConfiguration,Ir as ProviderConfigurationNode,Mr as ProviderConfigurationType,Lr as ProviderControl,Kr as ProviderData,jr as ProviderGeneral,Ar as ProviderGeofenceBase,Dr as ProviderGeofenceCircular,Pr as ProviderGeofencePoint,Er as ProviderGeofencePolygon,zr as ProviderGeofenceRectangle,Cr as ProviderRegistration,xr as ProviderScript,Jr as ProviderScriptBlock,kr as ProviderScriptParameter,lr as ProviderScriptParameterType,Ki as ProviderType,fi as Radial,gi as Rectangle,qr as ReportBreakdown,Gr as ReportBreakdownJob,Vr as ReportBreakdownMessage,Fr as ReportBreakdownTask,pr as ReportFilterMode,Wr as ReportNotifications,Zr as ReportOptions,_r as ReportParameter,gr as ReportParameterType,Xr as ReportRecurrence,fr as ReportRecurrenceType,sh as ReportResult,eh as ReportResultData,ih as ReportSchedule,Qr as ReportScorecard,Yr as ReportScorecardParameter,$r as ReportScorecardRules,Nr as ReportStatus,nh as ReportSummary,yr as ReportSummaryReason,rh as ReportTemplate,th as ReportTotal,wr as ReportType,ki as SearchPattern,xe as Session,Li as SessionMultiUser,Sn as SessionPolicy,Ce as SessionStatus,pi as Size,Si as StreetAddress,me as SystemsOfUnits,Be as TimeSpan,oe as Timezone,He as User,Ie as UserAdvanced,je as UserGeneral,qe as UserGroup,Le as UserNotifications,gh as authorizer,ah as classes,ch as convert,lh as encoding,ph as geography,mh as geometry,dh as serialization,oh as storage,uh as utility,hh as version};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@trakit/objects",
3
3
  "type": "module",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "main": "./_publish/trakit-objects.min.js",
6
6
  "types": "./_publish/index.d.ts",
7
7
  "scripts": {
@@ -16,6 +16,11 @@
16
16
  ],
17
17
  "author": "Alex Lein",
18
18
  "license": "AGPL-3.0-only",
19
+ "files": [
20
+ "_publish/",
21
+ "LICENSE.md",
22
+ "README.md"
23
+ ],
19
24
  "bugs": {
20
25
  "url": "https://github.com/trakitwireless/trakit-ts-objects/issues"
21
26
  },