@shieldiot/pulse-lib 1.0.10 → 1.0.11

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 (510) hide show
  1. package/README.md +8 -26
  2. package/dist/cjs/config.js +11 -0
  3. package/dist/cjs/index.js +18 -3
  4. package/dist/cjs/lib/base/BaseEntity.js +18 -0
  5. package/dist/cjs/lib/base/index.js +17 -0
  6. package/dist/cjs/lib/common/AccountRole.js +18 -0
  7. package/dist/cjs/lib/common/ConsumptionData.js +18 -0
  8. package/dist/cjs/lib/common/ConsumptionTimeDataPoint.js +15 -0
  9. package/dist/cjs/lib/common/DeviceConfig.js +15 -0
  10. package/dist/cjs/lib/common/DeviceScoreConfig.js +60 -0
  11. package/dist/cjs/lib/common/DevicesAtRiskConfig.js +12 -0
  12. package/dist/cjs/lib/common/EventSeverityConfig.js +12 -0
  13. package/dist/cjs/lib/common/FloatKeyValue.js +15 -0
  14. package/dist/cjs/lib/common/GeoData.js +28 -0
  15. package/dist/cjs/lib/common/GraphSeries.js +15 -0
  16. package/dist/cjs/lib/common/Indicator.js +24 -0
  17. package/dist/cjs/lib/common/IntKeySeriesDataValue.js +15 -0
  18. package/dist/cjs/lib/common/IntKeyValue.js +15 -0
  19. package/dist/cjs/lib/common/Interval.js +15 -0
  20. package/dist/cjs/lib/common/Link.js +30 -0
  21. package/dist/cjs/lib/common/Location.js +15 -0
  22. package/dist/cjs/lib/common/LoginParams.js +18 -0
  23. package/dist/cjs/lib/common/MaliciousIPCard.js +33 -0
  24. package/dist/cjs/lib/common/MaliciousIPData.js +21 -0
  25. package/dist/cjs/lib/common/NetworkMap.js +15 -0
  26. package/dist/cjs/lib/common/Node.js +39 -0
  27. package/dist/cjs/lib/common/RuleBasedSeverityConditionConfig.js +21 -0
  28. package/dist/cjs/lib/common/RuleCountThresholdConfig.js +15 -0
  29. package/dist/cjs/lib/common/SeriesData.js +15 -0
  30. package/dist/cjs/lib/common/SessionTransform.js +21 -0
  31. package/dist/cjs/lib/common/SeverityConditionConfig.js +24 -0
  32. package/dist/cjs/lib/common/SeverityIntervalTuple.js +15 -0
  33. package/dist/cjs/lib/common/ShieldexConfig.js +27 -0
  34. package/dist/cjs/lib/common/StringIntValue.js +15 -0
  35. package/dist/cjs/lib/common/StringKeyIntValue.js +15 -0
  36. package/dist/cjs/lib/common/StringKeyValue.js +15 -0
  37. package/dist/cjs/lib/common/Thresholds.js +12 -0
  38. package/dist/cjs/lib/common/TimeDataPoint.js +15 -0
  39. package/dist/cjs/lib/common/TimeDataPoint2D.js +15 -0
  40. package/dist/cjs/lib/common/TimeDataPointFloat.js +15 -0
  41. package/dist/cjs/lib/common/TimeFrame.js +15 -0
  42. package/dist/cjs/lib/common/TimeSeries.js +18 -0
  43. package/dist/cjs/lib/common/TimeSeriesOf2D.js +18 -0
  44. package/dist/cjs/lib/common/TimeSeriesOfDataConsumption.js +18 -0
  45. package/dist/cjs/lib/common/TimeSeriesOfFloat.js +18 -0
  46. package/dist/cjs/lib/common/TokenData.js +27 -0
  47. package/dist/cjs/lib/common/Tuple.js +15 -0
  48. package/dist/cjs/lib/common/UsageTransform.js +27 -0
  49. package/dist/cjs/lib/common/ZScore.js +15 -0
  50. package/dist/cjs/lib/common/index.js +60 -0
  51. package/dist/cjs/lib/entities/Account.js +8 -0
  52. package/dist/cjs/lib/entities/AccountDTO.js +8 -0
  53. package/dist/cjs/lib/entities/AccountSettings.js +21 -0
  54. package/dist/cjs/lib/entities/Action.js +8 -0
  55. package/dist/cjs/lib/entities/Alert.js +11 -0
  56. package/dist/cjs/lib/entities/AlertWithDevice.js +8 -0
  57. package/dist/cjs/lib/entities/ApiKey.js +8 -0
  58. package/dist/cjs/lib/entities/AuditLog.js +8 -0
  59. package/dist/cjs/lib/entities/BulkDevices.js +12 -0
  60. package/dist/cjs/lib/entities/Checkpoint.js +8 -0
  61. package/dist/cjs/lib/entities/ComplianceReportSettings.js +21 -0
  62. package/dist/cjs/lib/entities/Condition.js +20 -0
  63. package/dist/cjs/lib/entities/ConfigParam.js +9 -0
  64. package/dist/cjs/lib/entities/ConfigParams.js +8 -0
  65. package/dist/cjs/lib/entities/DNSRecord.js +10 -0
  66. package/dist/cjs/lib/entities/DataIngestion.js +45 -0
  67. package/dist/cjs/lib/entities/DataPointOfDeviceReport.js +15 -0
  68. package/dist/cjs/lib/entities/Device.js +8 -0
  69. package/dist/cjs/lib/entities/DeviceReport.js +8 -0
  70. package/dist/cjs/lib/entities/DeviceWithEvents.js +8 -0
  71. package/dist/cjs/lib/entities/Distribution.js +18 -0
  72. package/dist/cjs/lib/entities/Event.js +10 -0
  73. package/dist/cjs/lib/entities/EventOccurrence.js +24 -0
  74. package/dist/cjs/lib/entities/EventWithDevice.js +8 -0
  75. package/dist/cjs/lib/entities/Feature.js +8 -0
  76. package/dist/cjs/lib/entities/FeaturesGroup.js +8 -0
  77. package/dist/cjs/lib/entities/Group.js +8 -0
  78. package/dist/cjs/lib/entities/Image.js +9 -0
  79. package/dist/cjs/lib/entities/Insight.js +9 -0
  80. package/dist/cjs/lib/entities/InsightQuery.js +9 -0
  81. package/dist/cjs/lib/entities/InsightSpec.js +9 -0
  82. package/dist/cjs/lib/entities/IntDistribution.js +18 -0
  83. package/dist/cjs/lib/entities/Integration.js +8 -0
  84. package/dist/cjs/lib/entities/Member.js +9 -0
  85. package/dist/cjs/lib/entities/Radius.js +8 -0
  86. package/dist/cjs/lib/entities/Report.js +8 -0
  87. package/dist/cjs/lib/entities/Rule.js +8 -0
  88. package/dist/cjs/lib/entities/RuleTemplate.js +8 -0
  89. package/dist/cjs/lib/entities/SIM.js +24 -0
  90. package/dist/cjs/lib/entities/ServiceStatus.js +8 -0
  91. package/dist/cjs/lib/entities/SessionRecord.js +11 -0
  92. package/dist/cjs/lib/entities/Shieldex.js +8 -0
  93. package/dist/cjs/lib/entities/Stream.js +8 -0
  94. package/dist/cjs/lib/entities/StreamAnalyticsConfig.js +8 -0
  95. package/dist/cjs/lib/entities/StreamConfig.js +33 -0
  96. package/dist/cjs/lib/entities/TeaserPopUpSettings.js +18 -0
  97. package/dist/cjs/lib/entities/TimeSeriesOfDeviceReport.js +18 -0
  98. package/dist/cjs/lib/entities/UsageRecord.js +11 -0
  99. package/dist/cjs/lib/entities/User.js +9 -0
  100. package/dist/cjs/lib/entities/UserMembership.js +8 -0
  101. package/dist/cjs/lib/entities/UserMemberships.js +8 -0
  102. package/dist/cjs/lib/entities/index.js +67 -0
  103. package/dist/cjs/lib/enums/AccountStatusCode.js +25 -0
  104. package/dist/cjs/lib/enums/AccountTypeCode.js +28 -0
  105. package/dist/cjs/lib/enums/DataSourceCode.js +25 -0
  106. package/dist/cjs/lib/enums/DeviceActionCode.js +28 -0
  107. package/dist/cjs/lib/enums/DeviceCreationCode.js +28 -0
  108. package/dist/cjs/lib/enums/DeviceIdentityCode.js +37 -0
  109. package/dist/cjs/lib/enums/DeviceStatusCode.js +28 -0
  110. package/dist/cjs/lib/enums/DeviceTypeCode.js +58 -0
  111. package/dist/cjs/lib/enums/DirectionContextCode.js +28 -0
  112. package/dist/cjs/lib/enums/EventCategoryCode.js +22 -0
  113. package/dist/cjs/lib/enums/EventStatusCode.js +28 -0
  114. package/dist/cjs/lib/enums/EventTypeCode.js +73 -0
  115. package/dist/cjs/lib/enums/FeatureCode.js +46 -0
  116. package/dist/cjs/lib/enums/HomePageViewCode.js +25 -0
  117. package/dist/cjs/lib/enums/HttpMethodCode.js +31 -0
  118. package/dist/cjs/lib/enums/InsightStatusCode.js +25 -0
  119. package/dist/cjs/lib/enums/InsightTypeCode.js +22 -0
  120. package/dist/cjs/lib/enums/IntegrationTriggerCode.js +22 -0
  121. package/dist/cjs/lib/enums/IntegrationTypeCode.js +28 -0
  122. package/dist/cjs/lib/enums/MemberRoleCode.js +28 -0
  123. package/dist/cjs/lib/enums/NetworkMapTypeCode.js +25 -0
  124. package/dist/cjs/lib/enums/OperatorCode.js +49 -0
  125. package/dist/cjs/lib/enums/PermissionCode.js +31 -0
  126. package/dist/cjs/lib/enums/ReportTypeCode.js +25 -0
  127. package/dist/cjs/lib/enums/RuleActivityStatusCode.js +19 -0
  128. package/dist/cjs/lib/enums/RuleTypeCode.js +25 -0
  129. package/dist/cjs/lib/enums/SeverityTypeCode.js +28 -0
  130. package/dist/cjs/lib/enums/TrafficDirectionCode.js +25 -0
  131. package/dist/cjs/lib/enums/UserStatusCode.js +28 -0
  132. package/dist/cjs/lib/enums/UserTypeCode.js +28 -0
  133. package/dist/cjs/lib/enums/index.js +46 -0
  134. package/dist/cjs/lib/index.js +22 -0
  135. package/dist/cjs/lib/pulse-client.js +85 -0
  136. package/dist/cjs/lib/services/index.js +42 -0
  137. package/dist/cjs/lib/services/services.export.js +55 -0
  138. package/dist/cjs/lib/services/supportStreamAnalyticsConfig.js +60 -0
  139. package/dist/cjs/lib/services/sysAccountsService.js +84 -0
  140. package/dist/cjs/lib/services/sysAuditLogService.js +109 -0
  141. package/dist/cjs/lib/services/sysCheckpointsService.js +79 -0
  142. package/dist/cjs/lib/services/sysConfigService.js +85 -0
  143. package/dist/cjs/lib/services/sysFeaturesService.js +79 -0
  144. package/dist/cjs/lib/services/sysGroupsService.js +78 -0
  145. package/dist/cjs/lib/services/sysInsightsService.js +134 -0
  146. package/dist/cjs/lib/services/sysKeysService.js +66 -0
  147. package/dist/cjs/lib/services/sysMembersService.js +66 -0
  148. package/dist/cjs/lib/services/sysRuleTemplatesService.js +60 -0
  149. package/dist/cjs/lib/services/sysRulesService.js +85 -0
  150. package/dist/cjs/lib/services/sysStatisticsService.js +41 -0
  151. package/dist/cjs/lib/services/sysStreamsService.js +63 -0
  152. package/dist/cjs/lib/services/sysUsersService.js +84 -0
  153. package/dist/cjs/lib/services/usrAlertsService.js +658 -0
  154. package/dist/cjs/lib/services/usrDevicesService.js +476 -0
  155. package/dist/cjs/lib/services/usrEventsService.js +640 -0
  156. package/dist/cjs/lib/services/usrInsightsService.js +23 -0
  157. package/dist/cjs/lib/services/usrIntegrationsService.js +78 -0
  158. package/dist/cjs/lib/services/usrMembersService.js +79 -0
  159. package/dist/cjs/lib/services/usrNetworkService.js +85 -0
  160. package/dist/cjs/lib/services/usrReportsService.js +146 -0
  161. package/dist/cjs/lib/services/usrRulesService.js +180 -0
  162. package/dist/cjs/lib/services/usrUserService.js +91 -0
  163. package/dist/cjs/utils/ActionResponse.js +15 -0
  164. package/dist/cjs/utils/BaseRestResponse.js +13 -0
  165. package/dist/cjs/utils/EntitiesResponse.js +21 -0
  166. package/dist/cjs/utils/EntityResponse.js +19 -0
  167. package/dist/cjs/utils/index.js +21 -0
  168. package/dist/cjs/utils/rest-axios-setup.js +12 -0
  169. package/dist/cjs/utils/rest-util.js +103 -0
  170. package/dist/esm/config.js +7 -0
  171. package/dist/esm/index.js +4 -2
  172. package/dist/esm/lib/base/BaseEntity.js +14 -0
  173. package/dist/esm/lib/base/index.js +1 -0
  174. package/dist/esm/lib/common/AccountRole.js +14 -0
  175. package/dist/esm/lib/common/ConsumptionData.js +14 -0
  176. package/dist/esm/lib/common/ConsumptionTimeDataPoint.js +11 -0
  177. package/dist/esm/lib/common/DeviceConfig.js +11 -0
  178. package/dist/esm/lib/common/DeviceScoreConfig.js +56 -0
  179. package/dist/esm/lib/common/DevicesAtRiskConfig.js +8 -0
  180. package/dist/esm/lib/common/EventSeverityConfig.js +8 -0
  181. package/dist/esm/lib/common/FloatKeyValue.js +11 -0
  182. package/dist/esm/lib/common/GeoData.js +24 -0
  183. package/dist/esm/lib/common/GraphSeries.js +11 -0
  184. package/dist/esm/lib/common/Indicator.js +20 -0
  185. package/dist/esm/lib/common/IntKeySeriesDataValue.js +11 -0
  186. package/dist/esm/lib/common/IntKeyValue.js +11 -0
  187. package/dist/esm/lib/common/Interval.js +11 -0
  188. package/dist/esm/lib/common/Link.js +26 -0
  189. package/dist/esm/lib/common/Location.js +11 -0
  190. package/dist/esm/lib/common/LoginParams.js +14 -0
  191. package/dist/esm/lib/common/MaliciousIPCard.js +29 -0
  192. package/dist/esm/lib/common/MaliciousIPData.js +17 -0
  193. package/dist/esm/lib/common/NetworkMap.js +11 -0
  194. package/dist/esm/lib/common/Node.js +35 -0
  195. package/dist/esm/lib/common/RuleBasedSeverityConditionConfig.js +17 -0
  196. package/dist/esm/lib/common/RuleCountThresholdConfig.js +11 -0
  197. package/dist/esm/lib/common/SeriesData.js +11 -0
  198. package/dist/esm/lib/common/SessionTransform.js +17 -0
  199. package/dist/esm/lib/common/SeverityConditionConfig.js +20 -0
  200. package/dist/esm/lib/common/SeverityIntervalTuple.js +11 -0
  201. package/dist/esm/lib/common/ShieldexConfig.js +23 -0
  202. package/dist/esm/lib/common/StringIntValue.js +11 -0
  203. package/dist/esm/lib/common/StringKeyIntValue.js +11 -0
  204. package/dist/esm/lib/common/StringKeyValue.js +11 -0
  205. package/dist/esm/lib/common/Thresholds.js +8 -0
  206. package/dist/esm/lib/common/TimeDataPoint.js +11 -0
  207. package/dist/esm/lib/common/TimeDataPoint2D.js +11 -0
  208. package/dist/esm/lib/common/TimeDataPointFloat.js +11 -0
  209. package/dist/esm/lib/common/TimeFrame.js +11 -0
  210. package/dist/esm/lib/common/TimeSeries.js +14 -0
  211. package/dist/esm/lib/common/TimeSeriesOf2D.js +14 -0
  212. package/dist/esm/lib/common/TimeSeriesOfDataConsumption.js +14 -0
  213. package/dist/esm/lib/common/TimeSeriesOfFloat.js +14 -0
  214. package/dist/esm/lib/common/TokenData.js +23 -0
  215. package/dist/esm/lib/common/Tuple.js +11 -0
  216. package/dist/esm/lib/common/UsageTransform.js +23 -0
  217. package/dist/esm/lib/common/ZScore.js +11 -0
  218. package/dist/esm/lib/common/index.js +44 -0
  219. package/dist/esm/lib/entities/Account.js +4 -0
  220. package/dist/esm/lib/entities/AccountDTO.js +4 -0
  221. package/dist/esm/lib/entities/AccountSettings.js +17 -0
  222. package/dist/esm/lib/entities/Action.js +4 -0
  223. package/dist/esm/lib/entities/Alert.js +7 -0
  224. package/dist/esm/lib/entities/AlertWithDevice.js +4 -0
  225. package/dist/esm/lib/entities/ApiKey.js +4 -0
  226. package/dist/esm/lib/entities/AuditLog.js +4 -0
  227. package/dist/esm/lib/entities/BulkDevices.js +8 -0
  228. package/dist/esm/lib/entities/Checkpoint.js +4 -0
  229. package/dist/esm/lib/entities/ComplianceReportSettings.js +17 -0
  230. package/dist/esm/lib/entities/Condition.js +16 -0
  231. package/dist/esm/lib/entities/ConfigParam.js +5 -0
  232. package/dist/esm/lib/entities/ConfigParams.js +4 -0
  233. package/dist/esm/lib/entities/DNSRecord.js +6 -0
  234. package/dist/esm/lib/entities/DataIngestion.js +41 -0
  235. package/dist/esm/lib/entities/DataPointOfDeviceReport.js +11 -0
  236. package/dist/esm/lib/entities/Device.js +4 -0
  237. package/dist/esm/lib/entities/DeviceReport.js +4 -0
  238. package/dist/esm/lib/entities/DeviceWithEvents.js +4 -0
  239. package/dist/esm/lib/entities/Distribution.js +14 -0
  240. package/dist/esm/lib/entities/Event.js +6 -0
  241. package/dist/esm/lib/entities/EventOccurrence.js +20 -0
  242. package/dist/esm/lib/entities/EventWithDevice.js +4 -0
  243. package/dist/esm/lib/entities/Feature.js +4 -0
  244. package/dist/esm/lib/entities/FeaturesGroup.js +4 -0
  245. package/dist/esm/lib/entities/Group.js +4 -0
  246. package/dist/esm/lib/entities/Image.js +5 -0
  247. package/dist/esm/lib/entities/Insight.js +5 -0
  248. package/dist/esm/lib/entities/InsightQuery.js +5 -0
  249. package/dist/esm/lib/entities/InsightSpec.js +5 -0
  250. package/dist/esm/lib/entities/IntDistribution.js +14 -0
  251. package/dist/esm/lib/entities/Integration.js +4 -0
  252. package/dist/esm/lib/entities/Member.js +5 -0
  253. package/dist/esm/lib/entities/Radius.js +4 -0
  254. package/dist/esm/lib/entities/Report.js +4 -0
  255. package/dist/esm/lib/entities/Rule.js +4 -0
  256. package/dist/esm/lib/entities/RuleTemplate.js +4 -0
  257. package/dist/esm/lib/entities/SIM.js +20 -0
  258. package/dist/esm/lib/entities/ServiceStatus.js +4 -0
  259. package/dist/esm/lib/entities/SessionRecord.js +7 -0
  260. package/dist/esm/lib/entities/Shieldex.js +4 -0
  261. package/dist/esm/lib/entities/Stream.js +4 -0
  262. package/dist/esm/lib/entities/StreamAnalyticsConfig.js +4 -0
  263. package/dist/esm/lib/entities/StreamConfig.js +29 -0
  264. package/dist/esm/lib/entities/TeaserPopUpSettings.js +14 -0
  265. package/dist/esm/lib/entities/TimeSeriesOfDeviceReport.js +14 -0
  266. package/dist/esm/lib/entities/UsageRecord.js +7 -0
  267. package/dist/esm/lib/entities/User.js +5 -0
  268. package/dist/esm/lib/entities/UserMembership.js +4 -0
  269. package/dist/esm/lib/entities/UserMemberships.js +4 -0
  270. package/dist/esm/lib/entities/index.js +51 -0
  271. package/dist/esm/lib/enums/AccountStatusCode.js +21 -0
  272. package/dist/esm/lib/enums/AccountTypeCode.js +24 -0
  273. package/dist/esm/lib/enums/DataSourceCode.js +21 -0
  274. package/dist/esm/lib/enums/DeviceActionCode.js +24 -0
  275. package/dist/esm/lib/enums/DeviceCreationCode.js +24 -0
  276. package/dist/esm/lib/enums/DeviceIdentityCode.js +33 -0
  277. package/dist/esm/lib/enums/DeviceStatusCode.js +24 -0
  278. package/dist/esm/lib/enums/DeviceTypeCode.js +54 -0
  279. package/dist/esm/lib/enums/DirectionContextCode.js +24 -0
  280. package/dist/esm/lib/enums/EventCategoryCode.js +18 -0
  281. package/dist/esm/lib/enums/EventStatusCode.js +24 -0
  282. package/dist/esm/lib/enums/EventTypeCode.js +69 -0
  283. package/dist/esm/lib/enums/FeatureCode.js +42 -0
  284. package/dist/esm/lib/enums/HomePageViewCode.js +21 -0
  285. package/dist/esm/lib/enums/HttpMethodCode.js +27 -0
  286. package/dist/esm/lib/enums/InsightStatusCode.js +21 -0
  287. package/dist/esm/lib/enums/InsightTypeCode.js +18 -0
  288. package/dist/esm/lib/enums/IntegrationTriggerCode.js +18 -0
  289. package/dist/esm/lib/enums/IntegrationTypeCode.js +24 -0
  290. package/dist/esm/lib/enums/MemberRoleCode.js +24 -0
  291. package/dist/esm/lib/enums/NetworkMapTypeCode.js +21 -0
  292. package/dist/esm/lib/enums/OperatorCode.js +45 -0
  293. package/dist/esm/lib/enums/PermissionCode.js +27 -0
  294. package/dist/esm/lib/enums/ReportTypeCode.js +21 -0
  295. package/dist/esm/lib/enums/RuleActivityStatusCode.js +15 -0
  296. package/dist/esm/lib/enums/RuleTypeCode.js +21 -0
  297. package/dist/esm/lib/enums/SeverityTypeCode.js +24 -0
  298. package/dist/esm/lib/enums/TrafficDirectionCode.js +21 -0
  299. package/dist/esm/lib/enums/UserStatusCode.js +24 -0
  300. package/dist/esm/lib/enums/UserTypeCode.js +24 -0
  301. package/dist/esm/lib/enums/index.js +30 -0
  302. package/dist/esm/lib/index.js +6 -0
  303. package/dist/esm/lib/pulse-client.js +78 -0
  304. package/dist/esm/lib/services/index.js +26 -0
  305. package/dist/esm/lib/services/services.export.js +52 -0
  306. package/dist/esm/lib/services/supportStreamAnalyticsConfig.js +56 -0
  307. package/dist/esm/lib/services/sysAccountsService.js +80 -0
  308. package/dist/esm/lib/services/sysAuditLogService.js +105 -0
  309. package/dist/esm/lib/services/sysCheckpointsService.js +75 -0
  310. package/dist/esm/lib/services/sysConfigService.js +81 -0
  311. package/dist/esm/lib/services/sysFeaturesService.js +75 -0
  312. package/dist/esm/lib/services/sysGroupsService.js +74 -0
  313. package/dist/esm/lib/services/sysInsightsService.js +130 -0
  314. package/dist/esm/lib/services/sysKeysService.js +62 -0
  315. package/dist/esm/lib/services/sysMembersService.js +62 -0
  316. package/dist/esm/lib/services/sysRuleTemplatesService.js +56 -0
  317. package/dist/esm/lib/services/sysRulesService.js +81 -0
  318. package/dist/esm/lib/services/sysStatisticsService.js +37 -0
  319. package/dist/esm/lib/services/sysStreamsService.js +59 -0
  320. package/dist/esm/lib/services/sysUsersService.js +80 -0
  321. package/dist/esm/lib/services/usrAlertsService.js +654 -0
  322. package/dist/esm/lib/services/usrDevicesService.js +472 -0
  323. package/dist/esm/lib/services/usrEventsService.js +636 -0
  324. package/dist/esm/lib/services/usrInsightsService.js +19 -0
  325. package/dist/esm/lib/services/usrIntegrationsService.js +74 -0
  326. package/dist/esm/lib/services/usrMembersService.js +75 -0
  327. package/dist/esm/lib/services/usrNetworkService.js +81 -0
  328. package/dist/esm/lib/services/usrReportsService.js +142 -0
  329. package/dist/esm/lib/services/usrRulesService.js +176 -0
  330. package/dist/esm/lib/services/usrUserService.js +87 -0
  331. package/dist/esm/utils/ActionResponse.js +11 -0
  332. package/dist/esm/utils/BaseRestResponse.js +9 -0
  333. package/dist/esm/utils/EntitiesResponse.js +17 -0
  334. package/dist/esm/utils/EntityResponse.js +15 -0
  335. package/dist/esm/utils/index.js +5 -0
  336. package/dist/esm/utils/rest-axios-setup.js +7 -0
  337. package/dist/esm/utils/rest-util.js +99 -0
  338. package/dist/types/config.d.ts +5 -0
  339. package/dist/types/index.d.ts +4 -2
  340. package/dist/types/lib/base/BaseEntity.d.ts +6 -0
  341. package/dist/types/lib/base/index.d.ts +1 -0
  342. package/dist/types/lib/common/AccountRole.d.ts +7 -0
  343. package/dist/types/lib/common/ConsumptionData.d.ts +6 -0
  344. package/dist/types/lib/common/ConsumptionTimeDataPoint.d.ts +6 -0
  345. package/dist/types/lib/common/DeviceConfig.d.ts +7 -0
  346. package/dist/types/lib/common/DeviceScoreConfig.d.ts +24 -0
  347. package/dist/types/lib/common/DevicesAtRiskConfig.d.ts +4 -0
  348. package/dist/types/lib/common/EventSeverityConfig.d.ts +5 -0
  349. package/dist/types/lib/common/FloatKeyValue.d.ts +5 -0
  350. package/dist/types/lib/common/GeoData.d.ts +10 -0
  351. package/dist/types/lib/common/GraphSeries.d.ts +6 -0
  352. package/dist/types/lib/common/Indicator.d.ts +8 -0
  353. package/dist/types/lib/common/IntKeySeriesDataValue.d.ts +6 -0
  354. package/dist/types/lib/common/IntKeyValue.d.ts +5 -0
  355. package/dist/types/lib/common/Interval.d.ts +5 -0
  356. package/dist/types/lib/common/Link.d.ts +11 -0
  357. package/dist/types/lib/common/Location.d.ts +5 -0
  358. package/dist/types/lib/common/LoginParams.d.ts +6 -0
  359. package/dist/types/lib/common/MaliciousIPCard.d.ts +12 -0
  360. package/dist/types/lib/common/MaliciousIPData.d.ts +7 -0
  361. package/dist/types/lib/common/NetworkMap.d.ts +7 -0
  362. package/dist/types/lib/common/Node.d.ts +15 -0
  363. package/dist/types/lib/common/RuleBasedSeverityConditionConfig.d.ts +9 -0
  364. package/dist/types/lib/common/RuleCountThresholdConfig.d.ts +6 -0
  365. package/dist/types/lib/common/SeriesData.d.ts +7 -0
  366. package/dist/types/lib/common/SessionTransform.d.ts +8 -0
  367. package/dist/types/lib/common/SeverityConditionConfig.d.ts +10 -0
  368. package/dist/types/lib/common/SeverityIntervalTuple.d.ts +7 -0
  369. package/dist/types/lib/common/ShieldexConfig.d.ts +9 -0
  370. package/dist/types/lib/common/StringIntValue.d.ts +5 -0
  371. package/dist/types/lib/common/StringKeyIntValue.d.ts +5 -0
  372. package/dist/types/lib/common/StringKeyValue.d.ts +5 -0
  373. package/dist/types/lib/common/Thresholds.d.ts +4 -0
  374. package/dist/types/lib/common/TimeDataPoint.d.ts +5 -0
  375. package/dist/types/lib/common/TimeDataPoint2D.d.ts +6 -0
  376. package/dist/types/lib/common/TimeDataPointFloat.d.ts +5 -0
  377. package/dist/types/lib/common/TimeFrame.d.ts +5 -0
  378. package/dist/types/lib/common/TimeSeries.d.ts +8 -0
  379. package/dist/types/lib/common/TimeSeriesOf2D.d.ts +8 -0
  380. package/dist/types/lib/common/TimeSeriesOfDataConsumption.d.ts +8 -0
  381. package/dist/types/lib/common/TimeSeriesOfFloat.d.ts +8 -0
  382. package/dist/types/lib/common/TokenData.d.ts +12 -0
  383. package/dist/types/lib/common/Tuple.d.ts +5 -0
  384. package/dist/types/lib/common/UsageTransform.d.ts +10 -0
  385. package/dist/types/lib/common/ZScore.d.ts +5 -0
  386. package/dist/types/lib/common/index.d.ts +44 -0
  387. package/dist/types/lib/entities/Account.d.ts +17 -0
  388. package/dist/types/lib/entities/AccountDTO.d.ts +19 -0
  389. package/dist/types/lib/entities/AccountSettings.d.ts +10 -0
  390. package/dist/types/lib/entities/Action.d.ts +10 -0
  391. package/dist/types/lib/entities/Alert.d.ts +34 -0
  392. package/dist/types/lib/entities/AlertWithDevice.d.ts +36 -0
  393. package/dist/types/lib/entities/ApiKey.d.ts +11 -0
  394. package/dist/types/lib/entities/AuditLog.d.ts +13 -0
  395. package/dist/types/lib/entities/BulkDevices.d.ts +5 -0
  396. package/dist/types/lib/entities/Checkpoint.d.ts +23 -0
  397. package/dist/types/lib/entities/ComplianceReportSettings.d.ts +7 -0
  398. package/dist/types/lib/entities/Condition.d.ts +8 -0
  399. package/dist/types/lib/entities/ConfigParam.d.ts +6 -0
  400. package/dist/types/lib/entities/ConfigParams.d.ts +5 -0
  401. package/dist/types/lib/entities/DNSRecord.d.ts +12 -0
  402. package/dist/types/lib/entities/DataIngestion.d.ts +18 -0
  403. package/dist/types/lib/entities/DataPointOfDeviceReport.d.ts +6 -0
  404. package/dist/types/lib/entities/Device.d.ts +30 -0
  405. package/dist/types/lib/entities/DeviceReport.d.ts +9 -0
  406. package/dist/types/lib/entities/DeviceWithEvents.d.ts +32 -0
  407. package/dist/types/lib/entities/Distribution.d.ts +7 -0
  408. package/dist/types/lib/entities/Event.d.ts +38 -0
  409. package/dist/types/lib/entities/EventOccurrence.d.ts +10 -0
  410. package/dist/types/lib/entities/EventWithDevice.d.ts +39 -0
  411. package/dist/types/lib/entities/Feature.d.ts +6 -0
  412. package/dist/types/lib/entities/FeaturesGroup.d.ts +6 -0
  413. package/dist/types/lib/entities/Group.d.ts +8 -0
  414. package/dist/types/lib/entities/Image.d.ts +5 -0
  415. package/dist/types/lib/entities/Insight.d.ts +18 -0
  416. package/dist/types/lib/entities/InsightQuery.d.ts +10 -0
  417. package/dist/types/lib/entities/InsightSpec.d.ts +9 -0
  418. package/dist/types/lib/entities/IntDistribution.d.ts +7 -0
  419. package/dist/types/lib/entities/Integration.d.ts +31 -0
  420. package/dist/types/lib/entities/Member.d.ts +7 -0
  421. package/dist/types/lib/entities/Radius.d.ts +15 -0
  422. package/dist/types/lib/entities/Report.d.ts +13 -0
  423. package/dist/types/lib/entities/Rule.d.ts +27 -0
  424. package/dist/types/lib/entities/RuleTemplate.d.ts +14 -0
  425. package/dist/types/lib/entities/SIM.d.ts +8 -0
  426. package/dist/types/lib/entities/ServiceStatus.d.ts +8 -0
  427. package/dist/types/lib/entities/SessionRecord.d.ts +22 -0
  428. package/dist/types/lib/entities/Shieldex.d.ts +7 -0
  429. package/dist/types/lib/entities/Stream.d.ts +11 -0
  430. package/dist/types/lib/entities/StreamAnalyticsConfig.d.ts +12 -0
  431. package/dist/types/lib/entities/StreamConfig.d.ts +19 -0
  432. package/dist/types/lib/entities/TeaserPopUpSettings.d.ts +6 -0
  433. package/dist/types/lib/entities/TimeSeriesOfDeviceReport.d.ts +8 -0
  434. package/dist/types/lib/entities/UsageRecord.d.ts +32 -0
  435. package/dist/types/lib/entities/User.d.ts +16 -0
  436. package/dist/types/lib/entities/UserMembership.d.ts +14 -0
  437. package/dist/types/lib/entities/UserMemberships.d.ts +14 -0
  438. package/dist/types/lib/entities/index.d.ts +51 -0
  439. package/dist/types/lib/enums/AccountStatusCode.d.ts +7 -0
  440. package/dist/types/lib/enums/AccountTypeCode.d.ts +8 -0
  441. package/dist/types/lib/enums/DataSourceCode.d.ts +7 -0
  442. package/dist/types/lib/enums/DeviceActionCode.d.ts +8 -0
  443. package/dist/types/lib/enums/DeviceCreationCode.d.ts +8 -0
  444. package/dist/types/lib/enums/DeviceIdentityCode.d.ts +11 -0
  445. package/dist/types/lib/enums/DeviceStatusCode.d.ts +8 -0
  446. package/dist/types/lib/enums/DeviceTypeCode.d.ts +18 -0
  447. package/dist/types/lib/enums/DirectionContextCode.d.ts +8 -0
  448. package/dist/types/lib/enums/EventCategoryCode.d.ts +6 -0
  449. package/dist/types/lib/enums/EventStatusCode.d.ts +8 -0
  450. package/dist/types/lib/enums/EventTypeCode.d.ts +23 -0
  451. package/dist/types/lib/enums/FeatureCode.d.ts +14 -0
  452. package/dist/types/lib/enums/HomePageViewCode.d.ts +7 -0
  453. package/dist/types/lib/enums/HttpMethodCode.d.ts +9 -0
  454. package/dist/types/lib/enums/InsightStatusCode.d.ts +7 -0
  455. package/dist/types/lib/enums/InsightTypeCode.d.ts +6 -0
  456. package/dist/types/lib/enums/IntegrationTriggerCode.d.ts +6 -0
  457. package/dist/types/lib/enums/IntegrationTypeCode.d.ts +8 -0
  458. package/dist/types/lib/enums/MemberRoleCode.d.ts +8 -0
  459. package/dist/types/lib/enums/NetworkMapTypeCode.d.ts +7 -0
  460. package/dist/types/lib/enums/OperatorCode.d.ts +15 -0
  461. package/dist/types/lib/enums/PermissionCode.d.ts +9 -0
  462. package/dist/types/lib/enums/ReportTypeCode.d.ts +7 -0
  463. package/dist/types/lib/enums/RuleActivityStatusCode.d.ts +5 -0
  464. package/dist/types/lib/enums/RuleTypeCode.d.ts +7 -0
  465. package/dist/types/lib/enums/SeverityTypeCode.d.ts +8 -0
  466. package/dist/types/lib/enums/TrafficDirectionCode.d.ts +7 -0
  467. package/dist/types/lib/enums/UserStatusCode.d.ts +8 -0
  468. package/dist/types/lib/enums/UserTypeCode.d.ts +8 -0
  469. package/dist/types/lib/enums/index.d.ts +30 -0
  470. package/dist/types/lib/index.d.ts +6 -0
  471. package/dist/types/lib/pulse-client.d.ts +56 -0
  472. package/dist/types/lib/services/index.d.ts +26 -0
  473. package/dist/types/lib/services/services.export.d.ts +26 -0
  474. package/dist/types/lib/services/supportStreamAnalyticsConfig.d.ts +29 -0
  475. package/dist/types/lib/services/sysAccountsService.d.ts +45 -0
  476. package/dist/types/lib/services/sysAuditLogService.d.ts +22 -0
  477. package/dist/types/lib/services/sysCheckpointsService.d.ts +22 -0
  478. package/dist/types/lib/services/sysConfigService.d.ts +38 -0
  479. package/dist/types/lib/services/sysFeaturesService.d.ts +34 -0
  480. package/dist/types/lib/services/sysGroupsService.d.ts +42 -0
  481. package/dist/types/lib/services/sysInsightsService.d.ts +54 -0
  482. package/dist/types/lib/services/sysKeysService.d.ts +34 -0
  483. package/dist/types/lib/services/sysMembersService.d.ts +30 -0
  484. package/dist/types/lib/services/sysRuleTemplatesService.d.ts +29 -0
  485. package/dist/types/lib/services/sysRulesService.d.ts +34 -0
  486. package/dist/types/lib/services/sysStatisticsService.d.ts +25 -0
  487. package/dist/types/lib/services/sysStreamsService.d.ts +29 -0
  488. package/dist/types/lib/services/sysUsersService.d.ts +44 -0
  489. package/dist/types/lib/services/usrAlertsService.d.ts +110 -0
  490. package/dist/types/lib/services/usrDevicesService.d.ts +109 -0
  491. package/dist/types/lib/services/usrEventsService.d.ts +93 -0
  492. package/dist/types/lib/services/usrInsightsService.d.ts +13 -0
  493. package/dist/types/lib/services/usrIntegrationsService.d.ts +37 -0
  494. package/dist/types/lib/services/usrMembersService.d.ts +34 -0
  495. package/dist/types/lib/services/usrNetworkService.d.ts +18 -0
  496. package/dist/types/lib/services/usrReportsService.d.ts +51 -0
  497. package/dist/types/lib/services/usrRulesService.d.ts +47 -0
  498. package/dist/types/lib/services/usrUserService.d.ts +65 -0
  499. package/dist/types/utils/ActionResponse.d.ts +5 -0
  500. package/dist/types/utils/BaseRestResponse.d.ts +4 -0
  501. package/dist/types/utils/EntitiesResponse.d.ts +8 -0
  502. package/dist/types/utils/EntityResponse.d.ts +8 -0
  503. package/dist/types/utils/index.d.ts +5 -0
  504. package/dist/types/utils/rest-axios-setup.d.ts +3 -0
  505. package/dist/types/utils/rest-util.d.ts +15 -0
  506. package/dist/umd/index.js +1 -1
  507. package/package.json +8 -19
  508. package/dist/cjs/Num.js +0 -174
  509. package/dist/esm/Num.js +0 -171
  510. package/dist/types/Num.d.ts +0 -15
@@ -0,0 +1,78 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UsrIntegrationsService = void 0;
4
+ // List of integrations related actions for the operator
5
+ // @RequestHeader X-API-KEY The key to identify the application (console)
6
+ // @RequestHeader X-ACCESS-TOKEN The token to identify the logged-in user
7
+ class UsrIntegrationsService {
8
+ // Class constructor
9
+ constructor(config, rest) {
10
+ this.config = config;
11
+ this.rest = rest;
12
+ // URL to web api
13
+ this.baseUrl = '/integrations';
14
+ this.baseUrl = this.config.api + this.baseUrl;
15
+ }
16
+ /**
17
+ * Create new integration
18
+ */
19
+ create(body) {
20
+ return this.rest.put(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
21
+ }
22
+ /**
23
+ * Update existing integration
24
+ */
25
+ update(body) {
26
+ return this.rest.patch(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
27
+ }
28
+ /**
29
+ * Delete integration from the system
30
+ */
31
+ delete(id) {
32
+ return this.rest.delete(`${this.baseUrl}/${id}`);
33
+ }
34
+ /**
35
+ * Get single integration by id
36
+ */
37
+ get(id) {
38
+ return this.rest.get(`${this.baseUrl}/${id}`);
39
+ }
40
+ /**
41
+ * Find list of integrations by query
42
+ */
43
+ find(accountId, streamId, search, sort, page, size) {
44
+ const params = [];
45
+ if (accountId != null) {
46
+ params.push(`accountId=${accountId}`);
47
+ }
48
+ if (streamId != null) {
49
+ params.push(`streamId=${streamId}`);
50
+ }
51
+ if (search != null) {
52
+ params.push(`search=${search}`);
53
+ }
54
+ if (sort != null) {
55
+ params.push(`sort=${sort}`);
56
+ }
57
+ if (page != null) {
58
+ params.push(`page=${page}`);
59
+ }
60
+ if (size != null) {
61
+ params.push(`size=${size}`);
62
+ }
63
+ return this.rest.get(`${this.baseUrl}`, ...params);
64
+ }
65
+ /**
66
+ * Validate format of the templates in the fields
67
+ */
68
+ validate(body) {
69
+ return this.rest.post(`${this.baseUrl}/validate`, typeof body === 'object' ? JSON.stringify(body) : body);
70
+ }
71
+ /**
72
+ * Test the integration with pseudo data
73
+ */
74
+ test(body) {
75
+ return this.rest.post(`${this.baseUrl}/test`, typeof body === 'object' ? JSON.stringify(body) : body);
76
+ }
77
+ }
78
+ exports.UsrIntegrationsService = UsrIntegrationsService;
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UsrMembersService = void 0;
4
+ // List of members related actions for account administrator only
5
+ // @RequestHeader X-API-KEY The key to identify the application (console)
6
+ // @RequestHeader X-ACCESS-TOKEN The token to identify the logged-in user
7
+ class UsrMembersService {
8
+ // Class constructor
9
+ constructor(config, rest) {
10
+ this.config = config;
11
+ this.rest = rest;
12
+ // URL to web api
13
+ this.baseUrl = '/members';
14
+ this.baseUrl = this.config.api + this.baseUrl;
15
+ }
16
+ /**
17
+ * Create new member
18
+ */
19
+ create(body) {
20
+ return this.rest.put(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
21
+ }
22
+ /**
23
+ * Update existing member in the system
24
+ */
25
+ update(body) {
26
+ return this.rest.patch(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
27
+ }
28
+ /**
29
+ * Delete member from the system
30
+ */
31
+ delete(id) {
32
+ return this.rest.delete(`${this.baseUrl}/${id}`);
33
+ }
34
+ /**
35
+ * Get single member by id
36
+ */
37
+ get(id) {
38
+ return this.rest.get(`${this.baseUrl}/${id}`);
39
+ }
40
+ /**
41
+ * Find list of members by query
42
+ */
43
+ find(userId, role, sort, page, size) {
44
+ const params = [];
45
+ if (userId != null) {
46
+ params.push(`userId=${userId}`);
47
+ }
48
+ if (role != null) {
49
+ params.push(`role=${role}`);
50
+ }
51
+ if (sort != null) {
52
+ params.push(`sort=${sort}`);
53
+ }
54
+ if (page != null) {
55
+ params.push(`page=${page}`);
56
+ }
57
+ if (size != null) {
58
+ params.push(`size=${size}`);
59
+ }
60
+ return this.rest.get(`${this.baseUrl}`, ...params);
61
+ }
62
+ /**
63
+ * Find list of registered emails by query
64
+ */
65
+ findEmails(search, page, size) {
66
+ const params = [];
67
+ if (search != null) {
68
+ params.push(`search=${search}`);
69
+ }
70
+ if (page != null) {
71
+ params.push(`page=${page}`);
72
+ }
73
+ if (size != null) {
74
+ params.push(`size=${size}`);
75
+ }
76
+ return this.rest.get(`${this.baseUrl}/emails`, ...params);
77
+ }
78
+ }
79
+ exports.UsrMembersService = UsrMembersService;
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UsrNetworkService = void 0;
4
+ // List of network statistics related queries for the operator
5
+ // @RequestHeader X-API-KEY The key to identify the application (console)
6
+ // @RequestHeader X-ACCESS-TOKEN The token to identify the logged-in user
7
+ class UsrNetworkService {
8
+ // Class constructor
9
+ constructor(config, rest) {
10
+ this.config = config;
11
+ this.rest = rest;
12
+ // URL to web api
13
+ this.baseUrl = '/network';
14
+ this.baseUrl = this.config.api + this.baseUrl;
15
+ }
16
+ /**
17
+ * Find list of usage records by query
18
+ */
19
+ findUsage(streamId, deviceId, simId, from, to, include, sort, page, size) {
20
+ const params = [];
21
+ if (streamId != null) {
22
+ params.push(`streamId=${streamId}`);
23
+ }
24
+ if (deviceId != null) {
25
+ params.push(`deviceId=${deviceId}`);
26
+ }
27
+ if (simId != null) {
28
+ params.push(`simId=${simId}`);
29
+ }
30
+ if (from != null) {
31
+ params.push(`from=${from}`);
32
+ }
33
+ if (to != null) {
34
+ params.push(`to=${to}`);
35
+ }
36
+ if (include != null) {
37
+ params.push(`include=${include}`);
38
+ }
39
+ if (sort != null) {
40
+ params.push(`sort=${sort}`);
41
+ }
42
+ if (page != null) {
43
+ params.push(`page=${page}`);
44
+ }
45
+ if (size != null) {
46
+ params.push(`size=${size}`);
47
+ }
48
+ return this.rest.get(`${this.baseUrl}/usage`, ...params);
49
+ }
50
+ /**
51
+ * Find list of session records by query
52
+ */
53
+ findSession(streamId, deviceId, simId, from, to, include, sort, page, size) {
54
+ const params = [];
55
+ if (streamId != null) {
56
+ params.push(`streamId=${streamId}`);
57
+ }
58
+ if (deviceId != null) {
59
+ params.push(`deviceId=${deviceId}`);
60
+ }
61
+ if (simId != null) {
62
+ params.push(`simId=${simId}`);
63
+ }
64
+ if (from != null) {
65
+ params.push(`from=${from}`);
66
+ }
67
+ if (to != null) {
68
+ params.push(`to=${to}`);
69
+ }
70
+ if (include != null) {
71
+ params.push(`include=${include}`);
72
+ }
73
+ if (sort != null) {
74
+ params.push(`sort=${sort}`);
75
+ }
76
+ if (page != null) {
77
+ params.push(`page=${page}`);
78
+ }
79
+ if (size != null) {
80
+ params.push(`size=${size}`);
81
+ }
82
+ return this.rest.get(`${this.baseUrl}/session`, ...params);
83
+ }
84
+ }
85
+ exports.UsrNetworkService = UsrNetworkService;
@@ -0,0 +1,146 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UsrReportsService = void 0;
4
+ // List of events related actions for the operator
5
+ // @RequestHeader X-API-KEY The key to identify the application (console)
6
+ // @RequestHeader X-ACCESS-TOKEN The token to identify the logged-in user
7
+ class UsrReportsService {
8
+ // Class constructor
9
+ constructor(config, rest) {
10
+ this.config = config;
11
+ this.rest = rest;
12
+ // URL to web api
13
+ this.baseUrl = '/reports';
14
+ this.baseUrl = this.config.api + this.baseUrl;
15
+ }
16
+ /**
17
+ * Create new report
18
+ */
19
+ create(body) {
20
+ return this.rest.put(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
21
+ }
22
+ /**
23
+ * Update existing report in the system
24
+ */
25
+ update(body) {
26
+ return this.rest.patch(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
27
+ }
28
+ /**
29
+ * Delete a report from the system
30
+ */
31
+ delete(id) {
32
+ return this.rest.delete(`${this.baseUrl}/${id}`);
33
+ }
34
+ /**
35
+ * Get single report by id
36
+ */
37
+ get(id) {
38
+ return this.rest.get(`${this.baseUrl}/${id}`);
39
+ }
40
+ /**
41
+ * Find list of reports by query
42
+ */
43
+ find(accountId, search, sort, page, size) {
44
+ const params = [];
45
+ if (accountId != null) {
46
+ params.push(`accountId=${accountId}`);
47
+ }
48
+ if (search != null) {
49
+ params.push(`search=${search}`);
50
+ }
51
+ if (sort != null) {
52
+ params.push(`sort=${sort}`);
53
+ }
54
+ if (page != null) {
55
+ params.push(`page=${page}`);
56
+ }
57
+ if (size != null) {
58
+ params.push(`size=${size}`);
59
+ }
60
+ return this.rest.get(`${this.baseUrl}`, ...params);
61
+ }
62
+ /**
63
+ * Get compliance report
64
+ */
65
+ getComplianceReport(streamId, from, to) {
66
+ const params = [];
67
+ if (streamId != null) {
68
+ params.push(`streamId=${streamId}`);
69
+ }
70
+ if (from != null) {
71
+ params.push(`from=${from}`);
72
+ }
73
+ if (to != null) {
74
+ params.push(`to=${to}`);
75
+ }
76
+ return this.rest.download(`reports`, `${this.baseUrl}/compliance`, ...params);
77
+ }
78
+ /**
79
+ * Create compliance report and send it by email
80
+ */
81
+ getComplianceReportByMail(streamId, from, to, addresses) {
82
+ const params = [];
83
+ if (streamId != null) {
84
+ params.push(`streamId=${streamId}`);
85
+ }
86
+ if (from != null) {
87
+ params.push(`from=${from}`);
88
+ }
89
+ if (to != null) {
90
+ params.push(`to=${to}`);
91
+ }
92
+ if (addresses != null) {
93
+ params.push(`addresses=${addresses}`);
94
+ }
95
+ return this.rest.get(`${this.baseUrl}/compliance-by-mail`, ...params);
96
+ }
97
+ /**
98
+ * Get histogram of network activity over time
99
+ */
100
+ getNetworkActivityOverTime(streamId, from, to) {
101
+ const params = [];
102
+ if (streamId != null) {
103
+ params.push(`streamId=${streamId}`);
104
+ }
105
+ if (from != null) {
106
+ params.push(`from=${from}`);
107
+ }
108
+ if (to != null) {
109
+ params.push(`to=${to}`);
110
+ }
111
+ return this.rest.get(`${this.baseUrl}/network-activity-over-time`, ...params);
112
+ }
113
+ /**
114
+ * Get histogram of device distribution by number of destinations
115
+ */
116
+ getDeviceDistributionByNumberOfDestinations(streamId, from, to) {
117
+ const params = [];
118
+ if (streamId != null) {
119
+ params.push(`streamId=${streamId}`);
120
+ }
121
+ if (from != null) {
122
+ params.push(`from=${from}`);
123
+ }
124
+ if (to != null) {
125
+ params.push(`to=${to}`);
126
+ }
127
+ return this.rest.get(`${this.baseUrl}/device-distribution-by-number-of-destinations`, ...params);
128
+ }
129
+ /**
130
+ * Get histogram of device distribution by communication frequency
131
+ */
132
+ getDeviceGroupsByCommunicationFrequency(streamId, from, to) {
133
+ const params = [];
134
+ if (streamId != null) {
135
+ params.push(`streamId=${streamId}`);
136
+ }
137
+ if (from != null) {
138
+ params.push(`from=${from}`);
139
+ }
140
+ if (to != null) {
141
+ params.push(`to=${to}`);
142
+ }
143
+ return this.rest.get(`${this.baseUrl}/device-groups-by-communication-frequency`, ...params);
144
+ }
145
+ }
146
+ exports.UsrReportsService = UsrReportsService;
@@ -0,0 +1,180 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UsrRulesService = void 0;
4
+ // List of rules related actions
5
+ // @RequestHeader X-API-KEY The key to identify the application (console)
6
+ // @RequestHeader X-ACCESS-TOKEN The token to identify the logged-in user
7
+ class UsrRulesService {
8
+ // Class constructor
9
+ constructor(config, rest) {
10
+ this.config = config;
11
+ this.rest = rest;
12
+ // URL to web api
13
+ this.baseUrl = '/rules';
14
+ this.baseUrl = this.config.api + this.baseUrl;
15
+ }
16
+ /**
17
+ * Create new rule
18
+ */
19
+ create(body) {
20
+ return this.rest.put(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
21
+ }
22
+ /**
23
+ * Update existing rule in the system
24
+ */
25
+ update(body) {
26
+ return this.rest.patch(`${this.baseUrl}`, typeof body === 'object' ? JSON.stringify(body) : body);
27
+ }
28
+ /**
29
+ * Delete a rule from the system
30
+ */
31
+ delete(id) {
32
+ return this.rest.delete(`${this.baseUrl}/${id}`);
33
+ }
34
+ /**
35
+ * Get single rule by id
36
+ */
37
+ get(id) {
38
+ return this.rest.get(`${this.baseUrl}/${id}`);
39
+ }
40
+ /**
41
+ * Find list of rules by query
42
+ */
43
+ find(streamId, search, from, to, eventSeverity, activityStatus, eventType, includeSysRules, sort, page, size) {
44
+ const params = [];
45
+ if (streamId != null) {
46
+ params.push(`streamId=${streamId}`);
47
+ }
48
+ if (search != null) {
49
+ params.push(`search=${search}`);
50
+ }
51
+ if (from != null) {
52
+ params.push(`from=${from}`);
53
+ }
54
+ if (to != null) {
55
+ params.push(`to=${to}`);
56
+ }
57
+ if (eventSeverity != null) {
58
+ params.push(`eventSeverity=${eventSeverity}`);
59
+ }
60
+ if (activityStatus != null) {
61
+ params.push(`activityStatus=${activityStatus}`);
62
+ }
63
+ if (eventType != null) {
64
+ params.push(`eventType=${eventType}`);
65
+ }
66
+ if (includeSysRules != null) {
67
+ params.push(`includeSysRules=${includeSysRules}`);
68
+ }
69
+ if (sort != null) {
70
+ params.push(`sort=${sort}`);
71
+ }
72
+ if (page != null) {
73
+ params.push(`page=${page}`);
74
+ }
75
+ if (size != null) {
76
+ params.push(`size=${size}`);
77
+ }
78
+ return this.rest.get(`${this.baseUrl}`, ...params);
79
+ }
80
+ /**
81
+ * Analyze rule configuration against historic data
82
+ */
83
+ analyze(from, to, interval, size, body) {
84
+ const params = [];
85
+ if (from != null) {
86
+ params.push(`from=${from}`);
87
+ }
88
+ if (to != null) {
89
+ params.push(`to=${to}`);
90
+ }
91
+ if (interval != null) {
92
+ params.push(`interval=${interval}`);
93
+ }
94
+ if (size != null) {
95
+ params.push(`size=${size}`);
96
+ }
97
+ return this.rest.post(`${this.baseUrl}/analyze`, typeof body === 'object' ? JSON.stringify(body) : body, ...params);
98
+ }
99
+ /**
100
+ * Find rule distribution by severity filtered by query
101
+ */
102
+ countBySeverity(streamId, search, from, to, eventSeverity, activityStatus, eventType, includeSysRules, sort, page, size) {
103
+ const params = [];
104
+ if (streamId != null) {
105
+ params.push(`streamId=${streamId}`);
106
+ }
107
+ if (search != null) {
108
+ params.push(`search=${search}`);
109
+ }
110
+ if (from != null) {
111
+ params.push(`from=${from}`);
112
+ }
113
+ if (to != null) {
114
+ params.push(`to=${to}`);
115
+ }
116
+ if (eventSeverity != null) {
117
+ params.push(`eventSeverity=${eventSeverity}`);
118
+ }
119
+ if (activityStatus != null) {
120
+ params.push(`activityStatus=${activityStatus}`);
121
+ }
122
+ if (eventType != null) {
123
+ params.push(`eventType=${eventType}`);
124
+ }
125
+ if (includeSysRules != null) {
126
+ params.push(`includeSysRules=${includeSysRules}`);
127
+ }
128
+ if (sort != null) {
129
+ params.push(`sort=${sort}`);
130
+ }
131
+ if (page != null) {
132
+ params.push(`page=${page}`);
133
+ }
134
+ if (size != null) {
135
+ params.push(`size=${size}`);
136
+ }
137
+ return this.rest.get(`${this.baseUrl}/count/by-severity`, ...params);
138
+ }
139
+ /**
140
+ * Find alerts count distribution by rule filtered by query
141
+ */
142
+ countAlertsByRule(streamId, search, from, to, eventSeverity, activityStatus, eventType, includeSysRules, sort, page, size) {
143
+ const params = [];
144
+ if (streamId != null) {
145
+ params.push(`streamId=${streamId}`);
146
+ }
147
+ if (search != null) {
148
+ params.push(`search=${search}`);
149
+ }
150
+ if (from != null) {
151
+ params.push(`from=${from}`);
152
+ }
153
+ if (to != null) {
154
+ params.push(`to=${to}`);
155
+ }
156
+ if (eventSeverity != null) {
157
+ params.push(`eventSeverity=${eventSeverity}`);
158
+ }
159
+ if (activityStatus != null) {
160
+ params.push(`activityStatus=${activityStatus}`);
161
+ }
162
+ if (eventType != null) {
163
+ params.push(`eventType=${eventType}`);
164
+ }
165
+ if (includeSysRules != null) {
166
+ params.push(`includeSysRules=${includeSysRules}`);
167
+ }
168
+ if (sort != null) {
169
+ params.push(`sort=${sort}`);
170
+ }
171
+ if (page != null) {
172
+ params.push(`page=${page}`);
173
+ }
174
+ if (size != null) {
175
+ params.push(`size=${size}`);
176
+ }
177
+ return this.rest.get(`${this.baseUrl}/count-alerts/by-rule-id`, ...params);
178
+ }
179
+ }
180
+ exports.UsrRulesService = UsrRulesService;
@@ -0,0 +1,91 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UsrUserService = void 0;
4
+ // List of user related actions
5
+ // @RequestHeader X-API-KEY The key to identify the application (console)
6
+ // @RequestHeader X-ACCESS-TOKEN The token to identify the logged-in user
7
+ class UsrUserService {
8
+ // Class constructor
9
+ constructor(config, rest) {
10
+ this.config = config;
11
+ this.rest = rest;
12
+ // URL to web api
13
+ this.baseUrl = '/user';
14
+ this.baseUrl = this.config.api + this.baseUrl;
15
+ }
16
+ /**
17
+ * Authorize user, verify user exists in the system (user was already authenticated by OAuth provider)
18
+ * The response includes access token valid for 20 minutes. The client side should renew the token before expiration using refresh-token method
19
+ */
20
+ authorize(body) {
21
+ return this.rest.post(`${this.baseUrl}/authorize`, typeof body === 'object' ? JSON.stringify(body) : body);
22
+ }
23
+ /**
24
+ * Refresh token (set new expiration time) and associate with new account if required
25
+ * The response includes the account details and the newly refreshed token in the HTTP header X-ACCESS-TOKEN
26
+ */
27
+ setAccount(id) {
28
+ return this.rest.post(`${this.baseUrl}/set-account/${id}`, '');
29
+ }
30
+ /**
31
+ * Get the user's current account details
32
+ */
33
+ getAccount() {
34
+ return this.rest.get(`${this.baseUrl}/get-account`);
35
+ }
36
+ /**
37
+ * Get user's current account logo
38
+ */
39
+ getAccountLogo() {
40
+ return this.rest.get(`${this.baseUrl}/get-account-logo`);
41
+ }
42
+ /**
43
+ * Get the user's current account features (aggregated list of all features in all the account's features groups)
44
+ */
45
+ getAccountFeatures() {
46
+ return this.rest.get(`${this.baseUrl}/get-account-features`);
47
+ }
48
+ /**
49
+ * Get the user's current account streams (accessible by the user)
50
+ */
51
+ getAccountStreams() {
52
+ return this.rest.get(`${this.baseUrl}/get-account-streams`);
53
+ }
54
+ /**
55
+ * Get all the user memberships (all accounts that the current user has access to)
56
+ */
57
+ getMemberships() {
58
+ return this.rest.get(`${this.baseUrl}/memberships`);
59
+ }
60
+ /**
61
+ * Save user's avatar image
62
+ */
63
+ saveAvatar(body) {
64
+ return this.rest.patch(`${this.baseUrl}/avatar`, typeof body === 'object' ? JSON.stringify(body) : body);
65
+ }
66
+ /**
67
+ * Get user's avatar image
68
+ */
69
+ getAvatar() {
70
+ return this.rest.get(`${this.baseUrl}/avatar`);
71
+ }
72
+ /**
73
+ * Get arbitrary image by Id
74
+ */
75
+ getImage(id) {
76
+ return this.rest.get(`${this.baseUrl}/images`);
77
+ }
78
+ /**
79
+ * Get arbitrary image by Id as stream of bytes
80
+ */
81
+ getImageBytes(id) {
82
+ return this.rest.download(`usr-user`, `${this.baseUrl}/image-bytes`);
83
+ }
84
+ /**
85
+ * Get personal access token
86
+ */
87
+ getAccessToken() {
88
+ return this.rest.get(`${this.baseUrl}/access-token`);
89
+ }
90
+ }
91
+ exports.UsrUserService = UsrUserService;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ActionResponse = void 0;
4
+ const BaseRestResponse_1 = require("./BaseRestResponse");
5
+ // ActionResponse message is returned for any action on entity with no return data (e.d. delete)
6
+ class ActionResponse extends BaseRestResponse_1.BaseRestResponse {
7
+ constructor() {
8
+ super(...arguments);
9
+ // Entity key
10
+ this.key = '';
11
+ // Additional data
12
+ this.data = '';
13
+ }
14
+ }
15
+ exports.ActionResponse = ActionResponse;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BaseRestResponse = void 0;
4
+ // BaseRestResponse is a common structure for all response types
5
+ class BaseRestResponse {
6
+ constructor() {
7
+ // Error code (0 for success)
8
+ this.code = 0;
9
+ // Error message
10
+ this.error = '';
11
+ }
12
+ }
13
+ exports.BaseRestResponse = BaseRestResponse;