@itentialopensource/adapter-sevone 2.2.4 → 2.4.0

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 (311) hide show
  1. package/AUTH.md +39 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +169 -0
  4. package/CHANGELOG.md +59 -89
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +88 -74
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +225 -502
  10. package/SUMMARY.md +9 -0
  11. package/SYSTEMINFO.md +11 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +18786 -55
  14. package/adapterBase.js +1021 -245
  15. package/entities/.generic/action.json +110 -5
  16. package/entities/.generic/schema.json +6 -1
  17. package/entities/ApiKeys/action.json +206 -0
  18. package/entities/ApiKeys/mockdatafiles/createApiKey-default.json +7 -0
  19. package/entities/ApiKeys/mockdatafiles/createApiKeyForUser-default.json +7 -0
  20. package/entities/ApiKeys/mockdatafiles/getApiKeys-default.json +9 -0
  21. package/entities/ApiKeys/mockdatafiles/getApiKeysForUser-default.json +23 -0
  22. package/entities/ApiKeys/mockdatafiles/updateApiKey-default.json +7 -0
  23. package/entities/ApiKeys/mockdatafiles/updateApiKeyForUser-default.json +7 -0
  24. package/entities/ApiKeys/schema.json +28 -0
  25. package/entities/Application/action.json +66 -0
  26. package/entities/Application/mockdatafiles/getVersion-default.json +6 -0
  27. package/entities/Application/mockdatafiles/postLoggingLevel-default.json +5 -0
  28. package/entities/Application/schema.json +21 -0
  29. package/entities/Authentication/action.json +126 -0
  30. package/entities/Authentication/mockdatafiles/getActiveSessions-default.json +26 -0
  31. package/entities/Authentication/mockdatafiles/signIn-default.json +3 -0
  32. package/entities/Authentication/schema.json +24 -0
  33. package/entities/CountriesAndTimezones/action.json +25 -0
  34. package/entities/CountriesAndTimezones/mockdatafiles/getTimezonesByCountries-default.json +30 -0
  35. package/entities/CountriesAndTimezones/schema.json +19 -0
  36. package/entities/DeviceComponent/action.json +24 -0
  37. package/entities/DeviceComponent/mockdatafiles/partiallyUpdateObjectById-default.json +193 -0
  38. package/entities/DeviceComponent/schema.json +19 -0
  39. package/entities/DeviceComponentGroup/action.json +24 -0
  40. package/entities/DeviceComponentGroup/mockdatafiles/partiallyUpdateObjectGroupById-default.json +1227 -0
  41. package/entities/DeviceComponentGroup/schema.json +19 -0
  42. package/entities/DeviceGroup/action.json +45 -0
  43. package/entities/DeviceGroup/mockdatafiles/getDeviceTagsById-default.json +5 -0
  44. package/entities/DeviceGroup/mockdatafiles/partiallyUpdateDeviceGroupById-default.json +1352 -0
  45. package/entities/DeviceGroup/schema.json +20 -0
  46. package/entities/DeviceGroupRules/action.json +127 -0
  47. package/entities/DeviceGroupRules/mockdatafiles/createDeviceGroupRule-default.json +16 -0
  48. package/entities/DeviceGroupRules/mockdatafiles/deleteDeviceGroupRule-default.json +5 -0
  49. package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupRule-default.json +16 -0
  50. package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupRules-default.json +88 -0
  51. package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupsRules-default.json +168 -0
  52. package/entities/DeviceGroupRules/mockdatafiles/updateDeviceGroupRule-default.json +16 -0
  53. package/entities/DeviceGroupRules/schema.json +24 -0
  54. package/entities/DeviceTypes/action.json +147 -0
  55. package/entities/DeviceTypes/mockdatafiles/createDeviceType-default.json +446 -0
  56. package/entities/DeviceTypes/mockdatafiles/deleteDeviceTypeById-default.json +5 -0
  57. package/entities/DeviceTypes/mockdatafiles/deleteDeviceTypeMemberById-default.json +5 -0
  58. package/entities/DeviceTypes/mockdatafiles/getDeviceTypeById-default.json +1350 -0
  59. package/entities/DeviceTypes/mockdatafiles/getDeviceTypeForDeviceById-default.json +22 -0
  60. package/entities/DeviceTypes/mockdatafiles/getDeviceTypes-default.json +4274 -0
  61. package/entities/DeviceTypes/schema.json +25 -0
  62. package/entities/Discovery/action.json +86 -0
  63. package/entities/Discovery/mockdatafiles/filterDevicesInDiscovery-default.json +442 -0
  64. package/entities/Discovery/mockdatafiles/getDeviceStatusById-default.json +224 -0
  65. package/entities/Discovery/mockdatafiles/getDevicesInDiscovery-default.json +1826 -0
  66. package/entities/Discovery/mockdatafiles/updateDevicePriority-default.json +100 -0
  67. package/entities/Discovery/schema.json +22 -0
  68. package/entities/DynamicPlugin/action.json +44 -0
  69. package/entities/DynamicPlugin/mockdatafiles/registerDynamicPlugin-default.json +42 -0
  70. package/entities/DynamicPlugin/mockdatafiles/registerDynamicPluginManager-default.json +6 -0
  71. package/entities/DynamicPlugin/schema.json +20 -0
  72. package/entities/ObjectGroupRules/action.json +147 -0
  73. package/entities/ObjectGroupRules/mockdatafiles/applyObjectGroupRules-default.json +5 -0
  74. package/entities/ObjectGroupRules/mockdatafiles/createObjectGroupRule-default.json +14 -0
  75. package/entities/ObjectGroupRules/mockdatafiles/deleteObjectGroupRule-default.json +5 -0
  76. package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupRule-default.json +14 -0
  77. package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupRules-default.json +148 -0
  78. package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupsRules-default.json +36 -0
  79. package/entities/ObjectGroupRules/mockdatafiles/updateObjectGroupRule-default.json +14 -0
  80. package/entities/ObjectGroupRules/schema.json +25 -0
  81. package/entities/Peers/action.json +150 -0
  82. package/entities/Peers/mockdatafiles/editIncorporateModeUsingPATCH-default.json +5 -0
  83. package/entities/Peers/mockdatafiles/getCurrentPeerUsingGET-default.json +27 -0
  84. package/entities/Peers/mockdatafiles/getIncorporateModeUsingGET-default.json +5 -0
  85. package/entities/Peers/mockdatafiles/getPeerUsingGET-default.json +27 -0
  86. package/entities/Peers/mockdatafiles/getPeersUsingGET-default.json +197 -0
  87. package/entities/Peers/schema.json +25 -0
  88. package/entities/Plugins/action.json +292 -0
  89. package/entities/Plugins/mockdatafiles/createPluginIndicatorType-default.json +16 -0
  90. package/entities/Plugins/mockdatafiles/createPluginObjectType-default.json +9 -0
  91. package/entities/Plugins/mockdatafiles/filterPluginIndicatorTypes-default.json +88 -0
  92. package/entities/Plugins/mockdatafiles/filterPluginObjectTypes-default.json +98 -0
  93. package/entities/Plugins/mockdatafiles/getAllPluginIndicatorTypes-default.json +72 -0
  94. package/entities/Plugins/mockdatafiles/getAllPluginObjectTypes-default.json +35 -0
  95. package/entities/Plugins/mockdatafiles/getAllPlugins-default.json +29 -0
  96. package/entities/Plugins/mockdatafiles/updatePluginIndicatorType-default.json +16 -0
  97. package/entities/Plugins/mockdatafiles/updatePluginObjectType-default.json +9 -0
  98. package/entities/Plugins/schema.json +32 -0
  99. package/entities/Policies/action.json +370 -0
  100. package/entities/Policies/mockdatafiles/createPolicy-default.json +298 -0
  101. package/entities/Policies/mockdatafiles/createPolicyCondition-default.json +14 -0
  102. package/entities/Policies/mockdatafiles/createPolicyFolder-default.json +5 -0
  103. package/entities/Policies/mockdatafiles/deletePolicyActionById-default.json +5 -0
  104. package/entities/Policies/mockdatafiles/deletePolicyById-default.json +5 -0
  105. package/entities/Policies/mockdatafiles/deletePolicyConditionById-default.json +5 -0
  106. package/entities/Policies/mockdatafiles/deletePolicyFolderById-default.json +5 -0
  107. package/entities/Policies/mockdatafiles/filterPolicies-default.json +1709 -0
  108. package/entities/Policies/mockdatafiles/findAllUsingGET-default.json +106 -0
  109. package/entities/Policies/mockdatafiles/getActionsUsingGET-default.json +53 -0
  110. package/entities/Policies/mockdatafiles/getPolicies-default.json +1318 -0
  111. package/entities/Policies/mockdatafiles/getPolicy-default.json +73 -0
  112. package/entities/Policies/mockdatafiles/getPolicyConditionById-default.json +14 -0
  113. package/entities/Policies/mockdatafiles/getPolicyFolders-default.json +13 -0
  114. package/entities/Policies/mockdatafiles/updatePolicy-default.json +97 -0
  115. package/entities/Policies/mockdatafiles/updatePolicyAction-default.json +41 -0
  116. package/entities/Policies/mockdatafiles/updatePolicyCondition-default.json +14 -0
  117. package/entities/Policies/mockdatafiles/updatePolicyFolder-default.json +5 -0
  118. package/entities/Policies/schema.json +36 -0
  119. package/entities/ReportAttachments/action.json +107 -0
  120. package/entities/ReportAttachments/mockdatafiles/deleteReportAttachment-default.json +5 -0
  121. package/entities/ReportAttachments/mockdatafiles/getAllReportAttachments-default.json +26 -0
  122. package/entities/ReportAttachments/mockdatafiles/getReportAttachment-default.json +3 -0
  123. package/entities/ReportAttachments/mockdatafiles/updateReportAttachmentById-default.json +3 -0
  124. package/entities/ReportAttachments/schema.json +23 -0
  125. package/entities/ReportAttachmentsAlerts/action.json +311 -0
  126. package/entities/ReportAttachmentsAlerts/mockdatafiles/createAlertAttachment-default.json +122 -0
  127. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentAggregation-default.json +3 -0
  128. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentFilterSchema-default.json +218 -0
  129. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentFilters-default.json +17 -0
  130. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentResource-default.json +15 -0
  131. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentSettings-default.json +67 -0
  132. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentTimeSettings-default.json +8 -0
  133. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentVisualizationSettings-default.json +59 -0
  134. package/entities/ReportAttachmentsAlerts/mockdatafiles/partiallyUpdateAlertAttachmentVisualizationSettings-default.json +65 -0
  135. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentAggregation-default.json +3 -0
  136. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentFilters-default.json +102 -0
  137. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentResource-default.json +10 -0
  138. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentSettings-default.json +52 -0
  139. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentTimeSettings-default.json +8 -0
  140. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentVisualizationSettings-default.json +65 -0
  141. package/entities/ReportAttachmentsAlerts/schema.json +33 -0
  142. package/entities/ReportAttachmentsDeviceGroups/action.json +106 -0
  143. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/createDeviceGroupsAttachment-default.json +46 -0
  144. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/getDeviceGroupsAttachment-default.json +12 -0
  145. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/getDeviceGroupsAttachmentVisualization-default.json +28 -0
  146. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/updateDeviceGroupsAttachment-default.json +9 -0
  147. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/updateDeviceGroupsAttachmentVisualization-default.json +38 -0
  148. package/entities/ReportAttachmentsDeviceGroups/schema.json +23 -0
  149. package/entities/ReportAttachmentsDevices/action.json +209 -0
  150. package/entities/ReportAttachmentsDevices/mockdatafiles/createDeviceAttachment-default.json +81 -0
  151. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachment-default.json +12 -0
  152. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentFilterSchema-default.json +4 -0
  153. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentFilters-default.json +90 -0
  154. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentSettings-default.json +72 -0
  155. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentVisualization-default.json +36 -0
  156. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachment-default.json +6 -0
  157. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentFilters-default.json +36 -0
  158. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentSettings-default.json +56 -0
  159. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentVisualization-default.json +39 -0
  160. package/entities/ReportAttachmentsDevices/schema.json +28 -0
  161. package/entities/ReportAttachmentsFlowFalcon/action.json +290 -0
  162. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/createFlowFalconAttachment-default.json +243 -0
  163. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentFilterSchema-default.json +4 -0
  164. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentFilters-default.json +138 -0
  165. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentResources-default.json +64 -0
  166. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentSettings-default.json +80 -0
  167. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentTimeSettings-default.json +8 -0
  168. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentVisualizationSettings-default.json +71 -0
  169. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/partiallyUpdateFlowFalconAttachmentSettings-default.json +48 -0
  170. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/partiallyUpdateFlowFalconAttachmentVisualizationSettings-default.json +67 -0
  171. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentFilters-default.json +58 -0
  172. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentResources-default.json +52 -0
  173. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentSettings-default.json +71 -0
  174. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentTimeSettings-default.json +8 -0
  175. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentVisualizationSettings-default.json +56 -0
  176. package/entities/ReportAttachmentsFlowFalcon/schema.json +32 -0
  177. package/entities/ReportAttachmentsGroupMetrics/action.json +188 -0
  178. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/createGroupMetricsAttachment-default.json +208 -0
  179. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachment-default.json +172 -0
  180. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentSettings-default.json +47 -0
  181. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentTimeSettings-default.json +8 -0
  182. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentVisualization-default.json +34 -0
  183. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachment-default.json +207 -0
  184. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentSettings-default.json +62 -0
  185. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentTimeSettings-default.json +8 -0
  186. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentVisualization-default.json +30 -0
  187. package/entities/ReportAttachmentsGroupMetrics/schema.json +27 -0
  188. package/entities/ReportAttachmentsMetadata/action.json +126 -0
  189. package/entities/ReportAttachmentsMetadata/mockdatafiles/createMetadataAttachment-default.json +41 -0
  190. package/entities/ReportAttachmentsMetadata/mockdatafiles/getMetadataAttachmentResources-default.json +12 -0
  191. package/entities/ReportAttachmentsMetadata/mockdatafiles/getMetadataAttachmentVisualizationSettings-default.json +33 -0
  192. package/entities/ReportAttachmentsMetadata/mockdatafiles/partiallyUpdateMetadataAttachmentVisualizationSettings-default.json +27 -0
  193. package/entities/ReportAttachmentsMetadata/mockdatafiles/updateMetadataAttachmentResources-default.json +9 -0
  194. package/entities/ReportAttachmentsMetadata/mockdatafiles/updateMetadataAttachmentVisualizationSettings-default.json +33 -0
  195. package/entities/ReportAttachmentsMetadata/schema.json +24 -0
  196. package/entities/ReportAttachmentsObjectGroups/action.json +126 -0
  197. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/createObjectGroupAttachment-default.json +54 -0
  198. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/getObjectGroupAttachmentResources-default.json +11 -0
  199. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/getObjectGroupAttachmentVisualizationSettings-default.json +41 -0
  200. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/partiallyUpdateObjectGroupAttachmentVisualizationSettings-default.json +35 -0
  201. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/updateObjectGroupAttachmentResources-default.json +16 -0
  202. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/updateObjectGroupAttachmentVisualizationSettings-default.json +36 -0
  203. package/entities/ReportAttachmentsObjectGroups/schema.json +24 -0
  204. package/entities/ReportAttachmentsObjects/action.json +167 -0
  205. package/entities/ReportAttachmentsObjects/mockdatafiles/createObjectAttachment-default.json +51 -0
  206. package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentResources-default.json +10 -0
  207. package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentSettings-default.json +5 -0
  208. package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentVisualizationSettings-default.json +32 -0
  209. package/entities/ReportAttachmentsObjects/mockdatafiles/partiallyUpdateObjectAttachmentVisualizationSettings-default.json +31 -0
  210. package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentResources-default.json +10 -0
  211. package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentSettings-default.json +5 -0
  212. package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentVisualizationSettings-default.json +35 -0
  213. package/entities/ReportAttachmentsObjects/schema.json +26 -0
  214. package/entities/ReportAttachmentsPerformanceMetrics/action.json +228 -0
  215. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/createPerformanceMetricsAttachment-default.json +275 -0
  216. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentResources-default.json +53 -0
  217. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentSettings-default.json +92 -0
  218. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentTimeSettings-default.json +8 -0
  219. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentVisualizationSettings-default.json +124 -0
  220. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/partiallyUpdatePerformanceMetricsAttachmentSettings-default.json +81 -0
  221. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/partiallyUpdatePerformanceMetricsAttachmentVisualizationSettings-default.json +126 -0
  222. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentResources-default.json +46 -0
  223. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentSettings-default.json +139 -0
  224. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentTimeSettings-default.json +8 -0
  225. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentVisualizationSettings-default.json +122 -0
  226. package/entities/ReportAttachmentsPerformanceMetrics/schema.json +29 -0
  227. package/entities/ReportAttachmentsStatusMap/action.json +65 -0
  228. package/entities/ReportAttachmentsStatusMap/mockdatafiles/createStatusMapAttachment-default.json +9 -0
  229. package/entities/ReportAttachmentsStatusMap/mockdatafiles/getStatusMapAttachmentResources-default.json +3 -0
  230. package/entities/ReportAttachmentsStatusMap/mockdatafiles/updateStatusMapAttachmentResources-default.json +3 -0
  231. package/entities/ReportAttachmentsStatusMap/schema.json +21 -0
  232. package/entities/ReportAttachmentsTelephony/action.json +188 -0
  233. package/entities/ReportAttachmentsTelephony/mockdatafiles/createTelephonyAttachment-default.json +57 -0
  234. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentAggregation-default.json +3 -0
  235. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentSettings-default.json +9 -0
  236. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentTimeSettings-default.json +8 -0
  237. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentVisualizationSettings-default.json +35 -0
  238. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentAggregation-default.json +3 -0
  239. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentSettings-default.json +9 -0
  240. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentTimeSettings-default.json +8 -0
  241. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentVisualizationSettings-default.json +33 -0
  242. package/entities/ReportAttachmentsTelephony/schema.json +27 -0
  243. package/entities/ReportAttachmentsTopN/action.json +228 -0
  244. package/entities/ReportAttachmentsTopN/mockdatafiles/createTopNAttachment-default.json +111 -0
  245. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentResources-default.json +8 -0
  246. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentSettings-default.json +129 -0
  247. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentTimeSettings-default.json +8 -0
  248. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentVisualizationSettings-default.json +44 -0
  249. package/entities/ReportAttachmentsTopN/mockdatafiles/partiallyUpdateTopNAttachmentSettings-default.json +140 -0
  250. package/entities/ReportAttachmentsTopN/mockdatafiles/partiallyUpdateTopNAttachmentVisualizationSettings-default.json +47 -0
  251. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentResources-default.json +13 -0
  252. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentSettings-default.json +39 -0
  253. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentTimeSettings-default.json +8 -0
  254. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentVisualizationSettings-default.json +51 -0
  255. package/entities/ReportAttachmentsTopN/schema.json +29 -0
  256. package/entities/Reports/action.json +187 -0
  257. package/entities/Reports/mockdatafiles/createReport-default.json +24 -0
  258. package/entities/Reports/mockdatafiles/createReportFolder-default.json +5 -0
  259. package/entities/Reports/mockdatafiles/deleteReportById-default.json +5 -0
  260. package/entities/Reports/mockdatafiles/deleteReportFolderById-default.json +5 -0
  261. package/entities/Reports/mockdatafiles/getAllReportFolders-default.json +48 -0
  262. package/entities/Reports/mockdatafiles/getAllReports-default.json +32 -0
  263. package/entities/Reports/mockdatafiles/getReport-default.json +24 -0
  264. package/entities/Reports/mockdatafiles/updateReportById-default.json +24 -0
  265. package/entities/Reports/mockdatafiles/updateReportFolderById-default.json +5 -0
  266. package/entities/Reports/schema.json +27 -0
  267. package/entities/StatusMapImages/action.json +46 -0
  268. package/entities/StatusMapImages/mockdatafiles/getMapImages-default.json +14 -0
  269. package/entities/StatusMapImages/schema.json +20 -0
  270. package/entities/Users/action.json +25 -0
  271. package/entities/Users/mockdatafiles/getCurrentUser-default.json +26 -0
  272. package/entities/Users/schema.json +19 -0
  273. package/entities/alert/action.json +81 -0
  274. package/entities/alert/mockdatafiles/createAlertForced-default.json +27 -0
  275. package/entities/alert/mockdatafiles/getFlowFalconDeviceAlerts-default.json +48 -0
  276. package/entities/alert/mockdatafiles/getMaxSeverityAlertForObjects-default.json +14 -0
  277. package/entities/alert/mockdatafiles/patchAlert-default.json +36 -0
  278. package/entities/alert/schema.json +8 -2
  279. package/entities/device/action.json +20 -0
  280. package/entities/device/mockdatafiles/getdeviceerror.json +1 -58
  281. package/entities/device/mockdatafiles/partiallyUpdateDeviceById-default.json +103 -0
  282. package/entities/device/schema.json +2 -1
  283. package/entities/map/action.json +20 -0
  284. package/entities/map/mockdatafiles/partiallyUpdateStatusMapById-default.json +534 -0
  285. package/entities/map/schema.json +2 -1
  286. package/error.json +12 -0
  287. package/package.json +20 -13
  288. package/pronghorn.json +34868 -2005
  289. package/propertiesDecorators.json +14 -0
  290. package/propertiesSchema.json +436 -0
  291. package/refs?service=git-upload-pack +0 -0
  292. package/report/adapterInfo.json +10 -0
  293. package/report/updateReport1653680202971.json +120 -0
  294. package/sampleProperties.json +94 -2
  295. package/test/integration/adapterTestBasicGet.js +2 -2
  296. package/test/integration/adapterTestIntegration.js +8011 -105
  297. package/test/unit/adapterBaseTestUnit.js +35 -27
  298. package/test/unit/adapterTestUnit.js +7948 -145
  299. package/utils/adapterInfo.js +206 -0
  300. package/utils/addAuth.js +94 -0
  301. package/utils/basicGet.js +1 -14
  302. package/utils/entitiesToDB.js +179 -0
  303. package/utils/modify.js +1 -1
  304. package/utils/packModificationScript.js +1 -1
  305. package/utils/patches2bundledDeps.js +90 -0
  306. package/utils/pre-commit.sh +3 -0
  307. package/utils/removeHooks.js +20 -0
  308. package/utils/tbScript.js +43 -22
  309. package/utils/tbUtils.js +126 -29
  310. package/utils/testRunner.js +16 -16
  311. package/utils/troubleshootingAdapter.js +2 -26
@@ -0,0 +1,14 @@
1
+ [
2
+ {
3
+ "type": "encryption",
4
+ "pointer": "/authentication/password"
5
+ },
6
+ {
7
+ "type": "encryption",
8
+ "pointer": "/authentication/token"
9
+ },
10
+ {
11
+ "type": "encryption",
12
+ "pointer": "/mongo/password"
13
+ }
14
+ ]
@@ -74,6 +74,11 @@
74
74
  "description": "When true the path variables are encoded in the url",
75
75
  "default": true
76
76
  },
77
+ "encode_queryvars": {
78
+ "type": "boolean",
79
+ "description": "When true the query parameters are encoded in the url",
80
+ "default": true
81
+ },
77
82
  "save_metric": {
78
83
  "type": [
79
84
  "boolean",
@@ -116,6 +121,9 @@
116
121
  },
117
122
  "mongo": {
118
123
  "$ref": "#/definitions/mongo"
124
+ },
125
+ "devicebroker": {
126
+ "$ref": "#/definitions/devicebroker"
119
127
  }
120
128
  },
121
129
  "required": [
@@ -255,6 +263,21 @@
255
263
  "type": "boolean",
256
264
  "description": "This property turns on logging of Authentication Information and should only be true when debugging authentication and connectivity",
257
265
  "default": false
266
+ },
267
+ "client_id": {
268
+ "type": "string",
269
+ "description": "The client id for OAuth requests - can also use username depending on schema",
270
+ "default": ""
271
+ },
272
+ "client_secret": {
273
+ "type": "string",
274
+ "description": "The client secret for OAuth requests - can also use password depending on schema",
275
+ "default": ""
276
+ },
277
+ "grant_type": {
278
+ "type": "string",
279
+ "description": "The grant type for OAuth requests - can also provide in schema",
280
+ "default": ""
258
281
  }
259
282
  },
260
283
  "required": [
@@ -843,6 +866,419 @@
843
866
  }
844
867
  }
845
868
  }
869
+ },
870
+ "devicebroker": {
871
+ "type": "object",
872
+ "properties": {
873
+ "getDevice": {
874
+ "type": "array",
875
+ "description": "Broker call(s) to getDevice",
876
+ "items": {
877
+ "properties": {
878
+ "path": {
879
+ "type": "string",
880
+ "description": "The fully qualified path of the call to getDevice (e.g. /rest/api/device/{deviceid})",
881
+ "default": ""
882
+ },
883
+ "method": {
884
+ "type": "string",
885
+ "description": "The method of the call to getDevice",
886
+ "default": "GET"
887
+ },
888
+ "query": {
889
+ "type": "object",
890
+ "description": "The json object with query parameters of the call to getDevice",
891
+ "additionalProperties": {
892
+ "type": "string"
893
+ }
894
+ },
895
+ "body": {
896
+ "type": "object",
897
+ "description": "The json object with body of the call to getDevice",
898
+ "additionalProperties": {
899
+ "type": "string"
900
+ }
901
+ },
902
+ "headers": {
903
+ "type": "object",
904
+ "description": "The json object with headers of the call to getDevice",
905
+ "additionalProperties": {
906
+ "type": "string"
907
+ }
908
+ },
909
+ "handleFailure": {
910
+ "type": "string",
911
+ "enum": [
912
+ "ignore",
913
+ "fail"
914
+ ],
915
+ "description": "return failure or ignore failure",
916
+ "default": "ignore"
917
+ },
918
+ "requestFields": {
919
+ "type": "object",
920
+ "description": "The json object with response fields of the call to getDevice",
921
+ "additionalProperties": {
922
+ "type": "string"
923
+ },
924
+ "properties": {}
925
+ },
926
+ "responseDatakey": {
927
+ "type": "string",
928
+ "description": "place in the response where the data is - supports jsonquery",
929
+ "default": ""
930
+ },
931
+ "responseFields": {
932
+ "type": "object",
933
+ "description": "The json object with response fields of the call to getDevice",
934
+ "additionalProperties": {
935
+ "type": "string"
936
+ },
937
+ "properties": {
938
+ "name": {
939
+ "type": "string",
940
+ "description": "The field in response to getDevice that contains the name of the device",
941
+ "default": "name"
942
+ },
943
+ "ostype": {
944
+ "type": "string",
945
+ "description": "The field in response to getDevice that contains the ostype of the device",
946
+ "default": "ostype"
947
+ },
948
+ "ostypePrefix": {
949
+ "type": "string",
950
+ "description": "Any prefix that should be added to the ostype of the device (e.g. aws-)",
951
+ "default": ""
952
+ },
953
+ "port": {
954
+ "type": "string",
955
+ "description": "The field in response to getDevice that contains the port of the device",
956
+ "default": ""
957
+ },
958
+ "ipaddress": {
959
+ "type": "string",
960
+ "description": "The field in response to getDevice that contains the ip address of the device",
961
+ "default": ""
962
+ }
963
+ }
964
+ }
965
+ }
966
+ }
967
+ },
968
+ "getDevicesFiltered": {
969
+ "type": "array",
970
+ "description": "Broker call(s) to getDevicesFiltered",
971
+ "items": {
972
+ "properties": {
973
+ "path": {
974
+ "type": "string",
975
+ "description": "The fully qualified path of the call to getDevicesFiltered (e.g. /rest/api/device/{deviceid})",
976
+ "default": ""
977
+ },
978
+ "method": {
979
+ "type": "string",
980
+ "description": "The method of the call to getDevicesFiltered",
981
+ "default": "GET"
982
+ },
983
+ "query": {
984
+ "type": "object",
985
+ "description": "The json object with query parameters of the call to getDevicesFiltered",
986
+ "additionalProperties": {
987
+ "type": "string"
988
+ }
989
+ },
990
+ "body": {
991
+ "type": "object",
992
+ "description": "The json object with body of the call to getDevicesFiltered",
993
+ "additionalProperties": {
994
+ "type": "string"
995
+ }
996
+ },
997
+ "headers": {
998
+ "type": "object",
999
+ "description": "The json object with headers of the call to getDevicesFiltered",
1000
+ "additionalProperties": {
1001
+ "type": "string"
1002
+ }
1003
+ },
1004
+ "handleFailure": {
1005
+ "type": "string",
1006
+ "enum": [
1007
+ "ignore",
1008
+ "fail"
1009
+ ],
1010
+ "description": "return failure or ignore failure",
1011
+ "default": "ignore"
1012
+ },
1013
+ "requestFields": {
1014
+ "type": "object",
1015
+ "description": "The json object with response fields of the call to getDevice",
1016
+ "additionalProperties": {
1017
+ "type": "string"
1018
+ },
1019
+ "properties": {}
1020
+ },
1021
+ "responseDatakey": {
1022
+ "type": "string",
1023
+ "description": "place in the response where the data is - supports jsonquery",
1024
+ "default": ""
1025
+ },
1026
+ "responseFields": {
1027
+ "type": "object",
1028
+ "description": "The json object with response fields of the call to getDevicesFiltered",
1029
+ "additionalProperties": {
1030
+ "type": "string"
1031
+ },
1032
+ "properties": {
1033
+ "name": {
1034
+ "type": "string",
1035
+ "description": "The field in response to getDevicesFiltered that contains the name of the device",
1036
+ "default": "name"
1037
+ },
1038
+ "ostype": {
1039
+ "type": "string",
1040
+ "description": "The field in response to getDevicesFiltered that contains the ostype of the device",
1041
+ "default": "ostype"
1042
+ },
1043
+ "ostypePrefix": {
1044
+ "type": "string",
1045
+ "description": "Any prefix that should be added to the ostype of the device (e.g. aws-)",
1046
+ "default": ""
1047
+ },
1048
+ "port": {
1049
+ "type": "string",
1050
+ "description": "The field in response to getDevicesFiltered that contains the port of the device",
1051
+ "default": ""
1052
+ },
1053
+ "ipaddress": {
1054
+ "type": "string",
1055
+ "description": "The field in response to getDevicesFiltered that contains the ip address of the device",
1056
+ "default": ""
1057
+ }
1058
+ }
1059
+ }
1060
+ }
1061
+ }
1062
+ },
1063
+ "isAlive": {
1064
+ "type": "array",
1065
+ "description": "Broker call(s) to determine if the device isAlive",
1066
+ "items": {
1067
+ "properties": {
1068
+ "path": {
1069
+ "type": "string",
1070
+ "description": "The fully qualified path of the call to isAlive (e.g. /rest/api/device/{deviceid})",
1071
+ "default": ""
1072
+ },
1073
+ "method": {
1074
+ "type": "string",
1075
+ "description": "The method of the call to isAlive",
1076
+ "default": "GET"
1077
+ },
1078
+ "query": {
1079
+ "type": "object",
1080
+ "description": "The json object with query parameters of the call to isAlive",
1081
+ "additionalProperties": {
1082
+ "type": "string"
1083
+ }
1084
+ },
1085
+ "body": {
1086
+ "type": "object",
1087
+ "description": "The json object with body of the call to isAlive",
1088
+ "additionalProperties": {
1089
+ "type": "string"
1090
+ }
1091
+ },
1092
+ "headers": {
1093
+ "type": "object",
1094
+ "description": "The json object with headers of the call to isAlive",
1095
+ "additionalProperties": {
1096
+ "type": "string"
1097
+ }
1098
+ },
1099
+ "handleFailure": {
1100
+ "type": "string",
1101
+ "enum": [
1102
+ "ignore",
1103
+ "fail"
1104
+ ],
1105
+ "description": "return failure or ignore isAlive",
1106
+ "default": "ignore"
1107
+ },
1108
+ "requestFields": {
1109
+ "type": "object",
1110
+ "description": "The json object with response fields of the call to getDevice",
1111
+ "additionalProperties": {
1112
+ "type": "string"
1113
+ },
1114
+ "properties": {}
1115
+ },
1116
+ "responseDatakey": {
1117
+ "type": "string",
1118
+ "description": "place in the response where the data is - supports jsonquery",
1119
+ "default": ""
1120
+ },
1121
+ "responseFields": {
1122
+ "type": "object",
1123
+ "description": "The json object with response fields of the call to isAlive",
1124
+ "additionalProperties": {
1125
+ "type": "string"
1126
+ },
1127
+ "properties": {
1128
+ "status": {
1129
+ "type": "string",
1130
+ "description": "The field in response to isAlive that contains the status of the device",
1131
+ "default": "name"
1132
+ },
1133
+ "statusValue": {
1134
+ "type": "string",
1135
+ "description": "The expected value in the status field",
1136
+ "default": "true"
1137
+ }
1138
+ }
1139
+ }
1140
+ }
1141
+ }
1142
+ },
1143
+ "getConfig": {
1144
+ "type": "array",
1145
+ "description": "Broker call(s) to getConfig",
1146
+ "items": {
1147
+ "properties": {
1148
+ "path": {
1149
+ "type": "string",
1150
+ "description": "The fully qualified path of the call to getConfig (e.g. /rest/api/device/{deviceid})",
1151
+ "default": ""
1152
+ },
1153
+ "method": {
1154
+ "type": "string",
1155
+ "description": "The method of the call to getConfig",
1156
+ "default": "GET"
1157
+ },
1158
+ "query": {
1159
+ "type": "object",
1160
+ "description": "The json object with query parameters of the call to getConfig",
1161
+ "additionalProperties": {
1162
+ "type": "string"
1163
+ }
1164
+ },
1165
+ "body": {
1166
+ "type": "object",
1167
+ "description": "The json object with body of the call to getConfig",
1168
+ "additionalProperties": {
1169
+ "type": "string"
1170
+ }
1171
+ },
1172
+ "headers": {
1173
+ "type": "object",
1174
+ "description": "The json object with headers of the call to getConfig",
1175
+ "additionalProperties": {
1176
+ "type": "string"
1177
+ }
1178
+ },
1179
+ "handleFailure": {
1180
+ "type": "string",
1181
+ "enum": [
1182
+ "ignore",
1183
+ "fail"
1184
+ ],
1185
+ "description": "return failure or ignore getConfig",
1186
+ "default": "ignore"
1187
+ },
1188
+ "requestFields": {
1189
+ "type": "object",
1190
+ "description": "The json object with response fields of the call to getDevice",
1191
+ "additionalProperties": {
1192
+ "type": "string"
1193
+ },
1194
+ "properties": {}
1195
+ },
1196
+ "responseDatakey": {
1197
+ "type": "string",
1198
+ "description": "place in the response where the data is - supports jsonquery",
1199
+ "default": ""
1200
+ },
1201
+ "responseFields": {
1202
+ "type": "object",
1203
+ "description": "The json object with response fields of the call to getConfig",
1204
+ "additionalProperties": {
1205
+ "type": "string"
1206
+ },
1207
+ "properties": {}
1208
+ }
1209
+ }
1210
+ }
1211
+ },
1212
+ "getCount": {
1213
+ "type": "array",
1214
+ "description": "Broker call(s) to getCount",
1215
+ "items": {
1216
+ "properties": {
1217
+ "path": {
1218
+ "type": "string",
1219
+ "description": "The fully qualified path of the call to getCount (e.g. /rest/api/device/{deviceid})",
1220
+ "default": ""
1221
+ },
1222
+ "method": {
1223
+ "type": "string",
1224
+ "description": "The method of the call to getCount",
1225
+ "default": "GET"
1226
+ },
1227
+ "query": {
1228
+ "type": "object",
1229
+ "description": "The json object with query parameters of the call to getCount",
1230
+ "additionalProperties": {
1231
+ "type": "string"
1232
+ }
1233
+ },
1234
+ "body": {
1235
+ "type": "object",
1236
+ "description": "The json object with body of the call to getCount",
1237
+ "additionalProperties": {
1238
+ "type": "string"
1239
+ }
1240
+ },
1241
+ "headers": {
1242
+ "type": "object",
1243
+ "description": "The json object with headers of the call to getCount",
1244
+ "additionalProperties": {
1245
+ "type": "string"
1246
+ }
1247
+ },
1248
+ "handleFailure": {
1249
+ "type": "string",
1250
+ "enum": [
1251
+ "ignore",
1252
+ "fail"
1253
+ ],
1254
+ "description": "return failure or ignore getCount",
1255
+ "default": "ignore"
1256
+ },
1257
+ "requestFields": {
1258
+ "type": "object",
1259
+ "description": "The json object with response fields of the call to getDevice",
1260
+ "additionalProperties": {
1261
+ "type": "string"
1262
+ },
1263
+ "properties": {}
1264
+ },
1265
+ "responseDatakey": {
1266
+ "type": "string",
1267
+ "description": "place in the response where the data is - supports jsonquery",
1268
+ "default": ""
1269
+ },
1270
+ "responseFields": {
1271
+ "type": "object",
1272
+ "description": "The json object with response fields of the call to getConfig",
1273
+ "additionalProperties": {
1274
+ "type": "string"
1275
+ },
1276
+ "properties": {}
1277
+ }
1278
+ }
1279
+ }
1280
+ }
1281
+ }
846
1282
  }
847
1283
  }
848
1284
  }
Binary file
@@ -0,0 +1,10 @@
1
+ {
2
+ "version": "2.3.1",
3
+ "configLines": 40081,
4
+ "scriptLines": 1707,
5
+ "codeLines": 26988,
6
+ "testLines": 28283,
7
+ "testCases": 1342,
8
+ "totalCodeLines": 56978,
9
+ "wfTasks": 352
10
+ }
@@ -0,0 +1,120 @@
1
+ {
2
+ "errors": [],
3
+ "statistics": [
4
+ {
5
+ "owner": "errorJson",
6
+ "description": "New adapter errors available for use",
7
+ "value": 1
8
+ },
9
+ {
10
+ "owner": "errorJson",
11
+ "description": "Adapter errors no longer available for use",
12
+ "value": 0
13
+ },
14
+ {
15
+ "owner": "errorJson",
16
+ "description": "Adapter errors that have been updated (e.g. recommendation changes)",
17
+ "value": 30
18
+ },
19
+ {
20
+ "owner": "packageJson",
21
+ "description": "Number of production dependencies",
22
+ "value": 14
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Number of development dependencies",
27
+ "value": 7
28
+ },
29
+ {
30
+ "owner": "packageJson",
31
+ "description": "Number of npm scripts",
32
+ "value": 22
33
+ },
34
+ {
35
+ "owner": "packageJson",
36
+ "description": "Runtime Library dependency",
37
+ "value": "^4.45.6"
38
+ },
39
+ {
40
+ "owner": "propertiesSchemaJson",
41
+ "description": "Adapter properties defined in the propertiesSchema file",
42
+ "value": 71
43
+ },
44
+ {
45
+ "owner": "markdown",
46
+ "description": "Number of lines in the README.md",
47
+ "value": 338
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the SUMMARY.md",
52
+ "value": 9
53
+ },
54
+ {
55
+ "owner": "markdown",
56
+ "description": "Number of lines in the PROPERTIES.md",
57
+ "value": 642
58
+ },
59
+ {
60
+ "owner": "markdown",
61
+ "description": "Number of lines in the TROUBLESHOOT.md",
62
+ "value": 48
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the ENHANCE.md",
67
+ "value": 70
68
+ },
69
+ {
70
+ "owner": "markdown",
71
+ "description": "Number of lines in the BROKER.md",
72
+ "value": 70
73
+ },
74
+ {
75
+ "owner": "unitTestJS",
76
+ "description": "Number of lines of code in unit tests",
77
+ "value": 13659
78
+ },
79
+ {
80
+ "owner": "unitTestJS",
81
+ "description": "Number of unit tests",
82
+ "value": 879
83
+ },
84
+ {
85
+ "owner": "integrationTestJS",
86
+ "description": "Number of lines of code in integration tests",
87
+ "value": 13494
88
+ },
89
+ {
90
+ "owner": "integrationTestJS",
91
+ "description": "Number of integration tests",
92
+ "value": 405
93
+ },
94
+ {
95
+ "owner": "staticFile",
96
+ "description": "Number of lines of code in adapterBase.js",
97
+ "value": 1783
98
+ },
99
+ {
100
+ "owner": "staticFile",
101
+ "description": "Number of static files added",
102
+ "value": 36
103
+ },
104
+ {
105
+ "owner": "Overall",
106
+ "description": "Total lines of Code",
107
+ "value": 28936
108
+ },
109
+ {
110
+ "owner": "Overall",
111
+ "description": "Total Tests",
112
+ "value": 1284
113
+ },
114
+ {
115
+ "owner": "Overall",
116
+ "description": "Total Files",
117
+ "value": 6
118
+ }
119
+ ]
120
+ }