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.
- thingsboard_cli-4.3.1.2.post3/.gitignore +17 -0
- thingsboard_cli-4.3.1.2.post3/PKG-INFO +83 -0
- thingsboard_cli-4.3.1.2.post3/pyproject.toml +90 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/INSTRUCTIONS.md +306 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/alarm-generator.md +96 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/attribute-values-generator.md +127 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/cf-generator.md +125 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/cf-reprocess-generator.md +134 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/dashboard-generator.md +190 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/device-emulator-generator.md +205 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/entities-planner.md +470 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/entity-groups-generator.md +59 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/extension-builder.md +462 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/roles-generator.md +53 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/agents/users-generator.md +62 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/dashboards/composite_html_container_dashboard.json +507 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/composite-tabs-angular.json +507 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/custom-timewindow-analytics-plain.json +103 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/heatmap-cdn-library-plain.json +103 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/kanban-cdn-library-plain.json +103 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/master-detail-split-angular.json +695 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/examples/widgets/html-container/slide-over-drawer-angular.json +711 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/settings.json +22 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-change-owner-dialog/SKILL.md +17 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-change-state/SKILL.md +18 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-create-entity-dialog/SKILL.md +42 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-create-map-entity-dialog/SKILL.md +26 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-delete-entity-dialog/SKILL.md +18 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-drill-down/SKILL.md +22 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/action-edit-entity-dialog/SKILL.md +19 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alarm-rule-foundations/SKILL.md +59 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-asset-search-query/SKILL.md +51 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-asset-type/SKILL.md +18 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-customer-entities/SKILL.md +21 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-customers-by-group-name/SKILL.md +23 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-device-search-query/SKILL.md +49 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-device-type/SKILL.md +18 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-entity-type/SKILL.md +18 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-relations-query/SKILL.md +49 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-single-entity/SKILL.md +18 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/alias-state-entity/SKILL.md +19 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/calculated-field-foundations/SKILL.md +120 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/commit-step/SKILL.md +97 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/SKILL.md +383 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/references/extensions.md +62 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/references/interview.md +42 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/references/resume-to-continue.md +13 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/create-solution/references/revisions.md +23 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/dashboard-dark-mode/SKILL.md +221 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/dashboard-dark-mode/dark-mode.css +200 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/dashboard-foundations/SKILL.md +626 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-dashboards/SKILL.md +309 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-solution-architecture/SKILL.md +196 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-solution-architecture/references/extension-design.md +15 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-solution-architecture/references/from-existing.md +27 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/design-solution-architecture/references/revision-flow.md +5 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-alarms/SKILL.md +89 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-attributes/SKILL.md +97 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-calculated-fields/SKILL.md +86 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-emulators/SKILL.md +105 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/generate-entities/SKILL.md +121 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/pull-solution/SKILL.md +239 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/reprocess-calculated-fields/SKILL.md +55 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-alarm-rules/SKILL.md +73 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-calculated-fields/SKILL.md +89 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-dashboard/SKILL.md +80 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-entities/SKILL.md +67 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/standalone-target-resolver/SKILL.md +141 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/thingsboard-concepts/SKILL.md +57 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/update-solution/SKILL.md +188 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/update-solution/references/instance-import.md +52 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/update-solution/references/local-path.md +47 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/update-solution/references/post-generation-decisions.md +94 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-action-button/SKILL.md +53 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-alarm-count/SKILL.md +63 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-alarm-table/SKILL.md +64 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-bar-chart/SKILL.md +53 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-battery-level/SKILL.md +70 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-chart/SKILL.md +58 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-connect-real-devices/SKILL.md +57 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-entity-table/SKILL.md +73 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-header-card/SKILL.md +47 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-horizontal-value-card/SKILL.md +66 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-html-container/SKILL.md +394 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-indoor-map/SKILL.md +70 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-info-card/SKILL.md +84 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-navigation-widget/SKILL.md +69 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-outdoor-map/SKILL.md +216 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-pie-chart/SKILL.md +102 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-progress-bar/SKILL.md +51 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-range-chart/SKILL.md +40 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-signal-strength/SKILL.md +46 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-simple-gauge/SKILL.md +74 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-state-chart/SKILL.md +44 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-state-switcher/SKILL.md +50 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit/skills/widget-value-chart-card/SKILL.md +59 -0
- thingsboard_cli-4.3.1.2.post3/scaffold/manifest.json +4 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/commands/feedback.py +96 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/commands/project.py +1107 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/agent_detect.py +31 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/agent_format.py +387 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/analytics.py +349 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/feedback.py +476 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/interactive.py +38 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/core/scaffold.py +336 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/commands/ai_chat.py +68 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/commands/alarm.py +252 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/commands/entity_group.py +584 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/commands/integration.py +247 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/cf_reprocessing_job_configuration.py +87 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/cf_reprocessing_job_result.py +90 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/dashboard.py +58 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/dashboard_info.py +66 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/device_profile.py +326 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/device_profile_data.py +289 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/device_profile_transport_configuration.py +257 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/dummy_job_configuration.py +92 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/dummy_job_result.py +90 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/home_dashboard.py +59 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/job.py +298 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/job_configuration.py +257 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/job_result.py +101 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/lw_m2_mbootstrap_server_credential.py +80 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/lwm2m_device_profile_transport_configuration.py +142 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/page_data_dashboard_info.py +74 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/page_data_device_profile.py +334 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/page_data_job.py +306 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/report_job_configuration.py +232 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/report_job_result.py +91 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/task_result.py +76 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/help/_generated/models/telemetry_mapping_configuration.py +42 -0
- thingsboard_cli-4.3.1.2.post3/src/thingsboard_cli/main.py +1098 -0
- thingsboard_cli-4.3.1.2.post3/tests/conftest.py +113 -0
- thingsboard_cli-4.3.1.2.post3/tests/e2e/conftest.py +178 -0
- thingsboard_cli-4.3.1.2.post3/tests/e2e/helpers.py +365 -0
- thingsboard_cli-4.3.1.2.post3/tests/e2e/test_agent_format.py +51 -0
- thingsboard_cli-4.3.1.2.post3/tests/e2e/test_feedback.py +172 -0
- thingsboard_cli-4.3.1.2.post3/tests/e2e/test_project_mode.py +1360 -0
- thingsboard_cli-4.3.1.2.post3/tests/helpers.py +37 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_agent_detect.py +37 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_agent_format.py +283 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_analytics.py +464 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_feedback.py +679 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_feedback_commands.py +221 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_init_agent_format.py +209 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_interactive.py +57 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_main_error_tracking.py +303 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_project_commands.py +1087 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_scaffold_format.py +152 -0
- thingsboard_cli-4.3.1.2.post3/tests/test_scaffold_propagation.py +306 -0
- thingsboard_cli-4.3.1.2.post3/uv.lock +969 -0
- thingsboard_cli-4.3.1.2.post1/.gitignore +0 -16
- thingsboard_cli-4.3.1.2.post1/PKG-INFO +0 -82
- thingsboard_cli-4.3.1.2.post1/extension-starter/docs/tb-message-types.md +0 -674
- thingsboard_cli-4.3.1.2.post1/pyproject.toml +0 -82
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/CLAUDE.md +0 -248
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/alarm-generator.md +0 -109
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/alarms-designer.md +0 -109
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/attribute-values-generator.md +0 -124
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/cf-generator.md +0 -179
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/cf-reprocess-generator.md +0 -132
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/dashboard-json-generator.md +0 -2149
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/device-emulator-generator.md +0 -210
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/entities-planner.md +0 -294
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/entity-groups-generator.md +0 -59
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/entity-profiles-designer.md +0 -100
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/extension-builder.md +0 -462
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/iam-designer.md +0 -98
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/metrics-designer.md +0 -165
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/relations-designer.md +0 -89
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/roles-generator.md +0 -51
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/agents/users-generator.md +0 -62
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/settings.json +0 -13
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/commit-step/SKILL.md +0 -96
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/create-solution/SKILL.md +0 -793
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/design-dashboards/SKILL.md +0 -277
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/design-solution-architecture/SKILL.md +0 -279
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-alarms/SKILL.md +0 -71
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-attributes/SKILL.md +0 -96
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-calculated-fields/SKILL.md +0 -67
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-dashboard-json/SKILL.md +0 -77
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-emulators/SKILL.md +0 -102
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/generate-entities/SKILL.md +0 -121
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/pull-solution/SKILL.md +0 -239
- thingsboard_cli-4.3.1.2.post1/scaffold/.claude/skills/reprocess-calculated-fields/SKILL.md +0 -45
- thingsboard_cli-4.3.1.2.post1/scaffold/manifest.json +0 -4
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/commands/project.py +0 -1018
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/core/analytics.py +0 -341
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/core/scaffold.py +0 -244
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/commands/ai_chat.py +0 -68
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/commands/alarm.py +0 -252
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/commands/entity_group.py +0 -584
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/commands/integration.py +0 -233
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/cf_reprocessing_job_configuration.py +0 -37
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/cf_reprocessing_job_result.py +0 -35
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/dashboard.py +0 -58
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/dashboard_info.py +0 -66
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/device_profile.py +0 -262
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/device_profile_data.py +0 -225
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/device_profile_transport_configuration.py +0 -193
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/dummy_job_configuration.py +0 -37
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/dummy_job_result.py +0 -35
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/home_dashboard.py +0 -59
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/job.py +0 -270
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/job_configuration.py +0 -213
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/job_result.py +0 -67
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/lw_m2_mbootstrap_server_credential.py +0 -12
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/lwm2m_device_profile_transport_configuration.py +0 -78
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/page_data_dashboard_info.py +0 -74
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/page_data_device_profile.py +0 -270
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/page_data_job.py +0 -278
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/report_job_configuration.py +0 -188
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/report_job_result.py +0 -57
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/task_result.py +0 -17
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/help/_generated/models/telemetry_mapping_configuration.py +0 -42
- thingsboard_cli-4.3.1.2.post1/src/thingsboard_cli/main.py +0 -1069
- thingsboard_cli-4.3.1.2.post1/tests/conftest.py +0 -96
- thingsboard_cli-4.3.1.2.post1/tests/e2e/conftest.py +0 -171
- thingsboard_cli-4.3.1.2.post1/tests/e2e/helpers.py +0 -354
- thingsboard_cli-4.3.1.2.post1/tests/e2e/test_project_mode.py +0 -1350
- thingsboard_cli-4.3.1.2.post1/tests/test_analytics.py +0 -444
- thingsboard_cli-4.3.1.2.post1/tests/test_main_error_tracking.py +0 -221
- thingsboard_cli-4.3.1.2.post1/tests/test_project_commands.py +0 -1031
- thingsboard_cli-4.3.1.2.post1/tests/test_scaffold_propagation.py +0 -304
- thingsboard_cli-4.3.1.2.post1/uv.lock +0 -934
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/.gitattributes +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/.github/workflows/ci.yml +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/CHANGELOG.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/CLAUDE.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/CONTRIBUTING.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/README.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/.env.example +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/.gitignore +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/.license-header +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/.snapshot.json +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/Dockerfile +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/LICENSE +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/README.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/compose.yaml +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/deploy/.env.example +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/deploy/docker-compose.yml +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/deploy/haproxy-extension.cfg.snippet +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/pom.xml +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/target/maven-archiver/pom.properties +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/widgets/cloud-button.js +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/examples/widgets/on-premise-button.js +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/pom.xml +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/resources/application.yml +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/src/main/resources/logback.xml +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/antrun/build-main.xml +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AccountTwoFaSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AcmeCertificateId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Action.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ActionStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ActionType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ActivateUserRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AdminControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AdminSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AdminSettingsId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AffectedTenantAdministratorsFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AffectedUserFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggFunction.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggFunctionInput.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggInput.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggKeyInput.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggMetric.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Aggregation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggregationConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AggregationParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiChatControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModel.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiModelType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiSolutionControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AiToolControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Alarm.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmAction.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmAssignee.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmAssignmentNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmAssignmentRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCalculatedFieldConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmComment.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCommentType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCondition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionExpression.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueAlarmSchedule.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueBoolean.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueDouble.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueInteger.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueLong.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmConditionValueString.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmCountQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmDataPageLink.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmDataQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmFilterConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRule.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleBooleanFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleBooleanOperation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleComplexFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleComplexOperation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleDefinition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleDefinitionInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleKeyFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleNumericFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleNumericOperation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleStringFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmRuleStringOperation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmSchedule.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmSearchStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmSeverity.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AlarmTableComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AliasEntityId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AliasEntityType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AllUsersFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AllowCreateNewDevicesDeviceProfileProvisionConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AllowedPermissionsInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AmazonBedrockChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AmazonBedrockProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AnthropicChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AnthropicProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AnyTimeSchedule.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiFeature.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiKey.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiKeyControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiKeyId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiKeyInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageLimitNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageLimitRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageStateFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageStateId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ApiUsageStateValue.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Argument.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ArgumentType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Asset.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfile.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfileControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfileExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfileId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetProfileInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetSearchQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetSearchQueryFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AssetTypeFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributeData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributeExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributeScope.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesEntityView.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesImmediateOutputStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesOutput.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesOutputStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AttributesRuleChainOutputStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuditLog.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuditLogControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuditLogId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuthControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AuthenticationProtocol.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Authority.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AutoVersionCreateConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AvailableEntityKeys.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AvailableEntityKeysV2.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AwsSnsSmsProviderConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AxisPosition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AzureOpenAiChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/AzureOpenAiProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BackupCodeTwoFaAccountConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BackupCodeTwoFaProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BadgePosition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BarSeriesSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BaseReadTsKvQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Basic.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BillingCustomerId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BillingEndpointControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BlobEntityControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BlobEntityId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BlobEntityInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BlobEntityWithCustomerInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BooleanFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BooleanOperation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BorderLength.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BorderType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BranchInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportColumnType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportResultAsset.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportResultDevice.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/BulkImportResultEdge.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Button.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CMAssigneeType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CMItemLinkType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CMItemType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CMScope.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedField.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldDebugEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CalculatedFieldType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CaptchaClientParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CaptchaParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CellSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CertificateInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CertificateStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfArgumentDynamicSourceConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingJobConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingJobResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingTaskFailure.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingTaskResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CfReprocessingValidationResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChangePasswordRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartFillSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartFillSettingsGradient.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartFillType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartLabelPosition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartLineType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChartShape.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChatType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CheckPreProvisionedDevicesDeviceProfileProvisionConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ChecksumAlgorithm.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ClaimRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ClearRule.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ClientAttributesQueryingSnmpCommunicationConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CloudDomainId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CloudDomainInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CloudEndpointControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CoapDeviceProfileTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CoapDeviceTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CoapDeviceTypeConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ColorRange.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ColumnMapping.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ColumnSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComparisonDuration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComparisonTsValue.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComplexFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComplexOperation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComplexVersionCreateRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentClusteringMode.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentDescriptor.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentDescriptorControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentDescriptorId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentLifecycleEvent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentScope.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ComponentType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ContactBasedObject.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Converter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterLibraryControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConverterType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ConvertersInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CouponDuration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CouponId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CreateReportRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CsvReportTemplateConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CurrentOwnerDynamicSourceConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenu.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuDeleteResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMenuItem.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomMobilePage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomTimeSchedule.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomTimeScheduleItem.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomTranslationControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Customer.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/CustomerUsersFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Dashboard.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardPage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardReportConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DashboardReportControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataKey.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataKeyComparisonSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataKeySettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataKeySettingsType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataSource.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataSourceType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DataType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DayInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DebugConverterEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DebugIntegrationEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DebugSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultCoapDeviceTypeConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDashboardParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDataKeySettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDeviceConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDeviceProfileConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDeviceProfileTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultDeviceTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultMenuItem.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultMobilePage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultPageId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultRuleChainCreateRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DefaultTenantProfileConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeleteTenantRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeliveryMethodNotificationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Device.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceActivityNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceActivityRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceConnectivityControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceCredentials.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceCredentialsId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceCredentialsType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceEvent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceGroupOtaPackage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceGroupOtaPackageControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfile.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileProvisionConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileProvisionType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceProfileType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceSearchQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceSearchQueryFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceTransportType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DeviceTypeFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Direction.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DisabledDeviceProfileProvisionConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Discount.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DividerComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Domain.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DomainControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DomainId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DomainInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DoughnutLayout.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DummyJobConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DummyJobResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DummyTaskFailure.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DummyTaskResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DurationAlarmCondition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DynamicValueBoolean.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DynamicValueDouble.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DynamicValueSourceType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/DynamicValueString.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Edge.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeCommunicationFailureNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeCommunicationFailureRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeConnectionNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeConnectionRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeConnectivityEvent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEvent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEventActionType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEventControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEventId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeEventType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeInstructions.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeLicenseType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeSearchQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeSearchQueryFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdgeTypeFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdqsApiMode.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdqsState.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdqsSyncRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EdqsSyncStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EfentoCoapDeviceTypeConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EmailDeliveryMethodNotificationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EmailTwoFaAccountConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EmailTwoFaProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EnterpriseCaptchaParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitiesByGroupNameFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitiesLimitNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitiesLimitRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitiesVersionControlControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Entity.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityActionNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityActionRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityAggregationCalculatedFieldConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityAlias.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityCoordinates.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityCountQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataDiff.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataPageLink.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityDataSortOrder.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityExportSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroup.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupListFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityGroupNameFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityKey.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityKeyType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityKeyValueType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityListFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityLoadError.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityNameFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityQueryControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityRelation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityRelationControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityRelationInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityRelationsQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitySearchDirection.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntitySubtype.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTableComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeLoadResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeVersionCreateConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeVersionLoadConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityTypeVersionLoadRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityVersion.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityView.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewSearchQuery.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewSearchQueryFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EntityViewTypeFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorComponentAllOfException.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorComponentAllOfExceptionCause.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorComponentAllOfExceptionCauseStackTrace.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ErrorEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EscalatedNotificationRuleRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/EventType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ExportableEntity.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Failure.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Favicon.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FeaturesInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Filter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FilterPredicateValueBoolean.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FilterPredicateValueDouble.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FilterPredicateValueString.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FixedTimeWindow.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Font.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FontStyle.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/FontWeight.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GeofencingCalculatedFieldConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GeofencingReportStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GitHubModelsChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GitHubModelsProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GoogleAiGeminiChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GoogleAiGeminiProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GoogleVertexAiGeminiChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GoogleVertexAiGeminiProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GroupPermission.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GroupPermissionControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GroupPermissionId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/GroupPermissionInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HasIdObject.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HeaderFooter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Heading.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HeadingComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/History.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeDashboard.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeDashboardInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeDashboardParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeMenuItem.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HomeMenuItemType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/HourInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageAlignment.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageSourceType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ImageWidthType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Insets.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Integration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationConvertersInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationLifecycleEventNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationLifecycleEventRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntegrationType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Interval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/IntervalType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Job.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JobType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JsonTransportPayloadConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JwtPair.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/JwtSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/KeyFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/KeyFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/KeyInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/KeySample.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LastVisitedDashboardInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LatestChartComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LegendConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LegendPosition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LicenseUsageInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LifeCycleEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LimitedApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LineSeriesSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LineSeriesStepType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LinkType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginEndpointApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginMobileInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginResponse.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LoginWhiteLabelingParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2MBootstrapServerCredential.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2MServerSecurityConfigDefault.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2mInstance.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2mObject.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2mResourceObserve.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/LwM2mVersion.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Lwm2mControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Lwm2mDeviceProfileTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Lwm2mDeviceTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MailConfigTemplateControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MapperType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Mapping.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MenuItem.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MenuItemType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MergedGroupPermissionInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MergedGroupTypePermissionInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MergedUserPermissions.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MicrosoftTeamsDeliveryMethodNotificationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MicrosoftTeamsNotificationTargetConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MistralAiChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MistralAiProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileApp.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppBundle.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppBundleControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppBundleId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppBundleInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppDeliveryMethodNotificationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppNotificationDeliveryMethodConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileAppVersionInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileLayoutConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobilePage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobilePageType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileRedirectParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileSelfRegistrationParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MobileSessionInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Model.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MonthInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MqttDeviceProfileTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/MqttDeviceTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NameConflictPolicy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NewPlatformVersionNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NewPlatformVersionRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NoDataFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NoSecLwM2MBootstrapServerCredential.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NodeConnectionInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/None.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Notification.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationDeliveryMethod.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationDeliveryMethodConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationPref.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestPreview.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestStats.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRequestStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRule.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationRuleTriggerType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTarget.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTargetConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTargetControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTargetExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTargetId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplateConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplateControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplateExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationTemplateId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NotificationType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NumericFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/NumericOperation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2BasicMapperConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2Client.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientLoginInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientRegistrationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ClientRegistrationTemplateId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ConfigTemplateControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2ControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2CustomMapperConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OAuth2MapperConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ObjectAttributes.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ObjectType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OllamaAuth.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OllamaChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OllamaProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OpenAiChatModelConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OpenAiProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Operation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OriginatorEntityOwnerUsersFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtaPackageType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OtherConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Output.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/OwnerControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PSKLwM2MBootstrapServerCredential.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageBreakComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAiModel.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmCommentInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmRuleDefinition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAlarmRuleDefinitionInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataApiKeyInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAsset.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAssetInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAssetProfile.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAssetProfileInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataAuditLog.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataBlobEntityWithCustomerInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCalculatedField.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCalculatedFieldInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataContactBasedObject.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataConverter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCustomMenuInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCustomer.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataCustomerInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDashboardInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDevice.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDeviceInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDeviceProfile.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDeviceProfileInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataDomainInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEdge.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEdgeEvent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEdgeInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityGroupInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntitySubtype.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityVersion.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityView.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEntityViewInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataEventInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataIntegration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataIntegrationInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataJob.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataMobileApp.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataMobileAppBundleInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotification.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotificationRequestInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotificationRuleInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotificationTarget.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataNotificationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataOAuth2ClientInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataOtaPackageInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataQueue.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataQueueStats.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataReport.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataReportInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataReportTemplateInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataRole.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataRuleChain.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataScheduledReportInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataSchedulerEventInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataSchedulerEventWithCustomerInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataSecretInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataShortEntityView.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataString.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTbResourceInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTenant.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTenantInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTenantProfile.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataTrendzViewConfigLite.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataUser.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataUserEmailInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataUserInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataWidgetTypeInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageDataWidgetsBundle.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageOrientation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PageSize.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Palette.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PaletteSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PdfReportTemplateConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PieChartLabelPosition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PlatformTwoFaSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PlatformType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PlatformUsersNotificationTargetConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PowerMode.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PowerSavingConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PrivacyProtocol.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ProcessingStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ProcessingStrategyType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ProductId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/PropagationCalculatedFieldConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ProtoTransportPayloadConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QRCodeConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QrCodeSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QrCodeSettingsControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QrCodeSettingsId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QuarterInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Queue.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueStats.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueStatsControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QueueStatsId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/QuickTimeInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RPKLwM2MBootstrapServerCredential.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RateLimitsNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RateLimitsRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RawDataEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReadTsKvQueryResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReferencedEntityKey.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RefreshTokenRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelatedEntitiesAggregationCalculatedFieldConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationEntityTypeFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationPathLevel.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationPathQueryDynamicSourceConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationTypeGroup.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationsQueryFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RelationsSearchParameters.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RepeatingAlarmCondition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Report.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportBarChartSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportBarChartWithLabelsSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportComponentSubType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportComponentType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportDoughnutChartSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportJobConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportJobResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportLatestChartSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportPieChartSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportRangeChartSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTaskResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTemplateType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ReportTimeSeriesChartSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RepositoryAuthMethod.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RepositorySettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RepositorySettingsInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResetPasswordEmailRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResetPasswordRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Resource.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourceExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourceShortageRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourceSubType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourceType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ResourcesShortageNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RichTextComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Role.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RoleControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RoleExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RoleId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RoleType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Rpc.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RpcId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RpcStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RpcV1ControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RpcV2ControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChain.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainConnectionInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainDebugEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainImportResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainMetaData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainOutputLabelsUsage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleChainType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleEngineComponentLifecycleEventNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleEngineComponentLifecycleEventRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleEngineControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleNode.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleNodeDebugEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/RuleNodeId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SaveDeviceWithCredentialsRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SaveOtaPackageInfoRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ScheduledReportInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEvent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SchedulerEventWithCustomerInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ScriptCalculatedFieldConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ScriptLanguage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Secret.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecretControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecretId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecretInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecretType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SecuritySettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SelfRegistrationControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SelfRegistrationParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SelfRegistrationType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ShareGroupRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SharedAttributesSettingSnmpCommunicationConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ShortCustomerInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ShortEntityView.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpField.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpFieldId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SignUpSelfRegistrationParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SimpleAlarmCondition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SimpleAlarmConditionExpression.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SimpleCalculatedFieldConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SimpleEntity.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SingleEntityFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SingleEntityVersionCreateRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SingleEntityVersionLoadRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackConversation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackConversationType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackDeliveryMethodNotificationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackNotificationDeliveryMethodConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SlackNotificationTargetConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmppBindType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmppSmsProviderConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmsDeliveryMethodNotificationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmsProviderConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmsTwoFaAccountConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SmsTwoFaProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpCommunicationConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpCommunicationSpec.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpDeviceProfileTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpDeviceTransportConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpMapping.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SnmpProtocolVersion.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionExportImportControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionExportRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionExportResponse.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionImportResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionInstallResponse.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionStep.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionTemplateLevel.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SolutionValidationResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SpecificTimeSchedule.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SplitViewComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StarredDashboardInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StateEntityFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StateEntityOwnerFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StatisticsEventFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StoreInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StringFilterPredicate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/StringOperation.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubReportComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubmitStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubmitStrategyType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionAddonId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionDetails.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionEntry.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionExceptionErrorCode.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionItems.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionPlanId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SubscriptionUsage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Success.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SyncStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SystemAdministratorsFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SystemInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/SystemInfoData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TableSortDirection.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TableSortOrder.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TaskProcessingFailureNotificationRuleTriggerConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TaskProcessingFailureRecipientsConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TaskResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbChatRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbChatResponse.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbContent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbImageDeleteResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbReportFormat.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResource.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceDeleteResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbResourceInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbSecretDeleteResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbTextContent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbUserMessage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TbelAlarmConditionExpression.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryEntityView.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryMappingConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryObserveStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TelemetryQueryingSnmpCommunicationConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Tenant.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantAddonData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantAdministratorsFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantNameStrategyType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfile.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantProfileQueueConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantSolutionTemplateDetails.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantSolutionTemplateInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TenantSolutionTemplateInstructions.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TestSmsRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TextAlignment.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThingsboardClient.java +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThingsboardCredentialsExpiredResponse.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThingsboardErrorCode.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThingsboardErrorResponse.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ThresholdLabelPosition.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartBarWidth.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartBarWidthSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartGridSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartKeySettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartNoAggregationBarWidthSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartNoAggregationBarWidthStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartSeriesType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartStateSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartStateSourceType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartThreshold.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartXAxisSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesChartYAxisSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesImmediateOutputStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesOutput.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesOutputStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeSeriesRuleChainOutputStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeUnit.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeWindowConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeseriesChartComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TimeseriesTableComponent.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ToCoreEdqsRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ToDeviceRpcRequestSnmpCommunicationConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ToServerRpcRequestSnmpCommunicationConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Token.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TotpTwoFaAccountConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TotpTwoFaProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TranslationControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TranslationInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TransportPayloadTypeConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzApiControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzHealthcheckResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzSummary.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzSynchronizationResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzSynchronizationResultType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzSynchronizationStatus.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzUsage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzViewConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TrendzViewConfigLite.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TsData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TsKvEntry.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TsValue.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwilioSmsProviderConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaAccountConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaAccountConfigUpdateRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaProviderConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaProviderInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFaProviderType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFactorAuthConfigControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/TwoFactorAuthControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UiSettingsControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UniquifyStrategy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UpdateMessage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UsageInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UsageInfoControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/User.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserActivationLink.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserDashboardsInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserEmailInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserGroupListFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserListFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserMobileInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserNotificationSettings.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserPasswordPolicy.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserPermissionsControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UserRoleFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/UsersFilter.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/V2CaptchaParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/V3CaptchaParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ValueSourceType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Vendor.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionCreateConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionCreateRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionCreateRequestType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionCreationResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionLoadConfig.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionLoadRequest.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionLoadRequestType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionLoadResult.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VersionedEntityInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/VerticalAlignment.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/Watermark.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WebDeliveryMethodNotificationTemplate.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WebSelfRegistrationParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WebViewPage.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WeekInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WeekSunSatInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WhiteLabeling.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WhiteLabelingControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WhiteLabelingParams.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WhiteLabelingType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetBundleInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetType.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeDetails.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetTypeInfo.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetsBundle.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetsBundleControllerApi.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetsBundleExportData.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/WidgetsBundleId.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/X509CertificateChainProvisionConfiguration.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/X509LwM2MBootstrapServerCredential.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/YearInterval.md +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/api-docs/ZoneGroupConfiguration.md +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/application.yml +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/classes/logback.xml +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/extension/target/maven-archiver/pom.properties +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/extension-starter/pom.xml +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scaffold/.gitignore +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1/scaffold/.claude → thingsboard_cli-4.3.1.2.post3/scaffold/agent-kit}/skills/.gitkeep +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/check-extension-env.sh +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/generate-help.sh +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/generate_help.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/release.sh +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/sync-ai-resources.sh +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/sync-extension-starter.sh +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/update_resources_manifest.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/scripts/update_scaffold_hash.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/_pagination.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/alarm.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/alarm_rule.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/asset.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/asset_profile.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/attributes.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/calculated_field.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/config.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/customer.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/dashboard.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/device.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/device_profile.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/emulator.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/entity_group.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/extension.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/pull.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/relation.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/role.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/rule_chain.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/solution.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/telemetry.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/commands/user.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/common/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/common/options.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/common/utils.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/config/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/config/manager.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/config/models.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/config/resolver.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/assembler.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/client.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/debug.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/decomposer.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/emulator/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/emulator/generators.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/emulator/models.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/emulator/runtime.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/exceptions.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/extension_manifest.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/extension_starter_unpacker.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/git_dirty.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/app.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/confirm.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/formatting.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/listing.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/loader.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/owner.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/picker.tcss +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/rows.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/search.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/sections.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/state.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/interactive_pull/theme.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/local.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/maven_runner.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/output.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/payload.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/resolver.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/resources.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/core/update.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/admin.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/asset.py +0 -0
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/auth.py +0 -0
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/converter.py +0 -0
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/customer.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/dashboard.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/device.py +0 -0
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/domain.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/edge.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/event.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/image.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/job.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/lwm2m.py +0 -0
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/notification.py +0 -0
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/oauth2.py +0 -0
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/owner.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/queue.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/report.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/role.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/secret.py +0 -0
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/solution.py +0 -0
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/telemetry.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/tenant.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/translation.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/trendz.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/commands/user.py +0 -0
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/__init__.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/action.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/aggregation.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/alarm.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/argument.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/asset.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/authority.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/basic.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/button.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/cmscope.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/converter.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/customer.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/device.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/direction.py +0 -0
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/domain.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/edge.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/entity.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/failure.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/favicon.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/filter.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/font.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/heading.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/history.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/insets.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/integration.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/interval.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/mapping.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/model.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/none.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/notification.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/operation.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/output.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/palette.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/queue.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/report.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/resource.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/role.py +0 -0
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/rpc.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/secret.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/success.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/tenant.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/token.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/usage.py +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/user.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/vendor.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/help/_generated/models/watermark.py +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/manifest.json +0 -0
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/maven_wrapper/mvnw +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/src/thingsboard_cli/resources/maven_wrapper/mvnw.cmd +0 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/test.sh +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/_helpers.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/__init__.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_alarm.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_alarm_rule.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_asset.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_asset_profile.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_attributes.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_cf_reprocessing.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_config.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_customer.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_dashboard.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_device.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_device_profile.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_emulator_lifecycle.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_entity_group.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_extension.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_first_run.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_interactive_pull.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_local_concurrency.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_pull.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_relation.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_role.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_rule_chain.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_telemetry.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/e2e/test_user.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_alarm_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_alarm_rule_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_assembler.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_asset_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_asset_profile_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_attributes_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_calculated_field_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_common_options.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_common_utils.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_config_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_config_manager.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_config_resolver.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_core_client.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_customer_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_dashboard_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_debug_flag.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_debug_redactor.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_decomposer.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_device_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_device_profile_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_emulator_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_emulator_generators.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_emulator_models.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_encoding_consistency.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_entity_group_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_extension.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_extension_manifest.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_generate_help.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_git_dirty.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_help.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_app.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_confirm.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_formatting.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_import_time.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_listing.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_loader.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_owner.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_rows.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_search.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_state.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_interactive_pull_theme.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_local.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_local_concurrency.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_main_output.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_maven_runner.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_output_helpers.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_packaging_dependencies.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_pagination_helper.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_payload_helper.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_pull_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_relation_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_reprocess_order.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_resolver.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_resources.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_role_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_rule_chain_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_run_emulators.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_scaffold_check.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_scaffold_version.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_solution_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_telemetry_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_update.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_user_commands.py +0 -0
- {thingsboard_cli-4.3.1.2.post1 → thingsboard_cli-4.3.1.2.post3}/tests/test_validation_hint.py +0 -0
|
@@ -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.
|