thingsboard-cli 4.3.1.2.post1__tar.gz → 4.3.1.2.post3__tar.gz

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 (2796) hide show
  1. thingsboard_cli-4.3.1.2.post3/.gitignore +17 -0
  2. thingsboard_cli-4.3.1.2.post3/PKG-INFO +83 -0
  3. thingsboard_cli-4.3.1.2.post3/pyproject.toml +90 -0
  4. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/INSTRUCTIONS.md +306 -0
  5. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/alarm-generator.md +96 -0
  6. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/attribute-values-generator.md +127 -0
  7. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/cf-generator.md +125 -0
  8. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/cf-reprocess-generator.md +134 -0
  9. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/dashboard-generator.md +190 -0
  10. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/device-emulator-generator.md +205 -0
  11. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/entities-planner.md +470 -0
  12. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/entity-groups-generator.md +59 -0
  13. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/extension-builder.md +462 -0
  14. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/roles-generator.md +53 -0
  15. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/users-generator.md +62 -0
  16. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/dashboards/composite_html_container_dashboard.json +507 -0
  17. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/composite-tabs-angular.json +507 -0
  18. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/custom-timewindow-analytics-plain.json +103 -0
  19. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/heatmap-cdn-library-plain.json +103 -0
  20. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/kanban-cdn-library-plain.json +103 -0
  21. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/master-detail-split-angular.json +695 -0
  22. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/slide-over-drawer-angular.json +711 -0
  23. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/settings.json +22 -0
  24. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-change-owner-dialog/SKILL.md +17 -0
  25. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-change-state/SKILL.md +18 -0
  26. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-create-entity-dialog/SKILL.md +42 -0
  27. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-create-map-entity-dialog/SKILL.md +26 -0
  28. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-delete-entity-dialog/SKILL.md +18 -0
  29. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-drill-down/SKILL.md +22 -0
  30. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-edit-entity-dialog/SKILL.md +19 -0
  31. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alarm-rule-foundations/SKILL.md +59 -0
  32. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-asset-search-query/SKILL.md +51 -0
  33. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-asset-type/SKILL.md +18 -0
  34. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-customer-entities/SKILL.md +21 -0
  35. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-customers-by-group-name/SKILL.md +23 -0
  36. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-device-search-query/SKILL.md +49 -0
  37. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-device-type/SKILL.md +18 -0
  38. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-entity-type/SKILL.md +18 -0
  39. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-relations-query/SKILL.md +49 -0
  40. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-single-entity/SKILL.md +18 -0
  41. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-state-entity/SKILL.md +19 -0
  42. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/calculated-field-foundations/SKILL.md +120 -0
  43. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/commit-step/SKILL.md +97 -0
  44. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/SKILL.md +383 -0
  45. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/references/extensions.md +62 -0
  46. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/references/interview.md +42 -0
  47. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/references/resume-to-continue.md +13 -0
  48. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/references/revisions.md +23 -0
  49. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/dashboard-dark-mode/SKILL.md +221 -0
  50. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/dashboard-dark-mode/dark-mode.css +200 -0
  51. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/dashboard-foundations/SKILL.md +626 -0
  52. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-dashboards/SKILL.md +309 -0
  53. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-solution-architecture/SKILL.md +196 -0
  54. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-solution-architecture/references/extension-design.md +15 -0
  55. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-solution-architecture/references/from-existing.md +27 -0
  56. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-solution-architecture/references/revision-flow.md +5 -0
  57. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-alarms/SKILL.md +89 -0
  58. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-attributes/SKILL.md +97 -0
  59. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-calculated-fields/SKILL.md +86 -0
  60. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-emulators/SKILL.md +105 -0
  61. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-entities/SKILL.md +121 -0
  62. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/pull-solution/SKILL.md +239 -0
  63. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/reprocess-calculated-fields/SKILL.md +55 -0
  64. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-alarm-rules/SKILL.md +73 -0
  65. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-calculated-fields/SKILL.md +89 -0
  66. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-dashboard/SKILL.md +80 -0
  67. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-entities/SKILL.md +67 -0
  68. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-target-resolver/SKILL.md +141 -0
  69. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/thingsboard-concepts/SKILL.md +57 -0
  70. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/update-solution/SKILL.md +188 -0
  71. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/update-solution/references/instance-import.md +52 -0
  72. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/update-solution/references/local-path.md +47 -0
  73. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/update-solution/references/post-generation-decisions.md +94 -0
  74. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-action-button/SKILL.md +53 -0
  75. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-alarm-count/SKILL.md +63 -0
  76. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-alarm-table/SKILL.md +64 -0
  77. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-bar-chart/SKILL.md +53 -0
  78. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-battery-level/SKILL.md +70 -0
  79. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-chart/SKILL.md +58 -0
  80. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-connect-real-devices/SKILL.md +57 -0
  81. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-entity-table/SKILL.md +73 -0
  82. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-header-card/SKILL.md +47 -0
  83. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-horizontal-value-card/SKILL.md +66 -0
  84. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-html-container/SKILL.md +394 -0
  85. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-indoor-map/SKILL.md +70 -0
  86. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-info-card/SKILL.md +84 -0
  87. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-navigation-widget/SKILL.md +69 -0
  88. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-outdoor-map/SKILL.md +216 -0
  89. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-pie-chart/SKILL.md +102 -0
  90. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-progress-bar/SKILL.md +51 -0
  91. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-range-chart/SKILL.md +40 -0
  92. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-signal-strength/SKILL.md +46 -0
  93. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-simple-gauge/SKILL.md +74 -0
  94. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-state-chart/SKILL.md +44 -0
  95. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-state-switcher/SKILL.md +50 -0
  96. thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-value-chart-card/SKILL.md +59 -0
  97. thingsboard_cli-4.3.1.2.post3/scaffold/manifest.json +4 -0
  98. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/commands/feedback.py +96 -0
  99. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/commands/project.py +1107 -0
  100. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/agent_detect.py +31 -0
  101. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/agent_format.py +387 -0
  102. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/analytics.py +349 -0
  103. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/feedback.py +476 -0
  104. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/interactive.py +38 -0
  105. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/scaffold.py +336 -0
  106. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/commands/ai_chat.py +68 -0
  107. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/commands/alarm.py +252 -0
  108. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/commands/entity_group.py +584 -0
  109. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/commands/integration.py +247 -0
  110. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/cf_reprocessing_job_configuration.py +87 -0
  111. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/cf_reprocessing_job_result.py +90 -0
  112. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/dashboard.py +58 -0
  113. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/dashboard_info.py +66 -0
  114. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/device_profile.py +326 -0
  115. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/device_profile_data.py +289 -0
  116. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/device_profile_transport_configuration.py +257 -0
  117. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/dummy_job_configuration.py +92 -0
  118. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/dummy_job_result.py +90 -0
  119. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/home_dashboard.py +59 -0
  120. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/job.py +298 -0
  121. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/job_configuration.py +257 -0
  122. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/job_result.py +101 -0
  123. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/lw_m2_mbootstrap_server_credential.py +80 -0
  124. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/lwm2m_device_profile_transport_configuration.py +142 -0
  125. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/page_data_dashboard_info.py +74 -0
  126. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/page_data_device_profile.py +334 -0
  127. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/page_data_job.py +306 -0
  128. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/report_job_configuration.py +232 -0
  129. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/report_job_result.py +91 -0
  130. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/task_result.py +76 -0
  131. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/telemetry_mapping_configuration.py +42 -0
  132. thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/main.py +1098 -0
  133. thingsboard_cli-4.3.1.2.post3/tests/conftest.py +113 -0
  134. thingsboard_cli-4.3.1.2.post3/tests/e2e/conftest.py +178 -0
  135. thingsboard_cli-4.3.1.2.post3/tests/e2e/helpers.py +365 -0
  136. thingsboard_cli-4.3.1.2.post3/tests/e2e/test_agent_format.py +51 -0
  137. thingsboard_cli-4.3.1.2.post3/tests/e2e/test_feedback.py +172 -0
  138. thingsboard_cli-4.3.1.2.post3/tests/e2e/test_project_mode.py +1360 -0
  139. thingsboard_cli-4.3.1.2.post3/tests/helpers.py +37 -0
  140. thingsboard_cli-4.3.1.2.post3/tests/test_agent_detect.py +37 -0
  141. thingsboard_cli-4.3.1.2.post3/tests/test_agent_format.py +283 -0
  142. thingsboard_cli-4.3.1.2.post3/tests/test_analytics.py +464 -0
  143. thingsboard_cli-4.3.1.2.post3/tests/test_feedback.py +679 -0
  144. thingsboard_cli-4.3.1.2.post3/tests/test_feedback_commands.py +221 -0
  145. thingsboard_cli-4.3.1.2.post3/tests/test_init_agent_format.py +209 -0
  146. thingsboard_cli-4.3.1.2.post3/tests/test_interactive.py +57 -0
  147. thingsboard_cli-4.3.1.2.post3/tests/test_main_error_tracking.py +303 -0
  148. thingsboard_cli-4.3.1.2.post3/tests/test_project_commands.py +1087 -0
  149. thingsboard_cli-4.3.1.2.post3/tests/test_scaffold_format.py +152 -0
  150. thingsboard_cli-4.3.1.2.post3/tests/test_scaffold_propagation.py +306 -0
  151. thingsboard_cli-4.3.1.2.post3/uv.lock +969 -0
  152. thingsboard_cli-4.3.1.2.post1/.gitignore +0 -16
  153. thingsboard_cli-4.3.1.2.post1/PKG-INFO +0 -82
  154. thingsboard_cli-4.3.1.2.post1/extension-starter/docs/tb-message-types.md +0 -674
  155. thingsboard_cli-4.3.1.2.post1/pyproject.toml +0 -82
  156. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/CLAUDE.md +0 -248
  157. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/alarm-generator.md +0 -109
  158. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/alarms-designer.md +0 -109
  159. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/attribute-values-generator.md +0 -124
  160. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/cf-generator.md +0 -179
  161. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/cf-reprocess-generator.md +0 -132
  162. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/dashboard-json-generator.md +0 -2149
  163. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/device-emulator-generator.md +0 -210
  164. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/entities-planner.md +0 -294
  165. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/entity-groups-generator.md +0 -59
  166. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/entity-profiles-designer.md +0 -100
  167. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/extension-builder.md +0 -462
  168. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/iam-designer.md +0 -98
  169. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/metrics-designer.md +0 -165
  170. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/relations-designer.md +0 -89
  171. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/roles-generator.md +0 -51
  172. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/users-generator.md +0 -62
  173. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/settings.json +0 -13
  174. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/commit-step/SKILL.md +0 -96
  175. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/create-solution/SKILL.md +0 -793
  176. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/design-dashboards/SKILL.md +0 -277
  177. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/design-solution-architecture/SKILL.md +0 -279
  178. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-alarms/SKILL.md +0 -71
  179. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-attributes/SKILL.md +0 -96
  180. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-calculated-fields/SKILL.md +0 -67
  181. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-dashboard-json/SKILL.md +0 -77
  182. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-emulators/SKILL.md +0 -102
  183. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-entities/SKILL.md +0 -121
  184. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/pull-solution/SKILL.md +0 -239
  185. thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/reprocess-calculated-fields/SKILL.md +0 -45
  186. thingsboard_cli-4.3.1.2.post1/scaffold/manifest.json +0 -4
  187. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/commands/project.py +0 -1018
  188. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/core/analytics.py +0 -341
  189. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/core/scaffold.py +0 -244
  190. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/commands/ai_chat.py +0 -68
  191. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/commands/alarm.py +0 -252
  192. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/commands/entity_group.py +0 -584
  193. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/commands/integration.py +0 -233
  194. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/cf_reprocessing_job_configuration.py +0 -37
  195. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/cf_reprocessing_job_result.py +0 -35
  196. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/dashboard.py +0 -58
  197. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/dashboard_info.py +0 -66
  198. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/device_profile.py +0 -262
  199. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/device_profile_data.py +0 -225
  200. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/device_profile_transport_configuration.py +0 -193
  201. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/dummy_job_configuration.py +0 -37
  202. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/dummy_job_result.py +0 -35
  203. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/home_dashboard.py +0 -59
  204. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/job.py +0 -270
  205. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/job_configuration.py +0 -213
  206. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/job_result.py +0 -67
  207. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/lw_m2_mbootstrap_server_credential.py +0 -12
  208. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/lwm2m_device_profile_transport_configuration.py +0 -78
  209. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/page_data_dashboard_info.py +0 -74
  210. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/page_data_device_profile.py +0 -270
  211. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/page_data_job.py +0 -278
  212. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/report_job_configuration.py +0 -188
  213. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/report_job_result.py +0 -57
  214. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/task_result.py +0 -17
  215. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/telemetry_mapping_configuration.py +0 -42
  216. thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/main.py +0 -1069
  217. thingsboard_cli-4.3.1.2.post1/tests/conftest.py +0 -96
  218. thingsboard_cli-4.3.1.2.post1/tests/e2e/conftest.py +0 -171
  219. thingsboard_cli-4.3.1.2.post1/tests/e2e/helpers.py +0 -354
  220. thingsboard_cli-4.3.1.2.post1/tests/e2e/test_project_mode.py +0 -1350
  221. thingsboard_cli-4.3.1.2.post1/tests/test_analytics.py +0 -444
  222. thingsboard_cli-4.3.1.2.post1/tests/test_main_error_tracking.py +0 -221
  223. thingsboard_cli-4.3.1.2.post1/tests/test_project_commands.py +0 -1031
  224. thingsboard_cli-4.3.1.2.post1/tests/test_scaffold_propagation.py +0 -304
  225. thingsboard_cli-4.3.1.2.post1/uv.lock +0 -934
  226. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/.gitattributes +0 -0
  227. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/.github/workflows/ci.yml +0 -0
  228. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/CHANGELOG.md +0 -0
  229. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/CLAUDE.md +0 -0
  230. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/CONTRIBUTING.md +0 -0
  231. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/README.md +0 -0
  232. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/.env.example +0 -0
  233. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/.gitignore +0 -0
  234. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/.license-header +0 -0
  235. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/.snapshot.json +0 -0
  236. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/Dockerfile +0 -0
  237. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/LICENSE +0 -0
  238. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/README.md +0 -0
  239. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/compose.yaml +0 -0
  240. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/deploy/.env.example +0 -0
  241. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/deploy/docker-compose.yml +0 -0
  242. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/deploy/haproxy-extension.cfg.snippet +0 -0
  243. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/pom.xml +0 -0
  244. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/src/main/java/org/thingsboard/extension/examples/BillingController.java +0 -0
  245. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/src/main/java/org/thingsboard/extension/examples/DeviceHealthCheckTask.java +0 -0
  246. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/src/main/java/org/thingsboard/extension/examples/TelemetryUnitConversionController.java +0 -0
  247. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/src/main/java/org/thingsboard/extension/examples/TenantReportController.java +0 -0
  248. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/src/test/java/org/thingsboard/extension/examples/BillingControllerTest.java +0 -0
  249. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/src/test/java/org/thingsboard/extension/examples/DeviceHealthCheckTaskTest.java +0 -0
  250. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/src/test/java/org/thingsboard/extension/examples/ExampleTestUtils.java +0 -0
  251. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/src/test/java/org/thingsboard/extension/examples/TelemetryUnitConversionControllerTest.java +0 -0
  252. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/src/test/java/org/thingsboard/extension/examples/TenantReportControllerTest.java +0 -0
  253. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/classes/org/thingsboard/extension/examples/BillingController.class +0 -0
  254. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/classes/org/thingsboard/extension/examples/DeviceHealthCheckTask.class +0 -0
  255. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/classes/org/thingsboard/extension/examples/TelemetryUnitConversionController$Rule.class +0 -0
  256. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/classes/org/thingsboard/extension/examples/TelemetryUnitConversionController.class +0 -0
  257. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/classes/org/thingsboard/extension/examples/TenantReportController.class +0 -0
  258. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/maven-archiver/pom.properties +0 -0
  259. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +0 -0
  260. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +0 -0
  261. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +0 -0
  262. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +0 -0
  263. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/test-classes/org/thingsboard/extension/examples/BillingControllerTest.class +0 -0
  264. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/test-classes/org/thingsboard/extension/examples/DeviceHealthCheckTaskTest.class +0 -0
  265. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/test-classes/org/thingsboard/extension/examples/ExampleTestUtils$1.class +0 -0
  266. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/test-classes/org/thingsboard/extension/examples/ExampleTestUtils.class +0 -0
  267. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/test-classes/org/thingsboard/extension/examples/TelemetryUnitConversionControllerTest.class +0 -0
  268. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/test-classes/org/thingsboard/extension/examples/TenantReportControllerTest.class +0 -0
  269. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/thingsboard-extension-examples-1.0.0-SNAPSHOT.jar +0 -0
  270. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/widgets/cloud-button.js +0 -0
  271. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/widgets/on-premise-button.js +0 -0
  272. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/pom.xml +0 -0
  273. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/ThingsboardExtensionApplication.java +0 -0
  274. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/GlobalExceptionHandler.java +0 -0
  275. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/HealthController.java +0 -0
  276. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/OpenApiConfig.java +0 -0
  277. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/RequestLoggingFilter.java +0 -0
  278. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/SchedulingConfig.java +0 -0
  279. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/SecurityConfig.java +0 -0
  280. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/TbAuthentication.java +0 -0
  281. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/TbSecurity.java +0 -0
  282. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/TbSecurityFilter.java +0 -0
  283. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/TbSecurityUser.java +0 -0
  284. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/ThingsboardAuthConfig.java +0 -0
  285. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/ThingsboardClientProvider.java +0 -0
  286. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/java/org/thingsboard/extension/config/WebConfig.java +0 -0
  287. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/resources/application.yml +0 -0
  288. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/resources/docker/start-extension.sh +0 -0
  289. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/resources/logback.xml +0 -0
  290. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/test/java/org/thingsboard/extension/ApplicationIntegrationTest.java +0 -0
  291. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/test/java/org/thingsboard/extension/PreAuthorizeIntegrationTest.java +0 -0
  292. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/test/java/org/thingsboard/extension/TestUtils.java +0 -0
  293. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/test/java/org/thingsboard/extension/config/GlobalExceptionHandlerTest.java +0 -0
  294. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/test/java/org/thingsboard/extension/config/RequestLoggingFilterTest.java +0 -0
  295. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/test/java/org/thingsboard/extension/config/TbAuthenticationTest.java +0 -0
  296. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/test/java/org/thingsboard/extension/config/TbSecurityFilterTest.java +0 -0
  297. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/test/java/org/thingsboard/extension/config/TbSecurityUserTest.java +0 -0
  298. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/test/java/org/thingsboard/extension/config/ThingsboardClientProviderTest.java +0 -0
  299. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/antrun/build-main.xml +0 -0
  300. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AccountTwoFaSettings.md +0 -0
  301. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AcmeCertificateId.md +0 -0
  302. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Action.md +0 -0
  303. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ActionStatus.md +0 -0
  304. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ActionType.md +0 -0
  305. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ActivateUserRequest.md +0 -0
  306. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AdminControllerApi.md +0 -0
  307. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AdminSettings.md +0 -0
  308. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AdminSettingsId.md +0 -0
  309. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AffectedTenantAdministratorsFilter.md +0 -0
  310. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AffectedUserFilter.md +0 -0
  311. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggFunction.md +0 -0
  312. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggFunctionInput.md +0 -0
  313. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggInput.md +0 -0
  314. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggInterval.md +0 -0
  315. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggKeyInput.md +0 -0
  316. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggMetric.md +0 -0
  317. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Aggregation.md +0 -0
  318. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggregationConfiguration.md +0 -0
  319. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggregationParams.md +0 -0
  320. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiChatControllerApi.md +0 -0
  321. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiChatModelConfig.md +0 -0
  322. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModel.md +0 -0
  323. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelConfig.md +0 -0
  324. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelControllerApi.md +0 -0
  325. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelExportData.md +0 -0
  326. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelId.md +0 -0
  327. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelType.md +0 -0
  328. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiSolutionControllerApi.md +0 -0
  329. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiToolControllerApi.md +0 -0
  330. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Alarm.md +0 -0
  331. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmAction.md +0 -0
  332. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmAssignee.md +0 -0
  333. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmAssignmentNotificationRuleTriggerConfig.md +0 -0
  334. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmAssignmentRecipientsConfig.md +0 -0
  335. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCalculatedFieldConfiguration.md +0 -0
  336. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmComment.md +0 -0
  337. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentControllerApi.md +0 -0
  338. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentId.md +0 -0
  339. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentInfo.md +0 -0
  340. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentNotificationRuleTriggerConfig.md +0 -0
  341. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentRecipientsConfig.md +0 -0
  342. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentType.md +0 -0
  343. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCondition.md +0 -0
  344. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionExpression.md +0 -0
  345. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionFilter.md +0 -0
  346. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueAlarmSchedule.md +0 -0
  347. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueBoolean.md +0 -0
  348. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueDouble.md +0 -0
  349. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueInteger.md +0 -0
  350. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueLong.md +0 -0
  351. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueString.md +0 -0
  352. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmControllerApi.md +0 -0
  353. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCountQuery.md +0 -0
  354. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmData.md +0 -0
  355. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmDataPageLink.md +0 -0
  356. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmDataQuery.md +0 -0
  357. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmFilterConfig.md +0 -0
  358. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmId.md +0 -0
  359. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmInfo.md +0 -0
  360. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmNotificationRuleTriggerConfig.md +0 -0
  361. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRule.md +0 -0
  362. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleBooleanFilterPredicate.md +0 -0
  363. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleBooleanOperation.md +0 -0
  364. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleComplexFilterPredicate.md +0 -0
  365. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleComplexOperation.md +0 -0
  366. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleControllerApi.md +0 -0
  367. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleDefinition.md +0 -0
  368. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleDefinitionInfo.md +0 -0
  369. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleKeyFilterPredicate.md +0 -0
  370. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleNumericFilterPredicate.md +0 -0
  371. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleNumericOperation.md +0 -0
  372. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleStringFilterPredicate.md +0 -0
  373. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleStringOperation.md +0 -0
  374. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmSchedule.md +0 -0
  375. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmSearchStatus.md +0 -0
  376. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmSeverity.md +0 -0
  377. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmStatus.md +0 -0
  378. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmTableComponent.md +0 -0
  379. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AliasEntityId.md +0 -0
  380. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AliasEntityType.md +0 -0
  381. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AllUsersFilter.md +0 -0
  382. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AllowCreateNewDevicesDeviceProfileProvisionConfiguration.md +0 -0
  383. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AllowedPermissionsInfo.md +0 -0
  384. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AmazonBedrockChatModelConfig.md +0 -0
  385. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AmazonBedrockProviderConfig.md +0 -0
  386. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AnthropicChatModelConfig.md +0 -0
  387. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AnthropicProviderConfig.md +0 -0
  388. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AnyTimeSchedule.md +0 -0
  389. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiFeature.md +0 -0
  390. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiKey.md +0 -0
  391. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiKeyControllerApi.md +0 -0
  392. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiKeyId.md +0 -0
  393. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiKeyInfo.md +0 -0
  394. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageLimitNotificationRuleTriggerConfig.md +0 -0
  395. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageLimitRecipientsConfig.md +0 -0
  396. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageStateFilter.md +0 -0
  397. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageStateId.md +0 -0
  398. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageStateValue.md +0 -0
  399. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Argument.md +0 -0
  400. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ArgumentType.md +0 -0
  401. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Asset.md +0 -0
  402. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetControllerApi.md +0 -0
  403. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetExportData.md +0 -0
  404. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetId.md +0 -0
  405. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetInfo.md +0 -0
  406. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfile.md +0 -0
  407. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfileControllerApi.md +0 -0
  408. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfileExportData.md +0 -0
  409. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfileId.md +0 -0
  410. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfileInfo.md +0 -0
  411. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetSearchQuery.md +0 -0
  412. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetSearchQueryFilter.md +0 -0
  413. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetTypeFilter.md +0 -0
  414. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributeData.md +0 -0
  415. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributeExportData.md +0 -0
  416. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributeScope.md +0 -0
  417. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesEntityView.md +0 -0
  418. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesImmediateOutputStrategy.md +0 -0
  419. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesOutput.md +0 -0
  420. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesOutputStrategy.md +0 -0
  421. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesRuleChainOutputStrategy.md +0 -0
  422. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuditLog.md +0 -0
  423. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuditLogControllerApi.md +0 -0
  424. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuditLogId.md +0 -0
  425. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuthControllerApi.md +0 -0
  426. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuthenticationProtocol.md +0 -0
  427. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Authority.md +0 -0
  428. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AutoVersionCreateConfig.md +0 -0
  429. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AvailableEntityKeys.md +0 -0
  430. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AvailableEntityKeysV2.md +0 -0
  431. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AwsSnsSmsProviderConfiguration.md +0 -0
  432. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AxisPosition.md +0 -0
  433. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AzureOpenAiChatModelConfig.md +0 -0
  434. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AzureOpenAiProviderConfig.md +0 -0
  435. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BackupCodeTwoFaAccountConfig.md +0 -0
  436. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BackupCodeTwoFaProviderConfig.md +0 -0
  437. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BadgePosition.md +0 -0
  438. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BarSeriesSettings.md +0 -0
  439. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BaseReadTsKvQuery.md +0 -0
  440. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Basic.md +0 -0
  441. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BillingCustomerId.md +0 -0
  442. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BillingEndpointControllerApi.md +0 -0
  443. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BlobEntityControllerApi.md +0 -0
  444. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BlobEntityId.md +0 -0
  445. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BlobEntityInfo.md +0 -0
  446. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BlobEntityWithCustomerInfo.md +0 -0
  447. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BooleanFilterPredicate.md +0 -0
  448. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BooleanOperation.md +0 -0
  449. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BorderLength.md +0 -0
  450. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BorderType.md +0 -0
  451. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BranchInfo.md +0 -0
  452. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportColumnType.md +0 -0
  453. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportRequest.md +0 -0
  454. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportResultAsset.md +0 -0
  455. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportResultDevice.md +0 -0
  456. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportResultEdge.md +0 -0
  457. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Button.md +0 -0
  458. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CMAssigneeType.md +0 -0
  459. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CMItemLinkType.md +0 -0
  460. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CMItemType.md +0 -0
  461. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CMScope.md +0 -0
  462. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedField.md +0 -0
  463. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldConfiguration.md +0 -0
  464. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldControllerApi.md +0 -0
  465. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldDebugEventFilter.md +0 -0
  466. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldId.md +0 -0
  467. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldInfo.md +0 -0
  468. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldType.md +0 -0
  469. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CaptchaClientParams.md +0 -0
  470. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CaptchaParams.md +0 -0
  471. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CellSettings.md +0 -0
  472. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CertificateInfo.md +0 -0
  473. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CertificateStatus.md +0 -0
  474. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfArgumentDynamicSourceConfiguration.md +0 -0
  475. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingJobConfiguration.md +0 -0
  476. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingJobResult.md +0 -0
  477. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingTaskFailure.md +0 -0
  478. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingTaskResult.md +0 -0
  479. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingValidationResult.md +0 -0
  480. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChangePasswordRequest.md +0 -0
  481. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartFillSettings.md +0 -0
  482. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartFillSettingsGradient.md +0 -0
  483. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartFillType.md +0 -0
  484. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartLabelPosition.md +0 -0
  485. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartLineType.md +0 -0
  486. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartShape.md +0 -0
  487. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChatType.md +0 -0
  488. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CheckPreProvisionedDevicesDeviceProfileProvisionConfiguration.md +0 -0
  489. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChecksumAlgorithm.md +0 -0
  490. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ClaimRequest.md +0 -0
  491. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ClearRule.md +0 -0
  492. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ClientAttributesQueryingSnmpCommunicationConfig.md +0 -0
  493. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CloudDomainId.md +0 -0
  494. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CloudDomainInfo.md +0 -0
  495. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CloudEndpointControllerApi.md +0 -0
  496. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CoapDeviceProfileTransportConfiguration.md +0 -0
  497. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CoapDeviceTransportConfiguration.md +0 -0
  498. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CoapDeviceTypeConfiguration.md +0 -0
  499. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ColorRange.md +0 -0
  500. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ColumnMapping.md +0 -0
  501. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ColumnSettings.md +0 -0
  502. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComparisonDuration.md +0 -0
  503. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComparisonTsValue.md +0 -0
  504. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComplexFilterPredicate.md +0 -0
  505. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComplexOperation.md +0 -0
  506. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComplexVersionCreateRequest.md +0 -0
  507. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentClusteringMode.md +0 -0
  508. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentDescriptor.md +0 -0
  509. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentDescriptorControllerApi.md +0 -0
  510. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentDescriptorId.md +0 -0
  511. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentLifecycleEvent.md +0 -0
  512. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentScope.md +0 -0
  513. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentType.md +0 -0
  514. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ContactBasedObject.md +0 -0
  515. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Converter.md +0 -0
  516. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterControllerApi.md +0 -0
  517. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterExportData.md +0 -0
  518. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterId.md +0 -0
  519. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterLibraryControllerApi.md +0 -0
  520. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterType.md +0 -0
  521. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConvertersInfo.md +0 -0
  522. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CouponDuration.md +0 -0
  523. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CouponId.md +0 -0
  524. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CreateReportRequest.md +0 -0
  525. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CsvReportTemplateConfig.md +0 -0
  526. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CurrentOwnerDynamicSourceConfiguration.md +0 -0
  527. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomInterval.md +0 -0
  528. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenu.md +0 -0
  529. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuConfig.md +0 -0
  530. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuControllerApi.md +0 -0
  531. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuDeleteResult.md +0 -0
  532. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuId.md +0 -0
  533. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuInfo.md +0 -0
  534. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuItem.md +0 -0
  535. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMobilePage.md +0 -0
  536. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomTimeSchedule.md +0 -0
  537. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomTimeScheduleItem.md +0 -0
  538. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomTranslationControllerApi.md +0 -0
  539. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Customer.md +0 -0
  540. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerControllerApi.md +0 -0
  541. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerExportData.md +0 -0
  542. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerId.md +0 -0
  543. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerInfo.md +0 -0
  544. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerUsersFilter.md +0 -0
  545. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Dashboard.md +0 -0
  546. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardComponent.md +0 -0
  547. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardControllerApi.md +0 -0
  548. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardExportData.md +0 -0
  549. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardId.md +0 -0
  550. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardInfo.md +0 -0
  551. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardPage.md +0 -0
  552. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardReportConfig.md +0 -0
  553. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardReportControllerApi.md +0 -0
  554. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataKey.md +0 -0
  555. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataKeyComparisonSettings.md +0 -0
  556. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataKeySettings.md +0 -0
  557. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataKeySettingsType.md +0 -0
  558. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataSource.md +0 -0
  559. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataSourceType.md +0 -0
  560. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataType.md +0 -0
  561. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DayInterval.md +0 -0
  562. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DebugConverterEventFilter.md +0 -0
  563. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DebugIntegrationEventFilter.md +0 -0
  564. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DebugSettings.md +0 -0
  565. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultCoapDeviceTypeConfiguration.md +0 -0
  566. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDashboardParams.md +0 -0
  567. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDataKeySettings.md +0 -0
  568. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDeviceConfiguration.md +0 -0
  569. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDeviceProfileConfiguration.md +0 -0
  570. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDeviceProfileTransportConfiguration.md +0 -0
  571. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDeviceTransportConfiguration.md +0 -0
  572. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultMenuItem.md +0 -0
  573. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultMobilePage.md +0 -0
  574. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultPageId.md +0 -0
  575. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultRuleChainCreateRequest.md +0 -0
  576. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultTenantProfileConfiguration.md +0 -0
  577. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeleteTenantRequest.md +0 -0
  578. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeliveryMethodNotificationTemplate.md +0 -0
  579. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Device.md +0 -0
  580. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceActivityNotificationRuleTriggerConfig.md +0 -0
  581. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceActivityRecipientsConfig.md +0 -0
  582. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceConfiguration.md +0 -0
  583. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceConnectivityControllerApi.md +0 -0
  584. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceControllerApi.md +0 -0
  585. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceCredentials.md +0 -0
  586. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceCredentialsId.md +0 -0
  587. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceCredentialsType.md +0 -0
  588. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceData.md +0 -0
  589. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceEvent.md +0 -0
  590. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceExportData.md +0 -0
  591. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceGroupOtaPackage.md +0 -0
  592. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceGroupOtaPackageControllerApi.md +0 -0
  593. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceId.md +0 -0
  594. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceInfo.md +0 -0
  595. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfile.md +0 -0
  596. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileConfiguration.md +0 -0
  597. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileControllerApi.md +0 -0
  598. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileData.md +0 -0
  599. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileExportData.md +0 -0
  600. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileId.md +0 -0
  601. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileInfo.md +0 -0
  602. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileProvisionConfiguration.md +0 -0
  603. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileProvisionType.md +0 -0
  604. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileTransportConfiguration.md +0 -0
  605. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileType.md +0 -0
  606. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceSearchQuery.md +0 -0
  607. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceSearchQueryFilter.md +0 -0
  608. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceTransportConfiguration.md +0 -0
  609. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceTransportType.md +0 -0
  610. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceTypeFilter.md +0 -0
  611. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Direction.md +0 -0
  612. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DisabledDeviceProfileProvisionConfiguration.md +0 -0
  613. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Discount.md +0 -0
  614. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DividerComponent.md +0 -0
  615. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Domain.md +0 -0
  616. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DomainControllerApi.md +0 -0
  617. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DomainId.md +0 -0
  618. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DomainInfo.md +0 -0
  619. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DoughnutLayout.md +0 -0
  620. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DummyJobConfiguration.md +0 -0
  621. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DummyJobResult.md +0 -0
  622. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DummyTaskFailure.md +0 -0
  623. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DummyTaskResult.md +0 -0
  624. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DurationAlarmCondition.md +0 -0
  625. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DynamicValueBoolean.md +0 -0
  626. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DynamicValueDouble.md +0 -0
  627. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DynamicValueSourceType.md +0 -0
  628. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DynamicValueString.md +0 -0
  629. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Edge.md +0 -0
  630. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeCommunicationFailureNotificationRuleTriggerConfig.md +0 -0
  631. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeCommunicationFailureRecipientsConfig.md +0 -0
  632. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeConnectionNotificationRuleTriggerConfig.md +0 -0
  633. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeConnectionRecipientsConfig.md +0 -0
  634. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeConnectivityEvent.md +0 -0
  635. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeControllerApi.md +0 -0
  636. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEvent.md +0 -0
  637. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEventActionType.md +0 -0
  638. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEventControllerApi.md +0 -0
  639. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEventId.md +0 -0
  640. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEventType.md +0 -0
  641. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeId.md +0 -0
  642. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeInfo.md +0 -0
  643. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeInstructions.md +0 -0
  644. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeLicenseType.md +0 -0
  645. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeSearchQuery.md +0 -0
  646. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeSearchQueryFilter.md +0 -0
  647. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeTypeFilter.md +0 -0
  648. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdqsApiMode.md +0 -0
  649. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdqsState.md +0 -0
  650. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdqsSyncRequest.md +0 -0
  651. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdqsSyncStatus.md +0 -0
  652. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EfentoCoapDeviceTypeConfiguration.md +0 -0
  653. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EmailDeliveryMethodNotificationTemplate.md +0 -0
  654. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EmailTwoFaAccountConfig.md +0 -0
  655. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EmailTwoFaProviderConfig.md +0 -0
  656. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EnterpriseCaptchaParams.md +0 -0
  657. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitiesByGroupNameFilter.md +0 -0
  658. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitiesLimitNotificationRuleTriggerConfig.md +0 -0
  659. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitiesLimitRecipientsConfig.md +0 -0
  660. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitiesVersionControlControllerApi.md +0 -0
  661. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Entity.md +0 -0
  662. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityActionNotificationRuleTriggerConfig.md +0 -0
  663. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityActionRecipientsConfig.md +0 -0
  664. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityAggregationCalculatedFieldConfiguration.md +0 -0
  665. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityAlias.md +0 -0
  666. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityCoordinates.md +0 -0
  667. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityCountQuery.md +0 -0
  668. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityData.md +0 -0
  669. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataDiff.md +0 -0
  670. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataInfo.md +0 -0
  671. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataPageLink.md +0 -0
  672. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataQuery.md +0 -0
  673. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataSortOrder.md +0 -0
  674. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityExportData.md +0 -0
  675. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityExportSettings.md +0 -0
  676. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityFilter.md +0 -0
  677. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroup.md +0 -0
  678. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupControllerApi.md +0 -0
  679. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupExportData.md +0 -0
  680. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupFilter.md +0 -0
  681. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupId.md +0 -0
  682. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupInfo.md +0 -0
  683. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupListFilter.md +0 -0
  684. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupNameFilter.md +0 -0
  685. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityId.md +0 -0
  686. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityInfo.md +0 -0
  687. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityKey.md +0 -0
  688. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityKeyType.md +0 -0
  689. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityKeyValueType.md +0 -0
  690. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityListFilter.md +0 -0
  691. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityLoadError.md +0 -0
  692. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityNameFilter.md +0 -0
  693. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityQueryControllerApi.md +0 -0
  694. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityRelation.md +0 -0
  695. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityRelationControllerApi.md +0 -0
  696. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityRelationInfo.md +0 -0
  697. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityRelationsQuery.md +0 -0
  698. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitySearchDirection.md +0 -0
  699. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitySubtype.md +0 -0
  700. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTableComponent.md +0 -0
  701. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityType.md +0 -0
  702. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeFilter.md +0 -0
  703. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeLoadResult.md +0 -0
  704. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeVersionCreateConfig.md +0 -0
  705. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeVersionLoadConfig.md +0 -0
  706. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeVersionLoadRequest.md +0 -0
  707. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityVersion.md +0 -0
  708. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityView.md +0 -0
  709. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewControllerApi.md +0 -0
  710. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewExportData.md +0 -0
  711. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewId.md +0 -0
  712. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewInfo.md +0 -0
  713. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewSearchQuery.md +0 -0
  714. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewSearchQueryFilter.md +0 -0
  715. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewTypeFilter.md +0 -0
  716. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorComponent.md +0 -0
  717. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorComponentAllOfException.md +0 -0
  718. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorComponentAllOfExceptionCause.md +0 -0
  719. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorComponentAllOfExceptionCauseStackTrace.md +0 -0
  720. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorEventFilter.md +0 -0
  721. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EscalatedNotificationRuleRecipientsConfig.md +0 -0
  722. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventControllerApi.md +0 -0
  723. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventFilter.md +0 -0
  724. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventId.md +0 -0
  725. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventInfo.md +0 -0
  726. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventType.md +0 -0
  727. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ExportableEntity.md +0 -0
  728. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Failure.md +0 -0
  729. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Favicon.md +0 -0
  730. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FeaturesInfo.md +0 -0
  731. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Filter.md +0 -0
  732. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FilterPredicateValueBoolean.md +0 -0
  733. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FilterPredicateValueDouble.md +0 -0
  734. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FilterPredicateValueString.md +0 -0
  735. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FixedTimeWindow.md +0 -0
  736. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Font.md +0 -0
  737. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FontStyle.md +0 -0
  738. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FontWeight.md +0 -0
  739. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GeofencingCalculatedFieldConfiguration.md +0 -0
  740. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GeofencingReportStrategy.md +0 -0
  741. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GitHubModelsChatModelConfig.md +0 -0
  742. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GitHubModelsProviderConfig.md +0 -0
  743. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GoogleAiGeminiChatModelConfig.md +0 -0
  744. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GoogleAiGeminiProviderConfig.md +0 -0
  745. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GoogleVertexAiGeminiChatModelConfig.md +0 -0
  746. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GoogleVertexAiGeminiProviderConfig.md +0 -0
  747. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GroupPermission.md +0 -0
  748. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GroupPermissionControllerApi.md +0 -0
  749. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GroupPermissionId.md +0 -0
  750. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GroupPermissionInfo.md +0 -0
  751. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HasIdObject.md +0 -0
  752. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HeaderFooter.md +0 -0
  753. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Heading.md +0 -0
  754. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HeadingComponent.md +0 -0
  755. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/History.md +0 -0
  756. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeDashboard.md +0 -0
  757. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeDashboardInfo.md +0 -0
  758. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeDashboardParams.md +0 -0
  759. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeMenuItem.md +0 -0
  760. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeMenuItemType.md +0 -0
  761. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HourInterval.md +0 -0
  762. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageAlignment.md +0 -0
  763. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageComponent.md +0 -0
  764. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageControllerApi.md +0 -0
  765. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageSourceType.md +0 -0
  766. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageWidthType.md +0 -0
  767. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Insets.md +0 -0
  768. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Integration.md +0 -0
  769. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationControllerApi.md +0 -0
  770. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationConvertersInfo.md +0 -0
  771. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationExportData.md +0 -0
  772. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationId.md +0 -0
  773. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationInfo.md +0 -0
  774. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationLifecycleEventNotificationRuleTriggerConfig.md +0 -0
  775. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationLifecycleEventRecipientsConfig.md +0 -0
  776. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationType.md +0 -0
  777. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Interval.md +0 -0
  778. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntervalType.md +0 -0
  779. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Job.md +0 -0
  780. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobConfiguration.md +0 -0
  781. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobControllerApi.md +0 -0
  782. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobId.md +0 -0
  783. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobResult.md +0 -0
  784. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobStatus.md +0 -0
  785. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobType.md +0 -0
  786. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JsonTransportPayloadConfiguration.md +0 -0
  787. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JwtPair.md +0 -0
  788. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JwtSettings.md +0 -0
  789. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/KeyFilter.md +0 -0
  790. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/KeyFilterPredicate.md +0 -0
  791. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/KeyInfo.md +0 -0
  792. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/KeySample.md +0 -0
  793. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LastVisitedDashboardInfo.md +0 -0
  794. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LatestChartComponent.md +0 -0
  795. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LegendConfig.md +0 -0
  796. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LegendPosition.md +0 -0
  797. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LicenseUsageInfo.md +0 -0
  798. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LifeCycleEventFilter.md +0 -0
  799. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LimitedApi.md +0 -0
  800. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LineSeriesSettings.md +0 -0
  801. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LineSeriesStepType.md +0 -0
  802. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LinkType.md +0 -0
  803. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginEndpointApi.md +0 -0
  804. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginMobileInfo.md +0 -0
  805. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginRequest.md +0 -0
  806. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginResponse.md +0 -0
  807. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginWhiteLabelingParams.md +0 -0
  808. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2MBootstrapServerCredential.md +0 -0
  809. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2MServerSecurityConfigDefault.md +0 -0
  810. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2mInstance.md +0 -0
  811. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2mObject.md +0 -0
  812. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2mResourceObserve.md +0 -0
  813. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2mVersion.md +0 -0
  814. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Lwm2mControllerApi.md +0 -0
  815. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Lwm2mDeviceProfileTransportConfiguration.md +0 -0
  816. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Lwm2mDeviceTransportConfiguration.md +0 -0
  817. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MailConfigTemplateControllerApi.md +0 -0
  818. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MapperType.md +0 -0
  819. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Mapping.md +0 -0
  820. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MenuItem.md +0 -0
  821. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MenuItemType.md +0 -0
  822. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MergedGroupPermissionInfo.md +0 -0
  823. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MergedGroupTypePermissionInfo.md +0 -0
  824. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MergedUserPermissions.md +0 -0
  825. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MicrosoftTeamsDeliveryMethodNotificationTemplate.md +0 -0
  826. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MicrosoftTeamsNotificationTargetConfig.md +0 -0
  827. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MistralAiChatModelConfig.md +0 -0
  828. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MistralAiProviderConfig.md +0 -0
  829. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileApp.md +0 -0
  830. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppBundle.md +0 -0
  831. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppBundleControllerApi.md +0 -0
  832. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppBundleId.md +0 -0
  833. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppBundleInfo.md +0 -0
  834. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppControllerApi.md +0 -0
  835. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppDeliveryMethodNotificationTemplate.md +0 -0
  836. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppId.md +0 -0
  837. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppNotificationDeliveryMethodConfig.md +0 -0
  838. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppStatus.md +0 -0
  839. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppVersionInfo.md +0 -0
  840. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileLayoutConfig.md +0 -0
  841. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobilePage.md +0 -0
  842. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobilePageType.md +0 -0
  843. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileRedirectParams.md +0 -0
  844. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileSelfRegistrationParams.md +0 -0
  845. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileSessionInfo.md +0 -0
  846. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Model.md +0 -0
  847. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MonthInterval.md +0 -0
  848. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MqttDeviceProfileTransportConfiguration.md +0 -0
  849. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MqttDeviceTransportConfiguration.md +0 -0
  850. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NameConflictPolicy.md +0 -0
  851. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NewPlatformVersionNotificationRuleTriggerConfig.md +0 -0
  852. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NewPlatformVersionRecipientsConfig.md +0 -0
  853. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NoDataFilterPredicate.md +0 -0
  854. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NoSecLwM2MBootstrapServerCredential.md +0 -0
  855. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NodeConnectionInfo.md +0 -0
  856. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/None.md +0 -0
  857. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Notification.md +0 -0
  858. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationControllerApi.md +0 -0
  859. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationDeliveryMethod.md +0 -0
  860. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationDeliveryMethodConfig.md +0 -0
  861. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationId.md +0 -0
  862. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationInfo.md +0 -0
  863. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationPref.md +0 -0
  864. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequest.md +0 -0
  865. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestConfig.md +0 -0
  866. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestId.md +0 -0
  867. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestInfo.md +0 -0
  868. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestPreview.md +0 -0
  869. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestStats.md +0 -0
  870. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestStatus.md +0 -0
  871. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRule.md +0 -0
  872. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleConfig.md +0 -0
  873. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleControllerApi.md +0 -0
  874. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleExportData.md +0 -0
  875. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleId.md +0 -0
  876. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleInfo.md +0 -0
  877. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleRecipientsConfig.md +0 -0
  878. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleTriggerConfig.md +0 -0
  879. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleTriggerType.md +0 -0
  880. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationSettings.md +0 -0
  881. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationStatus.md +0 -0
  882. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTarget.md +0 -0
  883. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTargetConfig.md +0 -0
  884. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTargetControllerApi.md +0 -0
  885. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTargetExportData.md +0 -0
  886. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTargetId.md +0 -0
  887. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplate.md +0 -0
  888. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplateConfig.md +0 -0
  889. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplateControllerApi.md +0 -0
  890. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplateExportData.md +0 -0
  891. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplateId.md +0 -0
  892. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationType.md +0 -0
  893. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NumericFilterPredicate.md +0 -0
  894. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NumericOperation.md +0 -0
  895. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2BasicMapperConfig.md +0 -0
  896. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2Client.md +0 -0
  897. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientId.md +0 -0
  898. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientInfo.md +0 -0
  899. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientLoginInfo.md +0 -0
  900. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientRegistrationTemplate.md +0 -0
  901. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientRegistrationTemplateId.md +0 -0
  902. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ConfigTemplateControllerApi.md +0 -0
  903. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ControllerApi.md +0 -0
  904. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2CustomMapperConfig.md +0 -0
  905. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2MapperConfig.md +0 -0
  906. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ObjectAttributes.md +0 -0
  907. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ObjectType.md +0 -0
  908. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OllamaAuth.md +0 -0
  909. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OllamaChatModelConfig.md +0 -0
  910. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OllamaProviderConfig.md +0 -0
  911. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OpenAiChatModelConfig.md +0 -0
  912. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OpenAiProviderConfig.md +0 -0
  913. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Operation.md +0 -0
  914. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OriginatorEntityOwnerUsersFilter.md +0 -0
  915. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackage.md +0 -0
  916. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageControllerApi.md +0 -0
  917. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageExportData.md +0 -0
  918. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageId.md +0 -0
  919. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageInfo.md +0 -0
  920. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageType.md +0 -0
  921. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtherConfiguration.md +0 -0
  922. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Output.md +0 -0
  923. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OwnerControllerApi.md +0 -0
  924. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PSKLwM2MBootstrapServerCredential.md +0 -0
  925. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageBreakComponent.md +0 -0
  926. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAiModel.md +0 -0
  927. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmCommentInfo.md +0 -0
  928. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmData.md +0 -0
  929. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmInfo.md +0 -0
  930. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmRuleDefinition.md +0 -0
  931. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmRuleDefinitionInfo.md +0 -0
  932. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataApiKeyInfo.md +0 -0
  933. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAsset.md +0 -0
  934. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAssetInfo.md +0 -0
  935. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAssetProfile.md +0 -0
  936. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAssetProfileInfo.md +0 -0
  937. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAuditLog.md +0 -0
  938. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataBlobEntityWithCustomerInfo.md +0 -0
  939. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCalculatedField.md +0 -0
  940. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCalculatedFieldInfo.md +0 -0
  941. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataContactBasedObject.md +0 -0
  942. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataConverter.md +0 -0
  943. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCustomMenuInfo.md +0 -0
  944. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCustomer.md +0 -0
  945. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCustomerInfo.md +0 -0
  946. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDashboardInfo.md +0 -0
  947. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDevice.md +0 -0
  948. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDeviceInfo.md +0 -0
  949. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDeviceProfile.md +0 -0
  950. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDeviceProfileInfo.md +0 -0
  951. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDomainInfo.md +0 -0
  952. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEdge.md +0 -0
  953. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEdgeEvent.md +0 -0
  954. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEdgeInfo.md +0 -0
  955. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityData.md +0 -0
  956. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityGroupInfo.md +0 -0
  957. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityInfo.md +0 -0
  958. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntitySubtype.md +0 -0
  959. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityVersion.md +0 -0
  960. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityView.md +0 -0
  961. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityViewInfo.md +0 -0
  962. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEventInfo.md +0 -0
  963. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataIntegration.md +0 -0
  964. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataIntegrationInfo.md +0 -0
  965. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataJob.md +0 -0
  966. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataMobileApp.md +0 -0
  967. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataMobileAppBundleInfo.md +0 -0
  968. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotification.md +0 -0
  969. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotificationRequestInfo.md +0 -0
  970. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotificationRuleInfo.md +0 -0
  971. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotificationTarget.md +0 -0
  972. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotificationTemplate.md +0 -0
  973. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataOAuth2ClientInfo.md +0 -0
  974. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataOtaPackageInfo.md +0 -0
  975. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataQueue.md +0 -0
  976. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataQueueStats.md +0 -0
  977. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataReport.md +0 -0
  978. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataReportInfo.md +0 -0
  979. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataReportTemplateInfo.md +0 -0
  980. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataRole.md +0 -0
  981. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataRuleChain.md +0 -0
  982. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataScheduledReportInfo.md +0 -0
  983. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataSchedulerEventInfo.md +0 -0
  984. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataSchedulerEventWithCustomerInfo.md +0 -0
  985. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataSecretInfo.md +0 -0
  986. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataShortEntityView.md +0 -0
  987. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataString.md +0 -0
  988. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTbResourceInfo.md +0 -0
  989. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTenant.md +0 -0
  990. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTenantInfo.md +0 -0
  991. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTenantProfile.md +0 -0
  992. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTrendzViewConfigLite.md +0 -0
  993. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataUser.md +0 -0
  994. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataUserEmailInfo.md +0 -0
  995. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataUserInfo.md +0 -0
  996. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataWidgetTypeInfo.md +0 -0
  997. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataWidgetsBundle.md +0 -0
  998. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageOrientation.md +0 -0
  999. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageSize.md +0 -0
  1000. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Palette.md +0 -0
  1001. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PaletteSettings.md +0 -0
  1002. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PdfReportTemplateConfig.md +0 -0
  1003. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PieChartLabelPosition.md +0 -0
  1004. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PlatformTwoFaSettings.md +0 -0
  1005. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PlatformType.md +0 -0
  1006. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PlatformUsersNotificationTargetConfig.md +0 -0
  1007. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PowerMode.md +0 -0
  1008. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PowerSavingConfiguration.md +0 -0
  1009. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PrivacyProtocol.md +0 -0
  1010. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ProcessingStrategy.md +0 -0
  1011. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ProcessingStrategyType.md +0 -0
  1012. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ProductId.md +0 -0
  1013. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PropagationCalculatedFieldConfiguration.md +0 -0
  1014. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ProtoTransportPayloadConfiguration.md +0 -0
  1015. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QRCodeConfig.md +0 -0
  1016. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QrCodeSettings.md +0 -0
  1017. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QrCodeSettingsControllerApi.md +0 -0
  1018. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QrCodeSettingsId.md +0 -0
  1019. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QuarterInterval.md +0 -0
  1020. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Queue.md +0 -0
  1021. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueControllerApi.md +0 -0
  1022. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueId.md +0 -0
  1023. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueStats.md +0 -0
  1024. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueStatsControllerApi.md +0 -0
  1025. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueStatsId.md +0 -0
  1026. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QuickTimeInterval.md +0 -0
  1027. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RPKLwM2MBootstrapServerCredential.md +0 -0
  1028. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RateLimitsNotificationRuleTriggerConfig.md +0 -0
  1029. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RateLimitsRecipientsConfig.md +0 -0
  1030. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RawDataEventFilter.md +0 -0
  1031. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReadTsKvQueryResult.md +0 -0
  1032. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReferencedEntityKey.md +0 -0
  1033. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RefreshTokenRequest.md +0 -0
  1034. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelatedEntitiesAggregationCalculatedFieldConfiguration.md +0 -0
  1035. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationEntityTypeFilter.md +0 -0
  1036. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationPathLevel.md +0 -0
  1037. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationPathQueryDynamicSourceConfiguration.md +0 -0
  1038. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationTypeGroup.md +0 -0
  1039. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationsQueryFilter.md +0 -0
  1040. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationsSearchParameters.md +0 -0
  1041. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RepeatingAlarmCondition.md +0 -0
  1042. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Report.md +0 -0
  1043. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportBarChartSettings.md +0 -0
  1044. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportBarChartWithLabelsSettings.md +0 -0
  1045. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportComponent.md +0 -0
  1046. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportComponentSubType.md +0 -0
  1047. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportComponentType.md +0 -0
  1048. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportControllerApi.md +0 -0
  1049. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportDoughnutChartSettings.md +0 -0
  1050. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportId.md +0 -0
  1051. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportInfo.md +0 -0
  1052. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportJobConfiguration.md +0 -0
  1053. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportJobResult.md +0 -0
  1054. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportLatestChartSettings.md +0 -0
  1055. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportPieChartSettings.md +0 -0
  1056. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportRangeChartSettings.md +0 -0
  1057. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportRequest.md +0 -0
  1058. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTaskResult.md +0 -0
  1059. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplate.md +0 -0
  1060. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateConfig.md +0 -0
  1061. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateControllerApi.md +0 -0
  1062. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateExportData.md +0 -0
  1063. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateId.md +0 -0
  1064. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateInfo.md +0 -0
  1065. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateType.md +0 -0
  1066. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTimeSeriesChartSettings.md +0 -0
  1067. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RepositoryAuthMethod.md +0 -0
  1068. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RepositorySettings.md +0 -0
  1069. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RepositorySettingsInfo.md +0 -0
  1070. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResetPasswordEmailRequest.md +0 -0
  1071. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResetPasswordRequest.md +0 -0
  1072. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Resource.md +0 -0
  1073. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourceExportData.md +0 -0
  1074. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourceShortageRecipientsConfig.md +0 -0
  1075. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourceSubType.md +0 -0
  1076. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourceType.md +0 -0
  1077. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourcesShortageNotificationRuleTriggerConfig.md +0 -0
  1078. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RichTextComponent.md +0 -0
  1079. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Role.md +0 -0
  1080. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RoleControllerApi.md +0 -0
  1081. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RoleExportData.md +0 -0
  1082. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RoleId.md +0 -0
  1083. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RoleType.md +0 -0
  1084. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Rpc.md +0 -0
  1085. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RpcId.md +0 -0
  1086. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RpcStatus.md +0 -0
  1087. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RpcV1ControllerApi.md +0 -0
  1088. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RpcV2ControllerApi.md +0 -0
  1089. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChain.md +0 -0
  1090. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainConnectionInfo.md +0 -0
  1091. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainControllerApi.md +0 -0
  1092. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainData.md +0 -0
  1093. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainDebugEventFilter.md +0 -0
  1094. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainExportData.md +0 -0
  1095. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainId.md +0 -0
  1096. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainImportResult.md +0 -0
  1097. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainMetaData.md +0 -0
  1098. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainOutputLabelsUsage.md +0 -0
  1099. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainType.md +0 -0
  1100. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleEngineComponentLifecycleEventNotificationRuleTriggerConfig.md +0 -0
  1101. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleEngineComponentLifecycleEventRecipientsConfig.md +0 -0
  1102. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleEngineControllerApi.md +0 -0
  1103. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleNode.md +0 -0
  1104. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleNodeDebugEventFilter.md +0 -0
  1105. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleNodeId.md +0 -0
  1106. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SaveDeviceWithCredentialsRequest.md +0 -0
  1107. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SaveOtaPackageInfoRequest.md +0 -0
  1108. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ScheduledReportInfo.md +0 -0
  1109. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEvent.md +0 -0
  1110. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventControllerApi.md +0 -0
  1111. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventExportData.md +0 -0
  1112. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventFilter.md +0 -0
  1113. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventId.md +0 -0
  1114. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventInfo.md +0 -0
  1115. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventWithCustomerInfo.md +0 -0
  1116. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ScriptCalculatedFieldConfiguration.md +0 -0
  1117. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ScriptLanguage.md +0 -0
  1118. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Secret.md +0 -0
  1119. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecretControllerApi.md +0 -0
  1120. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecretId.md +0 -0
  1121. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecretInfo.md +0 -0
  1122. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecretType.md +0 -0
  1123. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecuritySettings.md +0 -0
  1124. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SelfRegistrationControllerApi.md +0 -0
  1125. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SelfRegistrationParams.md +0 -0
  1126. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SelfRegistrationType.md +0 -0
  1127. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ShareGroupRequest.md +0 -0
  1128. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SharedAttributesSettingSnmpCommunicationConfig.md +0 -0
  1129. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ShortCustomerInfo.md +0 -0
  1130. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ShortEntityView.md +0 -0
  1131. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpControllerApi.md +0 -0
  1132. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpField.md +0 -0
  1133. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpFieldId.md +0 -0
  1134. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpRequest.md +0 -0
  1135. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpResult.md +0 -0
  1136. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpSelfRegistrationParams.md +0 -0
  1137. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SimpleAlarmCondition.md +0 -0
  1138. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SimpleAlarmConditionExpression.md +0 -0
  1139. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SimpleCalculatedFieldConfiguration.md +0 -0
  1140. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SimpleEntity.md +0 -0
  1141. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SingleEntityFilter.md +0 -0
  1142. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SingleEntityVersionCreateRequest.md +0 -0
  1143. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SingleEntityVersionLoadRequest.md +0 -0
  1144. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackConversation.md +0 -0
  1145. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackConversationType.md +0 -0
  1146. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackDeliveryMethodNotificationTemplate.md +0 -0
  1147. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackNotificationDeliveryMethodConfig.md +0 -0
  1148. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackNotificationTargetConfig.md +0 -0
  1149. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmppBindType.md +0 -0
  1150. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmppSmsProviderConfiguration.md +0 -0
  1151. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmsDeliveryMethodNotificationTemplate.md +0 -0
  1152. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmsProviderConfiguration.md +0 -0
  1153. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmsTwoFaAccountConfig.md +0 -0
  1154. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmsTwoFaProviderConfig.md +0 -0
  1155. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpCommunicationConfig.md +0 -0
  1156. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpCommunicationSpec.md +0 -0
  1157. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpDeviceProfileTransportConfiguration.md +0 -0
  1158. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpDeviceTransportConfiguration.md +0 -0
  1159. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpMapping.md +0 -0
  1160. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpProtocolVersion.md +0 -0
  1161. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionControllerApi.md +0 -0
  1162. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionData.md +0 -0
  1163. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionExportImportControllerApi.md +0 -0
  1164. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionExportRequest.md +0 -0
  1165. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionExportResponse.md +0 -0
  1166. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionImportResult.md +0 -0
  1167. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionInstallResponse.md +0 -0
  1168. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionStep.md +0 -0
  1169. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionTemplateLevel.md +0 -0
  1170. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionValidationResult.md +0 -0
  1171. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SpecificTimeSchedule.md +0 -0
  1172. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SplitViewComponent.md +0 -0
  1173. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StarredDashboardInfo.md +0 -0
  1174. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StateEntityFilter.md +0 -0
  1175. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StateEntityOwnerFilter.md +0 -0
  1176. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StatisticsEventFilter.md +0 -0
  1177. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StoreInfo.md +0 -0
  1178. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StringFilterPredicate.md +0 -0
  1179. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StringOperation.md +0 -0
  1180. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubReportComponent.md +0 -0
  1181. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubmitStrategy.md +0 -0
  1182. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubmitStrategyType.md +0 -0
  1183. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionAddonId.md +0 -0
  1184. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionControllerApi.md +0 -0
  1185. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionDetails.md +0 -0
  1186. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionEntry.md +0 -0
  1187. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionExceptionErrorCode.md +0 -0
  1188. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionId.md +0 -0
  1189. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionItems.md +0 -0
  1190. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionPlanId.md +0 -0
  1191. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionUsage.md +0 -0
  1192. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Success.md +0 -0
  1193. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SyncStrategy.md +0 -0
  1194. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SystemAdministratorsFilter.md +0 -0
  1195. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SystemInfo.md +0 -0
  1196. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SystemInfoData.md +0 -0
  1197. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TableSortDirection.md +0 -0
  1198. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TableSortOrder.md +0 -0
  1199. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TaskProcessingFailureNotificationRuleTriggerConfig.md +0 -0
  1200. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TaskProcessingFailureRecipientsConfig.md +0 -0
  1201. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TaskResult.md +0 -0
  1202. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbChatRequest.md +0 -0
  1203. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbChatResponse.md +0 -0
  1204. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbContent.md +0 -0
  1205. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbImageDeleteResult.md +0 -0
  1206. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbReportFormat.md +0 -0
  1207. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResource.md +0 -0
  1208. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceControllerApi.md +0 -0
  1209. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceDeleteResult.md +0 -0
  1210. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceExportData.md +0 -0
  1211. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceId.md +0 -0
  1212. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceInfo.md +0 -0
  1213. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbSecretDeleteResult.md +0 -0
  1214. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbTextContent.md +0 -0
  1215. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbUserMessage.md +0 -0
  1216. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbelAlarmConditionExpression.md +0 -0
  1217. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryControllerApi.md +0 -0
  1218. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryEntityView.md +0 -0
  1219. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryMappingConfiguration.md +0 -0
  1220. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryObserveStrategy.md +0 -0
  1221. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryQueryingSnmpCommunicationConfig.md +0 -0
  1222. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Tenant.md +0 -0
  1223. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantAddonData.md +0 -0
  1224. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantAdministratorsFilter.md +0 -0
  1225. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantControllerApi.md +0 -0
  1226. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantId.md +0 -0
  1227. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantInfo.md +0 -0
  1228. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantNameStrategyType.md +0 -0
  1229. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfile.md +0 -0
  1230. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileConfiguration.md +0 -0
  1231. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileControllerApi.md +0 -0
  1232. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileData.md +0 -0
  1233. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileId.md +0 -0
  1234. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileQueueConfiguration.md +0 -0
  1235. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantSolutionTemplateDetails.md +0 -0
  1236. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantSolutionTemplateInfo.md +0 -0
  1237. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantSolutionTemplateInstructions.md +0 -0
  1238. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TestSmsRequest.md +0 -0
  1239. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TextAlignment.md +0 -0
  1240. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThingsboardClient.java +0 -0
  1241. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThingsboardCredentialsExpiredResponse.md +0 -0
  1242. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThingsboardErrorCode.md +0 -0
  1243. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThingsboardErrorResponse.md +0 -0
  1244. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThresholdLabelPosition.md +0 -0
  1245. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartBarWidth.md +0 -0
  1246. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartBarWidthSettings.md +0 -0
  1247. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartGridSettings.md +0 -0
  1248. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartKeySettings.md +0 -0
  1249. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartNoAggregationBarWidthSettings.md +0 -0
  1250. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartNoAggregationBarWidthStrategy.md +0 -0
  1251. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartSeriesType.md +0 -0
  1252. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartStateSettings.md +0 -0
  1253. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartStateSourceType.md +0 -0
  1254. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartThreshold.md +0 -0
  1255. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartXAxisSettings.md +0 -0
  1256. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartYAxisSettings.md +0 -0
  1257. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesImmediateOutputStrategy.md +0 -0
  1258. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesOutput.md +0 -0
  1259. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesOutputStrategy.md +0 -0
  1260. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesRuleChainOutputStrategy.md +0 -0
  1261. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeUnit.md +0 -0
  1262. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeWindowConfiguration.md +0 -0
  1263. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeseriesChartComponent.md +0 -0
  1264. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeseriesTableComponent.md +0 -0
  1265. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ToCoreEdqsRequest.md +0 -0
  1266. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ToDeviceRpcRequestSnmpCommunicationConfig.md +0 -0
  1267. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ToServerRpcRequestSnmpCommunicationConfig.md +0 -0
  1268. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Token.md +0 -0
  1269. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TotpTwoFaAccountConfig.md +0 -0
  1270. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TotpTwoFaProviderConfig.md +0 -0
  1271. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TranslationControllerApi.md +0 -0
  1272. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TranslationInfo.md +0 -0
  1273. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TransportPayloadTypeConfiguration.md +0 -0
  1274. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzApiControllerApi.md +0 -0
  1275. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzConfiguration.md +0 -0
  1276. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzControllerApi.md +0 -0
  1277. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzHealthcheckResult.md +0 -0
  1278. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzSummary.md +0 -0
  1279. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzSynchronizationResult.md +0 -0
  1280. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzSynchronizationResultType.md +0 -0
  1281. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzSynchronizationStatus.md +0 -0
  1282. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzUsage.md +0 -0
  1283. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzViewConfig.md +0 -0
  1284. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzViewConfigLite.md +0 -0
  1285. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TsData.md +0 -0
  1286. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TsKvEntry.md +0 -0
  1287. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TsValue.md +0 -0
  1288. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwilioSmsProviderConfiguration.md +0 -0
  1289. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaAccountConfig.md +0 -0
  1290. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaAccountConfigUpdateRequest.md +0 -0
  1291. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaProviderConfig.md +0 -0
  1292. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaProviderInfo.md +0 -0
  1293. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaProviderType.md +0 -0
  1294. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFactorAuthConfigControllerApi.md +0 -0
  1295. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFactorAuthControllerApi.md +0 -0
  1296. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UiSettingsControllerApi.md +0 -0
  1297. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UniquifyStrategy.md +0 -0
  1298. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UpdateMessage.md +0 -0
  1299. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UsageInfo.md +0 -0
  1300. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UsageInfoControllerApi.md +0 -0
  1301. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/User.md +0 -0
  1302. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserActivationLink.md +0 -0
  1303. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserControllerApi.md +0 -0
  1304. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserDashboardsInfo.md +0 -0
  1305. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserEmailInfo.md +0 -0
  1306. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserGroupListFilter.md +0 -0
  1307. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserId.md +0 -0
  1308. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserInfo.md +0 -0
  1309. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserListFilter.md +0 -0
  1310. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserMobileInfo.md +0 -0
  1311. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserNotificationSettings.md +0 -0
  1312. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserPasswordPolicy.md +0 -0
  1313. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserPermissionsControllerApi.md +0 -0
  1314. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserRoleFilter.md +0 -0
  1315. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UsersFilter.md +0 -0
  1316. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/V2CaptchaParams.md +0 -0
  1317. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/V3CaptchaParams.md +0 -0
  1318. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ValueSourceType.md +0 -0
  1319. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Vendor.md +0 -0
  1320. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionCreateConfig.md +0 -0
  1321. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionCreateRequest.md +0 -0
  1322. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionCreateRequestType.md +0 -0
  1323. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionCreationResult.md +0 -0
  1324. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionLoadConfig.md +0 -0
  1325. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionLoadRequest.md +0 -0
  1326. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionLoadRequestType.md +0 -0
  1327. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionLoadResult.md +0 -0
  1328. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionedEntityInfo.md +0 -0
  1329. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VerticalAlignment.md +0 -0
  1330. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Watermark.md +0 -0
  1331. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WebDeliveryMethodNotificationTemplate.md +0 -0
  1332. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WebSelfRegistrationParams.md +0 -0
  1333. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WebViewPage.md +0 -0
  1334. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WeekInterval.md +0 -0
  1335. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WeekSunSatInterval.md +0 -0
  1336. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WhiteLabeling.md +0 -0
  1337. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WhiteLabelingControllerApi.md +0 -0
  1338. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WhiteLabelingParams.md +0 -0
  1339. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WhiteLabelingType.md +0 -0
  1340. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetBundleInfo.md +0 -0
  1341. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetType.md +0 -0
  1342. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeControllerApi.md +0 -0
  1343. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeDetails.md +0 -0
  1344. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeExportData.md +0 -0
  1345. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeId.md +0 -0
  1346. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeInfo.md +0 -0
  1347. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetsBundle.md +0 -0
  1348. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetsBundleControllerApi.md +0 -0
  1349. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetsBundleExportData.md +0 -0
  1350. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetsBundleId.md +0 -0
  1351. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/X509CertificateChainProvisionConfiguration.md +0 -0
  1352. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/X509LwM2MBootstrapServerCredential.md +0 -0
  1353. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/YearInterval.md +0 -0
  1354. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ZoneGroupConfiguration.md +0 -0
  1355. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/tb-examples.md +0 -0
  1356. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/application.yml +0 -0
  1357. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/docker/start-extension.sh +0 -0
  1358. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/logback.xml +0 -0
  1359. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/ThingsboardExtensionApplication.class +0 -0
  1360. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/GlobalExceptionHandler.class +0 -0
  1361. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/HealthController.class +0 -0
  1362. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/OpenApiConfig.class +0 -0
  1363. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/RequestLoggingFilter.class +0 -0
  1364. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/SchedulingConfig.class +0 -0
  1365. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/SecurityConfig.class +0 -0
  1366. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/TbAuthentication.class +0 -0
  1367. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/TbSecurity.class +0 -0
  1368. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/TbSecurityFilter.class +0 -0
  1369. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/TbSecurityUser.class +0 -0
  1370. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/ThingsboardAuthConfig.class +0 -0
  1371. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/ThingsboardClientProvider.class +0 -0
  1372. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/org/thingsboard/extension/config/WebConfig.class +0 -0
  1373. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/dependency-maven-plugin-markers/org.thingsboard.client-thingsboard-paas-client-jar-4.3.1.2-898578207 +0 -0
  1374. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/dependency-maven-plugin-markers/org.thingsboard.client-thingsboard-paas-client-jar-sources-4.3.1.21164361615 +0 -0
  1375. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/maven-archiver/pom.properties +0 -0
  1376. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +0 -0
  1377. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +0 -0
  1378. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +0 -0
  1379. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +0 -0
  1380. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/ApplicationIntegrationTest.class +0 -0
  1381. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/PreAuthorizeIntegrationTest.class +0 -0
  1382. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/TestUtils$1.class +0 -0
  1383. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/TestUtils.class +0 -0
  1384. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/config/GlobalExceptionHandlerTest.class +0 -0
  1385. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/config/RequestLoggingFilterTest.class +0 -0
  1386. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/config/TbAuthenticationTest.class +0 -0
  1387. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/config/TbSecurityFilterTest$1.class +0 -0
  1388. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/config/TbSecurityFilterTest.class +0 -0
  1389. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/config/TbSecurityUserTest.class +0 -0
  1390. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/test-classes/org/thingsboard/extension/config/ThingsboardClientProviderTest.class +0 -0
  1391. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/thingsboard-extension-1.0.0-SNAPSHOT.jar +0 -0
  1392. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/thingsboard-extension-1.0.0-SNAPSHOT.jar.original +0 -0
  1393. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/pom.xml +0 -0
  1394. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scaffold/.gitignore +0 -0
  1395. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/agents/asset-profiles-generator.md +0 -0
  1396. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/agents/assets-generator.md +0 -0
  1397. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/agents/customers-generator.md +0 -0
  1398. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/agents/device-profiles-generator.md +0 -0
  1399. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/agents/devices-generator.md +0 -0
  1400. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/agents/instance-entity-discoverer.md +0 -0
  1401. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/agents/relations-generator.md +0 -0
  1402. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/agents/wiring-executor.md +0 -0
  1403. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/examples/dashboards/building_systems_administration.json +0 -0
  1404. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/examples/dashboards/coffee_machine_administration.json +0 -0
  1405. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/examples/dashboards/facility_operations_dashboard.json +0 -0
  1406. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/skills/.gitkeep +0 -0
  1407. {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/skills/create-extension/SKILL.md +0 -0
  1408. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/check-extension-env.sh +0 -0
  1409. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/generate-help.sh +0 -0
  1410. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/generate_help.py +0 -0
  1411. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/release.sh +0 -0
  1412. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/sync-ai-resources.sh +0 -0
  1413. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/sync-extension-starter.sh +0 -0
  1414. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/update_resources_manifest.py +0 -0
  1415. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/update_scaffold_hash.py +0 -0
  1416. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/__init__.py +0 -0
  1417. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/__init__.py +0 -0
  1418. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/_pagination.py +0 -0
  1419. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/alarm.py +0 -0
  1420. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/alarm_rule.py +0 -0
  1421. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/asset.py +0 -0
  1422. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/asset_profile.py +0 -0
  1423. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/attributes.py +0 -0
  1424. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/calculated_field.py +0 -0
  1425. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/config.py +0 -0
  1426. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/customer.py +0 -0
  1427. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/dashboard.py +0 -0
  1428. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/device.py +0 -0
  1429. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/device_profile.py +0 -0
  1430. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/emulator.py +0 -0
  1431. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/entity_group.py +0 -0
  1432. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/extension.py +0 -0
  1433. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/pull.py +0 -0
  1434. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/relation.py +0 -0
  1435. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/role.py +0 -0
  1436. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/rule_chain.py +0 -0
  1437. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/solution.py +0 -0
  1438. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/telemetry.py +0 -0
  1439. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/user.py +0 -0
  1440. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/common/__init__.py +0 -0
  1441. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/common/options.py +0 -0
  1442. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/common/utils.py +0 -0
  1443. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/config/__init__.py +0 -0
  1444. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/config/manager.py +0 -0
  1445. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/config/models.py +0 -0
  1446. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/config/resolver.py +0 -0
  1447. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/__init__.py +0 -0
  1448. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/assembler.py +0 -0
  1449. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/client.py +0 -0
  1450. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/debug.py +0 -0
  1451. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/decomposer.py +0 -0
  1452. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/emulator/__init__.py +0 -0
  1453. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/emulator/generators.py +0 -0
  1454. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/emulator/models.py +0 -0
  1455. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/emulator/runtime.py +0 -0
  1456. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/exceptions.py +0 -0
  1457. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/extension_manifest.py +0 -0
  1458. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/extension_starter_unpacker.py +0 -0
  1459. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/git_dirty.py +0 -0
  1460. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/__init__.py +0 -0
  1461. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/app.py +0 -0
  1462. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/confirm.py +0 -0
  1463. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/formatting.py +0 -0
  1464. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/listing.py +0 -0
  1465. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/loader.py +0 -0
  1466. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/owner.py +0 -0
  1467. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/picker.tcss +0 -0
  1468. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/rows.py +0 -0
  1469. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/search.py +0 -0
  1470. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/sections.py +0 -0
  1471. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/state.py +0 -0
  1472. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/theme.py +0 -0
  1473. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/local.py +0 -0
  1474. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/maven_runner.py +0 -0
  1475. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/output.py +0 -0
  1476. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/payload.py +0 -0
  1477. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/resolver.py +0 -0
  1478. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/resources.py +0 -0
  1479. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/update.py +0 -0
  1480. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/__init__.py +0 -0
  1481. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/__init__.py +0 -0
  1482. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/__init__.py +0 -0
  1483. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/admin.py +0 -0
  1484. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/ai_device_dashboard.py +0 -0
  1485. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/ai_model.py +0 -0
  1486. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/ai_solution.py +0 -0
  1487. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/ai_tool.py +0 -0
  1488. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/alarm_comment.py +0 -0
  1489. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/alarm_rule.py +0 -0
  1490. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/api_key.py +0 -0
  1491. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/asset.py +0 -0
  1492. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/asset_profile.py +0 -0
  1493. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/audit_log.py +0 -0
  1494. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/auth.py +0 -0
  1495. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/blob_entity.py +0 -0
  1496. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/calculated_field.py +0 -0
  1497. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/component_descriptor.py +0 -0
  1498. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/converter.py +0 -0
  1499. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/converter_library.py +0 -0
  1500. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/custom_menu.py +0 -0
  1501. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/custom_translation.py +0 -0
  1502. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/customer.py +0 -0
  1503. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/dashboard.py +0 -0
  1504. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/dashboard_report.py +0 -0
  1505. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/device.py +0 -0
  1506. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/device_connectivity.py +0 -0
  1507. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/device_group_ota_package.py +0 -0
  1508. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/device_profile.py +0 -0
  1509. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/domain.py +0 -0
  1510. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/edge.py +0 -0
  1511. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/edge_event.py +0 -0
  1512. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/entities_version_control.py +0 -0
  1513. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/entity_query.py +0 -0
  1514. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/entity_relation.py +0 -0
  1515. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/entity_view.py +0 -0
  1516. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/event.py +0 -0
  1517. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/group_permission.py +0 -0
  1518. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/image.py +0 -0
  1519. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/job.py +0 -0
  1520. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/lwm2m.py +0 -0
  1521. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/mail_config_template.py +0 -0
  1522. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/mobile_app.py +0 -0
  1523. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/mobile_app_bundle.py +0 -0
  1524. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/notification.py +0 -0
  1525. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/notification_rule.py +0 -0
  1526. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/notification_target.py +0 -0
  1527. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/notification_template.py +0 -0
  1528. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/oauth2.py +0 -0
  1529. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/oauth2_config_template.py +0 -0
  1530. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/ota_package.py +0 -0
  1531. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/owner.py +0 -0
  1532. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/qr_code_settings.py +0 -0
  1533. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/queue.py +0 -0
  1534. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/queue_stats.py +0 -0
  1535. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/report.py +0 -0
  1536. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/report_template.py +0 -0
  1537. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/role.py +0 -0
  1538. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/rpc_v1.py +0 -0
  1539. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/rpc_v2.py +0 -0
  1540. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/rule_chain.py +0 -0
  1541. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/rule_engine.py +0 -0
  1542. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/scheduler_event.py +0 -0
  1543. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/secret.py +0 -0
  1544. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/self_registration.py +0 -0
  1545. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/sign_up.py +0 -0
  1546. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/solution.py +0 -0
  1547. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/solution_export_import.py +0 -0
  1548. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/tb_resource.py +0 -0
  1549. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/telemetry.py +0 -0
  1550. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/tenant.py +0 -0
  1551. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/tenant_profile.py +0 -0
  1552. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/translation.py +0 -0
  1553. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/trendz.py +0 -0
  1554. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/trendz_api.py +0 -0
  1555. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/two_factor_auth.py +0 -0
  1556. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/two_factor_auth_config.py +0 -0
  1557. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/ui_settings.py +0 -0
  1558. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/usage_info.py +0 -0
  1559. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/user.py +0 -0
  1560. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/user_permissions.py +0 -0
  1561. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/white_labeling.py +0 -0
  1562. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/widget_type.py +0 -0
  1563. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/widgets_bundle.py +0 -0
  1564. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/__init__.py +0 -0
  1565. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/account_two_fa_settings.py +0 -0
  1566. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/action.py +0 -0
  1567. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/action_status.py +0 -0
  1568. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/action_type.py +0 -0
  1569. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/activate_user_request.py +0 -0
  1570. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/admin_settings.py +0 -0
  1571. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/admin_settings_id.py +0 -0
  1572. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/affected_tenant_administrators_filter.py +0 -0
  1573. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/affected_user_filter.py +0 -0
  1574. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/agg_function.py +0 -0
  1575. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/agg_function_input.py +0 -0
  1576. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/agg_input.py +0 -0
  1577. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/agg_interval.py +0 -0
  1578. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/agg_key_input.py +0 -0
  1579. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/agg_metric.py +0 -0
  1580. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/aggregation.py +0 -0
  1581. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/aggregation_configuration.py +0 -0
  1582. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/aggregation_params.py +0 -0
  1583. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ai_chat_model_config.py +0 -0
  1584. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ai_chat_model_config_object.py +0 -0
  1585. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ai_model.py +0 -0
  1586. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ai_model_config.py +0 -0
  1587. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ai_model_export_data.py +0 -0
  1588. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ai_model_id.py +0 -0
  1589. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ai_model_type.py +0 -0
  1590. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm.py +0 -0
  1591. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_action.py +0 -0
  1592. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_assignee.py +0 -0
  1593. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_assignment_notification_rule_trigger_config.py +0 -0
  1594. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_assignment_recipients_config.py +0 -0
  1595. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_calculated_field_configuration.py +0 -0
  1596. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_comment.py +0 -0
  1597. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_comment_id.py +0 -0
  1598. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_comment_info.py +0 -0
  1599. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_comment_notification_rule_trigger_config.py +0 -0
  1600. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_comment_recipients_config.py +0 -0
  1601. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_comment_type.py +0 -0
  1602. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition.py +0 -0
  1603. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_expression.py +0 -0
  1604. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_filter.py +0 -0
  1605. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_filter_key.py +0 -0
  1606. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_key_type.py +0 -0
  1607. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_spec.py +0 -0
  1608. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_value_alarm_rule_schedule.py +0 -0
  1609. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_value_alarm_schedule.py +0 -0
  1610. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_value_boolean.py +0 -0
  1611. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_value_double.py +0 -0
  1612. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_value_integer.py +0 -0
  1613. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_value_long.py +0 -0
  1614. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_condition_value_string.py +0 -0
  1615. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_count_query.py +0 -0
  1616. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_data.py +0 -0
  1617. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_data_page_link.py +0 -0
  1618. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_data_query.py +0 -0
  1619. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_filter_config.py +0 -0
  1620. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_id.py +0 -0
  1621. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_info.py +0 -0
  1622. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_notification_rule_trigger_config.py +0 -0
  1623. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule.py +0 -0
  1624. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_any_time_schedule.py +0 -0
  1625. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_boolean_filter_predicate.py +0 -0
  1626. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_boolean_operation.py +0 -0
  1627. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_complex_filter_predicate.py +0 -0
  1628. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_complex_operation.py +0 -0
  1629. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_condition.py +0 -0
  1630. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_custom_time_schedule_item.py +0 -0
  1631. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_definition.py +0 -0
  1632. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_definition_info.py +0 -0
  1633. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_duration_condition.py +0 -0
  1634. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_key_filter_predicate.py +0 -0
  1635. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_no_data_filter_predicate.py +0 -0
  1636. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_numeric_filter_predicate.py +0 -0
  1637. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_numeric_operation.py +0 -0
  1638. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_repeating_condition.py +0 -0
  1639. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_schedule.py +0 -0
  1640. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_simple_condition.py +0 -0
  1641. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_string_filter_predicate.py +0 -0
  1642. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_rule_string_operation.py +0 -0
  1643. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_schedule.py +0 -0
  1644. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_schedule_type.py +0 -0
  1645. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_search_status.py +0 -0
  1646. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_severity.py +0 -0
  1647. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_status.py +0 -0
  1648. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm_table_component.py +0 -0
  1649. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alias_entity_id.py +0 -0
  1650. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alias_entity_type.py +0 -0
  1651. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/all_users_filter.py +0 -0
  1652. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/allow_create_new_devices_device_profile_provision_configuration.py +0 -0
  1653. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/allowed_permissions_info.py +0 -0
  1654. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/amazon_bedrock_chat_model_config.py +0 -0
  1655. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/amazon_bedrock_provider_config.py +0 -0
  1656. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/anthropic_chat_model_config.py +0 -0
  1657. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/anthropic_provider_config.py +0 -0
  1658. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/any_time_schedule.py +0 -0
  1659. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/api_feature.py +0 -0
  1660. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/api_key.py +0 -0
  1661. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/api_key_id.py +0 -0
  1662. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/api_key_info.py +0 -0
  1663. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/api_usage_limit_notification_rule_trigger_config.py +0 -0
  1664. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/api_usage_limit_recipients_config.py +0 -0
  1665. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/api_usage_state_filter.py +0 -0
  1666. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/api_usage_state_id.py +0 -0
  1667. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/api_usage_state_value.py +0 -0
  1668. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/argument.py +0 -0
  1669. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/argument_type.py +0 -0
  1670. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset.py +0 -0
  1671. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_export_data.py +0 -0
  1672. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_id.py +0 -0
  1673. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_info.py +0 -0
  1674. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_profile.py +0 -0
  1675. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_profile_export_data.py +0 -0
  1676. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_profile_id.py +0 -0
  1677. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_profile_info.py +0 -0
  1678. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_search_query.py +0 -0
  1679. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_search_query_filter.py +0 -0
  1680. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset_type_filter.py +0 -0
  1681. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/attribute_data.py +0 -0
  1682. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/attribute_export_data.py +0 -0
  1683. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/attribute_scope.py +0 -0
  1684. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/attributes_entity_view.py +0 -0
  1685. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/attributes_immediate_output_strategy.py +0 -0
  1686. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/attributes_output.py +0 -0
  1687. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/attributes_output_strategy.py +0 -0
  1688. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/attributes_rule_chain_output_strategy.py +0 -0
  1689. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/audit_log.py +0 -0
  1690. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/audit_log_id.py +0 -0
  1691. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/authentication_protocol.py +0 -0
  1692. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/authority.py +0 -0
  1693. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/auto_version_create_config.py +0 -0
  1694. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/available_entity_keys.py +0 -0
  1695. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/available_entity_keys_v2.py +0 -0
  1696. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/aws_sns_sms_provider_configuration.py +0 -0
  1697. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/axis_position.py +0 -0
  1698. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/azure_open_ai_chat_model_config.py +0 -0
  1699. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/azure_open_ai_provider_config.py +0 -0
  1700. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/backup_code_two_fa_account_config.py +0 -0
  1701. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/backup_code_two_fa_provider_config.py +0 -0
  1702. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/badge_position.py +0 -0
  1703. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/bar_series_settings.py +0 -0
  1704. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/base_read_ts_kv_query.py +0 -0
  1705. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/basic.py +0 -0
  1706. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/blob_entity_id.py +0 -0
  1707. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/blob_entity_info.py +0 -0
  1708. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/blob_entity_with_customer_info.py +0 -0
  1709. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/boolean_filter_predicate.py +0 -0
  1710. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/boolean_operation.py +0 -0
  1711. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/border_length.py +0 -0
  1712. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/border_type.py +0 -0
  1713. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/branch_info.py +0 -0
  1714. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/bulk_import_column_type.py +0 -0
  1715. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/bulk_import_request.py +0 -0
  1716. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/bulk_import_result_asset.py +0 -0
  1717. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/bulk_import_result_device.py +0 -0
  1718. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/bulk_import_result_edge.py +0 -0
  1719. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/button.py +0 -0
  1720. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/calculated_field.py +0 -0
  1721. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/calculated_field_configuration.py +0 -0
  1722. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/calculated_field_debug_event_filter.py +0 -0
  1723. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/calculated_field_id.py +0 -0
  1724. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/calculated_field_info.py +0 -0
  1725. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/calculated_field_type.py +0 -0
  1726. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/captcha_params.py +0 -0
  1727. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cell_settings.py +0 -0
  1728. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cf_argument_dynamic_source_configuration.py +0 -0
  1729. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cf_reprocessing_task_failure.py +0 -0
  1730. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cf_reprocessing_task_result.py +0 -0
  1731. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cf_reprocessing_validation_result.py +0 -0
  1732. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/change_password_request.py +0 -0
  1733. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/chart_fill_settings.py +0 -0
  1734. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/chart_fill_settings_gradient.py +0 -0
  1735. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/chart_fill_type.py +0 -0
  1736. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/chart_label_position.py +0 -0
  1737. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/chart_line_type.py +0 -0
  1738. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/chart_shape.py +0 -0
  1739. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/chat_type.py +0 -0
  1740. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/check_pre_provisioned_devices_device_profile_provision_configuration.py +0 -0
  1741. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/checksum_algorithm.py +0 -0
  1742. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/claim_request.py +0 -0
  1743. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/clear_rule.py +0 -0
  1744. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/client_attributes_querying_snmp_communication_config.py +0 -0
  1745. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cmassignee_type.py +0 -0
  1746. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cmitem_link_type.py +0 -0
  1747. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cmitem_type.py +0 -0
  1748. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cmscope.py +0 -0
  1749. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/coap_device_profile_transport_configuration.py +0 -0
  1750. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/coap_device_transport_configuration.py +0 -0
  1751. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/coap_device_type_configuration.py +0 -0
  1752. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/color_range.py +0 -0
  1753. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/column_mapping.py +0 -0
  1754. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/column_settings.py +0 -0
  1755. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/comparison_duration.py +0 -0
  1756. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/comparison_ts_value.py +0 -0
  1757. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/complex_filter_predicate.py +0 -0
  1758. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/complex_operation.py +0 -0
  1759. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/complex_version_create_request.py +0 -0
  1760. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/component_clustering_mode.py +0 -0
  1761. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/component_descriptor.py +0 -0
  1762. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/component_descriptor_id.py +0 -0
  1763. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/component_lifecycle_event.py +0 -0
  1764. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/component_scope.py +0 -0
  1765. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/component_type.py +0 -0
  1766. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/contact_based_object.py +0 -0
  1767. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/converter.py +0 -0
  1768. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/converter_export_data.py +0 -0
  1769. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/converter_id.py +0 -0
  1770. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/converter_type.py +0 -0
  1771. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/converters_info.py +0 -0
  1772. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/create_report_request.py +0 -0
  1773. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/csv_report_template_config.py +0 -0
  1774. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/current_owner_dynamic_source_configuration.py +0 -0
  1775. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_interval.py +0 -0
  1776. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_menu.py +0 -0
  1777. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_menu_config.py +0 -0
  1778. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_menu_delete_result.py +0 -0
  1779. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_menu_id.py +0 -0
  1780. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_menu_info.py +0 -0
  1781. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_menu_item.py +0 -0
  1782. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_mobile_page.py +0 -0
  1783. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_time_schedule.py +0 -0
  1784. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/custom_time_schedule_item.py +0 -0
  1785. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/customer.py +0 -0
  1786. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/customer_export_data.py +0 -0
  1787. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/customer_id.py +0 -0
  1788. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/customer_info.py +0 -0
  1789. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/customer_users_filter.py +0 -0
  1790. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dashboard_component.py +0 -0
  1791. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dashboard_export_data.py +0 -0
  1792. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dashboard_id.py +0 -0
  1793. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dashboard_page.py +0 -0
  1794. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dashboard_report_config.py +0 -0
  1795. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/data_key.py +0 -0
  1796. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/data_key_comparison_settings.py +0 -0
  1797. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/data_key_settings.py +0 -0
  1798. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/data_key_settings_type.py +0 -0
  1799. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/data_source.py +0 -0
  1800. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/data_source_type.py +0 -0
  1801. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/data_type.py +0 -0
  1802. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/day_interval.py +0 -0
  1803. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/debug_converter_event_filter.py +0 -0
  1804. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/debug_integration_event_filter.py +0 -0
  1805. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/debug_settings.py +0 -0
  1806. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_coap_device_type_configuration.py +0 -0
  1807. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_dashboard_params.py +0 -0
  1808. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_data_key_settings.py +0 -0
  1809. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_device_configuration.py +0 -0
  1810. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_device_profile_configuration.py +0 -0
  1811. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_device_profile_transport_configuration.py +0 -0
  1812. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_device_transport_configuration.py +0 -0
  1813. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_menu_item.py +0 -0
  1814. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_mobile_page.py +0 -0
  1815. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_page_id.py +0 -0
  1816. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_rule_chain_create_request.py +0 -0
  1817. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/default_tenant_profile_configuration.py +0 -0
  1818. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/delivery_method_notification_template.py +0 -0
  1819. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device.py +0 -0
  1820. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_activity_notification_rule_trigger_config.py +0 -0
  1821. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_activity_recipients_config.py +0 -0
  1822. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_configuration.py +0 -0
  1823. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_credentials.py +0 -0
  1824. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_credentials_id.py +0 -0
  1825. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_credentials_type.py +0 -0
  1826. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_data.py +0 -0
  1827. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_event.py +0 -0
  1828. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_export_data.py +0 -0
  1829. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_group_ota_package.py +0 -0
  1830. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_id.py +0 -0
  1831. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_info.py +0 -0
  1832. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_profile_configuration.py +0 -0
  1833. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_profile_export_data.py +0 -0
  1834. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_profile_id.py +0 -0
  1835. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_profile_info.py +0 -0
  1836. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_profile_provision_configuration.py +0 -0
  1837. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_profile_provision_type.py +0 -0
  1838. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_profile_type.py +0 -0
  1839. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_search_query.py +0 -0
  1840. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_search_query_filter.py +0 -0
  1841. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_transport_configuration.py +0 -0
  1842. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_transport_type.py +0 -0
  1843. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device_type_filter.py +0 -0
  1844. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/direction.py +0 -0
  1845. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/disabled_device_profile_provision_configuration.py +0 -0
  1846. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/divider_component.py +0 -0
  1847. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/domain.py +0 -0
  1848. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/domain_id.py +0 -0
  1849. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/domain_info.py +0 -0
  1850. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/doughnut_layout.py +0 -0
  1851. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dummy_task_failure.py +0 -0
  1852. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dummy_task_result.py +0 -0
  1853. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/duration_alarm_condition.py +0 -0
  1854. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/duration_alarm_condition_spec.py +0 -0
  1855. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dynamic_value_boolean.py +0 -0
  1856. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dynamic_value_double.py +0 -0
  1857. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dynamic_value_integer.py +0 -0
  1858. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dynamic_value_long.py +0 -0
  1859. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dynamic_value_source_type.py +0 -0
  1860. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/dynamic_value_string.py +0 -0
  1861. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge.py +0 -0
  1862. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_communication_failure_notification_rule_trigger_config.py +0 -0
  1863. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_communication_failure_recipients_config.py +0 -0
  1864. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_connection_notification_rule_trigger_config.py +0 -0
  1865. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_connection_recipients_config.py +0 -0
  1866. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_connectivity_event.py +0 -0
  1867. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_event.py +0 -0
  1868. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_event_action_type.py +0 -0
  1869. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_event_id.py +0 -0
  1870. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_event_type.py +0 -0
  1871. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_id.py +0 -0
  1872. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_info.py +0 -0
  1873. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_instructions.py +0 -0
  1874. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_search_query.py +0 -0
  1875. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_search_query_filter.py +0 -0
  1876. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge_type_filter.py +0 -0
  1877. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edqs_api_mode.py +0 -0
  1878. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edqs_state.py +0 -0
  1879. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edqs_sync_request.py +0 -0
  1880. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edqs_sync_status.py +0 -0
  1881. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/efento_coap_device_type_configuration.py +0 -0
  1882. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/email_delivery_method_notification_template.py +0 -0
  1883. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/email_two_fa_account_config.py +0 -0
  1884. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/email_two_fa_provider_config.py +0 -0
  1885. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/enterprise_captcha_params.py +0 -0
  1886. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entities_by_group_name_filter.py +0 -0
  1887. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entities_limit_notification_rule_trigger_config.py +0 -0
  1888. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entities_limit_recipients_config.py +0 -0
  1889. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity.py +0 -0
  1890. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_action_notification_rule_trigger_config.py +0 -0
  1891. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_action_recipients_config.py +0 -0
  1892. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_aggregation_calculated_field_configuration.py +0 -0
  1893. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_alias.py +0 -0
  1894. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_coordinates.py +0 -0
  1895. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_count_query.py +0 -0
  1896. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_data.py +0 -0
  1897. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_data_diff.py +0 -0
  1898. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_data_info.py +0 -0
  1899. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_data_page_link.py +0 -0
  1900. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_data_query.py +0 -0
  1901. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_data_sort_order.py +0 -0
  1902. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_export_data.py +0 -0
  1903. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_export_settings.py +0 -0
  1904. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_filter.py +0 -0
  1905. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_group.py +0 -0
  1906. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_group_export_data.py +0 -0
  1907. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_group_filter.py +0 -0
  1908. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_group_id.py +0 -0
  1909. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_group_info.py +0 -0
  1910. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_group_info_owner_ids_inner.py +0 -0
  1911. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_group_list_filter.py +0 -0
  1912. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_group_name_filter.py +0 -0
  1913. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_id.py +0 -0
  1914. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_info.py +0 -0
  1915. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_key.py +0 -0
  1916. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_key_type.py +0 -0
  1917. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_key_value_type.py +0 -0
  1918. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_list_filter.py +0 -0
  1919. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_load_error.py +0 -0
  1920. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_name_filter.py +0 -0
  1921. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_relation.py +0 -0
  1922. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_relation_info.py +0 -0
  1923. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_relations_query.py +0 -0
  1924. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_search_direction.py +0 -0
  1925. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_subtype.py +0 -0
  1926. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_table_component.py +0 -0
  1927. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_type.py +0 -0
  1928. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_type_filter.py +0 -0
  1929. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_type_load_result.py +0 -0
  1930. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_type_version_create_config.py +0 -0
  1931. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_type_version_load_config.py +0 -0
  1932. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_type_version_load_request.py +0 -0
  1933. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_version.py +0 -0
  1934. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_view.py +0 -0
  1935. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_view_export_data.py +0 -0
  1936. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_view_id.py +0 -0
  1937. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_view_info.py +0 -0
  1938. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_view_search_query.py +0 -0
  1939. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_view_search_query_filter.py +0 -0
  1940. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity_view_type_filter.py +0 -0
  1941. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/error_component.py +0 -0
  1942. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/error_component_all_of_exception.py +0 -0
  1943. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/error_component_all_of_exception_cause.py +0 -0
  1944. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/error_component_all_of_exception_cause_stack_trace.py +0 -0
  1945. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/error_event_filter.py +0 -0
  1946. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/escalated_notification_rule_recipients_config.py +0 -0
  1947. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/event_filter.py +0 -0
  1948. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/event_id.py +0 -0
  1949. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/event_info.py +0 -0
  1950. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/event_type.py +0 -0
  1951. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/exportable_entity.py +0 -0
  1952. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/failure.py +0 -0
  1953. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/favicon.py +0 -0
  1954. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/features_info.py +0 -0
  1955. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/filter.py +0 -0
  1956. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/filter_predicate_value_boolean.py +0 -0
  1957. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/filter_predicate_value_double.py +0 -0
  1958. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/filter_predicate_value_integer.py +0 -0
  1959. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/filter_predicate_value_long.py +0 -0
  1960. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/filter_predicate_value_string.py +0 -0
  1961. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/fixed_time_window.py +0 -0
  1962. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/font.py +0 -0
  1963. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/font_style.py +0 -0
  1964. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/font_weight.py +0 -0
  1965. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/geofencing_calculated_field_configuration.py +0 -0
  1966. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/geofencing_report_strategy.py +0 -0
  1967. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/git_hub_models_chat_model_config.py +0 -0
  1968. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/git_hub_models_provider_config.py +0 -0
  1969. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/google_ai_gemini_chat_model_config.py +0 -0
  1970. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/google_ai_gemini_provider_config.py +0 -0
  1971. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/google_vertex_ai_gemini_chat_model_config.py +0 -0
  1972. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/google_vertex_ai_gemini_provider_config.py +0 -0
  1973. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/group_permission.py +0 -0
  1974. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/group_permission_id.py +0 -0
  1975. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/group_permission_info.py +0 -0
  1976. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/has_id_object.py +0 -0
  1977. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/header_footer.py +0 -0
  1978. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/heading.py +0 -0
  1979. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/heading_component.py +0 -0
  1980. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/history.py +0 -0
  1981. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/home_dashboard_info.py +0 -0
  1982. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/home_dashboard_params.py +0 -0
  1983. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/home_menu_item.py +0 -0
  1984. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/home_menu_item_type.py +0 -0
  1985. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/hour_interval.py +0 -0
  1986. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/image_alignment.py +0 -0
  1987. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/image_component.py +0 -0
  1988. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/image_source_type.py +0 -0
  1989. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/image_width_type.py +0 -0
  1990. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/insets.py +0 -0
  1991. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/integration.py +0 -0
  1992. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/integration_converters_info.py +0 -0
  1993. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/integration_export_data.py +0 -0
  1994. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/integration_id.py +0 -0
  1995. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/integration_info.py +0 -0
  1996. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/integration_lifecycle_event_notification_rule_trigger_config.py +0 -0
  1997. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/integration_lifecycle_event_recipients_config.py +0 -0
  1998. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/integration_type.py +0 -0
  1999. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/interval.py +0 -0
  2000. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/interval_type.py +0 -0
  2001. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/job_id.py +0 -0
  2002. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/job_status.py +0 -0
  2003. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/job_type.py +0 -0
  2004. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/json_transport_payload_configuration.py +0 -0
  2005. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/jwt_pair.py +0 -0
  2006. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/jwt_settings.py +0 -0
  2007. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/key_filter.py +0 -0
  2008. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/key_filter_predicate.py +0 -0
  2009. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/key_info.py +0 -0
  2010. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/key_sample.py +0 -0
  2011. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/last_visited_dashboard_info.py +0 -0
  2012. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/latest_chart_component.py +0 -0
  2013. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/legend_config.py +0 -0
  2014. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/legend_position.py +0 -0
  2015. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/license_usage_info.py +0 -0
  2016. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/life_cycle_event_filter.py +0 -0
  2017. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/limited_api.py +0 -0
  2018. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/line_series_settings.py +0 -0
  2019. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/line_series_step_type.py +0 -0
  2020. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/link_type.py +0 -0
  2021. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/login401_response.py +0 -0
  2022. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/login_endpoint_api.py +0 -0
  2023. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/login_mobile_info.py +0 -0
  2024. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/login_request.py +0 -0
  2025. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/login_response.py +0 -0
  2026. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/login_white_labeling_params.py +0 -0
  2027. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/lw_m2_mserver_security_config_default.py +0 -0
  2028. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/lw_m2m_instance.py +0 -0
  2029. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/lw_m2m_object.py +0 -0
  2030. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/lw_m2m_resource_observe.py +0 -0
  2031. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/lw_m2m_version.py +0 -0
  2032. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/lwm2m_device_transport_configuration.py +0 -0
  2033. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mapper_type.py +0 -0
  2034. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mapping.py +0 -0
  2035. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/menu_item.py +0 -0
  2036. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/menu_item_type.py +0 -0
  2037. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/merged_group_permission_info.py +0 -0
  2038. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/merged_group_type_permission_info.py +0 -0
  2039. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/merged_user_permissions.py +0 -0
  2040. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/microsoft_teams_delivery_method_notification_template.py +0 -0
  2041. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/microsoft_teams_notification_target_config.py +0 -0
  2042. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mistral_ai_chat_model_config.py +0 -0
  2043. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mistral_ai_provider_config.py +0 -0
  2044. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_app.py +0 -0
  2045. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_app_bundle.py +0 -0
  2046. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_app_bundle_id.py +0 -0
  2047. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_app_bundle_info.py +0 -0
  2048. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_app_delivery_method_notification_template.py +0 -0
  2049. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_app_id.py +0 -0
  2050. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_app_notification_delivery_method_config.py +0 -0
  2051. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_app_status.py +0 -0
  2052. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_app_version_info.py +0 -0
  2053. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_layout_config.py +0 -0
  2054. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_page.py +0 -0
  2055. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_page_type.py +0 -0
  2056. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_redirect_params.py +0 -0
  2057. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_self_registration_params.py +0 -0
  2058. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mobile_session_info.py +0 -0
  2059. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/model.py +0 -0
  2060. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/model_none.py +0 -0
  2061. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/month_interval.py +0 -0
  2062. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mqtt_device_profile_transport_configuration.py +0 -0
  2063. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mqtt_device_transport_configuration.py +0 -0
  2064. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/name_conflict_policy.py +0 -0
  2065. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/new_platform_version_notification_rule_trigger_config.py +0 -0
  2066. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/new_platform_version_recipients_config.py +0 -0
  2067. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/no_data_filter_predicate.py +0 -0
  2068. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/no_sec_lw_m2_mbootstrap_server_credential.py +0 -0
  2069. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/node_connection_info.py +0 -0
  2070. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/none.py +0 -0
  2071. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification.py +0 -0
  2072. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_delivery_method.py +0 -0
  2073. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_delivery_method_config.py +0 -0
  2074. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_id.py +0 -0
  2075. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_info.py +0 -0
  2076. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_pref.py +0 -0
  2077. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_request.py +0 -0
  2078. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_request_config.py +0 -0
  2079. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_request_id.py +0 -0
  2080. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_request_info.py +0 -0
  2081. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_request_preview.py +0 -0
  2082. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_request_stats.py +0 -0
  2083. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_request_status.py +0 -0
  2084. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_rule.py +0 -0
  2085. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_rule_config.py +0 -0
  2086. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_rule_export_data.py +0 -0
  2087. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_rule_id.py +0 -0
  2088. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_rule_info.py +0 -0
  2089. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_rule_recipients_config.py +0 -0
  2090. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_rule_trigger_config.py +0 -0
  2091. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_rule_trigger_type.py +0 -0
  2092. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_settings.py +0 -0
  2093. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_status.py +0 -0
  2094. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_target.py +0 -0
  2095. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_target_config.py +0 -0
  2096. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_target_export_data.py +0 -0
  2097. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_target_id.py +0 -0
  2098. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_template.py +0 -0
  2099. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_template_config.py +0 -0
  2100. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_template_export_data.py +0 -0
  2101. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_template_id.py +0 -0
  2102. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification_type.py +0 -0
  2103. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/numeric_filter_predicate.py +0 -0
  2104. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/numeric_operation.py +0 -0
  2105. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/oauth2_basic_mapper_config.py +0 -0
  2106. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/oauth2_client.py +0 -0
  2107. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/oauth2_client_id.py +0 -0
  2108. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/oauth2_client_info.py +0 -0
  2109. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/oauth2_client_login_info.py +0 -0
  2110. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/oauth2_client_registration_template.py +0 -0
  2111. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/oauth2_client_registration_template_id.py +0 -0
  2112. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/oauth2_custom_mapper_config.py +0 -0
  2113. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/oauth2_mapper_config.py +0 -0
  2114. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/object_attributes.py +0 -0
  2115. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/object_type.py +0 -0
  2116. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ollama_auth.py +0 -0
  2117. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ollama_chat_model_config.py +0 -0
  2118. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ollama_provider_config.py +0 -0
  2119. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/open_ai_chat_model_config.py +0 -0
  2120. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/open_ai_provider_config.py +0 -0
  2121. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/operation.py +0 -0
  2122. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/originator_entity_owner_users_filter.py +0 -0
  2123. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ota_package.py +0 -0
  2124. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ota_package_export_data.py +0 -0
  2125. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ota_package_id.py +0 -0
  2126. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ota_package_info.py +0 -0
  2127. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ota_package_type.py +0 -0
  2128. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/other_configuration.py +0 -0
  2129. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/output.py +0 -0
  2130. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_break_component.py +0 -0
  2131. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_ai_model.py +0 -0
  2132. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_alarm_comment_info.py +0 -0
  2133. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_alarm_data.py +0 -0
  2134. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_alarm_info.py +0 -0
  2135. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_alarm_rule_definition.py +0 -0
  2136. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_alarm_rule_definition_info.py +0 -0
  2137. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_api_key_info.py +0 -0
  2138. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_asset.py +0 -0
  2139. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_asset_info.py +0 -0
  2140. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_asset_profile.py +0 -0
  2141. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_asset_profile_info.py +0 -0
  2142. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_audit_log.py +0 -0
  2143. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_blob_entity_with_customer_info.py +0 -0
  2144. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_calculated_field.py +0 -0
  2145. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_calculated_field_info.py +0 -0
  2146. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_contact_based_object.py +0 -0
  2147. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_converter.py +0 -0
  2148. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_custom_menu_info.py +0 -0
  2149. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_customer.py +0 -0
  2150. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_customer_info.py +0 -0
  2151. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_device.py +0 -0
  2152. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_device_info.py +0 -0
  2153. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_device_profile_info.py +0 -0
  2154. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_domain_info.py +0 -0
  2155. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_edge.py +0 -0
  2156. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_edge_event.py +0 -0
  2157. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_edge_info.py +0 -0
  2158. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_entity_data.py +0 -0
  2159. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_entity_group_info.py +0 -0
  2160. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_entity_info.py +0 -0
  2161. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_entity_subtype.py +0 -0
  2162. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_entity_version.py +0 -0
  2163. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_entity_view.py +0 -0
  2164. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_entity_view_info.py +0 -0
  2165. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_event_info.py +0 -0
  2166. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_integration.py +0 -0
  2167. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_integration_info.py +0 -0
  2168. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_mobile_app.py +0 -0
  2169. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_mobile_app_bundle_info.py +0 -0
  2170. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_notification.py +0 -0
  2171. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_notification_request_info.py +0 -0
  2172. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_notification_rule_info.py +0 -0
  2173. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_notification_target.py +0 -0
  2174. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_notification_template.py +0 -0
  2175. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_oauth2_client_info.py +0 -0
  2176. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_ota_package_info.py +0 -0
  2177. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_queue.py +0 -0
  2178. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_queue_stats.py +0 -0
  2179. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_report.py +0 -0
  2180. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_report_info.py +0 -0
  2181. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_report_template_info.py +0 -0
  2182. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_role.py +0 -0
  2183. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_rule_chain.py +0 -0
  2184. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_scheduled_report_info.py +0 -0
  2185. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_scheduler_event_info.py +0 -0
  2186. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_scheduler_event_with_customer_info.py +0 -0
  2187. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_secret_info.py +0 -0
  2188. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_short_entity_view.py +0 -0
  2189. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_string.py +0 -0
  2190. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_tb_resource_info.py +0 -0
  2191. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_tenant.py +0 -0
  2192. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_tenant_info.py +0 -0
  2193. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_tenant_profile.py +0 -0
  2194. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_trendz_view_config_lite.py +0 -0
  2195. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_user.py +0 -0
  2196. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_user_email_info.py +0 -0
  2197. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_user_info.py +0 -0
  2198. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_widget_type_info.py +0 -0
  2199. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_data_widgets_bundle.py +0 -0
  2200. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_orientation.py +0 -0
  2201. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/page_size.py +0 -0
  2202. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/palette.py +0 -0
  2203. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/palette_settings.py +0 -0
  2204. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/pdf_report_template_config.py +0 -0
  2205. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/pie_chart_label_position.py +0 -0
  2206. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/platform_two_fa_settings.py +0 -0
  2207. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/platform_type.py +0 -0
  2208. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/platform_users_notification_target_config.py +0 -0
  2209. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/power_mode.py +0 -0
  2210. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/power_saving_configuration.py +0 -0
  2211. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/privacy_protocol.py +0 -0
  2212. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/processing_strategy.py +0 -0
  2213. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/processing_strategy_type.py +0 -0
  2214. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/propagation_calculated_field_configuration.py +0 -0
  2215. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/proto_transport_payload_configuration.py +0 -0
  2216. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/psklw_m2_mbootstrap_server_credential.py +0 -0
  2217. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/qr_code_settings.py +0 -0
  2218. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/qr_code_settings_id.py +0 -0
  2219. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/qrcode_config.py +0 -0
  2220. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/quarter_interval.py +0 -0
  2221. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/queue.py +0 -0
  2222. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/queue_id.py +0 -0
  2223. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/queue_stats.py +0 -0
  2224. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/queue_stats_id.py +0 -0
  2225. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/quick_time_interval.py +0 -0
  2226. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rate_limits_notification_rule_trigger_config.py +0 -0
  2227. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rate_limits_recipients_config.py +0 -0
  2228. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/raw_data_event_filter.py +0 -0
  2229. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/read_ts_kv_query_result.py +0 -0
  2230. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/referenced_entity_key.py +0 -0
  2231. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/refresh_token_request.py +0 -0
  2232. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/related_entities_aggregation_calculated_field_configuration.py +0 -0
  2233. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/relation_entity_type_filter.py +0 -0
  2234. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/relation_path_level.py +0 -0
  2235. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/relation_path_query_dynamic_source_configuration.py +0 -0
  2236. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/relation_type_group.py +0 -0
  2237. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/relations_query_filter.py +0 -0
  2238. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/relations_search_parameters.py +0 -0
  2239. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/repeating_alarm_condition.py +0 -0
  2240. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/repeating_alarm_condition_spec.py +0 -0
  2241. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report.py +0 -0
  2242. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_bar_chart_settings.py +0 -0
  2243. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_bar_chart_with_labels_settings.py +0 -0
  2244. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_component.py +0 -0
  2245. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_component_sub_type.py +0 -0
  2246. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_component_type.py +0 -0
  2247. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_doughnut_chart_settings.py +0 -0
  2248. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_id.py +0 -0
  2249. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_info.py +0 -0
  2250. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_latest_chart_settings.py +0 -0
  2251. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_pie_chart_settings.py +0 -0
  2252. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_range_chart_settings.py +0 -0
  2253. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_request.py +0 -0
  2254. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_task_result.py +0 -0
  2255. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_template.py +0 -0
  2256. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_template_config.py +0 -0
  2257. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_template_export_data.py +0 -0
  2258. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_template_id.py +0 -0
  2259. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_template_info.py +0 -0
  2260. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_template_type.py +0 -0
  2261. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report_time_series_chart_settings.py +0 -0
  2262. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/repository_auth_method.py +0 -0
  2263. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/repository_settings.py +0 -0
  2264. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/repository_settings_info.py +0 -0
  2265. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/reset_password_email_request.py +0 -0
  2266. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/reset_password_request.py +0 -0
  2267. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/resource.py +0 -0
  2268. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/resource_export_data.py +0 -0
  2269. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/resource_shortage_recipients_config.py +0 -0
  2270. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/resource_sub_type.py +0 -0
  2271. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/resource_type.py +0 -0
  2272. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/resources_shortage_notification_rule_trigger_config.py +0 -0
  2273. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rich_text_component.py +0 -0
  2274. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/role.py +0 -0
  2275. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/role_export_data.py +0 -0
  2276. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/role_id.py +0 -0
  2277. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/role_type.py +0 -0
  2278. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rpc.py +0 -0
  2279. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rpc_id.py +0 -0
  2280. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rpc_status.py +0 -0
  2281. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rpklw_m2_mbootstrap_server_credential.py +0 -0
  2282. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain.py +0 -0
  2283. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_connection_info.py +0 -0
  2284. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_data.py +0 -0
  2285. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_debug_event_filter.py +0 -0
  2286. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_export_data.py +0 -0
  2287. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_id.py +0 -0
  2288. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_import_result.py +0 -0
  2289. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_meta_data.py +0 -0
  2290. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_note.py +0 -0
  2291. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_output_labels_usage.py +0 -0
  2292. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_chain_type.py +0 -0
  2293. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_engine_component_lifecycle_event_notification_rule_trigger_config.py +0 -0
  2294. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_engine_component_lifecycle_event_recipients_config.py +0 -0
  2295. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_node.py +0 -0
  2296. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_node_debug_event_filter.py +0 -0
  2297. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rule_node_id.py +0 -0
  2298. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/save_device_with_credentials_request.py +0 -0
  2299. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/save_ota_package_info_request.py +0 -0
  2300. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/scheduled_report_info.py +0 -0
  2301. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/scheduler_event.py +0 -0
  2302. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/scheduler_event_export_data.py +0 -0
  2303. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/scheduler_event_filter.py +0 -0
  2304. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/scheduler_event_id.py +0 -0
  2305. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/scheduler_event_info.py +0 -0
  2306. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/scheduler_event_with_customer_info.py +0 -0
  2307. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/script_calculated_field_configuration.py +0 -0
  2308. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/script_language.py +0 -0
  2309. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/secret.py +0 -0
  2310. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/secret_id.py +0 -0
  2311. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/secret_info.py +0 -0
  2312. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/secret_type.py +0 -0
  2313. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/security_settings.py +0 -0
  2314. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/self_registration_params.py +0 -0
  2315. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/self_registration_type.py +0 -0
  2316. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/share_group_request.py +0 -0
  2317. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/shared_attributes_setting_snmp_communication_config.py +0 -0
  2318. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/short_customer_info.py +0 -0
  2319. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/short_entity_view.py +0 -0
  2320. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sign_up_field.py +0 -0
  2321. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sign_up_field_id.py +0 -0
  2322. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sign_up_request.py +0 -0
  2323. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sign_up_result.py +0 -0
  2324. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sign_up_self_registration_params.py +0 -0
  2325. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/simple_alarm_condition.py +0 -0
  2326. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/simple_alarm_condition_expression.py +0 -0
  2327. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/simple_alarm_condition_spec.py +0 -0
  2328. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/simple_calculated_field_configuration.py +0 -0
  2329. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/simple_entity.py +0 -0
  2330. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/single_entity_filter.py +0 -0
  2331. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/single_entity_version_create_request.py +0 -0
  2332. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/single_entity_version_load_request.py +0 -0
  2333. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/slack_conversation.py +0 -0
  2334. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/slack_conversation_type.py +0 -0
  2335. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/slack_delivery_method_notification_template.py +0 -0
  2336. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/slack_notification_delivery_method_config.py +0 -0
  2337. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/slack_notification_target_config.py +0 -0
  2338. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/smpp_bind_type.py +0 -0
  2339. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/smpp_sms_provider_configuration.py +0 -0
  2340. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sms_delivery_method_notification_template.py +0 -0
  2341. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sms_provider_configuration.py +0 -0
  2342. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sms_two_fa_account_config.py +0 -0
  2343. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sms_two_fa_provider_config.py +0 -0
  2344. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/snmp_communication_config.py +0 -0
  2345. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/snmp_communication_spec.py +0 -0
  2346. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/snmp_device_profile_transport_configuration.py +0 -0
  2347. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/snmp_device_transport_configuration.py +0 -0
  2348. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/snmp_mapping.py +0 -0
  2349. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/snmp_protocol_version.py +0 -0
  2350. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/solution_data.py +0 -0
  2351. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/solution_export_request.py +0 -0
  2352. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/solution_export_response.py +0 -0
  2353. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/solution_import_result.py +0 -0
  2354. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/solution_install_response.py +0 -0
  2355. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/solution_step.py +0 -0
  2356. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/solution_template_level.py +0 -0
  2357. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/solution_validation_result.py +0 -0
  2358. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/specific_time_schedule.py +0 -0
  2359. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/split_view_component.py +0 -0
  2360. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/starred_dashboard_info.py +0 -0
  2361. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/state_entity_filter.py +0 -0
  2362. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/state_entity_owner_filter.py +0 -0
  2363. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/statistics_event_filter.py +0 -0
  2364. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/store_info.py +0 -0
  2365. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/string_filter_predicate.py +0 -0
  2366. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/string_operation.py +0 -0
  2367. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sub_report_component.py +0 -0
  2368. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/submit_strategy.py +0 -0
  2369. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/submit_strategy_type.py +0 -0
  2370. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/success.py +0 -0
  2371. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/sync_strategy.py +0 -0
  2372. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/system_administrators_filter.py +0 -0
  2373. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/system_info.py +0 -0
  2374. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/system_info_data.py +0 -0
  2375. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/table_sort_direction.py +0 -0
  2376. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/table_sort_order.py +0 -0
  2377. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/task_processing_failure_notification_rule_trigger_config.py +0 -0
  2378. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/task_processing_failure_recipients_config.py +0 -0
  2379. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_chat_request.py +0 -0
  2380. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_chat_response.py +0 -0
  2381. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_content.py +0 -0
  2382. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_image_delete_result.py +0 -0
  2383. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_report_format.py +0 -0
  2384. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_resource.py +0 -0
  2385. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_resource_delete_result.py +0 -0
  2386. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_resource_export_data.py +0 -0
  2387. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_resource_id.py +0 -0
  2388. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_resource_info.py +0 -0
  2389. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_secret_delete_result.py +0 -0
  2390. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_text_content.py +0 -0
  2391. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tb_user_message.py +0 -0
  2392. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tbel_alarm_condition_expression.py +0 -0
  2393. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/telemetry_entity_view.py +0 -0
  2394. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/telemetry_observe_strategy.py +0 -0
  2395. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/telemetry_querying_snmp_communication_config.py +0 -0
  2396. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant.py +0 -0
  2397. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_administrators_filter.py +0 -0
  2398. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_id.py +0 -0
  2399. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_info.py +0 -0
  2400. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_name_strategy_type.py +0 -0
  2401. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_profile.py +0 -0
  2402. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_profile_configuration.py +0 -0
  2403. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_profile_data.py +0 -0
  2404. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_profile_id.py +0 -0
  2405. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_profile_queue_configuration.py +0 -0
  2406. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_solution_template_details.py +0 -0
  2407. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_solution_template_info.py +0 -0
  2408. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant_solution_template_instructions.py +0 -0
  2409. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/test_sms_request.py +0 -0
  2410. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/text_alignment.py +0 -0
  2411. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/thingsboard_client.py +0 -0
  2412. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/thingsboard_credentials_expired_response.py +0 -0
  2413. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/thingsboard_error_code.py +0 -0
  2414. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/thingsboard_error_response.py +0 -0
  2415. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/threshold_label_position.py +0 -0
  2416. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_bar_width.py +0 -0
  2417. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_bar_width_settings.py +0 -0
  2418. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_grid_settings.py +0 -0
  2419. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_key_settings.py +0 -0
  2420. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_no_aggregation_bar_width_settings.py +0 -0
  2421. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_no_aggregation_bar_width_strategy.py +0 -0
  2422. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_series_type.py +0 -0
  2423. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_state_settings.py +0 -0
  2424. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_state_source_type.py +0 -0
  2425. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_threshold.py +0 -0
  2426. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_xaxis_settings.py +0 -0
  2427. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_chart_yaxis_settings.py +0 -0
  2428. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_immediate_output_strategy.py +0 -0
  2429. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_output.py +0 -0
  2430. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_output_strategy.py +0 -0
  2431. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_series_rule_chain_output_strategy.py +0 -0
  2432. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_unit.py +0 -0
  2433. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/time_window_configuration.py +0 -0
  2434. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/timeseries_chart_component.py +0 -0
  2435. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/timeseries_table_component.py +0 -0
  2436. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/to_core_edqs_request.py +0 -0
  2437. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/to_device_rpc_request_snmp_communication_config.py +0 -0
  2438. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/to_server_rpc_request_snmp_communication_config.py +0 -0
  2439. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/token.py +0 -0
  2440. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/totp_two_fa_account_config.py +0 -0
  2441. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/totp_two_fa_provider_config.py +0 -0
  2442. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/translation_info.py +0 -0
  2443. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/transport_payload_type_configuration.py +0 -0
  2444. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/trendz_configuration.py +0 -0
  2445. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/trendz_healthcheck_result.py +0 -0
  2446. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/trendz_summary.py +0 -0
  2447. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/trendz_synchronization_result.py +0 -0
  2448. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/trendz_synchronization_result_type.py +0 -0
  2449. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/trendz_synchronization_status.py +0 -0
  2450. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/trendz_usage.py +0 -0
  2451. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/trendz_view_config.py +0 -0
  2452. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/trendz_view_config_lite.py +0 -0
  2453. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ts_data.py +0 -0
  2454. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ts_kv_entry.py +0 -0
  2455. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/ts_value.py +0 -0
  2456. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/twilio_sms_provider_configuration.py +0 -0
  2457. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/two_fa_account_config.py +0 -0
  2458. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/two_fa_account_config_update_request.py +0 -0
  2459. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/two_fa_provider_config.py +0 -0
  2460. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/two_fa_provider_info.py +0 -0
  2461. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/two_fa_provider_type.py +0 -0
  2462. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/uniquify_strategy.py +0 -0
  2463. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/update_message.py +0 -0
  2464. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/usage.py +0 -0
  2465. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/usage_info.py +0 -0
  2466. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user.py +0 -0
  2467. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_activation_link.py +0 -0
  2468. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_dashboards_info.py +0 -0
  2469. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_email_info.py +0 -0
  2470. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_export_data.py +0 -0
  2471. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_group_list_filter.py +0 -0
  2472. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_id.py +0 -0
  2473. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_info.py +0 -0
  2474. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_list_filter.py +0 -0
  2475. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_mobile_info.py +0 -0
  2476. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_notification_settings.py +0 -0
  2477. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_password_policy.py +0 -0
  2478. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user_role_filter.py +0 -0
  2479. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/users_filter.py +0 -0
  2480. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/v2_captcha_params.py +0 -0
  2481. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/v3_captcha_params.py +0 -0
  2482. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/value_source_type.py +0 -0
  2483. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/vendor.py +0 -0
  2484. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/version_create_config.py +0 -0
  2485. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/version_create_request.py +0 -0
  2486. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/version_create_request_type.py +0 -0
  2487. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/version_creation_result.py +0 -0
  2488. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/version_load_config.py +0 -0
  2489. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/version_load_request.py +0 -0
  2490. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/version_load_request_type.py +0 -0
  2491. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/version_load_result.py +0 -0
  2492. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/versioned_entity_info.py +0 -0
  2493. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/vertical_alignment.py +0 -0
  2494. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/watermark.py +0 -0
  2495. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/web_delivery_method_notification_template.py +0 -0
  2496. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/web_self_registration_params.py +0 -0
  2497. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/web_view_page.py +0 -0
  2498. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/week_interval.py +0 -0
  2499. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/week_sun_sat_interval.py +0 -0
  2500. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/white_labeling.py +0 -0
  2501. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/white_labeling_params.py +0 -0
  2502. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/white_labeling_type.py +0 -0
  2503. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/widget_bundle_info.py +0 -0
  2504. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/widget_type.py +0 -0
  2505. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/widget_type_details.py +0 -0
  2506. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/widget_type_export_data.py +0 -0
  2507. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/widget_type_id.py +0 -0
  2508. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/widget_type_info.py +0 -0
  2509. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/widgets_bundle.py +0 -0
  2510. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/widgets_bundle_export_data.py +0 -0
  2511. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/widgets_bundle_id.py +0 -0
  2512. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/x509_certificate_chain_provision_configuration.py +0 -0
  2513. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/x509_lw_m2_mbootstrap_server_credential.py +0 -0
  2514. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/year_interval.py +0 -0
  2515. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/zone_group_configuration.py +0 -0
  2516. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/manifest.json +0 -0
  2517. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/maven_wrapper/.mvn/wrapper/maven-wrapper.properties +0 -0
  2518. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/maven_wrapper/mvnw +0 -0
  2519. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/maven_wrapper/mvnw.cmd +0 -0
  2520. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/main-assistant-prompt.md +0 -0
  2521. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/skills/alarms/SKILL.md +0 -0
  2522. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/skills/alarms/references/alarm-rules.md +0 -0
  2523. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/skills/calculated-fields/SKILL.md +0 -0
  2524. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/skills/calculated-fields/references/geofencing.md +0 -0
  2525. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/skills/calculated-fields/references/propagation.md +0 -0
  2526. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/skills/calculated-fields/references/related-aggregation.md +0 -0
  2527. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/skills/calculated-fields/references/script.md +0 -0
  2528. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/skills/calculated-fields/references/simple.md +0 -0
  2529. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/ai-assistant/skills/calculated-fields/references/ts-aggregation.md +0 -0
  2530. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/alarm/resources/alarm-capabilities.md +0 -0
  2531. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/alarm/resources/alarms-schema.json +0 -0
  2532. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/cf/resources/related-aggregation/capabilities.md +0 -0
  2533. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/cf/resources/related-aggregation/example.json +0 -0
  2534. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/cf/resources/related-aggregation/schema.json +0 -0
  2535. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/cf/resources/script/capabilities.md +0 -0
  2536. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/cf/resources/script/example.json +0 -0
  2537. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/cf/resources/script/schema.json +0 -0
  2538. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/cf/resources/ts-aggregation/capabilities.md +0 -0
  2539. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/cf/resources/ts-aggregation/example.json +0 -0
  2540. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/cf/resources/ts-aggregation/schema.json +0 -0
  2541. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/ba-overview/ba-dashboard-overview-capabilities.md +0 -0
  2542. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/ba-overview/ba-dashboards-overview-schema.json +0 -0
  2543. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/ba-overview/dashboards-ready-example.json +0 -0
  2544. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/icons.json +0 -0
  2545. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/images.json +0 -0
  2546. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/change-owner-dialog/action-capabilities.md +0 -0
  2547. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/change-owner-dialog/action-schema.json +0 -0
  2548. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/change-state/action-capabilities.md +0 -0
  2549. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/change-state/action-schema.json +0 -0
  2550. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/common-action-capabilities.md +0 -0
  2551. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/create-entity-dialog/action-capabilities.md +0 -0
  2552. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/create-entity-dialog/action-schema.json +0 -0
  2553. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/create-map-entity-dialog/action-capabilities.md +0 -0
  2554. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/create-map-entity-dialog/action-schema.json +0 -0
  2555. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/delete-entity-dialog/action-capabilities.md +0 -0
  2556. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/delete-entity-dialog/action-schema.json +0 -0
  2557. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/drill-down/action-capabilities.md +0 -0
  2558. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/drill-down/action-schema.json +0 -0
  2559. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/edit-entity-dialog/action-capabilities.md +0 -0
  2560. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-action/edit-entity-dialog/action-schema.json +0 -0
  2561. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-actions/dashboard-state-actions-capabilities.md +0 -0
  2562. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-actions/dashboard-state-actions-schema.json +0 -0
  2563. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/asset-search-query/datasource-capabilities.md +0 -0
  2564. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/asset-search-query/datasource-schema.json +0 -0
  2565. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/asset-type/datasource-capabilities.md +0 -0
  2566. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/asset-type/datasource-schema.json +0 -0
  2567. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/common-datasource-capabilities.md +0 -0
  2568. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/customer-entities/datasource-capabilities.md +0 -0
  2569. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/customer-entities/datasource-schema.json +0 -0
  2570. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/customers-by-profile/datasource-capabilities.md +0 -0
  2571. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/customers-by-profile/datasource-schema.json +0 -0
  2572. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/dashboard-state-datasource-capabilities.md +0 -0
  2573. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/dashboard-state-datasource-schema.json +0 -0
  2574. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/device-search-query/datasource-capabilities.md +0 -0
  2575. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/device-search-query/datasource-schema.json +0 -0
  2576. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/device-type/datasource-capabilities.md +0 -0
  2577. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/device-type/datasource-schema.json +0 -0
  2578. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/entity-name/datasource-capabilities.md +0 -0
  2579. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/entity-name/datasource-schema.json +0 -0
  2580. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/entity-type/datasource-capabilities.md +0 -0
  2581. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/entity-type/datasource-schema.json +0 -0
  2582. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/relations-query/datasource-capabilities.md +0 -0
  2583. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/relations-query/datasource-schema.json +0 -0
  2584. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/single-entity/datasource-capabilities.md +0 -0
  2585. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/single-entity/datasource-schema.json +0 -0
  2586. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/state-entity/datasource-capabilities.md +0 -0
  2587. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-datasource/state-entity/datasource-schema.json +0 -0
  2588. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-layout/dashboard-state-layout-capabilities.md +0 -0
  2589. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-layout/dashboard-state-layout-schema.json +0 -0
  2590. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/action-button/widget-capabilities.md +0 -0
  2591. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/action-button/widget-schema.json +0 -0
  2592. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/alarm-count/widget-capabilities.md +0 -0
  2593. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/alarm-count/widget-schema.json +0 -0
  2594. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/alarm-table/widget-capabilities.md +0 -0
  2595. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/alarm-table/widget-schema.json +0 -0
  2596. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/bar-chart/widget-capabilities.md +0 -0
  2597. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/bar-chart/widget-schema.json +0 -0
  2598. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/battery-level/widget-capabilities.md +0 -0
  2599. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/battery-level/widget-schema.json +0 -0
  2600. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/chart/widget-capabilities.md +0 -0
  2601. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/chart/widget-schema.json +0 -0
  2602. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/common-widget-capabilities.md +0 -0
  2603. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/entity-table/widget-capabilities.md +0 -0
  2604. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/entity-table/widget-schema.json +0 -0
  2605. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/header-card/widget-capabilities.md +0 -0
  2606. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/header-card/widget-schema.json +0 -0
  2607. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/horizontal-value-card/widget-capabilities.md +0 -0
  2608. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/horizontal-value-card/widget-schema.json +0 -0
  2609. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/indoor-map/widget-capabilities.md +0 -0
  2610. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/indoor-map/widget-schema.json +0 -0
  2611. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/info-card/widget-capabilities.md +0 -0
  2612. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/info-card/widget-schema.json +0 -0
  2613. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/navigation-widget/widget-capabilities.md +0 -0
  2614. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/navigation-widget/widget-schema.json +0 -0
  2615. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/outdoor-map/widget-capabilities.md +0 -0
  2616. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/outdoor-map/widget-schema.json +0 -0
  2617. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/pie-chart/widget-capabilities.md +0 -0
  2618. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/pie-chart/widget-schema.json +0 -0
  2619. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/progress-bar/widget-capabilities.md +0 -0
  2620. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/progress-bar/widget-schema.json +0 -0
  2621. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/range-chart/widget-capabilities.md +0 -0
  2622. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/range-chart/widget-schema.json +0 -0
  2623. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/signal-strength/widget-capabilities.md +0 -0
  2624. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/signal-strength/widget-schema.json +0 -0
  2625. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/simple-gauge/widget-capabilities.md +0 -0
  2626. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/simple-gauge/widget-schema.json +0 -0
  2627. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/state-chart/widget-capabilities.md +0 -0
  2628. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/state-chart/widget-schema.json +0 -0
  2629. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/value-chart-card/widget-capabilities.md +0 -0
  2630. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/state-widget/value-chart-card/widget-schema.json +0 -0
  2631. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/states/dashboard-states-capabilities.md +0 -0
  2632. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/dashboard/resources/states/dashboard-states-schema.json +0 -0
  2633. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/customer-and-users-generator-schema.json +0 -0
  2634. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/devices-and-assets-generator-schema.json +0 -0
  2635. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/entity-relations-schema.json +0 -0
  2636. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/generator-guidelines.md +0 -0
  2637. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/composite-value-strategy-example.json +0 -0
  2638. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/composite-value-strategy-schema.json +0 -0
  2639. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/constant-value-strategy-example.json +0 -0
  2640. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/constant-value-strategy-schema.json +0 -0
  2641. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/counter-value-strategy-example.json +0 -0
  2642. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/counter-value-strategy-schema.json +0 -0
  2643. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/dec-value-strategy-example.json +0 -0
  2644. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/dec-value-strategy-schema.json +0 -0
  2645. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/event-value-strategy-example.json +0 -0
  2646. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/event-value-strategy-schema.json +0 -0
  2647. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/inc-value-strategy-example.json +0 -0
  2648. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/inc-value-strategy-schema.json +0 -0
  2649. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/natural-value-strategy-example.json +0 -0
  2650. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/natural-value-strategy-schema.json +0 -0
  2651. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/schedule-value-strategy-example.json +0 -0
  2652. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/schedule-value-strategy-schema.json +0 -0
  2653. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/sequence-value-strategy-example.json +0 -0
  2654. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/data-generator/resources/value-strategies/sequence-value-strategy-schema.json +0 -0
  2655. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/main-prompt.txt +0 -0
  2656. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-ba/resources/solution-capabilities.md +0 -0
  2657. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-ba/resources/solution-in-progress-example.json +0 -0
  2658. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-ba/resources/solution-ready-example-1.json +0 -0
  2659. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-ba/resources/solution-ready-example-2.json +0 -0
  2660. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-ba/resources/solution-ready-example-3.json +0 -0
  2661. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-ba/resources/solution-ready-example-4.json +0 -0
  2662. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-ba/resources/solution-schema.json +0 -0
  2663. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/alarms/alarm-capabilities.md +0 -0
  2664. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/alarms/schema.json +0 -0
  2665. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/entity-profiles/entity-profile-planner-rules.md +0 -0
  2666. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/entity-profiles/entity-profile-schema.json +0 -0
  2667. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/entity-profiles/entity-profiles-schema.json +0 -0
  2668. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/entity-profiles/entity-profiles.md +0 -0
  2669. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/iam/iam-schema.json +0 -0
  2670. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/iam/iam.json +0 -0
  2671. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/iam/iam.md +0 -0
  2672. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/delta/metric-capabilities.md +0 -0
  2673. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/delta/schema.json +0 -0
  2674. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/geofencing/metric-capabilities.md +0 -0
  2675. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/geofencing/schema.json +0 -0
  2676. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/math/metric-capabilities.md +0 -0
  2677. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/math/schema.json +0 -0
  2678. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/propagate/metric-capabilities.md +0 -0
  2679. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/propagate/schema.json +0 -0
  2680. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/related-aggregation/metric-capabilities.md +0 -0
  2681. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/related-aggregation/schema.json +0 -0
  2682. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/script/metric-capabilities.md +0 -0
  2683. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/script/schema.json +0 -0
  2684. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/ts-aggregation/metric-capabilities.md +0 -0
  2685. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/metrics/ts-aggregation/schema.json +0 -0
  2686. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/relations/entity-relations-generation.md +0 -0
  2687. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/relations/entity-relations-schema.json +0 -0
  2688. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/relations/entity-relations.md +0 -0
  2689. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-entities/resources/solution-schema.json +0 -0
  2690. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-planner/resources/patterns-and-constraints.md +0 -0
  2691. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/solutions/solution-planner/resources/schema.json +0 -0
  2692. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/prompts/tbel/tbel-reference.md +0 -0
  2693. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/change-owner-dialog.html +0 -0
  2694. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/change-owner-dialog.js +0 -0
  2695. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/delete-entity-function.js +0 -0
  2696. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/entity-dialog.html +0 -0
  2697. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/entity-dialog.js +0 -0
  2698. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/field/image-field.html +0 -0
  2699. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/field/number-field.html +0 -0
  2700. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/field/profile-field.html +0 -0
  2701. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/field/relation-field.html +0 -0
  2702. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/field/select-field.html +0 -0
  2703. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/field/text-field.html +0 -0
  2704. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/field/textarea-field.html +0 -0
  2705. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/templates/widget-action/field/toggle-field.html +0 -0
  2706. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/test.sh +0 -0
  2707. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/__init__.py +0 -0
  2708. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/_helpers.py +0 -0
  2709. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/__init__.py +0 -0
  2710. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_alarm.py +0 -0
  2711. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_alarm_rule.py +0 -0
  2712. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_asset.py +0 -0
  2713. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_asset_profile.py +0 -0
  2714. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_attributes.py +0 -0
  2715. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_cf_reprocessing.py +0 -0
  2716. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_config.py +0 -0
  2717. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_customer.py +0 -0
  2718. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_dashboard.py +0 -0
  2719. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_device.py +0 -0
  2720. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_device_profile.py +0 -0
  2721. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_emulator_lifecycle.py +0 -0
  2722. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_entity_group.py +0 -0
  2723. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_extension.py +0 -0
  2724. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_first_run.py +0 -0
  2725. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_interactive_pull.py +0 -0
  2726. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_local_concurrency.py +0 -0
  2727. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_pull.py +0 -0
  2728. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_relation.py +0 -0
  2729. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_role.py +0 -0
  2730. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_rule_chain.py +0 -0
  2731. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_telemetry.py +0 -0
  2732. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_user.py +0 -0
  2733. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_alarm_commands.py +0 -0
  2734. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_alarm_rule_commands.py +0 -0
  2735. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_assembler.py +0 -0
  2736. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_asset_commands.py +0 -0
  2737. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_asset_profile_commands.py +0 -0
  2738. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_attributes_commands.py +0 -0
  2739. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_calculated_field_commands.py +0 -0
  2740. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_common_options.py +0 -0
  2741. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_common_utils.py +0 -0
  2742. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_config_commands.py +0 -0
  2743. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_config_manager.py +0 -0
  2744. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_config_resolver.py +0 -0
  2745. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_core_client.py +0 -0
  2746. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_customer_commands.py +0 -0
  2747. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_dashboard_commands.py +0 -0
  2748. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_debug_flag.py +0 -0
  2749. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_debug_redactor.py +0 -0
  2750. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_decomposer.py +0 -0
  2751. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_device_commands.py +0 -0
  2752. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_device_profile_commands.py +0 -0
  2753. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_emulator_commands.py +0 -0
  2754. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_emulator_generators.py +0 -0
  2755. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_emulator_models.py +0 -0
  2756. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_encoding_consistency.py +0 -0
  2757. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_entity_group_commands.py +0 -0
  2758. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_extension.py +0 -0
  2759. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_extension_manifest.py +0 -0
  2760. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_generate_help.py +0 -0
  2761. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_git_dirty.py +0 -0
  2762. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_help.py +0 -0
  2763. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_app.py +0 -0
  2764. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_confirm.py +0 -0
  2765. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_formatting.py +0 -0
  2766. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_import_time.py +0 -0
  2767. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_listing.py +0 -0
  2768. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_loader.py +0 -0
  2769. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_owner.py +0 -0
  2770. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_rows.py +0 -0
  2771. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_search.py +0 -0
  2772. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_state.py +0 -0
  2773. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_theme.py +0 -0
  2774. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_local.py +0 -0
  2775. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_local_concurrency.py +0 -0
  2776. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_main_output.py +0 -0
  2777. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_maven_runner.py +0 -0
  2778. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_output_helpers.py +0 -0
  2779. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_packaging_dependencies.py +0 -0
  2780. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_pagination_helper.py +0 -0
  2781. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_payload_helper.py +0 -0
  2782. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_pull_commands.py +0 -0
  2783. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_relation_commands.py +0 -0
  2784. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_reprocess_order.py +0 -0
  2785. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_resolver.py +0 -0
  2786. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_resources.py +0 -0
  2787. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_role_commands.py +0 -0
  2788. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_rule_chain_commands.py +0 -0
  2789. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_run_emulators.py +0 -0
  2790. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_scaffold_check.py +0 -0
  2791. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_scaffold_version.py +0 -0
  2792. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_solution_commands.py +0 -0
  2793. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_telemetry_commands.py +0 -0
  2794. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_update.py +0 -0
  2795. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_user_commands.py +0 -0
  2796. {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_validation_hint.py +0 -0
@@ -0,0 +1,17 @@
1
+ .idea
2
+ *.iml
3
+ .planning
4
+ docs
5
+ docs/superpowers
6
+ /.claude
7
+ __pycache__/
8
+ *.py[cod]
9
+ *.egg-info/
10
+ dist/
11
+ build/
12
+ .venv/
13
+ .mypy_cache/
14
+ .ruff_cache/
15
+ .pytest_cache/
16
+ .coverage
17
+ htmlcov/
@@ -0,0 +1,83 @@
1
+ Metadata-Version: 2.4
2
+ Name: thingsboard-cli
3
+ Version: 4.3.1.2.post3
4
+ Summary: CLI tool for managing ThingsBoard resources
5
+ Project-URL: Homepage, https://github.com/thingsboard/thingsboard-cli
6
+ Project-URL: Source, https://github.com/thingsboard/thingsboard-cli
7
+ Project-URL: Issues, https://github.com/thingsboard/thingsboard-cli/issues
8
+ Requires-Python: <3.15,>=3.11
9
+ Requires-Dist: click<9.0,>=8.1
10
+ Requires-Dist: filelock<4.0,>=3.13
11
+ Requires-Dist: httpx<1.0,>=0.28
12
+ Requires-Dist: packaging>=24.0
13
+ Requires-Dist: pydantic-settings<3.0,>=2.13
14
+ Requires-Dist: pydantic<3.0,>=2.12
15
+ Requires-Dist: questionary<3.0,>=2.0
16
+ Requires-Dist: rich<15.0,>=14.0
17
+ Requires-Dist: tb-pe-client==4.3.1.3.post2
18
+ Requires-Dist: textual<2.0,>=0.83
19
+ Requires-Dist: typer<1.0,>=0.24.1
20
+ Requires-Dist: tzdata>=2024.1
21
+ Description-Content-Type: text/markdown
22
+
23
+ # ThingsBoard CLI
24
+
25
+ CLI tool for managing ThingsBoard resources from the terminal.
26
+
27
+ ## Installation
28
+
29
+ Install [uv](https://docs.astral.sh/uv/) if you don't have it:
30
+
31
+ ```bash
32
+ curl -LsSf https://astral.sh/uv/install.sh | sh
33
+ ```
34
+
35
+ Then install the CLI:
36
+
37
+ ```bash
38
+ uv tool install thingsboard-cli
39
+ ```
40
+
41
+ ### Upgrading
42
+
43
+ The CLI checks for updates automatically on launch and prompts to upgrade. You can also upgrade manually:
44
+
45
+ ```bash
46
+ tb update
47
+ ```
48
+
49
+ ### Shell Completion
50
+
51
+ ```bash
52
+ # Bash
53
+ tb --install-completion bash
54
+
55
+ # Zsh
56
+ tb --install-completion zsh
57
+
58
+ # Fish
59
+ tb --install-completion fish
60
+ ```
61
+
62
+ Restart your terminal after installing completion.
63
+
64
+ ## Usage
65
+
66
+ ```bash
67
+ tb --help
68
+ tb config set --url https://thingsboard.cloud --api-key YOUR_KEY
69
+ tb device list
70
+ ```
71
+
72
+ ## Verbose Help
73
+
74
+ Use `-H` or `--help-verbose` on any command to see detailed API documentation, JSON schemas, and field descriptions:
75
+
76
+ ```bash
77
+ tb device create -H
78
+ tb dashboard save -H
79
+ ```
80
+
81
+ ## Contributing
82
+
83
+ For local development setup, editable installs, regenerating help text, and publishing, see [CONTRIBUTING.md](https://github.com/thingsboard/thingsboard-cli/blob/master/CONTRIBUTING.md).
@@ -0,0 +1,90 @@
1
+ [project]
2
+ name = "thingsboard-cli"
3
+ version = "4.3.1.2.post3"
4
+ description = "CLI tool for managing ThingsBoard resources"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11,<3.15"
7
+ dependencies = [
8
+ "typer>=0.24.1,<1.0",
9
+ "click>=8.1,<9.0",
10
+ "pydantic>=2.12,<3.0",
11
+ "pydantic-settings>=2.13,<3.0",
12
+ "rich>=14.0,<15.0",
13
+ "textual>=0.83,<2.0",
14
+ "questionary>=2.0,<3.0",
15
+ "httpx>=0.28,<1.0",
16
+ "tb-pe-client==4.3.1.3.post2",
17
+ "packaging>=24.0",
18
+ "filelock>=3.13,<4.0",
19
+ # IANA time-zone database for `zoneinfo`. Windows ships no system tz data,
20
+ # so emulator timeZone validation (ZoneInfo("UTC")) fails without this.
21
+ "tzdata>=2024.1",
22
+ ]
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/thingsboard/thingsboard-cli"
26
+ Source = "https://github.com/thingsboard/thingsboard-cli"
27
+ Issues = "https://github.com/thingsboard/thingsboard-cli/issues"
28
+
29
+ [project.scripts]
30
+ thingsboard = "thingsboard_cli.main:app"
31
+ tb = "thingsboard_cli.main:app"
32
+
33
+ [build-system]
34
+ requires = ["hatchling"]
35
+ build-backend = "hatchling.build"
36
+
37
+ # Pin the core metadata version. hatchling >=1.32 defaults to Metadata-Version
38
+ # 2.5, which twine 6.x rejects (it caps validation at 2.4), so uploads fail.
39
+ # 2.4 is what the whole packaging ecosystem accepts today.
40
+ [tool.hatch.build.targets.sdist]
41
+ core-metadata-version = "2.4"
42
+
43
+ [tool.hatch.build.targets.wheel]
44
+ core-metadata-version = "2.4"
45
+ packages = ["src/thingsboard_cli"]
46
+
47
+ [tool.hatch.build.targets.wheel.force-include]
48
+ "scaffold" = "thingsboard_cli/scaffold"
49
+ "extension-starter" = "thingsboard_cli/extension-starter"
50
+
51
+ [tool.ruff]
52
+ target-version = "py311"
53
+ line-length = 120
54
+ src = ["src", "tests"]
55
+ exclude = ["src/thingsboard_cli/help/_generated"]
56
+
57
+ [tool.ruff.lint]
58
+ select = ["E", "F", "W", "UP", "B", "SIM", "RUF", "I"]
59
+
60
+ [tool.mypy]
61
+ python_version = "3.11"
62
+ strict = true
63
+ plugins = ["pydantic.mypy"]
64
+ exclude = ["src/thingsboard_cli/help/_generated"]
65
+ disallow_any_generics = false
66
+ warn_return_any = false
67
+
68
+ [[tool.mypy.overrides]]
69
+ module = "tb_pe_client.*"
70
+ ignore_missing_imports = true
71
+
72
+ [tool.pytest.ini_options]
73
+ testpaths = ["tests"]
74
+ markers = [
75
+ "e2e: end-to-end tests requiring real ThingsBoard instance",
76
+ "requires_tb: e2e tests that require TB_URL/TB_API_KEY (auto-applied to most e2e files; test_extension.py opts out)",
77
+ "maven_e2e: e2e tests that require a working Maven wrapper + JDK 17+",
78
+ "docker_e2e: e2e tests that require a reachable Docker daemon",
79
+ ]
80
+
81
+ [dependency-groups]
82
+ dev = [
83
+ "mypy>=1.20.0",
84
+ "pytest>=9.0.2",
85
+ "pytest-asyncio>=0.24",
86
+ "pytest-cov>=7.1.0",
87
+ "pytest-mock>=3.15.1",
88
+ "respx>=0.22.0",
89
+ "ruff>=0.15.8",
90
+ ]
@@ -0,0 +1,306 @@
1
+ ## ThingsBoard CLI Project
2
+
3
+ This project is managed by `thingsboard-cli` (`tb`). It provides CLI commands to create and manage ThingsBoard entities (devices, dashboards, rule chains, etc.) as local JSON files, which can be deployed to a ThingsBoard instance with `tb push`.
4
+
5
+ This file is the **reference for entity-level operations** (schemas, JSON shapes, IDs, embedded data, reprocessing, emulators, debugging). It does **not** orchestrate solution creation — see the routing rules below for when to defer to a skill instead.
6
+
7
+ ## ThingsBoard entity concepts
8
+
9
+ Before working with entities — especially fetching/pulling them from an instance — read the `thingsboard-concepts` skill to understand how ThingsBoard entities are structured and connected: tenants, customers, devices, assets, device/asset profiles, attributes and time series, ownership, and relations. Knowing that entities connect through profiles, group membership, and ownership — not only through relations — is essential to fetching a complete set of entities.
10
+
11
+ ## Constraints
12
+
13
+ - **Local mode only** — always verify local mode is active before creating entities: `tb config mode local`. All entity creation must go through `tb <entity> save --json` commands — never write JSON files directly.
14
+ - **Never `cd` into solution directories** — always use `--solution <name>` to target a solution. Do not use `cd` to change into solution directories.
15
+ - **Never push** — never run `tb push`. The user decides when to deploy. Running `tb validate` is safe (dry-run) and should be run after creating entities.
16
+ - **Never modify profiles** — never run `tb config set`, `tb config add`, `tb config use`, or `tb config remove`. Authentication is the user's responsibility.
17
+ - **`tb feedback` is allowed** — running `tb feedback` (to record user feedback, see below) is safe and expected; it is not a config or push command.
18
+
19
+ ## Feedback
20
+
21
+ Two separate things — do both.
22
+
23
+ ### 1. Always end a completed generation with a feedback invitation
24
+
25
+ Whenever you finish generating anything — a single entity, a standalone artifact (`standalone-*`), or a full solution (`create-solution` / `update-solution`) — the **last line of your final message MUST be**, verbatim:
26
+
27
+ > Help us make the CLI better — share quick feedback anytime with `tb feedback`.
28
+
29
+ This is a passive one-liner (not a question); print it in the same turn the generation finishes, after any deploy/`tb push` notice. Do not skip it, and do not print it when you did not generate anything.
30
+
31
+ ### 2. Follow the feedback hook
32
+
33
+ A feedback hook (Claude Code `UserPromptSubmit` / Antigravity `PreInvocation`) runs `tb feedback --hook` automatically on **every** message. When a feedback ask is due (the user generated something, or skipped a real-terminal push prompt — and it's been ≥4h since the last ask), the hook injects a reminder telling you to ask. **You never track timing yourself; just obey the reminder when it appears.**
34
+
35
+ When you see that reminder, **before** handling the request, ask **one** `AskUserQuestion` (`header: "Feedback"`, options **Yes** · **Partly** · **No** · **Skip**):
36
+
37
+ > "Did you achieve the result you expected? Tell us what to improve in your own words — your feedback shapes what we build next."
38
+
39
+ The user clicks an option, or picks the auto-provided **"Other"** field to write a comment (the only free-text path — capture whatever they write). Then **record it yourself** (never make the user run the command):
40
+
41
+ - **Yes / Partly / No** → `tb feedback --outcome <yes|partly|no> [--message "<their comment>"] [--feature "<a feature idea>"] --source push-followup`
42
+ - **Skip** (or no answer) → `tb feedback --dismiss`
43
+
44
+ Then continue with the request. Ask at most once per reminder; do not ask when no reminder is present. Feedback is anonymous and honors the analytics opt-out (the hook stays silent when analytics is off).
45
+
46
+ <!-- The question wording and the `tb feedback --outcome … --source push-followup` / `--dismiss`
47
+ command spec above mirror `_HOOK_REMINDER` in src/thingsboard_cli/core/feedback.py.
48
+ Keep the two in sync when either changes. -->
49
+
50
+ ## Routing: solution skill vs. direct entity generation
51
+
52
+ Decide the path before you generate anything. Going off-path and hand-building what should have been a solution is much more expensive to undo than a short clarifying question.
53
+
54
+ ### First decide intent: fetch vs. targeted vs. build vs. update
55
+
56
+ Route by **intent**, then by existence/completeness. Check the paths **in this order** — the first match wins:
57
+
58
+ 1. **Fetch / pull / import / grab / refresh** existing entities (no build or change implied) → `Skill pull-solution` (see rule below — unchanged).
59
+ 2. **Targeted ask** — the request names a **specific artifact or a small targeted set** to build, add, edit, fix, or **diagnose**: "add a calculated field to my Pump-42", "fix my EfficiencyIndex CF", "fix my OverheatAlarm", "2 devices for the water-pump profile", "a dashboard showing my Pump-42", "add a humidity gauge to the pump dashboard" — and equally diagnostic questions about a specific artifact: "I have a calculated field on my Ira device but it does not work — why?", "why does my OverheatAlarm never fire?". A diagnostic question IS a fix-intent ask: the standalone skill diagnoses first and applies the fix only after the user confirms. → Run the **standalone-vs-solution gate** below BEFORE calling any skill (diagnostic phrasing already decides — skip the gate, invoke the skill directly). Do NOT invoke `update-solution` or `create-solution` for a targeted ask until the gate (or unambiguous phrasing) has decided. This path matches even when the named entities already exist locally or on the instance — touching existing entities does not by itself make the ask solution-scoped.
60
+ 3. **Build / create / generate a NEW solution from scratch** → `Skill create-solution`.
61
+ 4. **Continue / finish / resume generation** of a solution whose prior build was interrupted → `Skill create-solution` (its local resume-to-continue detects which steps completed and runs only the remaining ones; it does not refresh from the instance).
62
+ 5. **Add to / extend / change / modify a solution** — the ask is phrased at solution scope ("add 5 more devices to `<solution>`", "add a new sensor type to `<solution>`", "extend `<solution>` with …", "change the alarms on `<solution>`") or implies redesigning multiple artifact kinds together → first tool call MUST be `Skill update-solution`. It locates the target (local, then instance), refreshes only with consent, and applies the change surgically; if nothing exists to update, it hands back to `create-solution`.
63
+
64
+ The create/update line is **intent + completeness**, not merely "does it exist": finishing an unfinished build is `create-solution`; surgically changing a finished solution is `update-solution`.
65
+
66
+ ### Targeted entity ask: the standalone-vs-solution gate
67
+
68
+ This is path 2's decision point — for a targeted ask it runs **before any skill is invoked**. When the request names a **specific artifact or a small targeted set** to build, add, edit, or fix — one or a few calculated fields (including a CF chain), alarm rules, devices/assets/customers/users/profiles/entity groups (e.g. "2 devices for the water-pump profile"), a standalone dashboard to create over existing entities, or a dashboard tweak — on known or named targets, with **no solution design implied** (no new profile + relations + IAM + dashboard set to design together), ask once via `AskUserQuestion` before routing:
69
+
70
+ - `question`: `"Just these item(s), or full solution treatment (design context, related entities kept in one place)?"`
71
+ - `header`: `"Scope"`
72
+ - `options`: `Just these items` · `Full solution treatment`
73
+
74
+ Route the answer:
75
+
76
+ - **Just these items** → the matching standalone-* skill: `standalone-calculated-fields`, `standalone-alarm-rules`, `standalone-dashboard`, or `standalone-entities` (devices, assets, customers, users, profiles, entity groups).
77
+ - **Full solution treatment** → `update-solution` (existing target) or `create-solution` (new system), per the rules above.
78
+
79
+ **Skip the question when the phrasing already decides:** "just the CFs, nothing else" / "only these two alarms" / "fix my OverheatAlarm" → standalone path directly; "and design alarms + a dashboard around it" or anything implying a system → solution path directly. Asks that need design work (new profiles with relations/IAM, role-based dashboard sets, anything phrased as a system/setup/scenario) never see the gate — they route per the rules above. The fetch/pull rule still takes precedence over this gate for pure fetch requests.
80
+
81
+ **The gate applies whenever the work begins — including mid-conversation.** When an ad-hoc investigation or Q&A turns into create/edit/fix work ("yes, fix it"), invoke the matching standalone-* skill at that moment. Never hand-roll `tb … save` calls, mode switches, or scratch solutions inline — the skill owns the resolver, key discovery, foundations rendering, validation, and commit flow.
82
+
83
+ **A follow-up change to a dashboard you generated or pushed earlier in this same conversation is still an edit — route it.** Immediately after the `dashboard-generator` agent runs and the dashboard is saved/pushed, the JSON is fresh in your context and it is tempting to "just tweak it" inline. Don't: a follow-up dashboard change ("make that gauge a chart", "add a humidity widget", "fix the alias") routes through `standalone-dashboard` (or `update-solution` for a solution dashboard) → `dashboard-generator` in **update mode**, exactly as a cold-start edit would. Having just built the dashboard, or holding its JSON in context, is **not** a license to hand-edit the dashboard JSON — alias-owns-keys, `typeFullFqn`, widget templates, and the validation walk only get applied through the agent, and hand-edits silently reintroduce the inaccuracies the agent exists to prevent.
84
+
85
+ ---
86
+
87
+ **When the user wants to FETCH / PULL / IMPORT / GRAB / REFRESH entities that already exist on their instance into local files — with no build or design implied — your very first tool call MUST be `Skill pull-solution`.** Triggers: "fetch my temperature and humidity sensor", "pull my Pump-42 from the instance", "import my existing devices", "grab everything under the HQ building", "refresh my `<solution>` from the instance". `pull-solution` dispatches the discoverer, matches the request across name/profile/type, previews the connected graph, asks **once** to confirm the batch, and pulls it. It never creates new entities or designs anything.
88
+
89
+ **Do NOT answer a fetch request with ad-hoc `tb device list` calls, and do NOT offer to create entities or build a solution** — that is the wrong intent and the failure mode this rule exists to prevent. Hand the request to `pull-solution` and let it own discovery, matching, and the confirmation gate.
90
+
91
+ This rule **takes precedence** over the `create-solution` and `update-solution` routing below for pure fetch/pull/import requests.
92
+
93
+ ### Otherwise: build or update path
94
+
95
+ **Use the `create-solution` skill when the request involves any of:**
96
+
97
+ - **Any large or non-trivial NEW system.** If the request describes building a new system, platform, product, or anything that needs more than one or two entities working together from scratch, route it to `create-solution`. Default to "this is a solution" whenever the scope is ambiguous and no existing solution is named.
98
+ - **Multiple related entities** — e.g. a new asset and its devices, devices that share a new profile, anything phrased as a "system", "setup", "scenario", "demo", or new use case.
99
+ - **A dashboard on a NEW solution** — Dashboards have a complex JSON structure and depend on an entity + metric model; never hand-build dashboard JSON outside a skill. (A dashboard *change* on an existing solution routes to `update-solution`; a small standalone dashboard over **existing** entities — "a dashboard showing my Pump-42 temperature" — routes through the gate to `standalone-dashboard`, which resolves the entities, recovers their live keys, and builds its design context ad-hoc.)
100
+ - **Calculations or alarms on a NEW device/asset** — these need profile and design context to be meaningful and reprocessable.
101
+ - **Continuing / finishing an interrupted build** — if a prior create run was interrupted and the solution is only partially built, route here; `create-solution` resumes from where it left off using only local state.
102
+
103
+ **Use the `update-solution` skill when the request involves any of:**
104
+
105
+ - **Adding to or modifying an existing solution** — "add 5 more devices to `<solution>`", "add a new sensor type to `<solution>`", "extend `<solution>` with …", "change the alarms on `<solution>`". `update-solution` locates the solution (local, then instance), reuses existing IDs, profile names, and design decisions, and applies the change surgically. It never regenerates untouched artifacts.
106
+ - **Changing a dashboard on an existing solution** — adding a widget, changing a chart, adjusting layout. Routing here (not `create-solution`) preserves the existing dashboard content.
107
+ - **Instance-import** — building a solution around entities that already live on the instance (the import, reverse-engineering, and fold-in work lives in `update-solution`).
108
+ - **Any request that touches entities already present** locally or on the instance.
109
+
110
+ **Direct entity generation (using this file's command reference inline) is superseded by the standalone-* skills.** A targeted ask that passes the gate above as "Just these items" routes to `standalone-entities` / `standalone-calculated-fields` / `standalone-alarm-rules` / `standalone-dashboard` — those skills own the standalone flow (resolver, scratch solution, schema discipline). The "Single-entity generation flow" and command sections below remain as the reference those skills follow.
111
+
112
+ ## Discovering Commands and Schemas
113
+
114
+ Use `tb --help` and `tb <group> --help` to discover available commands and entity types.
115
+
116
+ Before creating any entity type for the first time, run the `-H` flag to learn its JSON schema:
117
+
118
+ ```bash
119
+ tb device-profile save -H # Shows JSON schema, required fields, read-only fields
120
+ tb device save -H # Same for devices
121
+ ```
122
+
123
+ Run `-H` once per entity type per session — no need to repeat for the same type.
124
+
125
+ ## Single-entity generation flow
126
+
127
+ Once the user has confirmed they want a standalone entity (not a solution), follow these steps:
128
+
129
+ 1. **Verify local mode:** `tb config mode local`.
130
+ 2. **Discover the schema** with `tb <entity-type> save -H`.
131
+ 3. **Generate the UUID** and save the entity with `tb <entity-type> save --json '<json-with-id>'`.
132
+ 4. **Report** what was created and the entity ID.
133
+
134
+ ## JSON Input Format
135
+
136
+ All `--json` input accepts **plain entity JSON** — the entity object itself, not a wrapper. Local mode automatically wraps it in EntityExportData format when saving to files.
137
+
138
+ ```json
139
+ {
140
+ "id": {"entityType": "DEVICE", "id": "<uuid>"},
141
+ "name": "My Device",
142
+ "type": "sensor",
143
+ "deviceProfileId": {"entityType": "DEVICE_PROFILE", "id": "<profile-uuid>"}
144
+ }
145
+ ```
146
+
147
+ Required fields: `id` and `name`/`title`/`email` (depending on entity type).
148
+
149
+ ## ID Generation and Cross-References
150
+
151
+ Generate UUIDs programmatically — do not invent them by hand:
152
+ ```bash
153
+ python3 -c "import uuid; print(uuid.uuid4())"
154
+ ```
155
+
156
+ Generate all UUIDs you need upfront before building JSON, and store them in shell variables:
157
+ ```bash
158
+ PROFILE_ID=$(python3 -c "import uuid; print(uuid.uuid4())")
159
+ DEVICE_ID=$(python3 -c "import uuid; print(uuid.uuid4())")
160
+ ```
161
+
162
+ Then reference them in `--json` arguments:
163
+ ```bash
164
+ tb device-profile save --solution my-solution --json "{\"id\": {\"entityType\": \"DEVICE_PROFILE\", \"id\": \"$PROFILE_ID\"}, \"name\": \"My Profile\", ...}"
165
+ tb device save --solution my-solution --json "{\"id\": {\"entityType\": \"DEVICE\", \"id\": \"$DEVICE_ID\"}, \"deviceProfileId\": {\"entityType\": \"DEVICE_PROFILE\", \"id\": \"$PROFILE_ID\"}, ...}"
166
+ ```
167
+
168
+ ## Embedded Data (Attributes, Calculated Fields, Alarm Rules, Relations)
169
+
170
+ Some data types are embedded directly in parent entity files rather than saved as standalone files. In local mode, these commands find the parent entity file and merge the data into it. **Always run `-H` to get the exact JSON schema before using these commands.**
171
+
172
+ > Note: calculated fields and alarm rules route through a skill, never by hand here — `standalone-calculated-fields` / `standalone-alarm-rules` when the gate chose the standalone path, `create-solution` for a new solution, `update-solution` for solution-level changes.
173
+
174
+ **Attributes** — merged into entity file under `attributes.<SCOPE>`:
175
+ ```bash
176
+ tb attributes save DEVICE <entity-id> --solution <name> --json '{"location": "warehouse-A", "firmware": "v2.1"}'
177
+ ```
178
+ Use `--scope SHARED_SCOPE` for shared attributes (default is `SERVER_SCOPE`).
179
+
180
+ **Calculated fields** — embedded in parent entity's `calculatedFields` array. Run `tb calculated-field save -H` for the full schema (types: SIMPLE, SCRIPT, ALARM, GEOFENCING, etc.):
181
+ ```bash
182
+ tb calculated-field save --solution <name> --json '<calculated-field-json>'
183
+ ```
184
+
185
+ **Alarm rules** — embedded in parent entity's `calculatedFields` array. Run `tb alarm-rule save -H` for the full schema:
186
+ ```bash
187
+ tb alarm-rule save --solution <name> --json '<alarm-rule-json>'
188
+ ```
189
+
190
+ **Relations** — embedded in the "from" entity's `relations` array:
191
+ ```bash
192
+ tb relation save --solution <name> --json '{"from": {"entityType": "ASSET", "id": "<asset-uuid>"}, "to": {"entityType": "DEVICE", "id": "<device-uuid>"}, "type": "Contains", "typeGroup": "COMMON"}'
193
+ ```
194
+
195
+ ## Calculated Field Reprocessing
196
+
197
+ When a calculated field needs to backfill historical data (e.g., after changing its expression or adding it to an entity with existing telemetry), create a reprocessing task. This saves a task file locally; the actual reprocessing runs on the server during `tb push --run-tasks`.
198
+
199
+ ### When to add reprocessing
200
+
201
+ Add a reprocessing task for **every** calculated field you create — regardless of CF type (`math`, `script`, `ts-aggregation`, `related-aggregation`, `delta`, `propagate`, `geofencing`, etc.). The only CFs to skip are the ones covered by the exclusion rule below.
202
+
203
+ **Set `--entity-type` / `--entity-id` to where the CF is attached** — the task targets the entity the CF was saved against, because the server looks the CF up by attachment, not by inheritance. **Do not** point a profile-CF task at one of its instances; the lookup will return nothing.
204
+
205
+ - CF on a device profile → `--entity-type DEVICE_PROFILE --entity-id <device-profile-uuid>`. **One task per CF**; the server fans out across every device using that profile during reprocess.
206
+ - CF on an asset profile → `--entity-type ASSET_PROFILE --entity-id <asset-profile-uuid>`. **One task per CF.**
207
+ - CF on a specific device or asset → `--entity-type DEVICE` / `ASSET` with the instance UUID. One task per instance.
208
+
209
+ **Do not create reprocessing tasks for CFs that:**
210
+ - have `type == "ALARM"` — alarm-rule CFs evaluate live events; reprocessing them is a no-op (no historical alarms get re-fired), or
211
+ - have `output.type == "ATTRIBUTE"` — attribute outputs aren't backfilled per timestamp, or
212
+ - have **only** attribute-typed arguments (every argument's `refEntityKey.type == "ATTRIBUTE"`) — there is no telemetry window to walk.
213
+
214
+ Any one of these conditions is enough to skip; reprocessing has nothing meaningful to recompute in those cases.
215
+
216
+ ### How to add reprocessing
217
+
218
+ After saving a calculated field, create a reprocessing task by specifying the entity the CF is attached to (profile or instance — see the rule above) and the CF name:
219
+
220
+ ```bash
221
+ # Profile-attached CF (one task per CF — server fans out to all instances)
222
+ tb calculated-field reprocess \
223
+ --entity-type DEVICE_PROFILE \
224
+ --entity-id <device-profile-uuid> \
225
+ --name "<calculated-field-name>" \
226
+ --start-ts <start-timestamp-ms> \
227
+ --end-ts <end-timestamp-ms> \
228
+ --order 100 \
229
+ --solution <solution-name>
230
+
231
+ # Instance-attached CF (one task per device/asset)
232
+ tb calculated-field reprocess \
233
+ --entity-type DEVICE \
234
+ --entity-id <device-uuid> \
235
+ --name "<calculated-field-name>" \
236
+ --start-ts <start-timestamp-ms> \
237
+ --end-ts <end-timestamp-ms> \
238
+ --order 100 \
239
+ --solution <solution-name>
240
+ ```
241
+
242
+ This saves a task file to `solutions/<name>/tasks/reprocessing/`. The file persists across pushes — reprocessing runs every time `tb push --run-tasks` is used.
243
+
244
+ ### Reprocess ordering
245
+
246
+ `--order` controls execution sequence (default `100`, lower runs first). Use it when one CF reads another CF's output: assign the dependency a lower order so it runs first. Example — CF B reads CF A:
247
+
248
+ ```bash
249
+ tb calculated-field reprocess --entity-type DEVICE --entity-id <id> --name "A" --start-ts <s> --end-ts <e> --order 10 --solution <name>
250
+ tb calculated-field reprocess --entity-type DEVICE --entity-id <id> --name "B" --start-ts <s> --end-ts <e> --order 20 --solution <name>
251
+ ```
252
+
253
+ ### What to tell the user
254
+
255
+ When you create calculated fields with reprocessing tasks, remind the user:
256
+ - Deploy with `tb push <solution-name> --run-tasks` (not just `tb push`)
257
+ - The `--run-tasks` flag triggers CF reprocessing after the solution import
258
+ - Without `--run-tasks`, the task files are ignored and CFs won't backfill historical data
259
+
260
+ ## Telemetry Emulators
261
+
262
+ When a solution's devices need demo telemetry so dashboards render meaningfully, define a telemetry emulator. Emulators are local-only task definitions that run during `tb push --run-tasks` and generate synthetic historical data on the target server.
263
+
264
+ ### When to add an emulator
265
+
266
+ Add an emulator when you push a solution to a fresh dev/test instance and want the dashboards to be populated immediately. Emulators automatically skip devices that already have telemetry on the emulated keys, so the same task file is safe to keep when pushing to prod (where real devices report).
267
+
268
+ ### How to add an emulator
269
+
270
+ After saving a device, define its telemetry profile and persist it as a task file:
271
+
272
+ ```bash
273
+ tb emulator add \
274
+ --entity-type DEVICE \
275
+ --entity-id <device-uuid> \
276
+ --solution <solution-name> \
277
+ --days 7 \
278
+ --json '{"telemetryProfiles":[
279
+ {"key":"temperature","valueStrategy":{"type":"NATURAL","minStartValue":18,"maxStartValue":22,"minLowValue":18,"maxLowValue":19,"minHighValue":24,"maxHighValue":26,"minIncrement":0.1,"maxIncrement":0.5,"minDecrement":0.1,"maxDecrement":0.5}},
280
+ {"key":"humidity","valueStrategy":{"type":"CONSTANT","value":45}}
281
+ ]}'
282
+ ```
283
+
284
+ The available `valueStrategy.type` values are: `CONSTANT`, `COUNTER`, `NATURAL`, `EVENT`, `SEQUENCE`, `COMPOSITE`, `SCHEDULE`, `INCREMENT`, `DECREMENT`. Field names mirror the ThingsBoard AI server emulator definitions exactly.
285
+
286
+ ### What to tell the user
287
+
288
+ - Deploy with `tb push <solution-name> --run-tasks`
289
+ - Emulators skip devices that already have data on the emulated keys (safe to push to prod where real devices report)
290
+ - Use `tb push <name> --run-tasks --force-emulators --yes` to regenerate: this DELETES the existing values for the emulated keys on the target before posting fresh data
291
+ - Inspect with `tb emulator list`; remove with `tb emulator delete --entity-type DEVICE --entity-id <uuid> -y`
292
+
293
+ ## Debugging Unclear Errors
294
+
295
+ When a `tb` command fails with an error message that doesn't make the cause obvious — e.g. low-level deserialization errors, opaque "Type definition error" messages, empty/short server responses, or anything that doesn't pinpoint the offending entity — re-run the same command with `--debug` (or set `TB_DEBUG=1`) to see the full request/response.
296
+
297
+ ```bash
298
+ tb validate <solution-name> --debug
299
+ TB_DEBUG=1 tb push <solution-name>
300
+ ```
301
+
302
+ What `--debug` adds:
303
+ - Outgoing request URL, headers (sensitive values redacted), and body
304
+ - Response status, reason, and full body — including server fields like `errorCode`, `timestamp`, and `path` that the normal error panel hides
305
+
306
+ Use it before guessing at fixes: the request body shows exactly what was sent, which usually reveals which entity file is malformed (missing `entityType`, wrong shape, unknown discriminator, etc.). Do **not** paste debug output into commits or PRs unless you've reviewed it for tokens or other sensitive data.
@@ -0,0 +1,96 @@
1
+ ---
2
+ name: alarm-generator
3
+ description: Renders one alarm-rule design entry into TB wire-format JSON for one target profile and saves it via `tb alarm-rule save`. Invoked in parallel — one per (alarm, profile) pair after the skill expands attachedTo fanout — by the generate-alarms skill.
4
+ tools: Read, Bash
5
+ model: haiku
6
+ skills:
7
+ - alarm-rule-foundations
8
+ ---
9
+
10
+ # Alarm Generator (per-alarm worker)
11
+
12
+ Goal: translate **one** alarm-rule design entry into TB wire-format JSON for **one** target profile and save it via `tb alarm-rule save`, in one Haiku pass. Returns a one-line summary; the skill needs nothing else.
13
+
14
+ `alarm-rule-foundations` is already in your context (preloaded). It defines the reference reading map, the schema discipline, the rendering rules (both `type` fields with the `ALARM` discriminator, severity-keyed `createRules` map, top-level `clearCondition`/`propagate`), the pre-save self-validation walk, and the save command. Do NOT re-read it from disk. This file adds only the solution-pipeline layer: the brief contract, the design-entry translation rules, the telemetry cadence, entity-profiles key resolution, and the already-exists backstop.
15
+
16
+ Note: alarms in the design file can have `attachedTo` as a string or an array (fanout). The skill expands the fanout upstream and dispatches one generator per (alarm, profile) pair — this worker only sees one profile per call.
17
+
18
+ Sibling `alarm-generator` agents (dispatched in parallel by the skill) may target the same parent profile's file — that's safe; the agent just renders and saves directly with no coordination needed.
19
+
20
+ ## Telemetry cadence — fixed assumption
21
+
22
+ Telemetry arrives **every 30 minutes** (matches what the emulator produces and what the calculated-fields pipeline assumes). Validate every duration / consecutive-reading literal in the alarm entry against this cadence before rendering:
23
+
24
+ - **Duration literals** (`"for N min"`, `"for N minutes"`, `"for N hours"`). Reject any literal below **30 minutes**. If the design entry carries `5 min`, `10 min`, `15 min`, or similar, stop with `error: alarm "<name>" attached to "<profile>": duration <value> is below the 30-min telemetry cadence — design must use ≥ 30 min (multiples of 30)`. Don't silently round it up — that hides a design bug upstream.
25
+ - **Offline / "no telemetry for N" conditions.** Floor is **60 minutes** (one missed tick of slack). Anything below 60 min triggers the same hard stop with the message above plus `… (offline conditions require ≥ 60 min)`.
26
+ - **Consecutive-reading conditions** (`"for K consecutive readings"`). Each reading is 30 min, so `K=1` is meaningless (no debounce) and must be rejected. `K ≥ 2` is allowed.
27
+ - Static duration / count literals on the same condition must be preserved verbatim once they pass these floors — never silently change them.
28
+
29
+ These rules are guard-rails against a bad design slipping through; the design pass (`design-solution-architecture`) is supposed to enforce the same floors. If you have to reject here, the `## Alarms` bullet in `architecture-overview.md` is wrong — surface the error so the user fixes it before retrying.
30
+
31
+ ## EXTREMELY IMPORTANT — anti-shortcut rules
32
+
33
+ - Never write phrases like "due to time/complexity constraints," "for brevity," "to wrap up," "let me create a simplified version," or any synonym.
34
+ - Render and save exactly the single alarm in the brief. Do not return multiple, do not skip.
35
+ - Follow the foundations **schema discipline** exactly. Do not rename the alarm or change severities. If any required field is missing from the design entry or the schema rejects your translation, stop with an error rather than guessing.
36
+
37
+ ## Brief inputs
38
+
39
+ - `solution` — solution slug.
40
+ - `profile` — the single target profile name (post-fanout).
41
+ - `alarm` — JSON object: the single alarm design entry. Must include `name`, `createRules` (array of `{severity, condition}`), optional `clearCondition`, `propagate`, etc.
42
+ - `architectureOverviewPath` — absolute path to `architecture-overview.md`, the single design artifact. Used to verify the target profile exists and to classify condition keys.
43
+ - `overwrite` (optional bool, default `false`) — `true` when this alarm's definition changed this run: skip the Step 4 already-exists backstop and re-save over the existing entry.
44
+
45
+ ## Step 1 — Load schema + behavioral references
46
+
47
+ Run the foundations **required-reading batch** (the `-H` schema, the alarm data-model overview, the full alarm-rule reference, the TBEL reference only when a condition uses Script mode), plus `Read` `<architectureOverviewPath>` — all in a single parallel batch.
48
+
49
+ Verify the brief's `profile` exists in the overview as a `### <Profile> (DEVICE|ASSET)` subsection. If not, stop with `error: profile '<name>' not found in architecture-overview.md`.
50
+
51
+ ## Step 2 — Render the alarm
52
+
53
+ Render the TB alarm-rule JSON from the design entry per the foundations **schema discipline** and **rendering rules**, with the Step 1 files as the sole source of truth. Do not duplicate rules from those files here; treat the references as authoritative.
54
+
55
+ **Solution-specific translation rules** (how the design entry maps onto the TB shape):
56
+
57
+ - **`alarmType` ← design `name`.** Set `alarmType` byte-for-byte equal to the alarm's `name` from the design entry.
58
+ - **`createRules` array → map.** The design entry's `createRules` is an **array** of `{severity, condition}`. TB expects the severity-keyed **map** described in foundations. Convert by emitting one map entry per array element, with the severity string as the key and the condition structure as the value.
59
+ - **Argument key resolution against the overview.** For every key referenced by any condition or argument, look it up under the target profile's `### <Profile>` subsection in `architecture-overview.md`:
60
+ - Key under `Telemetry:` → time-series argument (a derived key annotated `(derived: …)` is still a time-series key).
61
+ - Key under `Attributes:` → `ATTRIBUTE` argument with `scope: SERVER_SCOPE`.
62
+ - Key absent on the profile → stop with `error: alarm "<alarmName>" attached to "<profile>": condition key '<key>' not found on profile`. Do not invent.
63
+
64
+ ## Step 3 — Pre-save self-validate the rendered alarm-rule JSON
65
+
66
+ Run the foundations **self-validation walk** on the rendered JSON. Append these solution-specific checks to the walk:
67
+
68
+ - **`alarmType` matches the design `name`.** Byte-for-byte equal to the design entry's `name`.
69
+ - **Condition keys exist on the target profile.** Every key referenced by any condition or argument appears under the brief's `profile` in the overview (`Telemetry:` or `Attributes:`). No invented keys.
70
+ - **Telemetry-cadence floors** (from the section at the top of this file). Re-check every duration / consecutive-reading literal in every condition:
71
+ - Duration literal (`"for N min"` / `"for N minutes"`): N ≥ 30.
72
+ - Offline / "no telemetry for N" literal: N ≥ 60.
73
+ - Consecutive-reading literal (`"for K consecutive readings"`): K ≥ 2.
74
+ - If any literal violates these floors, stop with the cadence error per the top-of-file rule — the design entry is wrong upstream.
75
+
76
+ Per the foundations walk, any failure stops with an error naming the check, the field path, and expected vs got — do **not** attempt a fix; surface the bug so the upstream stack sees it.
77
+
78
+ ## Step 4 — Save (with already-exists backstop)
79
+
80
+ The dispatching skill already filtered out (alarm, profile) pairs that exist on disk; as a backstop against races, re-check just before saving — **unless the brief carries `overwrite=true`** (the alarm's definition changed this run; save unconditionally, replacing the same-name entry): locate the parent profile file under `solutions/<solution>/device-profiles/` or `solutions/<solution>/asset-profiles/` (the file whose entity `name` equals the brief's `profile`) and check its embedded `calculatedFields` array for an `ALARM`-type entry with the same alarm name. If present, **do not save** — return `alarm "<alarmName>" attached to "<profile>": skipped (already exists)`.
81
+
82
+ Otherwise emit one Bash call:
83
+
84
+ ```bash
85
+ tb alarm-rule save --solution <solution> --json '<rendered-alarm-rule-json>'
86
+ ```
87
+
88
+ Wait for the result. On error, return the error verbatim and stop.
89
+
90
+ ## Step 5 — Return value
91
+
92
+ - Success: `alarm "<alarmName>" attached to "<profile>": saved`
93
+ - Backstop skip: `alarm "<alarmName>" attached to "<profile>": skipped (already exists)`
94
+ - Failure: `error: alarm "<alarmName>" attached to "<profile>": <message>`
95
+
96
+ The skill aggregates these into a final summary.