@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,1350 @@
1
+ {
2
+ "deviceType": {
3
+ "id": 6,
4
+ "name": "string",
5
+ "parentId": 9
6
+ },
7
+ "objectTypes": [
8
+ {
9
+ "extendedInfo": {},
10
+ "id": 4,
11
+ "indicatorTypes": [
12
+ {
13
+ "allowMaximumValue": {},
14
+ "dataUnits": {},
15
+ "description": {},
16
+ "displayUnits": {},
17
+ "extendedInfo": {},
18
+ "format": {},
19
+ "id": {},
20
+ "isDefault": {},
21
+ "isEnabled": {},
22
+ "name": {},
23
+ "pluginId": {},
24
+ "pluginObjectTypeId": {},
25
+ "syntheticExpression": {},
26
+ "syntheticMaximumExpression": {}
27
+ },
28
+ {
29
+ "allowMaximumValue": {},
30
+ "dataUnits": {},
31
+ "description": {},
32
+ "displayUnits": {},
33
+ "extendedInfo": {},
34
+ "format": {},
35
+ "id": {},
36
+ "isDefault": {},
37
+ "isEnabled": {},
38
+ "name": {},
39
+ "pluginId": {},
40
+ "pluginObjectTypeId": {},
41
+ "syntheticExpression": {},
42
+ "syntheticMaximumExpression": {}
43
+ },
44
+ {
45
+ "allowMaximumValue": {},
46
+ "dataUnits": {},
47
+ "description": {},
48
+ "displayUnits": {},
49
+ "extendedInfo": {},
50
+ "format": {},
51
+ "id": {},
52
+ "isDefault": {},
53
+ "isEnabled": {},
54
+ "name": {},
55
+ "pluginId": {},
56
+ "pluginObjectTypeId": {},
57
+ "syntheticExpression": {},
58
+ "syntheticMaximumExpression": {}
59
+ },
60
+ {
61
+ "allowMaximumValue": {},
62
+ "dataUnits": {},
63
+ "description": {},
64
+ "displayUnits": {},
65
+ "extendedInfo": {},
66
+ "format": {},
67
+ "id": {},
68
+ "isDefault": {},
69
+ "isEnabled": {},
70
+ "name": {},
71
+ "pluginId": {},
72
+ "pluginObjectTypeId": {},
73
+ "syntheticExpression": {},
74
+ "syntheticMaximumExpression": {}
75
+ },
76
+ {
77
+ "allowMaximumValue": {},
78
+ "dataUnits": {},
79
+ "description": {},
80
+ "displayUnits": {},
81
+ "extendedInfo": {},
82
+ "format": {},
83
+ "id": {},
84
+ "isDefault": {},
85
+ "isEnabled": {},
86
+ "name": {},
87
+ "pluginId": {},
88
+ "pluginObjectTypeId": {},
89
+ "syntheticExpression": {},
90
+ "syntheticMaximumExpression": {}
91
+ },
92
+ {
93
+ "allowMaximumValue": {},
94
+ "dataUnits": {},
95
+ "description": {},
96
+ "displayUnits": {},
97
+ "extendedInfo": {},
98
+ "format": {},
99
+ "id": {},
100
+ "isDefault": {},
101
+ "isEnabled": {},
102
+ "name": {},
103
+ "pluginId": {},
104
+ "pluginObjectTypeId": {},
105
+ "syntheticExpression": {},
106
+ "syntheticMaximumExpression": {}
107
+ },
108
+ {
109
+ "allowMaximumValue": {},
110
+ "dataUnits": {},
111
+ "description": {},
112
+ "displayUnits": {},
113
+ "extendedInfo": {},
114
+ "format": {},
115
+ "id": {},
116
+ "isDefault": {},
117
+ "isEnabled": {},
118
+ "name": {},
119
+ "pluginId": {},
120
+ "pluginObjectTypeId": {},
121
+ "syntheticExpression": {},
122
+ "syntheticMaximumExpression": {}
123
+ },
124
+ {
125
+ "allowMaximumValue": {},
126
+ "dataUnits": {},
127
+ "description": {},
128
+ "displayUnits": {},
129
+ "extendedInfo": {},
130
+ "format": {},
131
+ "id": {},
132
+ "isDefault": {},
133
+ "isEnabled": {},
134
+ "name": {},
135
+ "pluginId": {},
136
+ "pluginObjectTypeId": {},
137
+ "syntheticExpression": {},
138
+ "syntheticMaximumExpression": {}
139
+ },
140
+ {
141
+ "allowMaximumValue": {},
142
+ "dataUnits": {},
143
+ "description": {},
144
+ "displayUnits": {},
145
+ "extendedInfo": {},
146
+ "format": {},
147
+ "id": {},
148
+ "isDefault": {},
149
+ "isEnabled": {},
150
+ "name": {},
151
+ "pluginId": {},
152
+ "pluginObjectTypeId": {},
153
+ "syntheticExpression": {},
154
+ "syntheticMaximumExpression": {}
155
+ },
156
+ {
157
+ "allowMaximumValue": {},
158
+ "dataUnits": {},
159
+ "description": {},
160
+ "displayUnits": {},
161
+ "extendedInfo": {},
162
+ "format": {},
163
+ "id": {},
164
+ "isDefault": {},
165
+ "isEnabled": {},
166
+ "name": {},
167
+ "pluginId": {},
168
+ "pluginObjectTypeId": {},
169
+ "syntheticExpression": {},
170
+ "syntheticMaximumExpression": {}
171
+ }
172
+ ],
173
+ "isEditable": false,
174
+ "isEnabled": false,
175
+ "name": "string",
176
+ "objectTypes": [
177
+ {
178
+ "extendedInfo": {},
179
+ "id": {},
180
+ "indicatorTypes": {},
181
+ "isEditable": {},
182
+ "isEnabled": {},
183
+ "name": {},
184
+ "objectTypes": {},
185
+ "parentObjectTypeId": {},
186
+ "pluginId": {}
187
+ },
188
+ {
189
+ "extendedInfo": {},
190
+ "id": {},
191
+ "indicatorTypes": {},
192
+ "isEditable": {},
193
+ "isEnabled": {},
194
+ "name": {},
195
+ "objectTypes": {},
196
+ "parentObjectTypeId": {},
197
+ "pluginId": {}
198
+ },
199
+ {
200
+ "extendedInfo": {},
201
+ "id": {},
202
+ "indicatorTypes": {},
203
+ "isEditable": {},
204
+ "isEnabled": {},
205
+ "name": {},
206
+ "objectTypes": {},
207
+ "parentObjectTypeId": {},
208
+ "pluginId": {}
209
+ },
210
+ {
211
+ "extendedInfo": {},
212
+ "id": {},
213
+ "indicatorTypes": {},
214
+ "isEditable": {},
215
+ "isEnabled": {},
216
+ "name": {},
217
+ "objectTypes": {},
218
+ "parentObjectTypeId": {},
219
+ "pluginId": {}
220
+ },
221
+ {
222
+ "extendedInfo": {},
223
+ "id": {},
224
+ "indicatorTypes": {},
225
+ "isEditable": {},
226
+ "isEnabled": {},
227
+ "name": {},
228
+ "objectTypes": {},
229
+ "parentObjectTypeId": {},
230
+ "pluginId": {}
231
+ },
232
+ {
233
+ "extendedInfo": {},
234
+ "id": {},
235
+ "indicatorTypes": {},
236
+ "isEditable": {},
237
+ "isEnabled": {},
238
+ "name": {},
239
+ "objectTypes": {},
240
+ "parentObjectTypeId": {},
241
+ "pluginId": {}
242
+ },
243
+ {
244
+ "extendedInfo": {},
245
+ "id": {},
246
+ "indicatorTypes": {},
247
+ "isEditable": {},
248
+ "isEnabled": {},
249
+ "name": {},
250
+ "objectTypes": {},
251
+ "parentObjectTypeId": {},
252
+ "pluginId": {}
253
+ },
254
+ {
255
+ "extendedInfo": {},
256
+ "id": {},
257
+ "indicatorTypes": {},
258
+ "isEditable": {},
259
+ "isEnabled": {},
260
+ "name": {},
261
+ "objectTypes": {},
262
+ "parentObjectTypeId": {},
263
+ "pluginId": {}
264
+ }
265
+ ],
266
+ "parentObjectTypeId": 5,
267
+ "pluginId": 3
268
+ },
269
+ {
270
+ "extendedInfo": {},
271
+ "id": 7,
272
+ "indicatorTypes": [
273
+ {
274
+ "allowMaximumValue": {},
275
+ "dataUnits": {},
276
+ "description": {},
277
+ "displayUnits": {},
278
+ "extendedInfo": {},
279
+ "format": {},
280
+ "id": {},
281
+ "isDefault": {},
282
+ "isEnabled": {},
283
+ "name": {},
284
+ "pluginId": {},
285
+ "pluginObjectTypeId": {},
286
+ "syntheticExpression": {},
287
+ "syntheticMaximumExpression": {}
288
+ },
289
+ {
290
+ "allowMaximumValue": {},
291
+ "dataUnits": {},
292
+ "description": {},
293
+ "displayUnits": {},
294
+ "extendedInfo": {},
295
+ "format": {},
296
+ "id": {},
297
+ "isDefault": {},
298
+ "isEnabled": {},
299
+ "name": {},
300
+ "pluginId": {},
301
+ "pluginObjectTypeId": {},
302
+ "syntheticExpression": {},
303
+ "syntheticMaximumExpression": {}
304
+ },
305
+ {
306
+ "allowMaximumValue": {},
307
+ "dataUnits": {},
308
+ "description": {},
309
+ "displayUnits": {},
310
+ "extendedInfo": {},
311
+ "format": {},
312
+ "id": {},
313
+ "isDefault": {},
314
+ "isEnabled": {},
315
+ "name": {},
316
+ "pluginId": {},
317
+ "pluginObjectTypeId": {},
318
+ "syntheticExpression": {},
319
+ "syntheticMaximumExpression": {}
320
+ },
321
+ {
322
+ "allowMaximumValue": {},
323
+ "dataUnits": {},
324
+ "description": {},
325
+ "displayUnits": {},
326
+ "extendedInfo": {},
327
+ "format": {},
328
+ "id": {},
329
+ "isDefault": {},
330
+ "isEnabled": {},
331
+ "name": {},
332
+ "pluginId": {},
333
+ "pluginObjectTypeId": {},
334
+ "syntheticExpression": {},
335
+ "syntheticMaximumExpression": {}
336
+ },
337
+ {
338
+ "allowMaximumValue": {},
339
+ "dataUnits": {},
340
+ "description": {},
341
+ "displayUnits": {},
342
+ "extendedInfo": {},
343
+ "format": {},
344
+ "id": {},
345
+ "isDefault": {},
346
+ "isEnabled": {},
347
+ "name": {},
348
+ "pluginId": {},
349
+ "pluginObjectTypeId": {},
350
+ "syntheticExpression": {},
351
+ "syntheticMaximumExpression": {}
352
+ },
353
+ {
354
+ "allowMaximumValue": {},
355
+ "dataUnits": {},
356
+ "description": {},
357
+ "displayUnits": {},
358
+ "extendedInfo": {},
359
+ "format": {},
360
+ "id": {},
361
+ "isDefault": {},
362
+ "isEnabled": {},
363
+ "name": {},
364
+ "pluginId": {},
365
+ "pluginObjectTypeId": {},
366
+ "syntheticExpression": {},
367
+ "syntheticMaximumExpression": {}
368
+ },
369
+ {
370
+ "allowMaximumValue": {},
371
+ "dataUnits": {},
372
+ "description": {},
373
+ "displayUnits": {},
374
+ "extendedInfo": {},
375
+ "format": {},
376
+ "id": {},
377
+ "isDefault": {},
378
+ "isEnabled": {},
379
+ "name": {},
380
+ "pluginId": {},
381
+ "pluginObjectTypeId": {},
382
+ "syntheticExpression": {},
383
+ "syntheticMaximumExpression": {}
384
+ },
385
+ {
386
+ "allowMaximumValue": {},
387
+ "dataUnits": {},
388
+ "description": {},
389
+ "displayUnits": {},
390
+ "extendedInfo": {},
391
+ "format": {},
392
+ "id": {},
393
+ "isDefault": {},
394
+ "isEnabled": {},
395
+ "name": {},
396
+ "pluginId": {},
397
+ "pluginObjectTypeId": {},
398
+ "syntheticExpression": {},
399
+ "syntheticMaximumExpression": {}
400
+ },
401
+ {
402
+ "allowMaximumValue": {},
403
+ "dataUnits": {},
404
+ "description": {},
405
+ "displayUnits": {},
406
+ "extendedInfo": {},
407
+ "format": {},
408
+ "id": {},
409
+ "isDefault": {},
410
+ "isEnabled": {},
411
+ "name": {},
412
+ "pluginId": {},
413
+ "pluginObjectTypeId": {},
414
+ "syntheticExpression": {},
415
+ "syntheticMaximumExpression": {}
416
+ }
417
+ ],
418
+ "isEditable": false,
419
+ "isEnabled": false,
420
+ "name": "string",
421
+ "objectTypes": [
422
+ {
423
+ "extendedInfo": {},
424
+ "id": {},
425
+ "indicatorTypes": {},
426
+ "isEditable": {},
427
+ "isEnabled": {},
428
+ "name": {},
429
+ "objectTypes": {},
430
+ "parentObjectTypeId": {},
431
+ "pluginId": {}
432
+ },
433
+ {
434
+ "extendedInfo": {},
435
+ "id": {},
436
+ "indicatorTypes": {},
437
+ "isEditable": {},
438
+ "isEnabled": {},
439
+ "name": {},
440
+ "objectTypes": {},
441
+ "parentObjectTypeId": {},
442
+ "pluginId": {}
443
+ },
444
+ {
445
+ "extendedInfo": {},
446
+ "id": {},
447
+ "indicatorTypes": {},
448
+ "isEditable": {},
449
+ "isEnabled": {},
450
+ "name": {},
451
+ "objectTypes": {},
452
+ "parentObjectTypeId": {},
453
+ "pluginId": {}
454
+ },
455
+ {
456
+ "extendedInfo": {},
457
+ "id": {},
458
+ "indicatorTypes": {},
459
+ "isEditable": {},
460
+ "isEnabled": {},
461
+ "name": {},
462
+ "objectTypes": {},
463
+ "parentObjectTypeId": {},
464
+ "pluginId": {}
465
+ },
466
+ {
467
+ "extendedInfo": {},
468
+ "id": {},
469
+ "indicatorTypes": {},
470
+ "isEditable": {},
471
+ "isEnabled": {},
472
+ "name": {},
473
+ "objectTypes": {},
474
+ "parentObjectTypeId": {},
475
+ "pluginId": {}
476
+ }
477
+ ],
478
+ "parentObjectTypeId": 5,
479
+ "pluginId": 8
480
+ },
481
+ {
482
+ "extendedInfo": {},
483
+ "id": 2,
484
+ "indicatorTypes": [
485
+ {
486
+ "allowMaximumValue": {},
487
+ "dataUnits": {},
488
+ "description": {},
489
+ "displayUnits": {},
490
+ "extendedInfo": {},
491
+ "format": {},
492
+ "id": {},
493
+ "isDefault": {},
494
+ "isEnabled": {},
495
+ "name": {},
496
+ "pluginId": {},
497
+ "pluginObjectTypeId": {},
498
+ "syntheticExpression": {},
499
+ "syntheticMaximumExpression": {}
500
+ },
501
+ {
502
+ "allowMaximumValue": {},
503
+ "dataUnits": {},
504
+ "description": {},
505
+ "displayUnits": {},
506
+ "extendedInfo": {},
507
+ "format": {},
508
+ "id": {},
509
+ "isDefault": {},
510
+ "isEnabled": {},
511
+ "name": {},
512
+ "pluginId": {},
513
+ "pluginObjectTypeId": {},
514
+ "syntheticExpression": {},
515
+ "syntheticMaximumExpression": {}
516
+ },
517
+ {
518
+ "allowMaximumValue": {},
519
+ "dataUnits": {},
520
+ "description": {},
521
+ "displayUnits": {},
522
+ "extendedInfo": {},
523
+ "format": {},
524
+ "id": {},
525
+ "isDefault": {},
526
+ "isEnabled": {},
527
+ "name": {},
528
+ "pluginId": {},
529
+ "pluginObjectTypeId": {},
530
+ "syntheticExpression": {},
531
+ "syntheticMaximumExpression": {}
532
+ },
533
+ {
534
+ "allowMaximumValue": {},
535
+ "dataUnits": {},
536
+ "description": {},
537
+ "displayUnits": {},
538
+ "extendedInfo": {},
539
+ "format": {},
540
+ "id": {},
541
+ "isDefault": {},
542
+ "isEnabled": {},
543
+ "name": {},
544
+ "pluginId": {},
545
+ "pluginObjectTypeId": {},
546
+ "syntheticExpression": {},
547
+ "syntheticMaximumExpression": {}
548
+ },
549
+ {
550
+ "allowMaximumValue": {},
551
+ "dataUnits": {},
552
+ "description": {},
553
+ "displayUnits": {},
554
+ "extendedInfo": {},
555
+ "format": {},
556
+ "id": {},
557
+ "isDefault": {},
558
+ "isEnabled": {},
559
+ "name": {},
560
+ "pluginId": {},
561
+ "pluginObjectTypeId": {},
562
+ "syntheticExpression": {},
563
+ "syntheticMaximumExpression": {}
564
+ }
565
+ ],
566
+ "isEditable": true,
567
+ "isEnabled": true,
568
+ "name": "string",
569
+ "objectTypes": [
570
+ {
571
+ "extendedInfo": {},
572
+ "id": {},
573
+ "indicatorTypes": {},
574
+ "isEditable": {},
575
+ "isEnabled": {},
576
+ "name": {},
577
+ "objectTypes": {},
578
+ "parentObjectTypeId": {},
579
+ "pluginId": {}
580
+ },
581
+ {
582
+ "extendedInfo": {},
583
+ "id": {},
584
+ "indicatorTypes": {},
585
+ "isEditable": {},
586
+ "isEnabled": {},
587
+ "name": {},
588
+ "objectTypes": {},
589
+ "parentObjectTypeId": {},
590
+ "pluginId": {}
591
+ },
592
+ {
593
+ "extendedInfo": {},
594
+ "id": {},
595
+ "indicatorTypes": {},
596
+ "isEditable": {},
597
+ "isEnabled": {},
598
+ "name": {},
599
+ "objectTypes": {},
600
+ "parentObjectTypeId": {},
601
+ "pluginId": {}
602
+ },
603
+ {
604
+ "extendedInfo": {},
605
+ "id": {},
606
+ "indicatorTypes": {},
607
+ "isEditable": {},
608
+ "isEnabled": {},
609
+ "name": {},
610
+ "objectTypes": {},
611
+ "parentObjectTypeId": {},
612
+ "pluginId": {}
613
+ },
614
+ {
615
+ "extendedInfo": {},
616
+ "id": {},
617
+ "indicatorTypes": {},
618
+ "isEditable": {},
619
+ "isEnabled": {},
620
+ "name": {},
621
+ "objectTypes": {},
622
+ "parentObjectTypeId": {},
623
+ "pluginId": {}
624
+ },
625
+ {
626
+ "extendedInfo": {},
627
+ "id": {},
628
+ "indicatorTypes": {},
629
+ "isEditable": {},
630
+ "isEnabled": {},
631
+ "name": {},
632
+ "objectTypes": {},
633
+ "parentObjectTypeId": {},
634
+ "pluginId": {}
635
+ },
636
+ {
637
+ "extendedInfo": {},
638
+ "id": {},
639
+ "indicatorTypes": {},
640
+ "isEditable": {},
641
+ "isEnabled": {},
642
+ "name": {},
643
+ "objectTypes": {},
644
+ "parentObjectTypeId": {},
645
+ "pluginId": {}
646
+ },
647
+ {
648
+ "extendedInfo": {},
649
+ "id": {},
650
+ "indicatorTypes": {},
651
+ "isEditable": {},
652
+ "isEnabled": {},
653
+ "name": {},
654
+ "objectTypes": {},
655
+ "parentObjectTypeId": {},
656
+ "pluginId": {}
657
+ }
658
+ ],
659
+ "parentObjectTypeId": 8,
660
+ "pluginId": 7
661
+ },
662
+ {
663
+ "extendedInfo": {},
664
+ "id": 10,
665
+ "indicatorTypes": [
666
+ {
667
+ "allowMaximumValue": {},
668
+ "dataUnits": {},
669
+ "description": {},
670
+ "displayUnits": {},
671
+ "extendedInfo": {},
672
+ "format": {},
673
+ "id": {},
674
+ "isDefault": {},
675
+ "isEnabled": {},
676
+ "name": {},
677
+ "pluginId": {},
678
+ "pluginObjectTypeId": {},
679
+ "syntheticExpression": {},
680
+ "syntheticMaximumExpression": {}
681
+ },
682
+ {
683
+ "allowMaximumValue": {},
684
+ "dataUnits": {},
685
+ "description": {},
686
+ "displayUnits": {},
687
+ "extendedInfo": {},
688
+ "format": {},
689
+ "id": {},
690
+ "isDefault": {},
691
+ "isEnabled": {},
692
+ "name": {},
693
+ "pluginId": {},
694
+ "pluginObjectTypeId": {},
695
+ "syntheticExpression": {},
696
+ "syntheticMaximumExpression": {}
697
+ },
698
+ {
699
+ "allowMaximumValue": {},
700
+ "dataUnits": {},
701
+ "description": {},
702
+ "displayUnits": {},
703
+ "extendedInfo": {},
704
+ "format": {},
705
+ "id": {},
706
+ "isDefault": {},
707
+ "isEnabled": {},
708
+ "name": {},
709
+ "pluginId": {},
710
+ "pluginObjectTypeId": {},
711
+ "syntheticExpression": {},
712
+ "syntheticMaximumExpression": {}
713
+ },
714
+ {
715
+ "allowMaximumValue": {},
716
+ "dataUnits": {},
717
+ "description": {},
718
+ "displayUnits": {},
719
+ "extendedInfo": {},
720
+ "format": {},
721
+ "id": {},
722
+ "isDefault": {},
723
+ "isEnabled": {},
724
+ "name": {},
725
+ "pluginId": {},
726
+ "pluginObjectTypeId": {},
727
+ "syntheticExpression": {},
728
+ "syntheticMaximumExpression": {}
729
+ },
730
+ {
731
+ "allowMaximumValue": {},
732
+ "dataUnits": {},
733
+ "description": {},
734
+ "displayUnits": {},
735
+ "extendedInfo": {},
736
+ "format": {},
737
+ "id": {},
738
+ "isDefault": {},
739
+ "isEnabled": {},
740
+ "name": {},
741
+ "pluginId": {},
742
+ "pluginObjectTypeId": {},
743
+ "syntheticExpression": {},
744
+ "syntheticMaximumExpression": {}
745
+ },
746
+ {
747
+ "allowMaximumValue": {},
748
+ "dataUnits": {},
749
+ "description": {},
750
+ "displayUnits": {},
751
+ "extendedInfo": {},
752
+ "format": {},
753
+ "id": {},
754
+ "isDefault": {},
755
+ "isEnabled": {},
756
+ "name": {},
757
+ "pluginId": {},
758
+ "pluginObjectTypeId": {},
759
+ "syntheticExpression": {},
760
+ "syntheticMaximumExpression": {}
761
+ },
762
+ {
763
+ "allowMaximumValue": {},
764
+ "dataUnits": {},
765
+ "description": {},
766
+ "displayUnits": {},
767
+ "extendedInfo": {},
768
+ "format": {},
769
+ "id": {},
770
+ "isDefault": {},
771
+ "isEnabled": {},
772
+ "name": {},
773
+ "pluginId": {},
774
+ "pluginObjectTypeId": {},
775
+ "syntheticExpression": {},
776
+ "syntheticMaximumExpression": {}
777
+ }
778
+ ],
779
+ "isEditable": true,
780
+ "isEnabled": true,
781
+ "name": "string",
782
+ "objectTypes": [
783
+ {
784
+ "extendedInfo": {},
785
+ "id": {},
786
+ "indicatorTypes": {},
787
+ "isEditable": {},
788
+ "isEnabled": {},
789
+ "name": {},
790
+ "objectTypes": {},
791
+ "parentObjectTypeId": {},
792
+ "pluginId": {}
793
+ },
794
+ {
795
+ "extendedInfo": {},
796
+ "id": {},
797
+ "indicatorTypes": {},
798
+ "isEditable": {},
799
+ "isEnabled": {},
800
+ "name": {},
801
+ "objectTypes": {},
802
+ "parentObjectTypeId": {},
803
+ "pluginId": {}
804
+ }
805
+ ],
806
+ "parentObjectTypeId": 10,
807
+ "pluginId": 1
808
+ },
809
+ {
810
+ "extendedInfo": {},
811
+ "id": 5,
812
+ "indicatorTypes": [
813
+ {
814
+ "allowMaximumValue": {},
815
+ "dataUnits": {},
816
+ "description": {},
817
+ "displayUnits": {},
818
+ "extendedInfo": {},
819
+ "format": {},
820
+ "id": {},
821
+ "isDefault": {},
822
+ "isEnabled": {},
823
+ "name": {},
824
+ "pluginId": {},
825
+ "pluginObjectTypeId": {},
826
+ "syntheticExpression": {},
827
+ "syntheticMaximumExpression": {}
828
+ },
829
+ {
830
+ "allowMaximumValue": {},
831
+ "dataUnits": {},
832
+ "description": {},
833
+ "displayUnits": {},
834
+ "extendedInfo": {},
835
+ "format": {},
836
+ "id": {},
837
+ "isDefault": {},
838
+ "isEnabled": {},
839
+ "name": {},
840
+ "pluginId": {},
841
+ "pluginObjectTypeId": {},
842
+ "syntheticExpression": {},
843
+ "syntheticMaximumExpression": {}
844
+ },
845
+ {
846
+ "allowMaximumValue": {},
847
+ "dataUnits": {},
848
+ "description": {},
849
+ "displayUnits": {},
850
+ "extendedInfo": {},
851
+ "format": {},
852
+ "id": {},
853
+ "isDefault": {},
854
+ "isEnabled": {},
855
+ "name": {},
856
+ "pluginId": {},
857
+ "pluginObjectTypeId": {},
858
+ "syntheticExpression": {},
859
+ "syntheticMaximumExpression": {}
860
+ },
861
+ {
862
+ "allowMaximumValue": {},
863
+ "dataUnits": {},
864
+ "description": {},
865
+ "displayUnits": {},
866
+ "extendedInfo": {},
867
+ "format": {},
868
+ "id": {},
869
+ "isDefault": {},
870
+ "isEnabled": {},
871
+ "name": {},
872
+ "pluginId": {},
873
+ "pluginObjectTypeId": {},
874
+ "syntheticExpression": {},
875
+ "syntheticMaximumExpression": {}
876
+ },
877
+ {
878
+ "allowMaximumValue": {},
879
+ "dataUnits": {},
880
+ "description": {},
881
+ "displayUnits": {},
882
+ "extendedInfo": {},
883
+ "format": {},
884
+ "id": {},
885
+ "isDefault": {},
886
+ "isEnabled": {},
887
+ "name": {},
888
+ "pluginId": {},
889
+ "pluginObjectTypeId": {},
890
+ "syntheticExpression": {},
891
+ "syntheticMaximumExpression": {}
892
+ },
893
+ {
894
+ "allowMaximumValue": {},
895
+ "dataUnits": {},
896
+ "description": {},
897
+ "displayUnits": {},
898
+ "extendedInfo": {},
899
+ "format": {},
900
+ "id": {},
901
+ "isDefault": {},
902
+ "isEnabled": {},
903
+ "name": {},
904
+ "pluginId": {},
905
+ "pluginObjectTypeId": {},
906
+ "syntheticExpression": {},
907
+ "syntheticMaximumExpression": {}
908
+ },
909
+ {
910
+ "allowMaximumValue": {},
911
+ "dataUnits": {},
912
+ "description": {},
913
+ "displayUnits": {},
914
+ "extendedInfo": {},
915
+ "format": {},
916
+ "id": {},
917
+ "isDefault": {},
918
+ "isEnabled": {},
919
+ "name": {},
920
+ "pluginId": {},
921
+ "pluginObjectTypeId": {},
922
+ "syntheticExpression": {},
923
+ "syntheticMaximumExpression": {}
924
+ },
925
+ {
926
+ "allowMaximumValue": {},
927
+ "dataUnits": {},
928
+ "description": {},
929
+ "displayUnits": {},
930
+ "extendedInfo": {},
931
+ "format": {},
932
+ "id": {},
933
+ "isDefault": {},
934
+ "isEnabled": {},
935
+ "name": {},
936
+ "pluginId": {},
937
+ "pluginObjectTypeId": {},
938
+ "syntheticExpression": {},
939
+ "syntheticMaximumExpression": {}
940
+ },
941
+ {
942
+ "allowMaximumValue": {},
943
+ "dataUnits": {},
944
+ "description": {},
945
+ "displayUnits": {},
946
+ "extendedInfo": {},
947
+ "format": {},
948
+ "id": {},
949
+ "isDefault": {},
950
+ "isEnabled": {},
951
+ "name": {},
952
+ "pluginId": {},
953
+ "pluginObjectTypeId": {},
954
+ "syntheticExpression": {},
955
+ "syntheticMaximumExpression": {}
956
+ }
957
+ ],
958
+ "isEditable": true,
959
+ "isEnabled": true,
960
+ "name": "string",
961
+ "objectTypes": [
962
+ {
963
+ "extendedInfo": {},
964
+ "id": {},
965
+ "indicatorTypes": {},
966
+ "isEditable": {},
967
+ "isEnabled": {},
968
+ "name": {},
969
+ "objectTypes": {},
970
+ "parentObjectTypeId": {},
971
+ "pluginId": {}
972
+ },
973
+ {
974
+ "extendedInfo": {},
975
+ "id": {},
976
+ "indicatorTypes": {},
977
+ "isEditable": {},
978
+ "isEnabled": {},
979
+ "name": {},
980
+ "objectTypes": {},
981
+ "parentObjectTypeId": {},
982
+ "pluginId": {}
983
+ },
984
+ {
985
+ "extendedInfo": {},
986
+ "id": {},
987
+ "indicatorTypes": {},
988
+ "isEditable": {},
989
+ "isEnabled": {},
990
+ "name": {},
991
+ "objectTypes": {},
992
+ "parentObjectTypeId": {},
993
+ "pluginId": {}
994
+ }
995
+ ],
996
+ "parentObjectTypeId": 9,
997
+ "pluginId": 7
998
+ },
999
+ {
1000
+ "extendedInfo": {},
1001
+ "id": 10,
1002
+ "indicatorTypes": [
1003
+ {
1004
+ "allowMaximumValue": {},
1005
+ "dataUnits": {},
1006
+ "description": {},
1007
+ "displayUnits": {},
1008
+ "extendedInfo": {},
1009
+ "format": {},
1010
+ "id": {},
1011
+ "isDefault": {},
1012
+ "isEnabled": {},
1013
+ "name": {},
1014
+ "pluginId": {},
1015
+ "pluginObjectTypeId": {},
1016
+ "syntheticExpression": {},
1017
+ "syntheticMaximumExpression": {}
1018
+ }
1019
+ ],
1020
+ "isEditable": false,
1021
+ "isEnabled": false,
1022
+ "name": "string",
1023
+ "objectTypes": [
1024
+ {
1025
+ "extendedInfo": {},
1026
+ "id": {},
1027
+ "indicatorTypes": {},
1028
+ "isEditable": {},
1029
+ "isEnabled": {},
1030
+ "name": {},
1031
+ "objectTypes": {},
1032
+ "parentObjectTypeId": {},
1033
+ "pluginId": {}
1034
+ },
1035
+ {
1036
+ "extendedInfo": {},
1037
+ "id": {},
1038
+ "indicatorTypes": {},
1039
+ "isEditable": {},
1040
+ "isEnabled": {},
1041
+ "name": {},
1042
+ "objectTypes": {},
1043
+ "parentObjectTypeId": {},
1044
+ "pluginId": {}
1045
+ },
1046
+ {
1047
+ "extendedInfo": {},
1048
+ "id": {},
1049
+ "indicatorTypes": {},
1050
+ "isEditable": {},
1051
+ "isEnabled": {},
1052
+ "name": {},
1053
+ "objectTypes": {},
1054
+ "parentObjectTypeId": {},
1055
+ "pluginId": {}
1056
+ },
1057
+ {
1058
+ "extendedInfo": {},
1059
+ "id": {},
1060
+ "indicatorTypes": {},
1061
+ "isEditable": {},
1062
+ "isEnabled": {},
1063
+ "name": {},
1064
+ "objectTypes": {},
1065
+ "parentObjectTypeId": {},
1066
+ "pluginId": {}
1067
+ },
1068
+ {
1069
+ "extendedInfo": {},
1070
+ "id": {},
1071
+ "indicatorTypes": {},
1072
+ "isEditable": {},
1073
+ "isEnabled": {},
1074
+ "name": {},
1075
+ "objectTypes": {},
1076
+ "parentObjectTypeId": {},
1077
+ "pluginId": {}
1078
+ },
1079
+ {
1080
+ "extendedInfo": {},
1081
+ "id": {},
1082
+ "indicatorTypes": {},
1083
+ "isEditable": {},
1084
+ "isEnabled": {},
1085
+ "name": {},
1086
+ "objectTypes": {},
1087
+ "parentObjectTypeId": {},
1088
+ "pluginId": {}
1089
+ },
1090
+ {
1091
+ "extendedInfo": {},
1092
+ "id": {},
1093
+ "indicatorTypes": {},
1094
+ "isEditable": {},
1095
+ "isEnabled": {},
1096
+ "name": {},
1097
+ "objectTypes": {},
1098
+ "parentObjectTypeId": {},
1099
+ "pluginId": {}
1100
+ },
1101
+ {
1102
+ "extendedInfo": {},
1103
+ "id": {},
1104
+ "indicatorTypes": {},
1105
+ "isEditable": {},
1106
+ "isEnabled": {},
1107
+ "name": {},
1108
+ "objectTypes": {},
1109
+ "parentObjectTypeId": {},
1110
+ "pluginId": {}
1111
+ },
1112
+ {
1113
+ "extendedInfo": {},
1114
+ "id": {},
1115
+ "indicatorTypes": {},
1116
+ "isEditable": {},
1117
+ "isEnabled": {},
1118
+ "name": {},
1119
+ "objectTypes": {},
1120
+ "parentObjectTypeId": {},
1121
+ "pluginId": {}
1122
+ }
1123
+ ],
1124
+ "parentObjectTypeId": 5,
1125
+ "pluginId": 8
1126
+ },
1127
+ {
1128
+ "extendedInfo": {},
1129
+ "id": 2,
1130
+ "indicatorTypes": [
1131
+ {
1132
+ "allowMaximumValue": {},
1133
+ "dataUnits": {},
1134
+ "description": {},
1135
+ "displayUnits": {},
1136
+ "extendedInfo": {},
1137
+ "format": {},
1138
+ "id": {},
1139
+ "isDefault": {},
1140
+ "isEnabled": {},
1141
+ "name": {},
1142
+ "pluginId": {},
1143
+ "pluginObjectTypeId": {},
1144
+ "syntheticExpression": {},
1145
+ "syntheticMaximumExpression": {}
1146
+ }
1147
+ ],
1148
+ "isEditable": true,
1149
+ "isEnabled": true,
1150
+ "name": "string",
1151
+ "objectTypes": [
1152
+ {
1153
+ "extendedInfo": {},
1154
+ "id": {},
1155
+ "indicatorTypes": {},
1156
+ "isEditable": {},
1157
+ "isEnabled": {},
1158
+ "name": {},
1159
+ "objectTypes": {},
1160
+ "parentObjectTypeId": {},
1161
+ "pluginId": {}
1162
+ },
1163
+ {
1164
+ "extendedInfo": {},
1165
+ "id": {},
1166
+ "indicatorTypes": {},
1167
+ "isEditable": {},
1168
+ "isEnabled": {},
1169
+ "name": {},
1170
+ "objectTypes": {},
1171
+ "parentObjectTypeId": {},
1172
+ "pluginId": {}
1173
+ },
1174
+ {
1175
+ "extendedInfo": {},
1176
+ "id": {},
1177
+ "indicatorTypes": {},
1178
+ "isEditable": {},
1179
+ "isEnabled": {},
1180
+ "name": {},
1181
+ "objectTypes": {},
1182
+ "parentObjectTypeId": {},
1183
+ "pluginId": {}
1184
+ },
1185
+ {
1186
+ "extendedInfo": {},
1187
+ "id": {},
1188
+ "indicatorTypes": {},
1189
+ "isEditable": {},
1190
+ "isEnabled": {},
1191
+ "name": {},
1192
+ "objectTypes": {},
1193
+ "parentObjectTypeId": {},
1194
+ "pluginId": {}
1195
+ },
1196
+ {
1197
+ "extendedInfo": {},
1198
+ "id": {},
1199
+ "indicatorTypes": {},
1200
+ "isEditable": {},
1201
+ "isEnabled": {},
1202
+ "name": {},
1203
+ "objectTypes": {},
1204
+ "parentObjectTypeId": {},
1205
+ "pluginId": {}
1206
+ },
1207
+ {
1208
+ "extendedInfo": {},
1209
+ "id": {},
1210
+ "indicatorTypes": {},
1211
+ "isEditable": {},
1212
+ "isEnabled": {},
1213
+ "name": {},
1214
+ "objectTypes": {},
1215
+ "parentObjectTypeId": {},
1216
+ "pluginId": {}
1217
+ },
1218
+ {
1219
+ "extendedInfo": {},
1220
+ "id": {},
1221
+ "indicatorTypes": {},
1222
+ "isEditable": {},
1223
+ "isEnabled": {},
1224
+ "name": {},
1225
+ "objectTypes": {},
1226
+ "parentObjectTypeId": {},
1227
+ "pluginId": {}
1228
+ },
1229
+ {
1230
+ "extendedInfo": {},
1231
+ "id": {},
1232
+ "indicatorTypes": {},
1233
+ "isEditable": {},
1234
+ "isEnabled": {},
1235
+ "name": {},
1236
+ "objectTypes": {},
1237
+ "parentObjectTypeId": {},
1238
+ "pluginId": {}
1239
+ }
1240
+ ],
1241
+ "parentObjectTypeId": 6,
1242
+ "pluginId": 5
1243
+ },
1244
+ {
1245
+ "extendedInfo": {},
1246
+ "id": 9,
1247
+ "indicatorTypes": [
1248
+ {
1249
+ "allowMaximumValue": {},
1250
+ "dataUnits": {},
1251
+ "description": {},
1252
+ "displayUnits": {},
1253
+ "extendedInfo": {},
1254
+ "format": {},
1255
+ "id": {},
1256
+ "isDefault": {},
1257
+ "isEnabled": {},
1258
+ "name": {},
1259
+ "pluginId": {},
1260
+ "pluginObjectTypeId": {},
1261
+ "syntheticExpression": {},
1262
+ "syntheticMaximumExpression": {}
1263
+ },
1264
+ {
1265
+ "allowMaximumValue": {},
1266
+ "dataUnits": {},
1267
+ "description": {},
1268
+ "displayUnits": {},
1269
+ "extendedInfo": {},
1270
+ "format": {},
1271
+ "id": {},
1272
+ "isDefault": {},
1273
+ "isEnabled": {},
1274
+ "name": {},
1275
+ "pluginId": {},
1276
+ "pluginObjectTypeId": {},
1277
+ "syntheticExpression": {},
1278
+ "syntheticMaximumExpression": {}
1279
+ },
1280
+ {
1281
+ "allowMaximumValue": {},
1282
+ "dataUnits": {},
1283
+ "description": {},
1284
+ "displayUnits": {},
1285
+ "extendedInfo": {},
1286
+ "format": {},
1287
+ "id": {},
1288
+ "isDefault": {},
1289
+ "isEnabled": {},
1290
+ "name": {},
1291
+ "pluginId": {},
1292
+ "pluginObjectTypeId": {},
1293
+ "syntheticExpression": {},
1294
+ "syntheticMaximumExpression": {}
1295
+ }
1296
+ ],
1297
+ "isEditable": true,
1298
+ "isEnabled": true,
1299
+ "name": "string",
1300
+ "objectTypes": [
1301
+ {
1302
+ "extendedInfo": {},
1303
+ "id": {},
1304
+ "indicatorTypes": {},
1305
+ "isEditable": {},
1306
+ "isEnabled": {},
1307
+ "name": {},
1308
+ "objectTypes": {},
1309
+ "parentObjectTypeId": {},
1310
+ "pluginId": {}
1311
+ },
1312
+ {
1313
+ "extendedInfo": {},
1314
+ "id": {},
1315
+ "indicatorTypes": {},
1316
+ "isEditable": {},
1317
+ "isEnabled": {},
1318
+ "name": {},
1319
+ "objectTypes": {},
1320
+ "parentObjectTypeId": {},
1321
+ "pluginId": {}
1322
+ },
1323
+ {
1324
+ "extendedInfo": {},
1325
+ "id": {},
1326
+ "indicatorTypes": {},
1327
+ "isEditable": {},
1328
+ "isEnabled": {},
1329
+ "name": {},
1330
+ "objectTypes": {},
1331
+ "parentObjectTypeId": {},
1332
+ "pluginId": {}
1333
+ },
1334
+ {
1335
+ "extendedInfo": {},
1336
+ "id": {},
1337
+ "indicatorTypes": {},
1338
+ "isEditable": {},
1339
+ "isEnabled": {},
1340
+ "name": {},
1341
+ "objectTypes": {},
1342
+ "parentObjectTypeId": {},
1343
+ "pluginId": {}
1344
+ }
1345
+ ],
1346
+ "parentObjectTypeId": 2,
1347
+ "pluginId": 2
1348
+ }
1349
+ ]
1350
+ }