@fastybird/smart-panel-backend 0.1.0-alpha.5
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.
- package/LICENSE.md +201 -0
- package/README.md +266 -0
- package/dist/app.constants.d.ts +10 -0
- package/dist/app.constants.js +15 -0
- package/dist/app.constants.js.map +1 -0
- package/dist/app.interfaces.d.ts +4 -0
- package/dist/app.interfaces.js +3 -0
- package/dist/app.interfaces.js.map +1 -0
- package/dist/app.module.d.ts +14 -0
- package/dist/app.module.js +428 -0
- package/dist/app.module.js.map +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +48 -0
- package/dist/cli.js.map +1 -0
- package/dist/common/entities/base.entity.d.ts +5 -0
- package/dist/common/entities/base.entity.js +78 -0
- package/dist/common/entities/base.entity.js.map +1 -0
- package/dist/common/filters/bad-request-exception.filter.d.ts +5 -0
- package/dist/common/filters/bad-request-exception.filter.js +85 -0
- package/dist/common/filters/bad-request-exception.filter.js.map +1 -0
- package/dist/common/filters/global-error.filter.d.ts +5 -0
- package/dist/common/filters/global-error.filter.js +73 -0
- package/dist/common/filters/global-error.filter.js.map +1 -0
- package/dist/common/filters/internal-server-error-exception.filter.d.ts +5 -0
- package/dist/common/filters/internal-server-error-exception.filter.js +51 -0
- package/dist/common/filters/internal-server-error-exception.filter.js.map +1 -0
- package/dist/common/filters/not-found-exception.filter.d.ts +4 -0
- package/dist/common/filters/not-found-exception.filter.js +52 -0
- package/dist/common/filters/not-found-exception.filter.js.map +1 -0
- package/dist/common/filters/query-failed-exception.filter.d.ts +9 -0
- package/dist/common/filters/query-failed-exception.filter.js +74 -0
- package/dist/common/filters/query-failed-exception.filter.js.map +1 -0
- package/dist/common/filters/unprocessable-entity-exception.filter.d.ts +5 -0
- package/dist/common/filters/unprocessable-entity-exception.filter.js +52 -0
- package/dist/common/filters/unprocessable-entity-exception.filter.js.map +1 -0
- package/dist/common/logger/extension-logger.service.d.ts +19 -0
- package/dist/common/logger/extension-logger.service.js +103 -0
- package/dist/common/logger/extension-logger.service.js.map +1 -0
- package/dist/common/logger/index.d.ts +1 -0
- package/dist/common/logger/index.js +18 -0
- package/dist/common/logger/index.js.map +1 -0
- package/dist/common/services/app-instance-holder.service.d.ts +9 -0
- package/dist/common/services/app-instance-holder.service.js +39 -0
- package/dist/common/services/app-instance-holder.service.js.map +1 -0
- package/dist/common/utils/color.utils.d.ts +1 -0
- package/dist/common/utils/color.utils.js +46 -0
- package/dist/common/utils/color.utils.js.map +1 -0
- package/dist/common/utils/config.utils.d.ts +3 -0
- package/dist/common/utils/config.utils.js +30 -0
- package/dist/common/utils/config.utils.js.map +1 -0
- package/dist/common/utils/cooldown-manager.d.ts +8 -0
- package/dist/common/utils/cooldown-manager.js +29 -0
- package/dist/common/utils/cooldown-manager.js.map +1 -0
- package/dist/common/utils/http.utils.d.ts +17 -0
- package/dist/common/utils/http.utils.js +68 -0
- package/dist/common/utils/http.utils.js.map +1 -0
- package/dist/common/utils/semver.d.ts +3 -0
- package/dist/common/utils/semver.js +77 -0
- package/dist/common/utils/semver.js.map +1 -0
- package/dist/common/utils/transform.utils.d.ts +10 -0
- package/dist/common/utils/transform.utils.js +107 -0
- package/dist/common/utils/transform.utils.js.map +1 -0
- package/dist/common/validation/abstract-instance.validator.d.ts +5 -0
- package/dist/common/validation/abstract-instance.validator.js +28 -0
- package/dist/common/validation/abstract-instance.validator.js.map +1 -0
- package/dist/common/validation/validation-exception-factory.d.ts +6 -0
- package/dist/common/validation/validation-exception-factory.js +38 -0
- package/dist/common/validation/validation-exception-factory.js.map +1 -0
- package/dist/dataSource.d.ts +1 -0
- package/dist/dataSource.js +58 -0
- package/dist/dataSource.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +113 -0
- package/dist/main.js.map +1 -0
- package/dist/migrations/1000000000000-InitialSetup.d.ts +6 -0
- package/dist/migrations/1000000000000-InitialSetup.js +418 -0
- package/dist/migrations/1000000000000-InitialSetup.js.map +1 -0
- package/dist/modules/api/api.constants.d.ts +4 -0
- package/dist/modules/api/api.constants.js +17 -0
- package/dist/modules/api/api.constants.js.map +1 -0
- package/dist/modules/api/api.exceptions.d.ts +12 -0
- package/dist/modules/api/api.exceptions.js +32 -0
- package/dist/modules/api/api.exceptions.js.map +1 -0
- package/dist/modules/api/api.module.d.ts +12 -0
- package/dist/modules/api/api.module.js +62 -0
- package/dist/modules/api/api.module.js.map +1 -0
- package/dist/modules/api/api.openapi.d.ts +3 -0
- package/dist/modules/api/api.openapi.js +24 -0
- package/dist/modules/api/api.openapi.js.map +1 -0
- package/dist/modules/api/decorators/raw-route.decorator.d.ts +2 -0
- package/dist/modules/api/decorators/raw-route.decorator.js +8 -0
- package/dist/modules/api/decorators/raw-route.decorator.js.map +1 -0
- package/dist/modules/api/interceptors/api-metrics.interceptor.d.ts +8 -0
- package/dist/modules/api/interceptors/api-metrics.interceptor.js +33 -0
- package/dist/modules/api/interceptors/api-metrics.interceptor.js.map +1 -0
- package/dist/modules/api/interceptors/location-replace.interceptor.d.ts +11 -0
- package/dist/modules/api/interceptors/location-replace.interceptor.js +84 -0
- package/dist/modules/api/interceptors/location-replace.interceptor.js.map +1 -0
- package/dist/modules/api/interceptors/open-api-response.interceptor.d.ts +8 -0
- package/dist/modules/api/interceptors/open-api-response.interceptor.js +82 -0
- package/dist/modules/api/interceptors/open-api-response.interceptor.js.map +1 -0
- package/dist/modules/api/interceptors/transform-response.interceptor.d.ts +8 -0
- package/dist/modules/api/interceptors/transform-response.interceptor.js +45 -0
- package/dist/modules/api/interceptors/transform-response.interceptor.js.map +1 -0
- package/dist/modules/api/models/api-response.model.d.ts +58 -0
- package/dist/modules/api/models/api-response.model.js +414 -0
- package/dist/modules/api/models/api-response.model.js.map +1 -0
- package/dist/modules/api/models/api.model.d.ts +17 -0
- package/dist/modules/api/models/api.model.js +157 -0
- package/dist/modules/api/models/api.model.js.map +1 -0
- package/dist/modules/api/providers/api-stats.provider.d.ts +8 -0
- package/dist/modules/api/providers/api-stats.provider.js +47 -0
- package/dist/modules/api/providers/api-stats.provider.js.map +1 -0
- package/dist/modules/api/services/api-metrics.service.d.ts +14 -0
- package/dist/modules/api/services/api-metrics.service.js +73 -0
- package/dist/modules/api/services/api-metrics.service.js.map +1 -0
- package/dist/modules/api/utils/location-header.utils.d.ts +6 -0
- package/dist/modules/api/utils/location-header.utils.js +36 -0
- package/dist/modules/api/utils/location-header.utils.js.map +1 -0
- package/dist/modules/auth/auth.constants.d.ts +15 -0
- package/dist/modules/auth/auth.constants.js +21 -0
- package/dist/modules/auth/auth.constants.js.map +1 -0
- package/dist/modules/auth/auth.exceptions.d.ts +12 -0
- package/dist/modules/auth/auth.exceptions.js +32 -0
- package/dist/modules/auth/auth.exceptions.js.map +1 -0
- package/dist/modules/auth/auth.module.d.ts +13 -0
- package/dist/modules/auth/auth.module.js +166 -0
- package/dist/modules/auth/auth.module.js.map +1 -0
- package/dist/modules/auth/auth.openapi.d.ts +6 -0
- package/dist/modules/auth/auth.openapi.js +35 -0
- package/dist/modules/auth/auth.openapi.js.map +1 -0
- package/dist/modules/auth/commands/register-owner.command.d.ts +13 -0
- package/dist/modules/auth/commands/register-owner.command.js +59 -0
- package/dist/modules/auth/commands/register-owner.command.js.map +1 -0
- package/dist/modules/auth/commands/reset-password.command.d.ts +8 -0
- package/dist/modules/auth/commands/reset-password.command.js +57 -0
- package/dist/modules/auth/commands/reset-password.command.js.map +1 -0
- package/dist/modules/auth/controllers/auth.controller.d.ts +21 -0
- package/dist/modules/auth/controllers/auth.controller.js +226 -0
- package/dist/modules/auth/controllers/auth.controller.js.map +1 -0
- package/dist/modules/auth/controllers/tokens.controller.d.ts +19 -0
- package/dist/modules/auth/controllers/tokens.controller.js +253 -0
- package/dist/modules/auth/controllers/tokens.controller.js.map +1 -0
- package/dist/modules/auth/dto/check-email.dto.d.ts +6 -0
- package/dist/modules/auth/dto/check-email.dto.js +49 -0
- package/dist/modules/auth/dto/check-email.dto.js.map +1 -0
- package/dist/modules/auth/dto/check-username.dto.d.ts +6 -0
- package/dist/modules/auth/dto/check-username.dto.js +49 -0
- package/dist/modules/auth/dto/check-username.dto.js.map +1 -0
- package/dist/modules/auth/dto/create-token.dto.d.ts +28 -0
- package/dist/modules/auth/dto/create-token.dto.js +254 -0
- package/dist/modules/auth/dto/create-token.dto.js.map +1 -0
- package/dist/modules/auth/dto/login.dto.d.ts +7 -0
- package/dist/modules/auth/dto/login.dto.js +61 -0
- package/dist/modules/auth/dto/login.dto.js.map +1 -0
- package/dist/modules/auth/dto/refresh-token.dto.d.ts +6 -0
- package/dist/modules/auth/dto/refresh-token.dto.js +49 -0
- package/dist/modules/auth/dto/refresh-token.dto.js.map +1 -0
- package/dist/modules/auth/dto/register.dto.d.ts +13 -0
- package/dist/modules/auth/dto/register.dto.js +124 -0
- package/dist/modules/auth/dto/register.dto.js.map +1 -0
- package/dist/modules/auth/dto/update-config.dto.d.ts +5 -0
- package/dist/modules/auth/dto/update-config.dto.js +39 -0
- package/dist/modules/auth/dto/update-config.dto.js.map +1 -0
- package/dist/modules/auth/dto/update-token.dto.d.ts +19 -0
- package/dist/modules/auth/dto/update-token.dto.js +141 -0
- package/dist/modules/auth/dto/update-token.dto.js.map +1 -0
- package/dist/modules/auth/entities/auth.entity.d.ts +34 -0
- package/dist/modules/auth/entities/auth.entity.js +306 -0
- package/dist/modules/auth/entities/auth.entity.js.map +1 -0
- package/dist/modules/auth/guards/auth.guard.d.ts +42 -0
- package/dist/modules/auth/guards/auth.guard.js +190 -0
- package/dist/modules/auth/guards/auth.guard.js.map +1 -0
- package/dist/modules/auth/models/auth-response.model.d.ts +31 -0
- package/dist/modules/auth/models/auth-response.model.js +172 -0
- package/dist/modules/auth/models/auth-response.model.js.map +1 -0
- package/dist/modules/auth/models/auth.model.d.ts +21 -0
- package/dist/modules/auth/models/auth.model.js +188 -0
- package/dist/modules/auth/models/auth.model.js.map +1 -0
- package/dist/modules/auth/models/config.model.d.ts +5 -0
- package/dist/modules/auth/models/config.model.js +49 -0
- package/dist/modules/auth/models/config.model.js.map +1 -0
- package/dist/modules/auth/services/auth.service.d.ts +27 -0
- package/dist/modules/auth/services/auth.service.js +243 -0
- package/dist/modules/auth/services/auth.service.js.map +1 -0
- package/dist/modules/auth/services/crypto.service.d.ts +3 -0
- package/dist/modules/auth/services/crypto.service.js +21 -0
- package/dist/modules/auth/services/crypto.service.js.map +1 -0
- package/dist/modules/auth/services/tokens-type-mapper.service.d.ts +14 -0
- package/dist/modules/auth/services/tokens-type-mapper.service.js +31 -0
- package/dist/modules/auth/services/tokens-type-mapper.service.js.map +1 -0
- package/dist/modules/auth/services/tokens.service.d.ts +26 -0
- package/dist/modules/auth/services/tokens.service.js +264 -0
- package/dist/modules/auth/services/tokens.service.js.map +1 -0
- package/dist/modules/auth/utils/token.utils.d.ts +1 -0
- package/dist/modules/auth/utils/token.utils.js +42 -0
- package/dist/modules/auth/utils/token.utils.js.map +1 -0
- package/dist/modules/buddy/buddy.constants.d.ts +73 -0
- package/dist/modules/buddy/buddy.constants.js +88 -0
- package/dist/modules/buddy/buddy.constants.js.map +1 -0
- package/dist/modules/buddy/buddy.exceptions.d.ts +49 -0
- package/dist/modules/buddy/buddy.exceptions.js +101 -0
- package/dist/modules/buddy/buddy.exceptions.js.map +1 -0
- package/dist/modules/buddy/buddy.module.d.ts +27 -0
- package/dist/modules/buddy/buddy.module.js +215 -0
- package/dist/modules/buddy/buddy.module.js.map +1 -0
- package/dist/modules/buddy/buddy.openapi.d.ts +8 -0
- package/dist/modules/buddy/buddy.openapi.js +37 -0
- package/dist/modules/buddy/buddy.openapi.js.map +1 -0
- package/dist/modules/buddy/buddy.utils.d.ts +15 -0
- package/dist/modules/buddy/buddy.utils.js +138 -0
- package/dist/modules/buddy/buddy.utils.js.map +1 -0
- package/dist/modules/buddy/controllers/buddy-conversations.controller.d.ts +23 -0
- package/dist/modules/buddy/controllers/buddy-conversations.controller.js +319 -0
- package/dist/modules/buddy/controllers/buddy-conversations.controller.js.map +1 -0
- package/dist/modules/buddy/controllers/buddy-personality.controller.d.ts +10 -0
- package/dist/modules/buddy/controllers/buddy-personality.controller.js +86 -0
- package/dist/modules/buddy/controllers/buddy-personality.controller.js.map +1 -0
- package/dist/modules/buddy/controllers/buddy-providers.controller.d.ts +19 -0
- package/dist/modules/buddy/controllers/buddy-providers.controller.js +135 -0
- package/dist/modules/buddy/controllers/buddy-providers.controller.js.map +1 -0
- package/dist/modules/buddy/controllers/buddy-suggestions.controller.d.ts +13 -0
- package/dist/modules/buddy/controllers/buddy-suggestions.controller.js +121 -0
- package/dist/modules/buddy/controllers/buddy-suggestions.controller.js.map +1 -0
- package/dist/modules/buddy/dto/create-conversation.dto.d.ts +7 -0
- package/dist/modules/buddy/dto/create-conversation.dto.js +60 -0
- package/dist/modules/buddy/dto/create-conversation.dto.js.map +1 -0
- package/dist/modules/buddy/dto/send-message.dto.d.ts +6 -0
- package/dist/modules/buddy/dto/send-message.dto.js +50 -0
- package/dist/modules/buddy/dto/send-message.dto.js.map +1 -0
- package/dist/modules/buddy/dto/suggestion-feedback.dto.d.ts +7 -0
- package/dist/modules/buddy/dto/suggestion-feedback.dto.js +48 -0
- package/dist/modules/buddy/dto/suggestion-feedback.dto.js.map +1 -0
- package/dist/modules/buddy/dto/update-config.dto.d.ts +26 -0
- package/dist/modules/buddy/dto/update-config.dto.js +346 -0
- package/dist/modules/buddy/dto/update-config.dto.js.map +1 -0
- package/dist/modules/buddy/dto/update-personality.dto.d.ts +6 -0
- package/dist/modules/buddy/dto/update-personality.dto.js +50 -0
- package/dist/modules/buddy/dto/update-personality.dto.js.map +1 -0
- package/dist/modules/buddy/entities/buddy-conversation.entity.d.ts +9 -0
- package/dist/modules/buddy/entities/buddy-conversation.entity.js +57 -0
- package/dist/modules/buddy/entities/buddy-conversation.entity.js.map +1 -0
- package/dist/modules/buddy/entities/buddy-message.entity.d.ts +11 -0
- package/dist/modules/buddy/entities/buddy-message.entity.js +64 -0
- package/dist/modules/buddy/entities/buddy-message.entity.js.map +1 -0
- package/dist/modules/buddy/listeners/buddy-context-cache.listener.d.ts +19 -0
- package/dist/modules/buddy/listeners/buddy-context-cache.listener.js +146 -0
- package/dist/modules/buddy/listeners/buddy-context-cache.listener.js.map +1 -0
- package/dist/modules/buddy/listeners/intent-event.listener.d.ts +7 -0
- package/dist/modules/buddy/listeners/intent-event.listener.js +76 -0
- package/dist/modules/buddy/listeners/intent-event.listener.js.map +1 -0
- package/dist/modules/buddy/listeners/media-activity-event.listener.d.ts +20 -0
- package/dist/modules/buddy/listeners/media-activity-event.listener.js +79 -0
- package/dist/modules/buddy/listeners/media-activity-event.listener.js.map +1 -0
- package/dist/modules/buddy/models/config.model.d.ts +26 -0
- package/dist/modules/buddy/models/config.model.js +345 -0
- package/dist/modules/buddy/models/config.model.js.map +1 -0
- package/dist/modules/buddy/models/conversation-response.model.d.ts +8 -0
- package/dist/modules/buddy/models/conversation-response.model.js +46 -0
- package/dist/modules/buddy/models/conversation-response.model.js.map +1 -0
- package/dist/modules/buddy/models/message-response.model.d.ts +8 -0
- package/dist/modules/buddy/models/message-response.model.js +46 -0
- package/dist/modules/buddy/models/message-response.model.js.map +1 -0
- package/dist/modules/buddy/models/messaging-provider-status.model.d.ts +11 -0
- package/dist/modules/buddy/models/messaging-provider-status.model.js +67 -0
- package/dist/modules/buddy/models/messaging-provider-status.model.js.map +1 -0
- package/dist/modules/buddy/models/personality-response.model.d.ts +7 -0
- package/dist/modules/buddy/models/personality-response.model.js +46 -0
- package/dist/modules/buddy/models/personality-response.model.js.map +1 -0
- package/dist/modules/buddy/models/provider-status.model.d.ts +13 -0
- package/dist/modules/buddy/models/provider-status.model.js +86 -0
- package/dist/modules/buddy/models/provider-status.model.js.map +1 -0
- package/dist/modules/buddy/models/suggestion-response.model.d.ts +24 -0
- package/dist/modules/buddy/models/suggestion-response.model.js +161 -0
- package/dist/modules/buddy/models/suggestion-response.model.js.map +1 -0
- package/dist/modules/buddy/models/voice-provider-status.model.d.ts +15 -0
- package/dist/modules/buddy/models/voice-provider-status.model.js +92 -0
- package/dist/modules/buddy/models/voice-provider-status.model.js.map +1 -0
- package/dist/modules/buddy/platforms/anthropic-sdk.utils.d.ts +18 -0
- package/dist/modules/buddy/platforms/anthropic-sdk.utils.js +85 -0
- package/dist/modules/buddy/platforms/anthropic-sdk.utils.js.map +1 -0
- package/dist/modules/buddy/platforms/llm-provider.platform.d.ts +38 -0
- package/dist/modules/buddy/platforms/llm-provider.platform.js +3 -0
- package/dist/modules/buddy/platforms/llm-provider.platform.js.map +1 -0
- package/dist/modules/buddy/platforms/oauth-token-manager.d.ts +25 -0
- package/dist/modules/buddy/platforms/oauth-token-manager.js +72 -0
- package/dist/modules/buddy/platforms/oauth-token-manager.js.map +1 -0
- package/dist/modules/buddy/platforms/openai-sdk.utils.d.ts +11 -0
- package/dist/modules/buddy/platforms/openai-sdk.utils.js +94 -0
- package/dist/modules/buddy/platforms/openai-sdk.utils.js.map +1 -0
- package/dist/modules/buddy/platforms/stt-provider.platform.d.ts +11 -0
- package/dist/modules/buddy/platforms/stt-provider.platform.js +3 -0
- package/dist/modules/buddy/platforms/stt-provider.platform.js.map +1 -0
- package/dist/modules/buddy/platforms/tool-provider.platform.d.ts +1 -0
- package/dist/modules/buddy/platforms/tool-provider.platform.js +3 -0
- package/dist/modules/buddy/platforms/tool-provider.platform.js.map +1 -0
- package/dist/modules/buddy/platforms/tts-provider.platform.d.ts +17 -0
- package/dist/modules/buddy/platforms/tts-provider.platform.js +3 -0
- package/dist/modules/buddy/platforms/tts-provider.platform.js.map +1 -0
- package/dist/modules/buddy/services/action-observer.service.d.ts +24 -0
- package/dist/modules/buddy/services/action-observer.service.js +47 -0
- package/dist/modules/buddy/services/action-observer.service.js.map +1 -0
- package/dist/modules/buddy/services/anomaly-detector.service.d.ts +20 -0
- package/dist/modules/buddy/services/anomaly-detector.service.js +308 -0
- package/dist/modules/buddy/services/anomaly-detector.service.js.map +1 -0
- package/dist/modules/buddy/services/buddy-context.service.d.ts +111 -0
- package/dist/modules/buddy/services/buddy-context.service.js +324 -0
- package/dist/modules/buddy/services/buddy-context.service.js.map +1 -0
- package/dist/modules/buddy/services/buddy-conversation.service.d.ts +42 -0
- package/dist/modules/buddy/services/buddy-conversation.service.js +506 -0
- package/dist/modules/buddy/services/buddy-conversation.service.js.map +1 -0
- package/dist/modules/buddy/services/buddy-personality.service.d.ts +12 -0
- package/dist/modules/buddy/services/buddy-personality.service.js +123 -0
- package/dist/modules/buddy/services/buddy-personality.service.js.map +1 -0
- package/dist/modules/buddy/services/buddy-provider-status.service.d.ts +10 -0
- package/dist/modules/buddy/services/buddy-provider-status.service.js +73 -0
- package/dist/modules/buddy/services/buddy-provider-status.service.js.map +1 -0
- package/dist/modules/buddy/services/conflict-detector-evaluator.service.d.ts +25 -0
- package/dist/modules/buddy/services/conflict-detector-evaluator.service.js +253 -0
- package/dist/modules/buddy/services/conflict-detector-evaluator.service.js.map +1 -0
- package/dist/modules/buddy/services/energy-evaluator.service.d.ts +16 -0
- package/dist/modules/buddy/services/energy-evaluator.service.js +145 -0
- package/dist/modules/buddy/services/energy-evaluator.service.js.map +1 -0
- package/dist/modules/buddy/services/heartbeat.service.d.ts +25 -0
- package/dist/modules/buddy/services/heartbeat.service.js +140 -0
- package/dist/modules/buddy/services/heartbeat.service.js.map +1 -0
- package/dist/modules/buddy/services/heartbeat.types.d.ts +13 -0
- package/dist/modules/buddy/services/heartbeat.types.js +3 -0
- package/dist/modules/buddy/services/heartbeat.types.js.map +1 -0
- package/dist/modules/buddy/services/llm-provider-registry.service.d.ts +8 -0
- package/dist/modules/buddy/services/llm-provider-registry.service.js +39 -0
- package/dist/modules/buddy/services/llm-provider-registry.service.js.map +1 -0
- package/dist/modules/buddy/services/llm-provider.service.d.ts +14 -0
- package/dist/modules/buddy/services/llm-provider.service.js +99 -0
- package/dist/modules/buddy/services/llm-provider.service.js.map +1 -0
- package/dist/modules/buddy/services/messaging-provider-status.service.d.ts +11 -0
- package/dist/modules/buddy/services/messaging-provider-status.service.js +76 -0
- package/dist/modules/buddy/services/messaging-provider-status.service.js.map +1 -0
- package/dist/modules/buddy/services/module-reset.service.d.ts +13 -0
- package/dist/modules/buddy/services/module-reset.service.js +52 -0
- package/dist/modules/buddy/services/module-reset.service.js.map +1 -0
- package/dist/modules/buddy/services/oauth-callback.service.d.ts +14 -0
- package/dist/modules/buddy/services/oauth-callback.service.js +94 -0
- package/dist/modules/buddy/services/oauth-callback.service.js.map +1 -0
- package/dist/modules/buddy/services/oauth-flow.service.d.ts +27 -0
- package/dist/modules/buddy/services/oauth-flow.service.js +115 -0
- package/dist/modules/buddy/services/oauth-flow.service.js.map +1 -0
- package/dist/modules/buddy/services/pattern-detector.service.d.ts +42 -0
- package/dist/modules/buddy/services/pattern-detector.service.js +161 -0
- package/dist/modules/buddy/services/pattern-detector.service.js.map +1 -0
- package/dist/modules/buddy/services/scene-suggestion-evaluator.service.d.ts +52 -0
- package/dist/modules/buddy/services/scene-suggestion-evaluator.service.js +263 -0
- package/dist/modules/buddy/services/scene-suggestion-evaluator.service.js.map +1 -0
- package/dist/modules/buddy/services/stt-provider-registry.service.d.ts +8 -0
- package/dist/modules/buddy/services/stt-provider-registry.service.js +39 -0
- package/dist/modules/buddy/services/stt-provider-registry.service.js.map +1 -0
- package/dist/modules/buddy/services/stt-provider-status.service.d.ts +10 -0
- package/dist/modules/buddy/services/stt-provider-status.service.js +72 -0
- package/dist/modules/buddy/services/stt-provider-status.service.js.map +1 -0
- package/dist/modules/buddy/services/stt-provider.service.d.ts +13 -0
- package/dist/modules/buddy/services/stt-provider.service.js +134 -0
- package/dist/modules/buddy/services/stt-provider.service.js.map +1 -0
- package/dist/modules/buddy/services/suggestion-engine.service.d.ts +44 -0
- package/dist/modules/buddy/services/suggestion-engine.service.js +208 -0
- package/dist/modules/buddy/services/suggestion-engine.service.js.map +1 -0
- package/dist/modules/buddy/services/tts-provider-registry.service.d.ts +8 -0
- package/dist/modules/buddy/services/tts-provider-registry.service.js +39 -0
- package/dist/modules/buddy/services/tts-provider-registry.service.js.map +1 -0
- package/dist/modules/buddy/services/tts-provider-status.service.d.ts +10 -0
- package/dist/modules/buddy/services/tts-provider-status.service.js +72 -0
- package/dist/modules/buddy/services/tts-provider-status.service.js.map +1 -0
- package/dist/modules/buddy/services/tts-provider.service.d.ts +26 -0
- package/dist/modules/buddy/services/tts-provider.service.js +222 -0
- package/dist/modules/buddy/services/tts-provider.service.js.map +1 -0
- package/dist/modules/buddy/spec/evaluator-rules-loader.service.d.ts +31 -0
- package/dist/modules/buddy/spec/evaluator-rules-loader.service.js +248 -0
- package/dist/modules/buddy/spec/evaluator-rules-loader.service.js.map +1 -0
- package/dist/modules/buddy/spec/evaluator-rules.types.d.ts +121 -0
- package/dist/modules/buddy/spec/evaluator-rules.types.js +3 -0
- package/dist/modules/buddy/spec/evaluator-rules.types.js.map +1 -0
- package/dist/modules/config/commands/generate-admin-extensions.command.d.ts +11 -0
- package/dist/modules/config/commands/generate-admin-extensions.command.js +132 -0
- package/dist/modules/config/commands/generate-admin-extensions.command.js.map +1 -0
- package/dist/modules/config/config.constants.d.ts +8 -0
- package/dist/modules/config/config.constants.js +13 -0
- package/dist/modules/config/config.constants.js.map +1 -0
- package/dist/modules/config/config.exceptions.d.ts +12 -0
- package/dist/modules/config/config.exceptions.js +32 -0
- package/dist/modules/config/config.exceptions.js.map +1 -0
- package/dist/modules/config/config.module.d.ts +17 -0
- package/dist/modules/config/config.module.js +109 -0
- package/dist/modules/config/config.module.js.map +1 -0
- package/dist/modules/config/config.openapi.d.ts +5 -0
- package/dist/modules/config/config.openapi.js +22 -0
- package/dist/modules/config/config.openapi.js.map +1 -0
- package/dist/modules/config/controllers/config.controller.d.ts +28 -0
- package/dist/modules/config/controllers/config.controller.js +356 -0
- package/dist/modules/config/controllers/config.controller.js.map +1 -0
- package/dist/modules/config/dto/config.dto.d.ts +14 -0
- package/dist/modules/config/dto/config.dto.js +102 -0
- package/dist/modules/config/dto/config.dto.js.map +1 -0
- package/dist/modules/config/dto/update-module-config.dto.d.ts +3 -0
- package/dist/modules/config/dto/update-module-config.dto.js +18 -0
- package/dist/modules/config/dto/update-module-config.dto.js.map +1 -0
- package/dist/modules/config/models/config-response.model.d.ts +17 -0
- package/dist/modules/config/models/config-response.model.js +89 -0
- package/dist/modules/config/models/config-response.model.js.map +1 -0
- package/dist/modules/config/models/config-validation-response.model.d.ts +12 -0
- package/dist/modules/config/models/config-validation-response.model.js +86 -0
- package/dist/modules/config/models/config-validation-response.model.js.map +1 -0
- package/dist/modules/config/models/config.model.d.ts +13 -0
- package/dist/modules/config/models/config.model.js +118 -0
- package/dist/modules/config/models/config.model.js.map +1 -0
- package/dist/modules/config/models/module-config.model.d.ts +4 -0
- package/dist/modules/config/models/module-config.model.js +37 -0
- package/dist/modules/config/models/module-config.model.js.map +1 -0
- package/dist/modules/config/services/config.service.d.ts +34 -0
- package/dist/modules/config/services/config.service.js +392 -0
- package/dist/modules/config/services/config.service.js.map +1 -0
- package/dist/modules/config/services/modules-type-mapper.service.d.ts +16 -0
- package/dist/modules/config/services/modules-type-mapper.service.js +51 -0
- package/dist/modules/config/services/modules-type-mapper.service.js.map +1 -0
- package/dist/modules/config/services/plugin-config-validator.service.d.ts +19 -0
- package/dist/modules/config/services/plugin-config-validator.service.js +47 -0
- package/dist/modules/config/services/plugin-config-validator.service.js.map +1 -0
- package/dist/modules/config/services/plugins-type-mapper.service.d.ts +16 -0
- package/dist/modules/config/services/plugins-type-mapper.service.js +51 -0
- package/dist/modules/config/services/plugins-type-mapper.service.js.map +1 -0
- package/dist/modules/dashboard/controllers/data-source.controller.d.ts +20 -0
- package/dist/modules/dashboard/controllers/data-source.controller.js +317 -0
- package/dist/modules/dashboard/controllers/data-source.controller.js.map +1 -0
- package/dist/modules/dashboard/controllers/pages.controller.d.ts +20 -0
- package/dist/modules/dashboard/controllers/pages.controller.js +278 -0
- package/dist/modules/dashboard/controllers/pages.controller.js.map +1 -0
- package/dist/modules/dashboard/controllers/tiles.controller.d.ts +20 -0
- package/dist/modules/dashboard/controllers/tiles.controller.js +314 -0
- package/dist/modules/dashboard/controllers/tiles.controller.js.map +1 -0
- package/dist/modules/dashboard/dashboard.constants.d.ts +19 -0
- package/dist/modules/dashboard/dashboard.constants.js +24 -0
- package/dist/modules/dashboard/dashboard.constants.js.map +1 -0
- package/dist/modules/dashboard/dashboard.exceptions.d.ts +9 -0
- package/dist/modules/dashboard/dashboard.exceptions.js +25 -0
- package/dist/modules/dashboard/dashboard.exceptions.js.map +1 -0
- package/dist/modules/dashboard/dashboard.module.d.ts +23 -0
- package/dist/modules/dashboard/dashboard.module.js +180 -0
- package/dist/modules/dashboard/dashboard.module.js.map +1 -0
- package/dist/modules/dashboard/dashboard.openapi.d.ts +4 -0
- package/dist/modules/dashboard/dashboard.openapi.js +26 -0
- package/dist/modules/dashboard/dashboard.openapi.js.map +1 -0
- package/dist/modules/dashboard/dto/common.dto.d.ts +4 -0
- package/dist/modules/dashboard/dto/common.dto.js +40 -0
- package/dist/modules/dashboard/dto/common.dto.js.map +1 -0
- package/dist/modules/dashboard/dto/create-data-source.dto.d.ts +14 -0
- package/dist/modules/dashboard/dto/create-data-source.dto.js +82 -0
- package/dist/modules/dashboard/dto/create-data-source.dto.js.map +1 -0
- package/dist/modules/dashboard/dto/create-page.dto.d.ts +14 -0
- package/dist/modules/dashboard/dto/create-page.dto.js +124 -0
- package/dist/modules/dashboard/dto/create-page.dto.js.map +1 -0
- package/dist/modules/dashboard/dto/create-tile.dto.d.ts +21 -0
- package/dist/modules/dashboard/dto/create-tile.dto.js +148 -0
- package/dist/modules/dashboard/dto/create-tile.dto.js.map +1 -0
- package/dist/modules/dashboard/dto/update-config.dto.d.ts +5 -0
- package/dist/modules/dashboard/dto/update-config.dto.js +39 -0
- package/dist/modules/dashboard/dto/update-config.dto.js.map +1 -0
- package/dist/modules/dashboard/dto/update-data-source.dto.d.ts +13 -0
- package/dist/modules/dashboard/dto/update-data-source.dto.js +69 -0
- package/dist/modules/dashboard/dto/update-data-source.dto.js.map +1 -0
- package/dist/modules/dashboard/dto/update-page.dto.d.ts +11 -0
- package/dist/modules/dashboard/dto/update-page.dto.js +98 -0
- package/dist/modules/dashboard/dto/update-page.dto.js.map +1 -0
- package/dist/modules/dashboard/dto/update-tile.dto.d.ts +18 -0
- package/dist/modules/dashboard/dto/update-tile.dto.js +123 -0
- package/dist/modules/dashboard/dto/update-tile.dto.js.map +1 -0
- package/dist/modules/dashboard/entities/dashboard.entity.d.ts +39 -0
- package/dist/modules/dashboard/entities/dashboard.entity.js +341 -0
- package/dist/modules/dashboard/entities/dashboard.entity.js.map +1 -0
- package/dist/modules/dashboard/entities/dashboard.relations.d.ts +33 -0
- package/dist/modules/dashboard/entities/dashboard.relations.js +3 -0
- package/dist/modules/dashboard/entities/dashboard.relations.js.map +1 -0
- package/dist/modules/dashboard/models/config.model.d.ts +5 -0
- package/dist/modules/dashboard/models/config.model.js +49 -0
- package/dist/modules/dashboard/models/config.model.js.map +1 -0
- package/dist/modules/dashboard/models/dashboard-response.model.d.ts +20 -0
- package/dist/modules/dashboard/models/dashboard-response.model.js +104 -0
- package/dist/modules/dashboard/models/dashboard-response.model.js.map +1 -0
- package/dist/modules/dashboard/models/dashboard.model.d.ts +17 -0
- package/dist/modules/dashboard/models/dashboard.model.js +148 -0
- package/dist/modules/dashboard/models/dashboard.model.js.map +1 -0
- package/dist/modules/dashboard/providers/dashboard-stats.provider.d.ts +12 -0
- package/dist/modules/dashboard/providers/dashboard-stats.provider.js +54 -0
- package/dist/modules/dashboard/providers/dashboard-stats.provider.js.map +1 -0
- package/dist/modules/dashboard/services/dashboard-seeder.service.d.ts +22 -0
- package/dist/modules/dashboard/services/dashboard-seeder.service.js +178 -0
- package/dist/modules/dashboard/services/dashboard-seeder.service.js.map +1 -0
- package/dist/modules/dashboard/services/data-source-create-builder-registry.service.d.ts +6 -0
- package/dist/modules/dashboard/services/data-source-create-builder-registry.service.js +26 -0
- package/dist/modules/dashboard/services/data-source-create-builder-registry.service.js.map +1 -0
- package/dist/modules/dashboard/services/data-source-relations-loader-registry.service.d.ts +6 -0
- package/dist/modules/dashboard/services/data-source-relations-loader-registry.service.js +26 -0
- package/dist/modules/dashboard/services/data-source-relations-loader-registry.service.js.map +1 -0
- package/dist/modules/dashboard/services/data-source-type-mapper.service.d.ts +15 -0
- package/dist/modules/dashboard/services/data-source-type-mapper.service.js +36 -0
- package/dist/modules/dashboard/services/data-source-type-mapper.service.js.map +1 -0
- package/dist/modules/dashboard/services/data-sources.service.d.ts +32 -0
- package/dist/modules/dashboard/services/data-sources.service.js +226 -0
- package/dist/modules/dashboard/services/data-sources.service.js.map +1 -0
- package/dist/modules/dashboard/services/module-reset.service.d.ts +15 -0
- package/dist/modules/dashboard/services/module-reset.service.js +61 -0
- package/dist/modules/dashboard/services/module-reset.service.js.map +1 -0
- package/dist/modules/dashboard/services/page-create-builder-registry.service.d.ts +6 -0
- package/dist/modules/dashboard/services/page-create-builder-registry.service.js +26 -0
- package/dist/modules/dashboard/services/page-create-builder-registry.service.js.map +1 -0
- package/dist/modules/dashboard/services/page-relations-loader-registry.service.d.ts +6 -0
- package/dist/modules/dashboard/services/page-relations-loader-registry.service.js +26 -0
- package/dist/modules/dashboard/services/page-relations-loader-registry.service.js.map +1 -0
- package/dist/modules/dashboard/services/pages-type-mapper.service.d.ts +15 -0
- package/dist/modules/dashboard/services/pages-type-mapper.service.js +36 -0
- package/dist/modules/dashboard/services/pages-type-mapper.service.js.map +1 -0
- package/dist/modules/dashboard/services/pages.service.d.ts +33 -0
- package/dist/modules/dashboard/services/pages.service.js +267 -0
- package/dist/modules/dashboard/services/pages.service.js.map +1 -0
- package/dist/modules/dashboard/services/tile-create-builder-registry.service.d.ts +6 -0
- package/dist/modules/dashboard/services/tile-create-builder-registry.service.js +26 -0
- package/dist/modules/dashboard/services/tile-create-builder-registry.service.js.map +1 -0
- package/dist/modules/dashboard/services/tile-relations-loader-registry.service.d.ts +6 -0
- package/dist/modules/dashboard/services/tile-relations-loader-registry.service.js +26 -0
- package/dist/modules/dashboard/services/tile-relations-loader-registry.service.js.map +1 -0
- package/dist/modules/dashboard/services/tiles-type-mapper.service.d.ts +15 -0
- package/dist/modules/dashboard/services/tiles-type-mapper.service.js +36 -0
- package/dist/modules/dashboard/services/tiles-type-mapper.service.js.map +1 -0
- package/dist/modules/dashboard/services/tiles.service.d.ts +36 -0
- package/dist/modules/dashboard/services/tiles.service.js +257 -0
- package/dist/modules/dashboard/services/tiles.service.js.map +1 -0
- package/dist/modules/dashboard/subscribers/data-source-entity.subscriber.d.ts +6 -0
- package/dist/modules/dashboard/subscribers/data-source-entity.subscriber.js +28 -0
- package/dist/modules/dashboard/subscribers/data-source-entity.subscriber.js.map +1 -0
- package/dist/modules/dashboard/subscribers/page-entity.subscriber.d.ts +6 -0
- package/dist/modules/dashboard/subscribers/page-entity.subscriber.js +28 -0
- package/dist/modules/dashboard/subscribers/page-entity.subscriber.js.map +1 -0
- package/dist/modules/dashboard/subscribers/tile-entity.subscriber.d.ts +6 -0
- package/dist/modules/dashboard/subscribers/tile-entity.subscriber.js +28 -0
- package/dist/modules/dashboard/subscribers/tile-entity.subscriber.js.map +1 -0
- package/dist/modules/dashboard/validators/data-source-type-constraint.validator.d.ts +10 -0
- package/dist/modules/dashboard/validators/data-source-type-constraint.validator.js +98 -0
- package/dist/modules/dashboard/validators/data-source-type-constraint.validator.js.map +1 -0
- package/dist/modules/dashboard/validators/tile-type-constraint.validator.d.ts +10 -0
- package/dist/modules/dashboard/validators/tile-type-constraint.validator.js +98 -0
- package/dist/modules/dashboard/validators/tile-type-constraint.validator.js.map +1 -0
- package/dist/modules/devices/controllers/channels.controller.d.ts +20 -0
- package/dist/modules/devices/controllers/channels.controller.js +261 -0
- package/dist/modules/devices/controllers/channels.controller.js.map +1 -0
- package/dist/modules/devices/controllers/channels.controls.controller.d.ts +17 -0
- package/dist/modules/devices/controllers/channels.controls.controller.js +201 -0
- package/dist/modules/devices/controllers/channels.controls.controller.js.map +1 -0
- package/dist/modules/devices/controllers/channels.properties.controller.d.ts +30 -0
- package/dist/modules/devices/controllers/channels.properties.controller.js +353 -0
- package/dist/modules/devices/controllers/channels.properties.controller.js.map +1 -0
- package/dist/modules/devices/controllers/devices.channels.controller.d.ts +23 -0
- package/dist/modules/devices/controllers/devices.channels.controller.js +292 -0
- package/dist/modules/devices/controllers/devices.channels.controller.js.map +1 -0
- package/dist/modules/devices/controllers/devices.channels.controls.controller.d.ts +20 -0
- package/dist/modules/devices/controllers/devices.channels.controls.controller.js +225 -0
- package/dist/modules/devices/controllers/devices.channels.controls.controller.js.map +1 -0
- package/dist/modules/devices/controllers/devices.channels.properties.controller.d.ts +33 -0
- package/dist/modules/devices/controllers/devices.channels.properties.controller.js +380 -0
- package/dist/modules/devices/controllers/devices.channels.properties.controller.js.map +1 -0
- package/dist/modules/devices/controllers/devices.controller.d.ts +31 -0
- package/dist/modules/devices/controllers/devices.controller.js +417 -0
- package/dist/modules/devices/controllers/devices.controller.js.map +1 -0
- package/dist/modules/devices/controllers/devices.controls.controller.d.ts +17 -0
- package/dist/modules/devices/controllers/devices.controls.controller.js +201 -0
- package/dist/modules/devices/controllers/devices.controls.controller.js.map +1 -0
- package/dist/modules/devices/devices.constants.d.ts +254 -0
- package/dist/modules/devices/devices.constants.js +279 -0
- package/dist/modules/devices/devices.constants.js.map +1 -0
- package/dist/modules/devices/devices.exceptions.d.ts +12 -0
- package/dist/modules/devices/devices.exceptions.js +32 -0
- package/dist/modules/devices/devices.exceptions.js.map +1 -0
- package/dist/modules/devices/devices.module.d.ts +31 -0
- package/dist/modules/devices/devices.module.js +282 -0
- package/dist/modules/devices/devices.module.js.map +1 -0
- package/dist/modules/devices/devices.openapi.d.ts +6 -0
- package/dist/modules/devices/devices.openapi.js +50 -0
- package/dist/modules/devices/devices.openapi.js.map +1 -0
- package/dist/modules/devices/dto/create-channel-control.dto.d.ts +6 -0
- package/dist/modules/devices/dto/create-channel-control.dto.js +36 -0
- package/dist/modules/devices/dto/create-channel-control.dto.js.map +1 -0
- package/dist/modules/devices/dto/create-channel-property.dto.d.ts +6 -0
- package/dist/modules/devices/dto/create-channel-property.dto.js +36 -0
- package/dist/modules/devices/dto/create-channel-property.dto.js.map +1 -0
- package/dist/modules/devices/dto/create-channel.dto.d.ts +7 -0
- package/dist/modules/devices/dto/create-channel.dto.js +49 -0
- package/dist/modules/devices/dto/create-channel.dto.js.map +1 -0
- package/dist/modules/devices/dto/create-device-channel-control.dto.d.ts +7 -0
- package/dist/modules/devices/dto/create-device-channel-control.dto.js +54 -0
- package/dist/modules/devices/dto/create-device-channel-control.dto.js.map +1 -0
- package/dist/modules/devices/dto/create-device-channel-property.dto.d.ts +17 -0
- package/dist/modules/devices/dto/create-device-channel-property.dto.js +205 -0
- package/dist/modules/devices/dto/create-device-channel-property.dto.js.map +1 -0
- package/dist/modules/devices/dto/create-device-channel.dto.d.ts +17 -0
- package/dist/modules/devices/dto/create-device-channel.dto.js +163 -0
- package/dist/modules/devices/dto/create-device-channel.dto.js.map +1 -0
- package/dist/modules/devices/dto/create-device-control.dto.d.ts +7 -0
- package/dist/modules/devices/dto/create-device-control.dto.js +54 -0
- package/dist/modules/devices/dto/create-device-control.dto.js.map +1 -0
- package/dist/modules/devices/dto/create-device.dto.d.ts +19 -0
- package/dist/modules/devices/dto/create-device.dto.js +182 -0
- package/dist/modules/devices/dto/create-device.dto.js.map +1 -0
- package/dist/modules/devices/dto/property-command.dto.d.ts +19 -0
- package/dist/modules/devices/dto/property-command.dto.js +151 -0
- package/dist/modules/devices/dto/property-command.dto.js.map +1 -0
- package/dist/modules/devices/dto/query-property-timeseries.dto.d.ts +10 -0
- package/dist/modules/devices/dto/query-property-timeseries.dto.js +79 -0
- package/dist/modules/devices/dto/query-property-timeseries.dto.js.map +1 -0
- package/dist/modules/devices/dto/update-channel-property.dto.d.ts +6 -0
- package/dist/modules/devices/dto/update-channel-property.dto.js +36 -0
- package/dist/modules/devices/dto/update-channel-property.dto.js.map +1 -0
- package/dist/modules/devices/dto/update-channel.dto.d.ts +6 -0
- package/dist/modules/devices/dto/update-channel.dto.js +36 -0
- package/dist/modules/devices/dto/update-channel.dto.js.map +1 -0
- package/dist/modules/devices/dto/update-config.dto.d.ts +5 -0
- package/dist/modules/devices/dto/update-config.dto.js +39 -0
- package/dist/modules/devices/dto/update-config.dto.js.map +1 -0
- package/dist/modules/devices/dto/update-device-channel-property.dto.d.ts +15 -0
- package/dist/modules/devices/dto/update-device-channel-property.dto.js +176 -0
- package/dist/modules/devices/dto/update-device-channel-property.dto.js.map +1 -0
- package/dist/modules/devices/dto/update-device-channel.dto.d.ts +11 -0
- package/dist/modules/devices/dto/update-device-channel.dto.js +110 -0
- package/dist/modules/devices/dto/update-device-channel.dto.js.map +1 -0
- package/dist/modules/devices/dto/update-device.dto.d.ts +14 -0
- package/dist/modules/devices/dto/update-device.dto.js +143 -0
- package/dist/modules/devices/dto/update-device.dto.js.map +1 -0
- package/dist/modules/devices/entities/device-zone.entity.d.ts +9 -0
- package/dist/modules/devices/entities/device-zone.entity.js +90 -0
- package/dist/modules/devices/entities/device-zone.entity.js.map +1 -0
- package/dist/modules/devices/entities/devices.entity.d.ts +59 -0
- package/dist/modules/devices/entities/devices.entity.js +575 -0
- package/dist/modules/devices/entities/devices.entity.js.map +1 -0
- package/dist/modules/devices/listeners/websocket-exchange.listener.d.ts +18 -0
- package/dist/modules/devices/listeners/websocket-exchange.listener.js +73 -0
- package/dist/modules/devices/listeners/websocket-exchange.listener.js.map +1 -0
- package/dist/modules/devices/models/config.model.d.ts +5 -0
- package/dist/modules/devices/models/config.model.js +49 -0
- package/dist/modules/devices/models/config.model.js.map +1 -0
- package/dist/modules/devices/models/device-validation.model.d.ts +56 -0
- package/dist/modules/devices/models/device-validation.model.js +345 -0
- package/dist/modules/devices/models/device-validation.model.js.map +1 -0
- package/dist/modules/devices/models/devices-enums.model.d.ts +10 -0
- package/dist/modules/devices/models/devices-enums.model.js +57 -0
- package/dist/modules/devices/models/devices-enums.model.js.map +1 -0
- package/dist/modules/devices/models/devices-response.model.d.ts +42 -0
- package/dist/modules/devices/models/devices-response.model.js +206 -0
- package/dist/modules/devices/models/devices-response.model.js.map +1 -0
- package/dist/modules/devices/models/devices.model.d.ts +73 -0
- package/dist/modules/devices/models/devices.model.js +665 -0
- package/dist/modules/devices/models/devices.model.js.map +1 -0
- package/dist/modules/devices/models/property-value-state.model.d.ts +7 -0
- package/dist/modules/devices/models/property-value-state.model.js +59 -0
- package/dist/modules/devices/models/property-value-state.model.js.map +1 -0
- package/dist/modules/devices/platforms/device.platform.d.ts +12 -0
- package/dist/modules/devices/platforms/device.platform.js +3 -0
- package/dist/modules/devices/platforms/device.platform.js.map +1 -0
- package/dist/modules/devices/platforms/http-device.platform.d.ts +9 -0
- package/dist/modules/devices/platforms/http-device.platform.js +70 -0
- package/dist/modules/devices/platforms/http-device.platform.js.map +1 -0
- package/dist/modules/devices/providers/devices-stats.provider.d.ts +14 -0
- package/dist/modules/devices/providers/devices-stats.provider.js +62 -0
- package/dist/modules/devices/providers/devices-stats.provider.js.map +1 -0
- package/dist/modules/devices/services/channels-type-mapper.service.d.ts +17 -0
- package/dist/modules/devices/services/channels-type-mapper.service.js +38 -0
- package/dist/modules/devices/services/channels-type-mapper.service.js.map +1 -0
- package/dist/modules/devices/services/channels.controls.service.d.ts +18 -0
- package/dist/modules/devices/services/channels.controls.service.js +133 -0
- package/dist/modules/devices/services/channels.controls.service.js.map +1 -0
- package/dist/modules/devices/services/channels.properties-type-mapper.service.d.ts +17 -0
- package/dist/modules/devices/services/channels.properties-type-mapper.service.js +38 -0
- package/dist/modules/devices/services/channels.properties-type-mapper.service.js.map +1 -0
- package/dist/modules/devices/services/channels.properties.service.d.ts +24 -0
- package/dist/modules/devices/services/channels.properties.service.js +273 -0
- package/dist/modules/devices/services/channels.properties.service.js.map +1 -0
- package/dist/modules/devices/services/channels.service.d.ts +27 -0
- package/dist/modules/devices/services/channels.service.js +379 -0
- package/dist/modules/devices/services/channels.service.js.map +1 -0
- package/dist/modules/devices/services/device-connection-state.service.d.ts +19 -0
- package/dist/modules/devices/services/device-connection-state.service.js +201 -0
- package/dist/modules/devices/services/device-connection-state.service.js.map +1 -0
- package/dist/modules/devices/services/device-connectivity.service.d.ts +22 -0
- package/dist/modules/devices/services/device-connectivity.service.js +142 -0
- package/dist/modules/devices/services/device-connectivity.service.js.map +1 -0
- package/dist/modules/devices/services/device-control-tool.service.d.ts +21 -0
- package/dist/modules/devices/services/device-control-tool.service.js +164 -0
- package/dist/modules/devices/services/device-control-tool.service.js.map +1 -0
- package/dist/modules/devices/services/device-provision-queue.service.d.ts +6 -0
- package/dist/modules/devices/services/device-provision-queue.service.js +36 -0
- package/dist/modules/devices/services/device-provision-queue.service.js.map +1 -0
- package/dist/modules/devices/services/device-validation.service.d.ts +96 -0
- package/dist/modules/devices/services/device-validation.service.js +794 -0
- package/dist/modules/devices/services/device-validation.service.js.map +1 -0
- package/dist/modules/devices/services/device-zones.service.d.ts +19 -0
- package/dist/modules/devices/services/device-zones.service.js +158 -0
- package/dist/modules/devices/services/device-zones.service.js.map +1 -0
- package/dist/modules/devices/services/devices-seeder.service.d.ts +27 -0
- package/dist/modules/devices/services/devices-seeder.service.js +199 -0
- package/dist/modules/devices/services/devices-seeder.service.js.map +1 -0
- package/dist/modules/devices/services/devices-type-mapper.service.d.ts +17 -0
- package/dist/modules/devices/services/devices-type-mapper.service.js +38 -0
- package/dist/modules/devices/services/devices-type-mapper.service.js.map +1 -0
- package/dist/modules/devices/services/devices.controls.service.d.ts +18 -0
- package/dist/modules/devices/services/devices.controls.service.js +133 -0
- package/dist/modules/devices/services/devices.controls.service.js.map +1 -0
- package/dist/modules/devices/services/devices.service.d.ts +33 -0
- package/dist/modules/devices/services/devices.service.js +312 -0
- package/dist/modules/devices/services/devices.service.js.map +1 -0
- package/dist/modules/devices/services/module-reset.service.d.ts +19 -0
- package/dist/modules/devices/services/module-reset.service.js +76 -0
- package/dist/modules/devices/services/module-reset.service.js.map +1 -0
- package/dist/modules/devices/services/platform.registry.service.d.ts +9 -0
- package/dist/modules/devices/services/platform.registry.service.js +44 -0
- package/dist/modules/devices/services/platform.registry.service.js.map +1 -0
- package/dist/modules/devices/services/property-command.service.d.ts +26 -0
- package/dist/modules/devices/services/property-command.service.js +209 -0
- package/dist/modules/devices/services/property-command.service.js.map +1 -0
- package/dist/modules/devices/services/property-timeseries.service.d.ts +14 -0
- package/dist/modules/devices/services/property-timeseries.service.js +124 -0
- package/dist/modules/devices/services/property-timeseries.service.js.map +1 -0
- package/dist/modules/devices/services/property-value.service.d.ts +17 -0
- package/dist/modules/devices/services/property-value.service.js +294 -0
- package/dist/modules/devices/services/property-value.service.js.map +1 -0
- package/dist/modules/devices/services/stats.service.d.ts +13 -0
- package/dist/modules/devices/services/stats.service.js +51 -0
- package/dist/modules/devices/services/stats.service.js.map +1 -0
- package/dist/modules/devices/subscribers/channel-control-entity.subscriber.d.ts +8 -0
- package/dist/modules/devices/subscribers/channel-control-entity.subscriber.js +35 -0
- package/dist/modules/devices/subscribers/channel-control-entity.subscriber.js.map +1 -0
- package/dist/modules/devices/subscribers/channel-entity.subscriber.d.ts +8 -0
- package/dist/modules/devices/subscribers/channel-entity.subscriber.js +35 -0
- package/dist/modules/devices/subscribers/channel-entity.subscriber.js.map +1 -0
- package/dist/modules/devices/subscribers/channel-property-entity.subscriber.d.ts +17 -0
- package/dist/modules/devices/subscribers/channel-property-entity.subscriber.js +109 -0
- package/dist/modules/devices/subscribers/channel-property-entity.subscriber.js.map +1 -0
- package/dist/modules/devices/subscribers/device-control-entity.subscriber.d.ts +8 -0
- package/dist/modules/devices/subscribers/device-control-entity.subscriber.js +35 -0
- package/dist/modules/devices/subscribers/device-control-entity.subscriber.js.map +1 -0
- package/dist/modules/devices/subscribers/device-entity.subscriber.d.ts +13 -0
- package/dist/modules/devices/subscribers/device-entity.subscriber.js +80 -0
- package/dist/modules/devices/subscribers/device-entity.subscriber.js.map +1 -0
- package/dist/modules/devices/utils/schema.utils.d.ts +61 -0
- package/dist/modules/devices/utils/schema.utils.js +483 -0
- package/dist/modules/devices/utils/schema.utils.js.map +1 -0
- package/dist/modules/devices/validators/channel-exists-constraint.validator.d.ts +11 -0
- package/dist/modules/devices/validators/channel-exists-constraint.validator.js +61 -0
- package/dist/modules/devices/validators/channel-exists-constraint.validator.js.map +1 -0
- package/dist/modules/devices/validators/channel-property-exists-constraint.validator.d.ts +11 -0
- package/dist/modules/devices/validators/channel-property-exists-constraint.validator.js +61 -0
- package/dist/modules/devices/validators/channel-property-exists-constraint.validator.js.map +1 -0
- package/dist/modules/devices/validators/device-exists-constraint.validator.d.ts +9 -0
- package/dist/modules/devices/validators/device-exists-constraint.validator.js +49 -0
- package/dist/modules/devices/validators/device-exists-constraint.validator.js.map +1 -0
- package/dist/modules/devices/validators/unique-control-names-constraint.validator.d.ts +6 -0
- package/dist/modules/devices/validators/unique-control-names-constraint.validator.js +39 -0
- package/dist/modules/devices/validators/unique-control-names-constraint.validator.js.map +1 -0
- package/dist/modules/displays/controllers/displays.controller.d.ts +32 -0
- package/dist/modules/displays/controllers/displays.controller.js +398 -0
- package/dist/modules/displays/controllers/displays.controller.js.map +1 -0
- package/dist/modules/displays/controllers/registration.controller.d.ts +13 -0
- package/dist/modules/displays/controllers/registration.controller.js +104 -0
- package/dist/modules/displays/controllers/registration.controller.js.map +1 -0
- package/dist/modules/displays/displays.constants.d.ts +37 -0
- package/dist/modules/displays/displays.constants.js +52 -0
- package/dist/modules/displays/displays.constants.js.map +1 -0
- package/dist/modules/displays/displays.exceptions.d.ts +13 -0
- package/dist/modules/displays/displays.exceptions.js +45 -0
- package/dist/modules/displays/displays.exceptions.js.map +1 -0
- package/dist/modules/displays/displays.module.d.ts +17 -0
- package/dist/modules/displays/displays.module.js +152 -0
- package/dist/modules/displays/displays.module.js.map +1 -0
- package/dist/modules/displays/displays.openapi.d.ts +5 -0
- package/dist/modules/displays/displays.openapi.js +28 -0
- package/dist/modules/displays/displays.openapi.js.map +1 -0
- package/dist/modules/displays/dto/register-display.dto.d.ts +16 -0
- package/dist/modules/displays/dto/register-display.dto.js +175 -0
- package/dist/modules/displays/dto/register-display.dto.js.map +1 -0
- package/dist/modules/displays/dto/update-config.dto.d.ts +8 -0
- package/dist/modules/displays/dto/update-config.dto.js +71 -0
- package/dist/modules/displays/dto/update-config.dto.js.map +1 -0
- package/dist/modules/displays/dto/update-display.dto.d.ts +37 -0
- package/dist/modules/displays/dto/update-display.dto.js +473 -0
- package/dist/modules/displays/dto/update-display.dto.js.map +1 -0
- package/dist/modules/displays/entities/displays.entity.d.ts +46 -0
- package/dist/modules/displays/entities/displays.entity.js +577 -0
- package/dist/modules/displays/entities/displays.entity.js.map +1 -0
- package/dist/modules/displays/guards/registration.guard.d.ts +15 -0
- package/dist/modules/displays/guards/registration.guard.js +70 -0
- package/dist/modules/displays/guards/registration.guard.js.map +1 -0
- package/dist/modules/displays/listeners/websocket-exchange.listener.d.ts +16 -0
- package/dist/modules/displays/listeners/websocket-exchange.listener.js +133 -0
- package/dist/modules/displays/listeners/websocket-exchange.listener.js.map +1 -0
- package/dist/modules/displays/models/config.model.d.ts +8 -0
- package/dist/modules/displays/models/config.model.js +75 -0
- package/dist/modules/displays/models/config.model.js.map +1 -0
- package/dist/modules/displays/models/displays-response.model.d.ts +51 -0
- package/dist/modules/displays/models/displays-response.model.js +311 -0
- package/dist/modules/displays/models/displays-response.model.js.map +1 -0
- package/dist/modules/displays/services/display-connection-state.service.d.ts +15 -0
- package/dist/modules/displays/services/display-connection-state.service.js +114 -0
- package/dist/modules/displays/services/display-connection-state.service.js.map +1 -0
- package/dist/modules/displays/services/displays.service.d.ts +28 -0
- package/dist/modules/displays/services/displays.service.js +212 -0
- package/dist/modules/displays/services/displays.service.js.map +1 -0
- package/dist/modules/displays/services/home-resolution.service.d.ts +20 -0
- package/dist/modules/displays/services/home-resolution.service.js +114 -0
- package/dist/modules/displays/services/home-resolution.service.js.map +1 -0
- package/dist/modules/displays/services/module-reset.service.d.ts +12 -0
- package/dist/modules/displays/services/module-reset.service.js +55 -0
- package/dist/modules/displays/services/module-reset.service.js.map +1 -0
- package/dist/modules/displays/services/permit-join.service.d.ts +16 -0
- package/dist/modules/displays/services/permit-join.service.js +85 -0
- package/dist/modules/displays/services/permit-join.service.js.map +1 -0
- package/dist/modules/displays/services/registration.service.d.ts +26 -0
- package/dist/modules/displays/services/registration.service.js +146 -0
- package/dist/modules/displays/services/registration.service.js.map +1 -0
- package/dist/modules/displays/subscribers/display-entity.subscriber.d.ts +12 -0
- package/dist/modules/displays/subscribers/display-entity.subscriber.js +63 -0
- package/dist/modules/displays/subscribers/display-entity.subscriber.js.map +1 -0
- package/dist/modules/displays/utils/ip.utils.d.ts +3 -0
- package/dist/modules/displays/utils/ip.utils.js +45 -0
- package/dist/modules/displays/utils/ip.utils.js.map +1 -0
- package/dist/modules/displays/validators/display-exists-constraint.validator.d.ts +9 -0
- package/dist/modules/displays/validators/display-exists-constraint.validator.js +64 -0
- package/dist/modules/displays/validators/display-exists-constraint.validator.js.map +1 -0
- package/dist/modules/energy/controllers/energy-home.controller.d.ts +11 -0
- package/dist/modules/energy/controllers/energy-home.controller.js +206 -0
- package/dist/modules/energy/controllers/energy-home.controller.js.map +1 -0
- package/dist/modules/energy/controllers/energy-spaces.controller.d.ts +11 -0
- package/dist/modules/energy/controllers/energy-spaces.controller.js +249 -0
- package/dist/modules/energy/controllers/energy-spaces.controller.js.map +1 -0
- package/dist/modules/energy/controllers/energy.controller.d.ts +8 -0
- package/dist/modules/energy/controllers/energy.controller.js +137 -0
- package/dist/modules/energy/controllers/energy.controller.js.map +1 -0
- package/dist/modules/energy/dto/update-config.dto.d.ts +7 -0
- package/dist/modules/energy/dto/update-config.dto.js +71 -0
- package/dist/modules/energy/dto/update-config.dto.js.map +1 -0
- package/dist/modules/energy/energy.constants.d.ts +17 -0
- package/dist/modules/energy/energy.constants.js +22 -0
- package/dist/modules/energy/energy.constants.js.map +1 -0
- package/dist/modules/energy/energy.module.d.ts +16 -0
- package/dist/modules/energy/energy.module.js +129 -0
- package/dist/modules/energy/energy.module.js.map +1 -0
- package/dist/modules/energy/energy.openapi.d.ts +7 -0
- package/dist/modules/energy/energy.openapi.js +29 -0
- package/dist/modules/energy/energy.openapi.js.map +1 -0
- package/dist/modules/energy/entities/energy-delta.entity.d.ts +11 -0
- package/dist/modules/energy/entities/energy-delta.entity.js +169 -0
- package/dist/modules/energy/entities/energy-delta.entity.js.map +1 -0
- package/dist/modules/energy/helpers/energy-range.helper.d.ts +11 -0
- package/dist/modules/energy/helpers/energy-range.helper.js +117 -0
- package/dist/modules/energy/helpers/energy-range.helper.js.map +1 -0
- package/dist/modules/energy/listeners/energy-ingestion.listener.d.ts +18 -0
- package/dist/modules/energy/listeners/energy-ingestion.listener.js +155 -0
- package/dist/modules/energy/listeners/energy-ingestion.listener.js.map +1 -0
- package/dist/modules/energy/models/config.model.d.ts +7 -0
- package/dist/modules/energy/models/config.model.js +79 -0
- package/dist/modules/energy/models/config.model.js.map +1 -0
- package/dist/modules/energy/models/energy-breakdown-item.model.d.ts +7 -0
- package/dist/modules/energy/models/energy-breakdown-item.model.js +84 -0
- package/dist/modules/energy/models/energy-breakdown-item.model.js.map +1 -0
- package/dist/modules/energy/models/energy-delta.model.d.ts +8 -0
- package/dist/modules/energy/models/energy-delta.model.js +94 -0
- package/dist/modules/energy/models/energy-delta.model.js.map +1 -0
- package/dist/modules/energy/models/energy-home-response.model.d.ts +13 -0
- package/dist/modules/energy/models/energy-home-response.model.js +70 -0
- package/dist/modules/energy/models/energy-home-response.model.js.map +1 -0
- package/dist/modules/energy/models/energy-response.model.d.ts +9 -0
- package/dist/modules/energy/models/energy-response.model.js +52 -0
- package/dist/modules/energy/models/energy-response.model.js.map +1 -0
- package/dist/modules/energy/models/energy-space-response.model.d.ts +13 -0
- package/dist/modules/energy/models/energy-space-response.model.js +70 -0
- package/dist/modules/energy/models/energy-space-response.model.js.map +1 -0
- package/dist/modules/energy/models/energy-space-summary.model.d.ts +15 -0
- package/dist/modules/energy/models/energy-space-summary.model.js +186 -0
- package/dist/modules/energy/models/energy-space-summary.model.js.map +1 -0
- package/dist/modules/energy/models/energy-summary.model.d.ts +8 -0
- package/dist/modules/energy/models/energy-summary.model.js +95 -0
- package/dist/modules/energy/models/energy-summary.model.js.map +1 -0
- package/dist/modules/energy/models/energy-timeseries-point.model.d.ts +8 -0
- package/dist/modules/energy/models/energy-timeseries-point.model.js +94 -0
- package/dist/modules/energy/models/energy-timeseries-point.model.js.map +1 -0
- package/dist/modules/energy/services/delta-computation.service.d.ts +21 -0
- package/dist/modules/energy/services/delta-computation.service.js +94 -0
- package/dist/modules/energy/services/delta-computation.service.js.map +1 -0
- package/dist/modules/energy/services/energy-cache.service.d.ts +11 -0
- package/dist/modules/energy/services/energy-cache.service.js +72 -0
- package/dist/modules/energy/services/energy-cache.service.js.map +1 -0
- package/dist/modules/energy/services/energy-cleanup.service.d.ts +13 -0
- package/dist/modules/energy/services/energy-cleanup.service.js +95 -0
- package/dist/modules/energy/services/energy-cleanup.service.js.map +1 -0
- package/dist/modules/energy/services/energy-data.service.d.ts +63 -0
- package/dist/modules/energy/services/energy-data.service.js +353 -0
- package/dist/modules/energy/services/energy-data.service.js.map +1 -0
- package/dist/modules/energy/services/energy-metrics.service.d.ts +22 -0
- package/dist/modules/energy/services/energy-metrics.service.js +58 -0
- package/dist/modules/energy/services/energy-metrics.service.js.map +1 -0
- package/dist/modules/energy/services/module-reset.service.d.ts +11 -0
- package/dist/modules/energy/services/module-reset.service.js +47 -0
- package/dist/modules/energy/services/module-reset.service.js.map +1 -0
- package/dist/modules/extension-registry/extension-registry.module.d.ts +2 -0
- package/dist/modules/extension-registry/extension-registry.module.js +25 -0
- package/dist/modules/extension-registry/extension-registry.module.js.map +1 -0
- package/dist/modules/extensions/commands/services.command.d.ts +26 -0
- package/dist/modules/extensions/commands/services.command.js +218 -0
- package/dist/modules/extensions/commands/services.command.js.map +1 -0
- package/dist/modules/extensions/controllers/actions.controller.d.ts +10 -0
- package/dist/modules/extensions/controllers/actions.controller.js +89 -0
- package/dist/modules/extensions/controllers/actions.controller.js.map +1 -0
- package/dist/modules/extensions/controllers/discovered-extensions.controller.d.ts +17 -0
- package/dist/modules/extensions/controllers/discovered-extensions.controller.js +299 -0
- package/dist/modules/extensions/controllers/discovered-extensions.controller.js.map +1 -0
- package/dist/modules/extensions/controllers/extensions.controller.d.ts +13 -0
- package/dist/modules/extensions/controllers/extensions.controller.js +141 -0
- package/dist/modules/extensions/controllers/extensions.controller.js.map +1 -0
- package/dist/modules/extensions/controllers/services.controller.d.ts +13 -0
- package/dist/modules/extensions/controllers/services.controller.js +184 -0
- package/dist/modules/extensions/controllers/services.controller.js.map +1 -0
- package/dist/modules/extensions/dto/execute-action.dto.d.ts +6 -0
- package/dist/modules/extensions/dto/execute-action.dto.js +52 -0
- package/dist/modules/extensions/dto/execute-action.dto.js.map +1 -0
- package/dist/modules/extensions/dto/update-config.dto.d.ts +4 -0
- package/dist/modules/extensions/dto/update-config.dto.js +34 -0
- package/dist/modules/extensions/dto/update-config.dto.js.map +1 -0
- package/dist/modules/extensions/dto/update-extension.dto.d.ts +6 -0
- package/dist/modules/extensions/dto/update-extension.dto.js +52 -0
- package/dist/modules/extensions/dto/update-extension.dto.js.map +1 -0
- package/dist/modules/extensions/extensions.constants.d.ts +17 -0
- package/dist/modules/extensions/extensions.constants.js +58 -0
- package/dist/modules/extensions/extensions.constants.js.map +1 -0
- package/dist/modules/extensions/extensions.exceptions.d.ts +7 -0
- package/dist/modules/extensions/extensions.exceptions.js +17 -0
- package/dist/modules/extensions/extensions.exceptions.js.map +1 -0
- package/dist/modules/extensions/extensions.module.d.ts +19 -0
- package/dist/modules/extensions/extensions.module.js +135 -0
- package/dist/modules/extensions/extensions.module.js.map +1 -0
- package/dist/modules/extensions/extensions.openapi.d.ts +10 -0
- package/dist/modules/extensions/extensions.openapi.js +37 -0
- package/dist/modules/extensions/extensions.openapi.js.map +1 -0
- package/dist/modules/extensions/models/action.model.d.ts +36 -0
- package/dist/modules/extensions/models/action.model.js +252 -0
- package/dist/modules/extensions/models/action.model.js.map +1 -0
- package/dist/modules/extensions/models/actions-response.model.d.ts +8 -0
- package/dist/modules/extensions/models/actions-response.model.js +50 -0
- package/dist/modules/extensions/models/actions-response.model.js.map +1 -0
- package/dist/modules/extensions/models/config.model.d.ts +5 -0
- package/dist/modules/extensions/models/config.model.js +49 -0
- package/dist/modules/extensions/models/config.model.js.map +1 -0
- package/dist/modules/extensions/models/discovered-extension.model.d.ts +18 -0
- package/dist/modules/extensions/models/discovered-extension.model.js +120 -0
- package/dist/modules/extensions/models/discovered-extension.model.js.map +1 -0
- package/dist/modules/extensions/models/discovered-extensions-response.model.d.ts +5 -0
- package/dist/modules/extensions/models/discovered-extensions-response.model.js +44 -0
- package/dist/modules/extensions/models/discovered-extensions-response.model.js.map +1 -0
- package/dist/modules/extensions/models/extension.model.d.ts +24 -0
- package/dist/modules/extensions/models/extension.model.js +230 -0
- package/dist/modules/extensions/models/extension.model.js.map +1 -0
- package/dist/modules/extensions/models/extensions-response.model.d.ts +8 -0
- package/dist/modules/extensions/models/extensions-response.model.js +50 -0
- package/dist/modules/extensions/models/extensions-response.model.js.map +1 -0
- package/dist/modules/extensions/models/service-status.model.d.ts +20 -0
- package/dist/modules/extensions/models/service-status.model.js +136 -0
- package/dist/modules/extensions/models/service-status.model.js.map +1 -0
- package/dist/modules/extensions/providers/extensions-stats.provider.d.ts +9 -0
- package/dist/modules/extensions/providers/extensions-stats.provider.js +111 -0
- package/dist/modules/extensions/providers/extensions-stats.provider.js.map +1 -0
- package/dist/modules/extensions/services/extension-action-registry.service.d.ts +43 -0
- package/dist/modules/extensions/services/extension-action-registry.service.js +250 -0
- package/dist/modules/extensions/services/extension-action-registry.service.js.map +1 -0
- package/dist/modules/extensions/services/extension-action.interface.d.ts +53 -0
- package/dist/modules/extensions/services/extension-action.interface.js +20 -0
- package/dist/modules/extensions/services/extension-action.interface.js.map +1 -0
- package/dist/modules/extensions/services/extensions-bundled.service.d.ts +25 -0
- package/dist/modules/extensions/services/extensions-bundled.service.js +93 -0
- package/dist/modules/extensions/services/extensions-bundled.service.js.map +1 -0
- package/dist/modules/extensions/services/extensions-discovery-cache.d.ts +12 -0
- package/dist/modules/extensions/services/extensions-discovery-cache.js +20 -0
- package/dist/modules/extensions/services/extensions-discovery-cache.js.map +1 -0
- package/dist/modules/extensions/services/extensions-discovery.d.ts +10 -0
- package/dist/modules/extensions/services/extensions-discovery.js +311 -0
- package/dist/modules/extensions/services/extensions-discovery.js.map +1 -0
- package/dist/modules/extensions/services/extensions.service.d.ts +44 -0
- package/dist/modules/extensions/services/extensions.service.js +207 -0
- package/dist/modules/extensions/services/extensions.service.js.map +1 -0
- package/dist/modules/extensions/services/managed-plugin-service.interface.d.ts +41 -0
- package/dist/modules/extensions/services/managed-plugin-service.interface.js +3 -0
- package/dist/modules/extensions/services/managed-plugin-service.interface.js.map +1 -0
- package/dist/modules/extensions/services/module-reset.service.d.ts +10 -0
- package/dist/modules/extensions/services/module-reset.service.js +42 -0
- package/dist/modules/extensions/services/module-reset.service.js.map +1 -0
- package/dist/modules/extensions/services/plugin-service-manager.service.d.ts +43 -0
- package/dist/modules/extensions/services/plugin-service-manager.service.js +517 -0
- package/dist/modules/extensions/services/plugin-service-manager.service.js.map +1 -0
- package/dist/modules/factory-reset/factory-reset.module.d.ts +2 -0
- package/dist/modules/factory-reset/factory-reset.module.js +22 -0
- package/dist/modules/factory-reset/factory-reset.module.js.map +1 -0
- package/dist/modules/intents/controllers/intents.controller.d.ts +10 -0
- package/dist/modules/intents/controllers/intents.controller.js +144 -0
- package/dist/modules/intents/controllers/intents.controller.js.map +1 -0
- package/dist/modules/intents/dto/update-config.dto.d.ts +5 -0
- package/dist/modules/intents/dto/update-config.dto.js +39 -0
- package/dist/modules/intents/dto/update-config.dto.js.map +1 -0
- package/dist/modules/intents/intents.constants.d.ts +60 -0
- package/dist/modules/intents/intents.constants.js +78 -0
- package/dist/modules/intents/intents.constants.js.map +1 -0
- package/dist/modules/intents/intents.module.d.ts +8 -0
- package/dist/modules/intents/intents.module.js +99 -0
- package/dist/modules/intents/intents.module.js.map +1 -0
- package/dist/modules/intents/models/config.model.d.ts +5 -0
- package/dist/modules/intents/models/config.model.js +49 -0
- package/dist/modules/intents/models/config.model.js.map +1 -0
- package/dist/modules/intents/models/intent.model.d.ts +58 -0
- package/dist/modules/intents/models/intent.model.js +293 -0
- package/dist/modules/intents/models/intent.model.js.map +1 -0
- package/dist/modules/intents/models/intents-response.model.d.ts +15 -0
- package/dist/modules/intents/models/intents-response.model.js +67 -0
- package/dist/modules/intents/models/intents-response.model.js.map +1 -0
- package/dist/modules/intents/services/intent-timeseries.service.d.ts +52 -0
- package/dist/modules/intents/services/intent-timeseries.service.js +472 -0
- package/dist/modules/intents/services/intent-timeseries.service.js.map +1 -0
- package/dist/modules/intents/services/intents.service.d.ts +25 -0
- package/dist/modules/intents/services/intents.service.js +205 -0
- package/dist/modules/intents/services/intents.service.js.map +1 -0
- package/dist/modules/intents/validators/intent-target.validator.d.ts +5 -0
- package/dist/modules/intents/validators/intent-target.validator.js +27 -0
- package/dist/modules/intents/validators/intent-target.validator.js.map +1 -0
- package/dist/modules/mdns/dto/update-config.dto.d.ts +7 -0
- package/dist/modules/mdns/dto/update-config.dto.js +63 -0
- package/dist/modules/mdns/dto/update-config.dto.js.map +1 -0
- package/dist/modules/mdns/mdns.constants.d.ts +4 -0
- package/dist/modules/mdns/mdns.constants.js +8 -0
- package/dist/modules/mdns/mdns.constants.js.map +1 -0
- package/dist/modules/mdns/mdns.module.d.ts +11 -0
- package/dist/modules/mdns/mdns.module.js +102 -0
- package/dist/modules/mdns/mdns.module.js.map +1 -0
- package/dist/modules/mdns/mdns.openapi.d.ts +3 -0
- package/dist/modules/mdns/mdns.openapi.js +10 -0
- package/dist/modules/mdns/mdns.openapi.js.map +1 -0
- package/dist/modules/mdns/models/config.model.d.ts +7 -0
- package/dist/modules/mdns/models/config.model.js +73 -0
- package/dist/modules/mdns/models/config.model.js.map +1 -0
- package/dist/modules/mdns/services/mdns.service.d.ts +27 -0
- package/dist/modules/mdns/services/mdns.service.js +162 -0
- package/dist/modules/mdns/services/mdns.service.js.map +1 -0
- package/dist/modules/module-registry/module-registry.module.d.ts +2 -0
- package/dist/modules/module-registry/module-registry.module.js +23 -0
- package/dist/modules/module-registry/module-registry.module.js.map +1 -0
- package/dist/modules/platform/dto/network-stats.dto.d.ts +5 -0
- package/dist/modules/platform/dto/network-stats.dto.js +33 -0
- package/dist/modules/platform/dto/network-stats.dto.js.map +1 -0
- package/dist/modules/platform/dto/system-info.dto.d.ts +51 -0
- package/dist/modules/platform/dto/system-info.dto.js +223 -0
- package/dist/modules/platform/dto/system-info.dto.js.map +1 -0
- package/dist/modules/platform/dto/temperature.dto.d.ts +4 -0
- package/dist/modules/platform/dto/temperature.dto.js +34 -0
- package/dist/modules/platform/dto/temperature.dto.js.map +1 -0
- package/dist/modules/platform/dto/throttle-status.dto.d.ts +6 -0
- package/dist/modules/platform/dto/throttle-status.dto.js +38 -0
- package/dist/modules/platform/dto/throttle-status.dto.js.map +1 -0
- package/dist/modules/platform/dto/update-config.dto.d.ts +5 -0
- package/dist/modules/platform/dto/update-config.dto.js +36 -0
- package/dist/modules/platform/dto/update-config.dto.js.map +1 -0
- package/dist/modules/platform/dto/wifi-networks.dto.d.ts +12 -0
- package/dist/modules/platform/dto/wifi-networks.dto.js +68 -0
- package/dist/modules/platform/dto/wifi-networks.dto.js.map +1 -0
- package/dist/modules/platform/models/config.model.d.ts +5 -0
- package/dist/modules/platform/models/config.model.js +49 -0
- package/dist/modules/platform/models/config.model.js.map +1 -0
- package/dist/modules/platform/platform.constants.d.ts +9 -0
- package/dist/modules/platform/platform.constants.js +14 -0
- package/dist/modules/platform/platform.constants.js.map +1 -0
- package/dist/modules/platform/platform.exceptions.d.ts +9 -0
- package/dist/modules/platform/platform.exceptions.js +25 -0
- package/dist/modules/platform/platform.exceptions.js.map +1 -0
- package/dist/modules/platform/platform.module.d.ts +9 -0
- package/dist/modules/platform/platform.module.js +77 -0
- package/dist/modules/platform/platform.module.js.map +1 -0
- package/dist/modules/platform/platforms/abstract.platform.d.ts +25 -0
- package/dist/modules/platform/platforms/abstract.platform.js +27 -0
- package/dist/modules/platform/platforms/abstract.platform.js.map +1 -0
- package/dist/modules/platform/platforms/development.platform.d.ts +5 -0
- package/dist/modules/platform/platforms/development.platform.js +20 -0
- package/dist/modules/platform/platforms/development.platform.js.map +1 -0
- package/dist/modules/platform/platforms/docker.platform.d.ts +6 -0
- package/dist/modules/platform/platforms/docker.platform.js +88 -0
- package/dist/modules/platform/platforms/docker.platform.js.map +1 -0
- package/dist/modules/platform/platforms/generic.platform.d.ts +25 -0
- package/dist/modules/platform/platforms/generic.platform.js +203 -0
- package/dist/modules/platform/platforms/generic.platform.js.map +1 -0
- package/dist/modules/platform/platforms/home-assistant.platform.d.ts +9 -0
- package/dist/modules/platform/platforms/home-assistant.platform.js +46 -0
- package/dist/modules/platform/platforms/home-assistant.platform.js.map +1 -0
- package/dist/modules/platform/platforms/raspberry.platform.d.ts +29 -0
- package/dist/modules/platform/platforms/raspberry.platform.js +340 -0
- package/dist/modules/platform/platforms/raspberry.platform.js.map +1 -0
- package/dist/modules/platform/services/platform.service.d.ts +21 -0
- package/dist/modules/platform/services/platform.service.js +147 -0
- package/dist/modules/platform/services/platform.service.js.map +1 -0
- package/dist/modules/scenes/controllers/scene-actions.controller.d.ts +25 -0
- package/dist/modules/scenes/controllers/scene-actions.controller.js +261 -0
- package/dist/modules/scenes/controllers/scene-actions.controller.js.map +1 -0
- package/dist/modules/scenes/controllers/scenes.controller.d.ts +24 -0
- package/dist/modules/scenes/controllers/scenes.controller.js +277 -0
- package/dist/modules/scenes/controllers/scenes.controller.js.map +1 -0
- package/dist/modules/scenes/dto/create-scene-action.dto.d.ts +11 -0
- package/dist/modules/scenes/dto/create-scene-action.dto.js +96 -0
- package/dist/modules/scenes/dto/create-scene-action.dto.js.map +1 -0
- package/dist/modules/scenes/dto/create-scene.dto.d.ts +16 -0
- package/dist/modules/scenes/dto/create-scene.dto.js +145 -0
- package/dist/modules/scenes/dto/create-scene.dto.js.map +1 -0
- package/dist/modules/scenes/dto/trigger-scene.dto.d.ts +7 -0
- package/dist/modules/scenes/dto/trigger-scene.dto.js +58 -0
- package/dist/modules/scenes/dto/trigger-scene.dto.js.map +1 -0
- package/dist/modules/scenes/dto/update-config.dto.d.ts +7 -0
- package/dist/modules/scenes/dto/update-config.dto.js +94 -0
- package/dist/modules/scenes/dto/update-config.dto.js.map +1 -0
- package/dist/modules/scenes/dto/update-scene-action.dto.d.ts +9 -0
- package/dist/modules/scenes/dto/update-scene-action.dto.js +73 -0
- package/dist/modules/scenes/dto/update-scene-action.dto.js.map +1 -0
- package/dist/modules/scenes/dto/update-scene.dto.d.ts +13 -0
- package/dist/modules/scenes/dto/update-scene.dto.js +119 -0
- package/dist/modules/scenes/dto/update-scene.dto.js.map +1 -0
- package/dist/modules/scenes/entities/scenes.entity.d.ts +21 -0
- package/dist/modules/scenes/entities/scenes.entity.js +229 -0
- package/dist/modules/scenes/entities/scenes.entity.js.map +1 -0
- package/dist/modules/scenes/listeners/websocket-exchange.listener.d.ts +18 -0
- package/dist/modules/scenes/listeners/websocket-exchange.listener.js +83 -0
- package/dist/modules/scenes/listeners/websocket-exchange.listener.js.map +1 -0
- package/dist/modules/scenes/models/config.model.d.ts +8 -0
- package/dist/modules/scenes/models/config.model.js +93 -0
- package/dist/modules/scenes/models/config.model.js.map +1 -0
- package/dist/modules/scenes/models/scenes-response.model.d.ts +18 -0
- package/dist/modules/scenes/models/scenes-response.model.js +90 -0
- package/dist/modules/scenes/models/scenes-response.model.js.map +1 -0
- package/dist/modules/scenes/models/scenes.model.d.ts +19 -0
- package/dist/modules/scenes/models/scenes.model.js +183 -0
- package/dist/modules/scenes/models/scenes.model.js.map +1 -0
- package/dist/modules/scenes/scenes.constants.d.ts +43 -0
- package/dist/modules/scenes/scenes.constants.js +50 -0
- package/dist/modules/scenes/scenes.constants.js.map +1 -0
- package/dist/modules/scenes/scenes.exceptions.d.ts +40 -0
- package/dist/modules/scenes/scenes.exceptions.js +84 -0
- package/dist/modules/scenes/scenes.exceptions.js.map +1 -0
- package/dist/modules/scenes/scenes.module.d.ts +23 -0
- package/dist/modules/scenes/scenes.module.js +157 -0
- package/dist/modules/scenes/scenes.module.js.map +1 -0
- package/dist/modules/scenes/scenes.openapi.d.ts +4 -0
- package/dist/modules/scenes/scenes.openapi.js +18 -0
- package/dist/modules/scenes/scenes.openapi.js.map +1 -0
- package/dist/modules/scenes/services/module-reset.service.d.ts +14 -0
- package/dist/modules/scenes/services/module-reset.service.js +63 -0
- package/dist/modules/scenes/services/module-reset.service.js.map +1 -0
- package/dist/modules/scenes/services/scene-actions-type-mapper.service.d.ts +18 -0
- package/dist/modules/scenes/services/scene-actions-type-mapper.service.js +60 -0
- package/dist/modules/scenes/services/scene-actions-type-mapper.service.js.map +1 -0
- package/dist/modules/scenes/services/scene-actions.service.d.ts +25 -0
- package/dist/modules/scenes/services/scene-actions.service.js +177 -0
- package/dist/modules/scenes/services/scene-actions.service.js.map +1 -0
- package/dist/modules/scenes/services/scene-executor.service.d.ts +26 -0
- package/dist/modules/scenes/services/scene-executor.service.js +251 -0
- package/dist/modules/scenes/services/scene-executor.service.js.map +1 -0
- package/dist/modules/scenes/services/scene-tool.service.d.ts +16 -0
- package/dist/modules/scenes/services/scene-tool.service.js +90 -0
- package/dist/modules/scenes/services/scene-tool.service.js.map +1 -0
- package/dist/modules/scenes/services/scenes-seeder.service.d.ts +9 -0
- package/dist/modules/scenes/services/scenes-seeder.service.js +90 -0
- package/dist/modules/scenes/services/scenes-seeder.service.js.map +1 -0
- package/dist/modules/scenes/services/scenes.service.d.ts +28 -0
- package/dist/modules/scenes/services/scenes.service.js +240 -0
- package/dist/modules/scenes/services/scenes.service.js.map +1 -0
- package/dist/modules/scenes/validators/scene-exists-constraint.validator.d.ts +9 -0
- package/dist/modules/scenes/validators/scene-exists-constraint.validator.js +49 -0
- package/dist/modules/scenes/validators/scene-exists-constraint.validator.js.map +1 -0
- package/dist/modules/security/contracts/security-aggregation-context.type.d.ts +6 -0
- package/dist/modules/security/contracts/security-aggregation-context.type.js +3 -0
- package/dist/modules/security/contracts/security-aggregation-context.type.js.map +1 -0
- package/dist/modules/security/contracts/security-aggregator.interface.d.ts +9 -0
- package/dist/modules/security/contracts/security-aggregator.interface.js +3 -0
- package/dist/modules/security/contracts/security-aggregator.interface.js.map +1 -0
- package/dist/modules/security/contracts/security-signal.type.d.ts +27 -0
- package/dist/modules/security/contracts/security-signal.type.js +3 -0
- package/dist/modules/security/contracts/security-signal.type.js.map +1 -0
- package/dist/modules/security/contracts/security-state-provider.interface.d.ts +6 -0
- package/dist/modules/security/contracts/security-state-provider.interface.js +3 -0
- package/dist/modules/security/contracts/security-state-provider.interface.js.map +1 -0
- package/dist/modules/security/controllers/security-alerts.controller.d.ts +10 -0
- package/dist/modules/security/controllers/security-alerts.controller.js +103 -0
- package/dist/modules/security/controllers/security-alerts.controller.js.map +1 -0
- package/dist/modules/security/controllers/security-events.controller.d.ts +7 -0
- package/dist/modules/security/controllers/security-events.controller.js +116 -0
- package/dist/modules/security/controllers/security-events.controller.js.map +1 -0
- package/dist/modules/security/controllers/security.controller.d.ts +7 -0
- package/dist/modules/security/controllers/security.controller.js +51 -0
- package/dist/modules/security/controllers/security.controller.js.map +1 -0
- package/dist/modules/security/dto/update-config.dto.d.ts +5 -0
- package/dist/modules/security/dto/update-config.dto.js +39 -0
- package/dist/modules/security/dto/update-config.dto.js.map +1 -0
- package/dist/modules/security/entities/security-alert-ack.entity.d.ts +8 -0
- package/dist/modules/security/entities/security-alert-ack.entity.js +44 -0
- package/dist/modules/security/entities/security-alert-ack.entity.js.map +1 -0
- package/dist/modules/security/listeners/security-state.listener.d.ts +31 -0
- package/dist/modules/security/listeners/security-state.listener.js +248 -0
- package/dist/modules/security/listeners/security-state.listener.js.map +1 -0
- package/dist/modules/security/models/config.model.d.ts +5 -0
- package/dist/modules/security/models/config.model.js +49 -0
- package/dist/modules/security/models/config.model.js.map +1 -0
- package/dist/modules/security/models/security-alert-ack-response.model.d.ts +11 -0
- package/dist/modules/security/models/security-alert-ack-response.model.js +68 -0
- package/dist/modules/security/models/security-alert-ack-response.model.js.map +1 -0
- package/dist/modules/security/models/security-event-response.model.d.ts +15 -0
- package/dist/modules/security/models/security-event-response.model.js +109 -0
- package/dist/modules/security/models/security-event-response.model.js.map +1 -0
- package/dist/modules/security/models/security-response.model.d.ts +5 -0
- package/dist/modules/security/models/security-response.model.js +31 -0
- package/dist/modules/security/models/security-response.model.js.map +1 -0
- package/dist/modules/security/models/security-status.model.d.ts +27 -0
- package/dist/modules/security/models/security-status.model.js +224 -0
- package/dist/modules/security/models/security-status.model.js.map +1 -0
- package/dist/modules/security/providers/alarm-security.provider.d.ts +20 -0
- package/dist/modules/security/providers/alarm-security.provider.js +267 -0
- package/dist/modules/security/providers/alarm-security.provider.js.map +1 -0
- package/dist/modules/security/providers/default-security.provider.d.ts +6 -0
- package/dist/modules/security/providers/default-security.provider.js +28 -0
- package/dist/modules/security/providers/default-security.provider.js.map +1 -0
- package/dist/modules/security/providers/security-sensors.provider.d.ts +18 -0
- package/dist/modules/security/providers/security-sensors.provider.js +179 -0
- package/dist/modules/security/providers/security-sensors.provider.js.map +1 -0
- package/dist/modules/security/security.constants.d.ts +47 -0
- package/dist/modules/security/security.constants.js +61 -0
- package/dist/modules/security/security.constants.js.map +1 -0
- package/dist/modules/security/security.module.d.ts +15 -0
- package/dist/modules/security/security.module.js +138 -0
- package/dist/modules/security/security.module.js.map +1 -0
- package/dist/modules/security/security.openapi.d.ts +5 -0
- package/dist/modules/security/security.openapi.js +19 -0
- package/dist/modules/security/security.openapi.js.map +1 -0
- package/dist/modules/security/security.utils.d.ts +2 -0
- package/dist/modules/security/security.utils.js +18 -0
- package/dist/modules/security/security.utils.js.map +1 -0
- package/dist/modules/security/services/module-reset.service.d.ts +11 -0
- package/dist/modules/security/services/module-reset.service.js +47 -0
- package/dist/modules/security/services/module-reset.service.js.map +1 -0
- package/dist/modules/security/services/security-aggregator.service.d.ts +15 -0
- package/dist/modules/security/services/security-aggregator.service.js +252 -0
- package/dist/modules/security/services/security-aggregator.service.js.map +1 -0
- package/dist/modules/security/services/security-alert-ack.service.d.ts +16 -0
- package/dist/modules/security/services/security-alert-ack.service.js +112 -0
- package/dist/modules/security/services/security-alert-ack.service.js.map +1 -0
- package/dist/modules/security/services/security-events.service.d.ts +41 -0
- package/dist/modules/security/services/security-events.service.js +205 -0
- package/dist/modules/security/services/security-events.service.js.map +1 -0
- package/dist/modules/security/services/security.service.d.ts +20 -0
- package/dist/modules/security/services/security.service.js +122 -0
- package/dist/modules/security/services/security.service.js.map +1 -0
- package/dist/modules/security/spec/definitions/detection-rules.yaml +62 -0
- package/dist/modules/security/spec/detection-rules-loader.service.d.ts +15 -0
- package/dist/modules/security/spec/detection-rules-loader.service.js +135 -0
- package/dist/modules/security/spec/detection-rules-loader.service.js.map +1 -0
- package/dist/modules/security/spec/detection-rules.types.d.ts +27 -0
- package/dist/modules/security/spec/detection-rules.types.js +3 -0
- package/dist/modules/security/spec/detection-rules.types.js.map +1 -0
- package/dist/modules/security/spec/index.d.ts +2 -0
- package/dist/modules/security/spec/index.js +19 -0
- package/dist/modules/security/spec/index.js.map +1 -0
- package/dist/modules/seed/commands/seeding.command.d.ts +7 -0
- package/dist/modules/seed/commands/seeding.command.js +48 -0
- package/dist/modules/seed/commands/seeding.command.js.map +1 -0
- package/dist/modules/seed/seed.constants.d.ts +1 -0
- package/dist/modules/seed/seed.constants.js +5 -0
- package/dist/modules/seed/seed.constants.js.map +1 -0
- package/dist/modules/seed/seeding.module.d.ts +2 -0
- package/dist/modules/seed/seeding.module.js +25 -0
- package/dist/modules/seed/seeding.module.js.map +1 -0
- package/dist/modules/seed/services/seed-registry.service.d.ts +12 -0
- package/dist/modules/seed/services/seed-registry.service.js +36 -0
- package/dist/modules/seed/services/seed-registry.service.js.map +1 -0
- package/dist/modules/seed/services/seed.service.d.ts +21 -0
- package/dist/modules/seed/services/seed.service.js +165 -0
- package/dist/modules/seed/services/seed.service.js.map +1 -0
- package/dist/modules/spaces/controllers/spaces.controller.d.ts +129 -0
- package/dist/modules/spaces/controllers/spaces.controller.js +2142 -0
- package/dist/modules/spaces/controllers/spaces.controller.js.map +1 -0
- package/dist/modules/spaces/dto/bulk-assign.dto.d.ts +7 -0
- package/dist/modules/spaces/dto/bulk-assign.dto.js +70 -0
- package/dist/modules/spaces/dto/bulk-assign.dto.js.map +1 -0
- package/dist/modules/spaces/dto/climate-intent.dto.d.ts +12 -0
- package/dist/modules/spaces/dto/climate-intent.dto.js +141 -0
- package/dist/modules/spaces/dto/climate-intent.dto.js.map +1 -0
- package/dist/modules/spaces/dto/climate-role.dto.d.ts +16 -0
- package/dist/modules/spaces/dto/climate-role.dto.js +127 -0
- package/dist/modules/spaces/dto/climate-role.dto.js.map +1 -0
- package/dist/modules/spaces/dto/covers-intent.dto.d.ts +12 -0
- package/dist/modules/spaces/dto/covers-intent.dto.js +120 -0
- package/dist/modules/spaces/dto/covers-intent.dto.js.map +1 -0
- package/dist/modules/spaces/dto/covers-role.dto.d.ts +16 -0
- package/dist/modules/spaces/dto/covers-role.dto.js +125 -0
- package/dist/modules/spaces/dto/covers-role.dto.js.map +1 -0
- package/dist/modules/spaces/dto/create-space.dto.d.ts +17 -0
- package/dist/modules/spaces/dto/create-space.dto.js +190 -0
- package/dist/modules/spaces/dto/create-space.dto.js.map +1 -0
- package/dist/modules/spaces/dto/lighting-intent.dto.d.ts +16 -0
- package/dist/modules/spaces/dto/lighting-intent.dto.js +197 -0
- package/dist/modules/spaces/dto/lighting-intent.dto.js.map +1 -0
- package/dist/modules/spaces/dto/lighting-role.dto.d.ts +16 -0
- package/dist/modules/spaces/dto/lighting-role.dto.js +125 -0
- package/dist/modules/spaces/dto/lighting-role.dto.js.map +1 -0
- package/dist/modules/spaces/dto/media-activity-binding.dto.d.ts +28 -0
- package/dist/modules/spaces/dto/media-activity-binding.dto.js +379 -0
- package/dist/modules/spaces/dto/media-activity-binding.dto.js.map +1 -0
- package/dist/modules/spaces/dto/sensor-role.dto.d.ts +16 -0
- package/dist/modules/spaces/dto/sensor-role.dto.js +127 -0
- package/dist/modules/spaces/dto/sensor-role.dto.js.map +1 -0
- package/dist/modules/spaces/dto/status-widget.dto.d.ts +5 -0
- package/dist/modules/spaces/dto/status-widget.dto.js +52 -0
- package/dist/modules/spaces/dto/status-widget.dto.js.map +1 -0
- package/dist/modules/spaces/dto/suggestion.dto.d.ts +8 -0
- package/dist/modules/spaces/dto/suggestion.dto.js +61 -0
- package/dist/modules/spaces/dto/suggestion.dto.js.map +1 -0
- package/dist/modules/spaces/dto/update-config.dto.d.ts +5 -0
- package/dist/modules/spaces/dto/update-config.dto.js +34 -0
- package/dist/modules/spaces/dto/update-config.dto.js.map +1 -0
- package/dist/modules/spaces/dto/update-space.dto.d.ts +16 -0
- package/dist/modules/spaces/dto/update-space.dto.js +179 -0
- package/dist/modules/spaces/dto/update-space.dto.js.map +1 -0
- package/dist/modules/spaces/entities/space-active-media-activity.entity.d.ts +12 -0
- package/dist/modules/spaces/entities/space-active-media-activity.entity.js +132 -0
- package/dist/modules/spaces/entities/space-active-media-activity.entity.js.map +1 -0
- package/dist/modules/spaces/entities/space-climate-role.entity.d.ts +14 -0
- package/dist/modules/spaces/entities/space-climate-role.entity.js +120 -0
- package/dist/modules/spaces/entities/space-climate-role.entity.js.map +1 -0
- package/dist/modules/spaces/entities/space-covers-role.entity.d.ts +14 -0
- package/dist/modules/spaces/entities/space-covers-role.entity.js +119 -0
- package/dist/modules/spaces/entities/space-covers-role.entity.js.map +1 -0
- package/dist/modules/spaces/entities/space-lighting-role.entity.d.ts +14 -0
- package/dist/modules/spaces/entities/space-lighting-role.entity.js +119 -0
- package/dist/modules/spaces/entities/space-lighting-role.entity.js.map +1 -0
- package/dist/modules/spaces/entities/space-media-activity-binding.entity.d.ts +16 -0
- package/dist/modules/spaces/entities/space-media-activity-binding.entity.js +192 -0
- package/dist/modules/spaces/entities/space-media-activity-binding.entity.js.map +1 -0
- package/dist/modules/spaces/entities/space-sensor-role.entity.d.ts +14 -0
- package/dist/modules/spaces/entities/space-sensor-role.entity.js +119 -0
- package/dist/modules/spaces/entities/space-sensor-role.entity.js.map +1 -0
- package/dist/modules/spaces/entities/space.entity.d.ts +16 -0
- package/dist/modules/spaces/entities/space.entity.js +213 -0
- package/dist/modules/spaces/entities/space.entity.js.map +1 -0
- package/dist/modules/spaces/listeners/space-activity.listener.d.ts +13 -0
- package/dist/modules/spaces/listeners/space-activity.listener.js +89 -0
- package/dist/modules/spaces/listeners/space-activity.listener.js.map +1 -0
- package/dist/modules/spaces/listeners/space-climate-state.listener.d.ts +19 -0
- package/dist/modules/spaces/listeners/space-climate-state.listener.js +142 -0
- package/dist/modules/spaces/listeners/space-climate-state.listener.js.map +1 -0
- package/dist/modules/spaces/listeners/space-lighting-state.listener.d.ts +19 -0
- package/dist/modules/spaces/listeners/space-lighting-state.listener.js +141 -0
- package/dist/modules/spaces/listeners/space-lighting-state.listener.js.map +1 -0
- package/dist/modules/spaces/listeners/space-sensor-state.listener.d.ts +22 -0
- package/dist/modules/spaces/listeners/space-sensor-state.listener.js +154 -0
- package/dist/modules/spaces/listeners/space-sensor-state.listener.js.map +1 -0
- package/dist/modules/spaces/listeners/websocket-exchange.listener.d.ts +31 -0
- package/dist/modules/spaces/listeners/websocket-exchange.listener.js +224 -0
- package/dist/modules/spaces/listeners/websocket-exchange.listener.js.map +1 -0
- package/dist/modules/spaces/models/config.model.d.ts +5 -0
- package/dist/modules/spaces/models/config.model.js +49 -0
- package/dist/modules/spaces/models/config.model.js.map +1 -0
- package/dist/modules/spaces/models/derived-media-endpoint.model.d.ts +49 -0
- package/dist/modules/spaces/models/derived-media-endpoint.model.js +341 -0
- package/dist/modules/spaces/models/derived-media-endpoint.model.js.map +1 -0
- package/dist/modules/spaces/models/media-activity-binding.model.d.ts +22 -0
- package/dist/modules/spaces/models/media-activity-binding.model.js +139 -0
- package/dist/modules/spaces/models/media-activity-binding.model.js.map +1 -0
- package/dist/modules/spaces/models/media-activity.model.d.ts +82 -0
- package/dist/modules/spaces/models/media-activity.model.js +542 -0
- package/dist/modules/spaces/models/media-activity.model.js.map +1 -0
- package/dist/modules/spaces/models/media-routing.model.d.ts +31 -0
- package/dist/modules/spaces/models/media-routing.model.js +249 -0
- package/dist/modules/spaces/models/media-routing.model.js.map +1 -0
- package/dist/modules/spaces/models/spaces-response.model.d.ts +550 -0
- package/dist/modules/spaces/models/spaces-response.model.js +4301 -0
- package/dist/modules/spaces/models/spaces-response.model.js.map +1 -0
- package/dist/modules/spaces/services/__fixtures__/media-scenario-templates.d.ts +45 -0
- package/dist/modules/spaces/services/__fixtures__/media-scenario-templates.js +201 -0
- package/dist/modules/spaces/services/__fixtures__/media-scenario-templates.js.map +1 -0
- package/dist/modules/spaces/services/__fixtures__/media-test-harness.d.ts +73 -0
- package/dist/modules/spaces/services/__fixtures__/media-test-harness.js +116 -0
- package/dist/modules/spaces/services/__fixtures__/media-test-harness.js.map +1 -0
- package/dist/modules/spaces/services/climate-intent.service.d.ts +47 -0
- package/dist/modules/spaces/services/climate-intent.service.js +652 -0
- package/dist/modules/spaces/services/climate-intent.service.js.map +1 -0
- package/dist/modules/spaces/services/covers-intent.service.d.ts +53 -0
- package/dist/modules/spaces/services/covers-intent.service.js +621 -0
- package/dist/modules/spaces/services/covers-intent.service.js.map +1 -0
- package/dist/modules/spaces/services/derived-media-endpoint.service.d.ts +16 -0
- package/dist/modules/spaces/services/derived-media-endpoint.service.js +234 -0
- package/dist/modules/spaces/services/derived-media-endpoint.service.js.map +1 -0
- package/dist/modules/spaces/services/lighting-intent.service.d.ts +70 -0
- package/dist/modules/spaces/services/lighting-intent.service.js +969 -0
- package/dist/modules/spaces/services/lighting-intent.service.js.map +1 -0
- package/dist/modules/spaces/services/media-capability.service.d.ts +12 -0
- package/dist/modules/spaces/services/media-capability.service.js +221 -0
- package/dist/modules/spaces/services/media-capability.service.js.map +1 -0
- package/dist/modules/spaces/services/module-reset.service.d.ts +11 -0
- package/dist/modules/spaces/services/module-reset.service.js +47 -0
- package/dist/modules/spaces/services/module-reset.service.js.map +1 -0
- package/dist/modules/spaces/services/space-climate-role.service.d.ts +78 -0
- package/dist/modules/spaces/services/space-climate-role.service.js +468 -0
- package/dist/modules/spaces/services/space-climate-role.service.js.map +1 -0
- package/dist/modules/spaces/services/space-climate-state.service.d.ts +72 -0
- package/dist/modules/spaces/services/space-climate-state.service.js +428 -0
- package/dist/modules/spaces/services/space-climate-state.service.js.map +1 -0
- package/dist/modules/spaces/services/space-context-snapshot.service.d.ts +74 -0
- package/dist/modules/spaces/services/space-context-snapshot.service.js +300 -0
- package/dist/modules/spaces/services/space-context-snapshot.service.js.map +1 -0
- package/dist/modules/spaces/services/space-covers-role.service.d.ts +64 -0
- package/dist/modules/spaces/services/space-covers-role.service.js +297 -0
- package/dist/modules/spaces/services/space-covers-role.service.js.map +1 -0
- package/dist/modules/spaces/services/space-covers-state.service.d.ts +68 -0
- package/dist/modules/spaces/services/space-covers-state.service.js +306 -0
- package/dist/modules/spaces/services/space-covers-state.service.js.map +1 -0
- package/dist/modules/spaces/services/space-intent-base.service.d.ts +18 -0
- package/dist/modules/spaces/services/space-intent-base.service.js +71 -0
- package/dist/modules/spaces/services/space-intent-base.service.js.map +1 -0
- package/dist/modules/spaces/services/space-intent.service.d.ts +23 -0
- package/dist/modules/spaces/services/space-intent.service.js +50 -0
- package/dist/modules/spaces/services/space-intent.service.js.map +1 -0
- package/dist/modules/spaces/services/space-lighting-role.service.d.ts +62 -0
- package/dist/modules/spaces/services/space-lighting-role.service.js +278 -0
- package/dist/modules/spaces/services/space-lighting-role.service.js.map +1 -0
- package/dist/modules/spaces/services/space-lighting-state.service.d.ts +88 -0
- package/dist/modules/spaces/services/space-lighting-state.service.js +668 -0
- package/dist/modules/spaces/services/space-lighting-state.service.js.map +1 -0
- package/dist/modules/spaces/services/space-lighting-tool.service.d.ts +19 -0
- package/dist/modules/spaces/services/space-lighting-tool.service.js +167 -0
- package/dist/modules/spaces/services/space-lighting-tool.service.js.map +1 -0
- package/dist/modules/spaces/services/space-media-activity-binding.service.d.ts +46 -0
- package/dist/modules/spaces/services/space-media-activity-binding.service.js +563 -0
- package/dist/modules/spaces/services/space-media-activity-binding.service.js.map +1 -0
- package/dist/modules/spaces/services/space-media-activity.service.d.ts +34 -0
- package/dist/modules/spaces/services/space-media-activity.service.js +739 -0
- package/dist/modules/spaces/services/space-media-activity.service.js.map +1 -0
- package/dist/modules/spaces/services/space-sensor-role.service.d.ts +64 -0
- package/dist/modules/spaces/services/space-sensor-role.service.js +302 -0
- package/dist/modules/spaces/services/space-sensor-role.service.js.map +1 -0
- package/dist/modules/spaces/services/space-sensor-state.service.d.ts +72 -0
- package/dist/modules/spaces/services/space-sensor-state.service.js +327 -0
- package/dist/modules/spaces/services/space-sensor-state.service.js.map +1 -0
- package/dist/modules/spaces/services/space-suggestion-heartbeat.service.d.ts +29 -0
- package/dist/modules/spaces/services/space-suggestion-heartbeat.service.js +128 -0
- package/dist/modules/spaces/services/space-suggestion-heartbeat.service.js.map +1 -0
- package/dist/modules/spaces/services/space-suggestion.service.d.ts +46 -0
- package/dist/modules/spaces/services/space-suggestion.service.js +202 -0
- package/dist/modules/spaces/services/space-suggestion.service.js.map +1 -0
- package/dist/modules/spaces/services/space-undo-history.service.d.ts +45 -0
- package/dist/modules/spaces/services/space-undo-history.service.js +342 -0
- package/dist/modules/spaces/services/space-undo-history.service.js.map +1 -0
- package/dist/modules/spaces/services/spaces-seeder.service.d.ts +16 -0
- package/dist/modules/spaces/services/spaces-seeder.service.js +180 -0
- package/dist/modules/spaces/services/spaces-seeder.service.js.map +1 -0
- package/dist/modules/spaces/services/spaces.service.d.ts +49 -0
- package/dist/modules/spaces/services/spaces.service.js +506 -0
- package/dist/modules/spaces/services/spaces.service.js.map +1 -0
- package/dist/modules/spaces/spaces.constants.d.ts +358 -0
- package/dist/modules/spaces/spaces.constants.js +1545 -0
- package/dist/modules/spaces/spaces.constants.js.map +1 -0
- package/dist/modules/spaces/spaces.exceptions.d.ts +10 -0
- package/dist/modules/spaces/spaces.exceptions.js +23 -0
- package/dist/modules/spaces/spaces.exceptions.js.map +1 -0
- package/dist/modules/spaces/spaces.module.d.ts +23 -0
- package/dist/modules/spaces/spaces.module.js +219 -0
- package/dist/modules/spaces/spaces.module.js.map +1 -0
- package/dist/modules/spaces/spaces.openapi.d.ts +18 -0
- package/dist/modules/spaces/spaces.openapi.js +161 -0
- package/dist/modules/spaces/spaces.openapi.js.map +1 -0
- package/dist/modules/spaces/spaces.utils.d.ts +2 -0
- package/dist/modules/spaces/spaces.utils.js +17 -0
- package/dist/modules/spaces/spaces.utils.js.map +1 -0
- package/dist/modules/spaces/spec/definitions/climate-intents.yaml +94 -0
- package/dist/modules/spaces/spec/definitions/covers-modes.yaml +83 -0
- package/dist/modules/spaces/spec/definitions/enums.yaml +119 -0
- package/dist/modules/spaces/spec/definitions/lighting-intents.yaml +181 -0
- package/dist/modules/spaces/spec/definitions/lighting-modes.yaml +119 -0
- package/dist/modules/spaces/spec/definitions/suggestions.yaml +47 -0
- package/dist/modules/spaces/spec/index.d.ts +2 -0
- package/dist/modules/spaces/spec/index.js +19 -0
- package/dist/modules/spaces/spec/index.js.map +1 -0
- package/dist/modules/spaces/spec/intent-spec-loader.service.d.ts +59 -0
- package/dist/modules/spaces/spec/intent-spec-loader.service.js +510 -0
- package/dist/modules/spaces/spec/intent-spec-loader.service.js.map +1 -0
- package/dist/modules/spaces/spec/intent-spec.types.d.ts +172 -0
- package/dist/modules/spaces/spec/intent-spec.types.js +3 -0
- package/dist/modules/spaces/spec/intent-spec.types.js.map +1 -0
- package/dist/modules/spaces/validators/at-least-one-setpoint.validator.d.ts +6 -0
- package/dist/modules/spaces/validators/at-least-one-setpoint.validator.js +41 -0
- package/dist/modules/spaces/validators/at-least-one-setpoint.validator.js.map +1 -0
- package/dist/modules/spaces/validators/setpoint-order-constraint.validator.d.ts +6 -0
- package/dist/modules/spaces/validators/setpoint-order-constraint.validator.js +46 -0
- package/dist/modules/spaces/validators/setpoint-order-constraint.validator.js.map +1 -0
- package/dist/modules/spaces/validators/space-category-constraint.validator.d.ts +6 -0
- package/dist/modules/spaces/validators/space-category-constraint.validator.js +60 -0
- package/dist/modules/spaces/validators/space-category-constraint.validator.js.map +1 -0
- package/dist/modules/stats/controllers/prometheus.controller.d.ts +6 -0
- package/dist/modules/stats/controllers/prometheus.controller.js +61 -0
- package/dist/modules/stats/controllers/prometheus.controller.js.map +1 -0
- package/dist/modules/stats/controllers/stats.controller.d.ts +9 -0
- package/dist/modules/stats/controllers/stats.controller.js +98 -0
- package/dist/modules/stats/controllers/stats.controller.js.map +1 -0
- package/dist/modules/stats/models/stats-response.model.d.ts +11 -0
- package/dist/modules/stats/models/stats-response.model.js +62 -0
- package/dist/modules/stats/models/stats-response.model.js.map +1 -0
- package/dist/modules/stats/models/stats.model.d.ts +19 -0
- package/dist/modules/stats/models/stats.model.js +136 -0
- package/dist/modules/stats/models/stats.model.js.map +1 -0
- package/dist/modules/stats/services/stats-aggregator.service.d.ts +14 -0
- package/dist/modules/stats/services/stats-aggregator.service.js +87 -0
- package/dist/modules/stats/services/stats-aggregator.service.js.map +1 -0
- package/dist/modules/stats/services/stats-registry.service.d.ts +10 -0
- package/dist/modules/stats/services/stats-registry.service.js +35 -0
- package/dist/modules/stats/services/stats-registry.service.js.map +1 -0
- package/dist/modules/stats/services/stats.prometheus.service.d.ts +12 -0
- package/dist/modules/stats/services/stats.prometheus.service.js +109 -0
- package/dist/modules/stats/services/stats.prometheus.service.js.map +1 -0
- package/dist/modules/stats/stats.constants.d.ts +7 -0
- package/dist/modules/stats/stats.constants.js +12 -0
- package/dist/modules/stats/stats.constants.js.map +1 -0
- package/dist/modules/stats/stats.exceptions.d.ts +12 -0
- package/dist/modules/stats/stats.exceptions.js +32 -0
- package/dist/modules/stats/stats.exceptions.js.map +1 -0
- package/dist/modules/stats/stats.interfaces.d.ts +3 -0
- package/dist/modules/stats/stats.interfaces.js +3 -0
- package/dist/modules/stats/stats.interfaces.js.map +1 -0
- package/dist/modules/stats/stats.module.d.ts +6 -0
- package/dist/modules/stats/stats.module.js +47 -0
- package/dist/modules/stats/stats.module.js.map +1 -0
- package/dist/modules/stats/stats.openapi.d.ts +3 -0
- package/dist/modules/stats/stats.openapi.js +15 -0
- package/dist/modules/stats/stats.openapi.js.map +1 -0
- package/dist/modules/storage/dto/update-config.dto.d.ts +7 -0
- package/dist/modules/storage/dto/update-config.dto.js +61 -0
- package/dist/modules/storage/dto/update-config.dto.js.map +1 -0
- package/dist/modules/storage/interfaces/storage-plugin.interface.d.ts +38 -0
- package/dist/modules/storage/interfaces/storage-plugin.interface.js +3 -0
- package/dist/modules/storage/interfaces/storage-plugin.interface.js.map +1 -0
- package/dist/modules/storage/models/config.model.d.ts +7 -0
- package/dist/modules/storage/models/config.model.js +73 -0
- package/dist/modules/storage/models/config.model.js.map +1 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.config.model.d.ts +9 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.config.model.js +93 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.config.model.js.map +1 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.constants.d.ts +3 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.constants.js +7 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.constants.js.map +1 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.module.d.ts +17 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.module.js +94 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.module.js.map +1 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.openapi.d.ts +2 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.openapi.js +7 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.openapi.js.map +1 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.plugin.d.ts +68 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.plugin.js +335 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.plugin.js.map +1 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.update-config.dto.d.ts +8 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.update-config.dto.js +82 -0
- package/dist/modules/storage/plugins/influx-v1/influx-v1.update-config.dto.js.map +1 -0
- package/dist/modules/storage/plugins/memory/in-memory-timeseries.store.d.ts +44 -0
- package/dist/modules/storage/plugins/memory/in-memory-timeseries.store.js +341 -0
- package/dist/modules/storage/plugins/memory/in-memory-timeseries.store.js.map +1 -0
- package/dist/modules/storage/plugins/memory/influxql-parser.d.ts +26 -0
- package/dist/modules/storage/plugins/memory/influxql-parser.js +427 -0
- package/dist/modules/storage/plugins/memory/influxql-parser.js.map +1 -0
- package/dist/modules/storage/plugins/memory/memory.config.model.d.ts +5 -0
- package/dist/modules/storage/plugins/memory/memory.config.model.js +49 -0
- package/dist/modules/storage/plugins/memory/memory.config.model.js.map +1 -0
- package/dist/modules/storage/plugins/memory/memory.constants.d.ts +1 -0
- package/dist/modules/storage/plugins/memory/memory.constants.js +5 -0
- package/dist/modules/storage/plugins/memory/memory.constants.js.map +1 -0
- package/dist/modules/storage/plugins/memory/memory.module.d.ts +13 -0
- package/dist/modules/storage/plugins/memory/memory.module.js +75 -0
- package/dist/modules/storage/plugins/memory/memory.module.js.map +1 -0
- package/dist/modules/storage/plugins/memory/memory.openapi.d.ts +2 -0
- package/dist/modules/storage/plugins/memory/memory.openapi.js +7 -0
- package/dist/modules/storage/plugins/memory/memory.openapi.js.map +1 -0
- package/dist/modules/storage/plugins/memory/memory.plugin.d.ts +19 -0
- package/dist/modules/storage/plugins/memory/memory.plugin.js +73 -0
- package/dist/modules/storage/plugins/memory/memory.plugin.js.map +1 -0
- package/dist/modules/storage/plugins/memory/memory.update-config.dto.d.ts +4 -0
- package/dist/modules/storage/plugins/memory/memory.update-config.dto.js +38 -0
- package/dist/modules/storage/plugins/memory/memory.update-config.dto.js.map +1 -0
- package/dist/modules/storage/services/storage.service.d.ts +63 -0
- package/dist/modules/storage/services/storage.service.js +307 -0
- package/dist/modules/storage/services/storage.service.js.map +1 -0
- package/dist/modules/storage/storage.constants.d.ts +1 -0
- package/dist/modules/storage/storage.constants.js +5 -0
- package/dist/modules/storage/storage.constants.js.map +1 -0
- package/dist/modules/storage/storage.module.d.ts +11 -0
- package/dist/modules/storage/storage.module.js +78 -0
- package/dist/modules/storage/storage.module.js.map +1 -0
- package/dist/modules/storage/storage.openapi.d.ts +2 -0
- package/dist/modules/storage/storage.openapi.js +7 -0
- package/dist/modules/storage/storage.openapi.js.map +1 -0
- package/dist/modules/storage/storage.types.d.ts +22 -0
- package/dist/modules/storage/storage.types.js +11 -0
- package/dist/modules/storage/storage.types.js.map +1 -0
- package/dist/modules/swagger/commands/generate-openapi.command.d.ts +10 -0
- package/dist/modules/swagger/commands/generate-openapi.command.js +117 -0
- package/dist/modules/swagger/commands/generate-openapi.command.js.map +1 -0
- package/dist/modules/swagger/decorators/api-documentation.decorator.d.ts +16 -0
- package/dist/modules/swagger/decorators/api-documentation.decorator.js +132 -0
- package/dist/modules/swagger/decorators/api-documentation.decorator.js.map +1 -0
- package/dist/modules/swagger/decorators/api-tag.decorator.d.ts +19 -0
- package/dist/modules/swagger/decorators/api-tag.decorator.js +42 -0
- package/dist/modules/swagger/decorators/api-tag.decorator.js.map +1 -0
- package/dist/modules/swagger/services/extended-discriminator.service.d.ts +12 -0
- package/dist/modules/swagger/services/extended-discriminator.service.js +26 -0
- package/dist/modules/swagger/services/extended-discriminator.service.js.map +1 -0
- package/dist/modules/swagger/services/swagger-document.service.d.ts +16 -0
- package/dist/modules/swagger/services/swagger-document.service.js +293 -0
- package/dist/modules/swagger/services/swagger-document.service.js.map +1 -0
- package/dist/modules/swagger/services/swagger-models-registry.service.d.ts +6 -0
- package/dist/modules/swagger/services/swagger-models-registry.service.js +26 -0
- package/dist/modules/swagger/services/swagger-models-registry.service.js.map +1 -0
- package/dist/modules/swagger/swagger.constants.d.ts +1 -0
- package/dist/modules/swagger/swagger.constants.js +5 -0
- package/dist/modules/swagger/swagger.constants.js.map +1 -0
- package/dist/modules/swagger/swagger.module.d.ts +2 -0
- package/dist/modules/swagger/swagger.module.js +32 -0
- package/dist/modules/swagger/swagger.module.js.map +1 -0
- package/dist/modules/swagger/utils/openapi-tags.utils.d.ts +6 -0
- package/dist/modules/swagger/utils/openapi-tags.utils.js +12 -0
- package/dist/modules/swagger/utils/openapi-tags.utils.js.map +1 -0
- package/dist/modules/system/commands/command.utils.d.ts +4 -0
- package/dist/modules/system/commands/command.utils.js +19 -0
- package/dist/modules/system/commands/command.utils.js.map +1 -0
- package/dist/modules/system/commands/update-check.command.d.ts +17 -0
- package/dist/modules/system/commands/update-check.command.js +135 -0
- package/dist/modules/system/commands/update-check.command.js.map +1 -0
- package/dist/modules/system/commands/update-panel.command.d.ts +26 -0
- package/dist/modules/system/commands/update-panel.command.js +342 -0
- package/dist/modules/system/commands/update-panel.command.js.map +1 -0
- package/dist/modules/system/commands/update-server.command.d.ts +26 -0
- package/dist/modules/system/commands/update-server.command.js +482 -0
- package/dist/modules/system/commands/update-server.command.js.map +1 -0
- package/dist/modules/system/controllers/logs.controller.d.ts +10 -0
- package/dist/modules/system/controllers/logs.controller.js +169 -0
- package/dist/modules/system/controllers/logs.controller.js.map +1 -0
- package/dist/modules/system/controllers/system.controller.d.ts +15 -0
- package/dist/modules/system/controllers/system.controller.js +200 -0
- package/dist/modules/system/controllers/system.controller.js.map +1 -0
- package/dist/modules/system/controllers/update.controller.d.ts +13 -0
- package/dist/modules/system/controllers/update.controller.js +181 -0
- package/dist/modules/system/controllers/update.controller.js.map +1 -0
- package/dist/modules/system/dto/create-log-entry.dto.d.ts +24 -0
- package/dist/modules/system/dto/create-log-entry.dto.js +239 -0
- package/dist/modules/system/dto/create-log-entry.dto.js.map +1 -0
- package/dist/modules/system/dto/install-update.dto.d.ts +4 -0
- package/dist/modules/system/dto/install-update.dto.js +43 -0
- package/dist/modules/system/dto/install-update.dto.js.map +1 -0
- package/dist/modules/system/dto/update-config.dto.d.ts +18 -0
- package/dist/modules/system/dto/update-config.dto.js +209 -0
- package/dist/modules/system/dto/update-config.dto.js.map +1 -0
- package/dist/modules/system/entities/system.entity.d.ts +0 -0
- package/dist/modules/system/entities/system.entity.js +1 -0
- package/dist/modules/system/entities/system.entity.js.map +1 -0
- package/dist/modules/system/logger/logger.d.ts +3 -0
- package/dist/modules/system/logger/logger.js +3 -0
- package/dist/modules/system/logger/logger.js.map +1 -0
- package/dist/modules/system/logger/ring-buffer.d.ts +9 -0
- package/dist/modules/system/logger/ring-buffer.js +30 -0
- package/dist/modules/system/logger/ring-buffer.js.map +1 -0
- package/dist/modules/system/models/config.model.d.ts +18 -0
- package/dist/modules/system/models/config.model.js +199 -0
- package/dist/modules/system/models/config.model.js.map +1 -0
- package/dist/modules/system/models/onboarding.model.d.ts +7 -0
- package/dist/modules/system/models/onboarding.model.js +71 -0
- package/dist/modules/system/models/onboarding.model.js.map +1 -0
- package/dist/modules/system/models/system-response.model.d.ts +31 -0
- package/dist/modules/system/models/system-response.model.js +160 -0
- package/dist/modules/system/models/system-response.model.js.map +1 -0
- package/dist/modules/system/models/system.model.d.ts +143 -0
- package/dist/modules/system/models/system.model.js +855 -0
- package/dist/modules/system/models/system.model.js.map +1 -0
- package/dist/modules/system/models/update-response.model.d.ts +8 -0
- package/dist/modules/system/models/update-response.model.js +45 -0
- package/dist/modules/system/models/update-response.model.js.map +1 -0
- package/dist/modules/system/models/update.model.d.ts +20 -0
- package/dist/modules/system/models/update.model.js +124 -0
- package/dist/modules/system/models/update.model.js.map +1 -0
- package/dist/modules/system/providers/system-stats.provider.d.ts +8 -0
- package/dist/modules/system/providers/system-stats.provider.js +66 -0
- package/dist/modules/system/providers/system-stats.provider.js.map +1 -0
- package/dist/modules/system/services/display-command.service.d.ts +27 -0
- package/dist/modules/system/services/display-command.service.js +155 -0
- package/dist/modules/system/services/display-command.service.js.map +1 -0
- package/dist/modules/system/services/factory-reset-registry.service.d.ts +15 -0
- package/dist/modules/system/services/factory-reset-registry.service.js +36 -0
- package/dist/modules/system/services/factory-reset-registry.service.js.map +1 -0
- package/dist/modules/system/services/house-mode-actions.service.d.ts +20 -0
- package/dist/modules/system/services/house-mode-actions.service.js +152 -0
- package/dist/modules/system/services/house-mode-actions.service.js.map +1 -0
- package/dist/modules/system/services/onboarding.service.d.ts +17 -0
- package/dist/modules/system/services/onboarding.service.js +66 -0
- package/dist/modules/system/services/onboarding.service.js.map +1 -0
- package/dist/modules/system/services/system-command.service.d.ts +34 -0
- package/dist/modules/system/services/system-command.service.js +199 -0
- package/dist/modules/system/services/system-command.service.js.map +1 -0
- package/dist/modules/system/services/system-logger.service.d.ts +26 -0
- package/dist/modules/system/services/system-logger.service.js +276 -0
- package/dist/modules/system/services/system-logger.service.js.map +1 -0
- package/dist/modules/system/services/system.service.d.ts +14 -0
- package/dist/modules/system/services/system.service.js +67 -0
- package/dist/modules/system/services/system.service.js.map +1 -0
- package/dist/modules/system/services/update-executor.service.d.ts +20 -0
- package/dist/modules/system/services/update-executor.service.js +220 -0
- package/dist/modules/system/services/update-executor.service.js.map +1 -0
- package/dist/modules/system/services/update.service.d.ts +74 -0
- package/dist/modules/system/services/update.service.js +411 -0
- package/dist/modules/system/services/update.service.js.map +1 -0
- package/dist/modules/system/system.constants.d.ts +129 -0
- package/dist/modules/system/system.constants.js +149 -0
- package/dist/modules/system/system.constants.js.map +1 -0
- package/dist/modules/system/system.exceptions.d.ts +9 -0
- package/dist/modules/system/system.exceptions.js +25 -0
- package/dist/modules/system/system.exceptions.js.map +1 -0
- package/dist/modules/system/system.module.d.ts +26 -0
- package/dist/modules/system/system.module.js +180 -0
- package/dist/modules/system/system.module.js.map +1 -0
- package/dist/modules/system/system.openapi.d.ts +9 -0
- package/dist/modules/system/system.openapi.js +45 -0
- package/dist/modules/system/system.openapi.js.map +1 -0
- package/dist/modules/tools/platforms/tool-provider.platform.d.ts +19 -0
- package/dist/modules/tools/platforms/tool-provider.platform.js +3 -0
- package/dist/modules/tools/platforms/tool-provider.platform.js.map +1 -0
- package/dist/modules/tools/services/base-tool-provider.service.d.ts +11 -0
- package/dist/modules/tools/services/base-tool-provider.service.js +42 -0
- package/dist/modules/tools/services/base-tool-provider.service.js.map +1 -0
- package/dist/modules/tools/services/short-id-mapping.service.d.ts +9 -0
- package/dist/modules/tools/services/short-id-mapping.service.js +86 -0
- package/dist/modules/tools/services/short-id-mapping.service.js.map +1 -0
- package/dist/modules/tools/services/tool-provider-registry.service.d.ts +9 -0
- package/dist/modules/tools/services/tool-provider-registry.service.js +56 -0
- package/dist/modules/tools/services/tool-provider-registry.service.js.map +1 -0
- package/dist/modules/tools/tools.constants.d.ts +1 -0
- package/dist/modules/tools/tools.constants.js +5 -0
- package/dist/modules/tools/tools.constants.js.map +1 -0
- package/dist/modules/tools/tools.module.d.ts +2 -0
- package/dist/modules/tools/tools.module.js +22 -0
- package/dist/modules/tools/tools.module.js.map +1 -0
- package/dist/modules/users/commands/list-users.command.d.ts +8 -0
- package/dist/modules/users/commands/list-users.command.js +47 -0
- package/dist/modules/users/commands/list-users.command.js.map +1 -0
- package/dist/modules/users/controllers/users.controller.d.ts +17 -0
- package/dist/modules/users/controllers/users.controller.js +233 -0
- package/dist/modules/users/controllers/users.controller.js.map +1 -0
- package/dist/modules/users/dto/create-user.dto.d.ts +14 -0
- package/dist/modules/users/dto/create-user.dto.js +142 -0
- package/dist/modules/users/dto/create-user.dto.js.map +1 -0
- package/dist/modules/users/dto/update-config.dto.d.ts +5 -0
- package/dist/modules/users/dto/update-config.dto.js +39 -0
- package/dist/modules/users/dto/update-config.dto.js.map +1 -0
- package/dist/modules/users/dto/update-user.dto.d.ts +13 -0
- package/dist/modules/users/dto/update-user.dto.js +135 -0
- package/dist/modules/users/dto/update-user.dto.js.map +1 -0
- package/dist/modules/users/entities/users.entity.d.ts +12 -0
- package/dist/modules/users/entities/users.entity.js +136 -0
- package/dist/modules/users/entities/users.entity.js.map +1 -0
- package/dist/modules/users/guards/roles.guard.d.ts +10 -0
- package/dist/modules/users/guards/roles.guard.js +39 -0
- package/dist/modules/users/guards/roles.guard.js.map +1 -0
- package/dist/modules/users/models/config.model.d.ts +5 -0
- package/dist/modules/users/models/config.model.js +49 -0
- package/dist/modules/users/models/config.model.js.map +1 -0
- package/dist/modules/users/models/users-response.model.d.ts +8 -0
- package/dist/modules/users/models/users-response.model.js +46 -0
- package/dist/modules/users/models/users-response.model.js.map +1 -0
- package/dist/modules/users/services/module-reset.service.d.ts +13 -0
- package/dist/modules/users/services/module-reset.service.js +51 -0
- package/dist/modules/users/services/module-reset.service.js.map +1 -0
- package/dist/modules/users/services/users-seeder.service.d.ts +9 -0
- package/dist/modules/users/services/users-seeder.service.js +86 -0
- package/dist/modules/users/services/users-seeder.service.js.map +1 -0
- package/dist/modules/users/services/users.service.d.ts +24 -0
- package/dist/modules/users/services/users.service.js +161 -0
- package/dist/modules/users/services/users.service.js.map +1 -0
- package/dist/modules/users/users.constants.d.ts +24 -0
- package/dist/modules/users/users.constants.js +31 -0
- package/dist/modules/users/users.constants.js.map +1 -0
- package/dist/modules/users/users.exceptions.d.ts +9 -0
- package/dist/modules/users/users.exceptions.js +25 -0
- package/dist/modules/users/users.exceptions.js.map +1 -0
- package/dist/modules/users/users.module.d.ts +19 -0
- package/dist/modules/users/users.module.js +126 -0
- package/dist/modules/users/users.module.js.map +1 -0
- package/dist/modules/users/users.openapi.d.ts +3 -0
- package/dist/modules/users/users.openapi.js +11 -0
- package/dist/modules/users/users.openapi.js.map +1 -0
- package/dist/modules/users/validators/user-exists-constraint.validator.d.ts +9 -0
- package/dist/modules/users/validators/user-exists-constraint.validator.js +49 -0
- package/dist/modules/users/validators/user-exists-constraint.validator.js.map +1 -0
- package/dist/modules/weather/controllers/history.controller.d.ts +11 -0
- package/dist/modules/weather/controllers/history.controller.js +174 -0
- package/dist/modules/weather/controllers/history.controller.js.map +1 -0
- package/dist/modules/weather/controllers/locations.controller.d.ts +20 -0
- package/dist/modules/weather/controllers/locations.controller.js +265 -0
- package/dist/modules/weather/controllers/locations.controller.js.map +1 -0
- package/dist/modules/weather/controllers/weather.controller.d.ts +15 -0
- package/dist/modules/weather/controllers/weather.controller.js +299 -0
- package/dist/modules/weather/controllers/weather.controller.js.map +1 -0
- package/dist/modules/weather/dto/create-location.dto.d.ts +8 -0
- package/dist/modules/weather/dto/create-location.dto.js +73 -0
- package/dist/modules/weather/dto/create-location.dto.js.map +1 -0
- package/dist/modules/weather/dto/update-config.dto.d.ts +6 -0
- package/dist/modules/weather/dto/update-config.dto.js +54 -0
- package/dist/modules/weather/dto/update-config.dto.js.map +1 -0
- package/dist/modules/weather/dto/update-location.dto.d.ts +7 -0
- package/dist/modules/weather/dto/update-location.dto.js +59 -0
- package/dist/modules/weather/dto/update-location.dto.js.map +1 -0
- package/dist/modules/weather/entities/locations.entity.d.ts +5 -0
- package/dist/modules/weather/entities/locations.entity.js +51 -0
- package/dist/modules/weather/entities/locations.entity.js.map +1 -0
- package/dist/modules/weather/models/alert.model.d.ts +12 -0
- package/dist/modules/weather/models/alert.model.js +132 -0
- package/dist/modules/weather/models/alert.model.js.map +1 -0
- package/dist/modules/weather/models/config.model.d.ts +6 -0
- package/dist/modules/weather/models/config.model.js +64 -0
- package/dist/modules/weather/models/config.model.js.map +1 -0
- package/dist/modules/weather/models/history.model.d.ts +35 -0
- package/dist/modules/weather/models/history.model.js +403 -0
- package/dist/modules/weather/models/history.model.js.map +1 -0
- package/dist/modules/weather/models/locations-response.model.d.ts +8 -0
- package/dist/modules/weather/models/locations-response.model.js +46 -0
- package/dist/modules/weather/models/locations-response.model.js.map +1 -0
- package/dist/modules/weather/models/weather-response.model.d.ts +17 -0
- package/dist/modules/weather/models/weather-response.model.js +91 -0
- package/dist/modules/weather/models/weather-response.model.js.map +1 -0
- package/dist/modules/weather/models/weather.model.d.ts +80 -0
- package/dist/modules/weather/models/weather.model.js +673 -0
- package/dist/modules/weather/models/weather.model.js.map +1 -0
- package/dist/modules/weather/platforms/weather-provider.platform.d.ts +14 -0
- package/dist/modules/weather/platforms/weather-provider.platform.js +3 -0
- package/dist/modules/weather/platforms/weather-provider.platform.js.map +1 -0
- package/dist/modules/weather/services/locations-type-mapper.service.d.ts +18 -0
- package/dist/modules/weather/services/locations-type-mapper.service.js +41 -0
- package/dist/modules/weather/services/locations-type-mapper.service.js.map +1 -0
- package/dist/modules/weather/services/locations.service.d.ts +23 -0
- package/dist/modules/weather/services/locations.service.js +186 -0
- package/dist/modules/weather/services/locations.service.js.map +1 -0
- package/dist/modules/weather/services/module-reset.service.d.ts +11 -0
- package/dist/modules/weather/services/module-reset.service.js +47 -0
- package/dist/modules/weather/services/module-reset.service.js.map +1 -0
- package/dist/modules/weather/services/weather-history.service.d.ts +48 -0
- package/dist/modules/weather/services/weather-history.service.js +221 -0
- package/dist/modules/weather/services/weather-history.service.js.map +1 -0
- package/dist/modules/weather/services/weather-provider-registry.service.d.ts +15 -0
- package/dist/modules/weather/services/weather-provider-registry.service.js +52 -0
- package/dist/modules/weather/services/weather-provider-registry.service.js.map +1 -0
- package/dist/modules/weather/services/weather-seeder.service.d.ts +11 -0
- package/dist/modules/weather/services/weather-seeder.service.js +86 -0
- package/dist/modules/weather/services/weather-seeder.service.js.map +1 -0
- package/dist/modules/weather/services/weather.service.d.ts +52 -0
- package/dist/modules/weather/services/weather.service.js +366 -0
- package/dist/modules/weather/services/weather.service.js.map +1 -0
- package/dist/modules/weather/weather.constants.d.ts +10 -0
- package/dist/modules/weather/weather.constants.js +15 -0
- package/dist/modules/weather/weather.constants.js.map +1 -0
- package/dist/modules/weather/weather.exceptions.d.ts +12 -0
- package/dist/modules/weather/weather.exceptions.js +32 -0
- package/dist/modules/weather/weather.exceptions.js.map +1 -0
- package/dist/modules/weather/weather.module.d.ts +19 -0
- package/dist/modules/weather/weather.module.js +137 -0
- package/dist/modules/weather/weather.module.js.map +1 -0
- package/dist/modules/weather/weather.openapi.d.ts +7 -0
- package/dist/modules/weather/weather.openapi.js +35 -0
- package/dist/modules/weather/weather.openapi.js.map +1 -0
- package/dist/modules/websocket/dto/client-user.dto.d.ts +10 -0
- package/dist/modules/websocket/dto/client-user.dto.js +49 -0
- package/dist/modules/websocket/dto/client-user.dto.js.map +1 -0
- package/dist/modules/websocket/dto/command-message.dto.d.ts +4 -0
- package/dist/modules/websocket/dto/command-message.dto.js +25 -0
- package/dist/modules/websocket/dto/command-message.dto.js.map +1 -0
- package/dist/modules/websocket/dto/command-result.dto.d.ts +11 -0
- package/dist/modules/websocket/dto/command-result.dto.js +62 -0
- package/dist/modules/websocket/dto/command-result.dto.js.map +1 -0
- package/dist/modules/websocket/dto/ws-client.dto.d.ts +13 -0
- package/dist/modules/websocket/dto/ws-client.dto.js +52 -0
- package/dist/modules/websocket/dto/ws-client.dto.js.map +1 -0
- package/dist/modules/websocket/gateway/websocket.gateway.d.ts +31 -0
- package/dist/modules/websocket/gateway/websocket.gateway.js +278 -0
- package/dist/modules/websocket/gateway/websocket.gateway.js.map +1 -0
- package/dist/modules/websocket/models/ws.model.d.ts +12 -0
- package/dist/modules/websocket/models/ws.model.js +108 -0
- package/dist/modules/websocket/models/ws.model.js.map +1 -0
- package/dist/modules/websocket/providers/ws-stats.provider.d.ts +8 -0
- package/dist/modules/websocket/providers/ws-stats.provider.js +56 -0
- package/dist/modules/websocket/providers/ws-stats.provider.js.map +1 -0
- package/dist/modules/websocket/services/command-event-registry.service.d.ts +15 -0
- package/dist/modules/websocket/services/command-event-registry.service.js +42 -0
- package/dist/modules/websocket/services/command-event-registry.service.js.map +1 -0
- package/dist/modules/websocket/services/ws-auth.service.d.ts +16 -0
- package/dist/modules/websocket/services/ws-auth.service.js +168 -0
- package/dist/modules/websocket/services/ws-auth.service.js.map +1 -0
- package/dist/modules/websocket/services/ws-metrics.service.d.ts +14 -0
- package/dist/modules/websocket/services/ws-metrics.service.js +74 -0
- package/dist/modules/websocket/services/ws-metrics.service.js.map +1 -0
- package/dist/modules/websocket/utils/ip.utils.d.ts +2 -0
- package/dist/modules/websocket/utils/ip.utils.js +35 -0
- package/dist/modules/websocket/utils/ip.utils.js.map +1 -0
- package/dist/modules/websocket/websocket.constants.d.ts +13 -0
- package/dist/modules/websocket/websocket.constants.js +26 -0
- package/dist/modules/websocket/websocket.constants.js.map +1 -0
- package/dist/modules/websocket/websocket.exceptions.d.ts +6 -0
- package/dist/modules/websocket/websocket.exceptions.js +18 -0
- package/dist/modules/websocket/websocket.exceptions.js.map +1 -0
- package/dist/modules/websocket/websocket.module.d.ts +12 -0
- package/dist/modules/websocket/websocket.module.js +75 -0
- package/dist/modules/websocket/websocket.module.js.map +1 -0
- package/dist/modules/websocket/websocket.openapi.d.ts +2 -0
- package/dist/modules/websocket/websocket.openapi.js +10 -0
- package/dist/modules/websocket/websocket.openapi.js.map +1 -0
- package/dist/plugins/buddy-claude/buddy-claude.constants.d.ts +5 -0
- package/dist/plugins/buddy-claude/buddy-claude.constants.js +9 -0
- package/dist/plugins/buddy-claude/buddy-claude.constants.js.map +1 -0
- package/dist/plugins/buddy-claude/buddy-claude.openapi.d.ts +3 -0
- package/dist/plugins/buddy-claude/buddy-claude.openapi.js +7 -0
- package/dist/plugins/buddy-claude/buddy-claude.openapi.js.map +1 -0
- package/dist/plugins/buddy-claude/buddy-claude.plugin.d.ts +15 -0
- package/dist/plugins/buddy-claude/buddy-claude.plugin.js +97 -0
- package/dist/plugins/buddy-claude/buddy-claude.plugin.js.map +1 -0
- package/dist/plugins/buddy-claude/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/buddy-claude/dto/update-config.dto.js +73 -0
- package/dist/plugins/buddy-claude/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-claude/models/config.model.d.ts +7 -0
- package/dist/plugins/buddy-claude/models/config.model.js +75 -0
- package/dist/plugins/buddy-claude/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-claude/platforms/claude.provider.d.ts +14 -0
- package/dist/plugins/buddy-claude/platforms/claude.provider.js +81 -0
- package/dist/plugins/buddy-claude/platforms/claude.provider.js.map +1 -0
- package/dist/plugins/buddy-claude/services/claude-config-validator.service.d.ts +10 -0
- package/dist/plugins/buddy-claude/services/claude-config-validator.service.js +37 -0
- package/dist/plugins/buddy-claude/services/claude-config-validator.service.js.map +1 -0
- package/dist/plugins/buddy-claude-setup-token/buddy-claude-setup-token.constants.d.ts +5 -0
- package/dist/plugins/buddy-claude-setup-token/buddy-claude-setup-token.constants.js +9 -0
- package/dist/plugins/buddy-claude-setup-token/buddy-claude-setup-token.constants.js.map +1 -0
- package/dist/plugins/buddy-claude-setup-token/buddy-claude-setup-token.openapi.d.ts +3 -0
- package/dist/plugins/buddy-claude-setup-token/buddy-claude-setup-token.openapi.js +10 -0
- package/dist/plugins/buddy-claude-setup-token/buddy-claude-setup-token.openapi.js.map +1 -0
- package/dist/plugins/buddy-claude-setup-token/buddy-claude-setup-token.plugin.d.ts +15 -0
- package/dist/plugins/buddy-claude-setup-token/buddy-claude-setup-token.plugin.js +99 -0
- package/dist/plugins/buddy-claude-setup-token/buddy-claude-setup-token.plugin.js.map +1 -0
- package/dist/plugins/buddy-claude-setup-token/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/buddy-claude-setup-token/dto/update-config.dto.js +74 -0
- package/dist/plugins/buddy-claude-setup-token/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-claude-setup-token/models/config.model.d.ts +7 -0
- package/dist/plugins/buddy-claude-setup-token/models/config.model.js +76 -0
- package/dist/plugins/buddy-claude-setup-token/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-claude-setup-token/platforms/claude-setup-token.provider.d.ts +14 -0
- package/dist/plugins/buddy-claude-setup-token/platforms/claude-setup-token.provider.js +81 -0
- package/dist/plugins/buddy-claude-setup-token/platforms/claude-setup-token.provider.js.map +1 -0
- package/dist/plugins/buddy-claude-setup-token/services/claude-setup-token-config-validator.service.d.ts +10 -0
- package/dist/plugins/buddy-claude-setup-token/services/claude-setup-token-config-validator.service.js +37 -0
- package/dist/plugins/buddy-claude-setup-token/services/claude-setup-token-config-validator.service.js.map +1 -0
- package/dist/plugins/buddy-discord/buddy-discord.constants.d.ts +6 -0
- package/dist/plugins/buddy-discord/buddy-discord.constants.js +10 -0
- package/dist/plugins/buddy-discord/buddy-discord.constants.js.map +1 -0
- package/dist/plugins/buddy-discord/buddy-discord.openapi.d.ts +3 -0
- package/dist/plugins/buddy-discord/buddy-discord.openapi.js +7 -0
- package/dist/plugins/buddy-discord/buddy-discord.openapi.js.map +1 -0
- package/dist/plugins/buddy-discord/buddy-discord.plugin.d.ts +15 -0
- package/dist/plugins/buddy-discord/buddy-discord.plugin.js +105 -0
- package/dist/plugins/buddy-discord/buddy-discord.plugin.js.map +1 -0
- package/dist/plugins/buddy-discord/dto/update-config.dto.d.ts +11 -0
- package/dist/plugins/buddy-discord/dto/update-config.dto.js +113 -0
- package/dist/plugins/buddy-discord/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-discord/models/config.model.d.ts +10 -0
- package/dist/plugins/buddy-discord/models/config.model.js +119 -0
- package/dist/plugins/buddy-discord/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-discord/platforms/discord-bot.provider.d.ts +37 -0
- package/dist/plugins/buddy-discord/platforms/discord-bot.provider.js +406 -0
- package/dist/plugins/buddy-discord/platforms/discord-bot.provider.js.map +1 -0
- package/dist/plugins/buddy-discord/services/discord-config-validator.service.d.ts +10 -0
- package/dist/plugins/buddy-discord/services/discord-config-validator.service.js +37 -0
- package/dist/plugins/buddy-discord/services/discord-config-validator.service.js.map +1 -0
- package/dist/plugins/buddy-elevenlabs/buddy-elevenlabs.constants.d.ts +5 -0
- package/dist/plugins/buddy-elevenlabs/buddy-elevenlabs.constants.js +9 -0
- package/dist/plugins/buddy-elevenlabs/buddy-elevenlabs.constants.js.map +1 -0
- package/dist/plugins/buddy-elevenlabs/buddy-elevenlabs.openapi.d.ts +3 -0
- package/dist/plugins/buddy-elevenlabs/buddy-elevenlabs.openapi.js +10 -0
- package/dist/plugins/buddy-elevenlabs/buddy-elevenlabs.openapi.js.map +1 -0
- package/dist/plugins/buddy-elevenlabs/buddy-elevenlabs.plugin.d.ts +19 -0
- package/dist/plugins/buddy-elevenlabs/buddy-elevenlabs.plugin.js +107 -0
- package/dist/plugins/buddy-elevenlabs/buddy-elevenlabs.plugin.js.map +1 -0
- package/dist/plugins/buddy-elevenlabs/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/buddy-elevenlabs/dto/update-config.dto.js +76 -0
- package/dist/plugins/buddy-elevenlabs/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-elevenlabs/models/config.model.d.ts +7 -0
- package/dist/plugins/buddy-elevenlabs/models/config.model.js +79 -0
- package/dist/plugins/buddy-elevenlabs/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-elevenlabs/platforms/elevenlabs-stt.provider.d.ts +14 -0
- package/dist/plugins/buddy-elevenlabs/platforms/elevenlabs-stt.provider.js +104 -0
- package/dist/plugins/buddy-elevenlabs/platforms/elevenlabs-stt.provider.js.map +1 -0
- package/dist/plugins/buddy-elevenlabs/platforms/elevenlabs-tts.provider.d.ts +15 -0
- package/dist/plugins/buddy-elevenlabs/platforms/elevenlabs-tts.provider.js +120 -0
- package/dist/plugins/buddy-elevenlabs/platforms/elevenlabs-tts.provider.js.map +1 -0
- package/dist/plugins/buddy-elevenlabs/services/elevenlabs-config-validator.service.d.ts +10 -0
- package/dist/plugins/buddy-elevenlabs/services/elevenlabs-config-validator.service.js +37 -0
- package/dist/plugins/buddy-elevenlabs/services/elevenlabs-config-validator.service.js.map +1 -0
- package/dist/plugins/buddy-ollama/buddy-ollama.constants.d.ts +6 -0
- package/dist/plugins/buddy-ollama/buddy-ollama.constants.js +10 -0
- package/dist/plugins/buddy-ollama/buddy-ollama.constants.js.map +1 -0
- package/dist/plugins/buddy-ollama/buddy-ollama.openapi.d.ts +3 -0
- package/dist/plugins/buddy-ollama/buddy-ollama.openapi.js +7 -0
- package/dist/plugins/buddy-ollama/buddy-ollama.openapi.js.map +1 -0
- package/dist/plugins/buddy-ollama/buddy-ollama.plugin.d.ts +15 -0
- package/dist/plugins/buddy-ollama/buddy-ollama.plugin.js +98 -0
- package/dist/plugins/buddy-ollama/buddy-ollama.plugin.js.map +1 -0
- package/dist/plugins/buddy-ollama/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/buddy-ollama/dto/update-config.dto.js +74 -0
- package/dist/plugins/buddy-ollama/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-ollama/models/config.model.d.ts +7 -0
- package/dist/plugins/buddy-ollama/models/config.model.js +76 -0
- package/dist/plugins/buddy-ollama/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-ollama/platforms/ollama.provider.d.ts +15 -0
- package/dist/plugins/buddy-ollama/platforms/ollama.provider.js +127 -0
- package/dist/plugins/buddy-ollama/platforms/ollama.provider.js.map +1 -0
- package/dist/plugins/buddy-ollama/services/ollama-config-validator.service.d.ts +10 -0
- package/dist/plugins/buddy-ollama/services/ollama-config-validator.service.js +37 -0
- package/dist/plugins/buddy-ollama/services/ollama-config-validator.service.js.map +1 -0
- package/dist/plugins/buddy-openai/buddy-openai.constants.d.ts +5 -0
- package/dist/plugins/buddy-openai/buddy-openai.constants.js +9 -0
- package/dist/plugins/buddy-openai/buddy-openai.constants.js.map +1 -0
- package/dist/plugins/buddy-openai/buddy-openai.openapi.d.ts +3 -0
- package/dist/plugins/buddy-openai/buddy-openai.openapi.js +7 -0
- package/dist/plugins/buddy-openai/buddy-openai.openapi.js.map +1 -0
- package/dist/plugins/buddy-openai/buddy-openai.plugin.d.ts +23 -0
- package/dist/plugins/buddy-openai/buddy-openai.plugin.js +117 -0
- package/dist/plugins/buddy-openai/buddy-openai.plugin.js.map +1 -0
- package/dist/plugins/buddy-openai/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/buddy-openai/dto/update-config.dto.js +73 -0
- package/dist/plugins/buddy-openai/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-openai/models/config.model.d.ts +7 -0
- package/dist/plugins/buddy-openai/models/config.model.js +75 -0
- package/dist/plugins/buddy-openai/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-openai/platforms/openai-stt.provider.d.ts +14 -0
- package/dist/plugins/buddy-openai/platforms/openai-stt.provider.js +129 -0
- package/dist/plugins/buddy-openai/platforms/openai-stt.provider.js.map +1 -0
- package/dist/plugins/buddy-openai/platforms/openai-tts.provider.d.ts +13 -0
- package/dist/plugins/buddy-openai/platforms/openai-tts.provider.js +114 -0
- package/dist/plugins/buddy-openai/platforms/openai-tts.provider.js.map +1 -0
- package/dist/plugins/buddy-openai/platforms/openai.provider.d.ts +14 -0
- package/dist/plugins/buddy-openai/platforms/openai.provider.js +81 -0
- package/dist/plugins/buddy-openai/platforms/openai.provider.js.map +1 -0
- package/dist/plugins/buddy-openai/services/openai-config-validator.service.d.ts +10 -0
- package/dist/plugins/buddy-openai/services/openai-config-validator.service.js +37 -0
- package/dist/plugins/buddy-openai/services/openai-config-validator.service.js.map +1 -0
- package/dist/plugins/buddy-openai-codex/buddy-openai-codex.constants.d.ts +11 -0
- package/dist/plugins/buddy-openai-codex/buddy-openai-codex.constants.js +15 -0
- package/dist/plugins/buddy-openai-codex/buddy-openai-codex.constants.js.map +1 -0
- package/dist/plugins/buddy-openai-codex/buddy-openai-codex.openapi.d.ts +3 -0
- package/dist/plugins/buddy-openai-codex/buddy-openai-codex.openapi.js +10 -0
- package/dist/plugins/buddy-openai-codex/buddy-openai-codex.openapi.js.map +1 -0
- package/dist/plugins/buddy-openai-codex/buddy-openai-codex.plugin.d.ts +15 -0
- package/dist/plugins/buddy-openai-codex/buddy-openai-codex.plugin.js +104 -0
- package/dist/plugins/buddy-openai-codex/buddy-openai-codex.plugin.js.map +1 -0
- package/dist/plugins/buddy-openai-codex/controllers/oauth.controller.d.ts +20 -0
- package/dist/plugins/buddy-openai-codex/controllers/oauth.controller.js +105 -0
- package/dist/plugins/buddy-openai-codex/controllers/oauth.controller.js.map +1 -0
- package/dist/plugins/buddy-openai-codex/dto/update-config.dto.d.ts +11 -0
- package/dist/plugins/buddy-openai-codex/dto/update-config.dto.js +110 -0
- package/dist/plugins/buddy-openai-codex/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-openai-codex/models/config.model.d.ts +10 -0
- package/dist/plugins/buddy-openai-codex/models/config.model.js +115 -0
- package/dist/plugins/buddy-openai-codex/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-openai-codex/platforms/openai-codex.provider.d.ts +17 -0
- package/dist/plugins/buddy-openai-codex/platforms/openai-codex.provider.js +195 -0
- package/dist/plugins/buddy-openai-codex/platforms/openai-codex.provider.js.map +1 -0
- package/dist/plugins/buddy-openai-codex/services/openai-codex-config-validator.service.d.ts +10 -0
- package/dist/plugins/buddy-openai-codex/services/openai-codex-config-validator.service.js +44 -0
- package/dist/plugins/buddy-openai-codex/services/openai-codex-config-validator.service.js.map +1 -0
- package/dist/plugins/buddy-stt-whisper-local/buddy-stt-whisper-local.constants.d.ts +5 -0
- package/dist/plugins/buddy-stt-whisper-local/buddy-stt-whisper-local.constants.js +9 -0
- package/dist/plugins/buddy-stt-whisper-local/buddy-stt-whisper-local.constants.js.map +1 -0
- package/dist/plugins/buddy-stt-whisper-local/buddy-stt-whisper-local.openapi.d.ts +3 -0
- package/dist/plugins/buddy-stt-whisper-local/buddy-stt-whisper-local.openapi.js +10 -0
- package/dist/plugins/buddy-stt-whisper-local/buddy-stt-whisper-local.openapi.js.map +1 -0
- package/dist/plugins/buddy-stt-whisper-local/buddy-stt-whisper-local.plugin.d.ts +15 -0
- package/dist/plugins/buddy-stt-whisper-local/buddy-stt-whisper-local.plugin.js +96 -0
- package/dist/plugins/buddy-stt-whisper-local/buddy-stt-whisper-local.plugin.js.map +1 -0
- package/dist/plugins/buddy-stt-whisper-local/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/buddy-stt-whisper-local/dto/update-config.dto.js +68 -0
- package/dist/plugins/buddy-stt-whisper-local/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-stt-whisper-local/models/config.model.d.ts +7 -0
- package/dist/plugins/buddy-stt-whisper-local/models/config.model.js +76 -0
- package/dist/plugins/buddy-stt-whisper-local/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-stt-whisper-local/platforms/whisper-local-stt.provider.d.ts +14 -0
- package/dist/plugins/buddy-stt-whisper-local/platforms/whisper-local-stt.provider.js +126 -0
- package/dist/plugins/buddy-stt-whisper-local/platforms/whisper-local-stt.provider.js.map +1 -0
- package/dist/plugins/buddy-system-tts/buddy-system-tts.constants.d.ts +4 -0
- package/dist/plugins/buddy-system-tts/buddy-system-tts.constants.js +8 -0
- package/dist/plugins/buddy-system-tts/buddy-system-tts.constants.js.map +1 -0
- package/dist/plugins/buddy-system-tts/buddy-system-tts.openapi.d.ts +3 -0
- package/dist/plugins/buddy-system-tts/buddy-system-tts.openapi.js +7 -0
- package/dist/plugins/buddy-system-tts/buddy-system-tts.openapi.js.map +1 -0
- package/dist/plugins/buddy-system-tts/buddy-system-tts.plugin.d.ts +15 -0
- package/dist/plugins/buddy-system-tts/buddy-system-tts.plugin.js +98 -0
- package/dist/plugins/buddy-system-tts/buddy-system-tts.plugin.js.map +1 -0
- package/dist/plugins/buddy-system-tts/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/buddy-system-tts/dto/update-config.dto.js +70 -0
- package/dist/plugins/buddy-system-tts/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-system-tts/models/config.model.d.ts +7 -0
- package/dist/plugins/buddy-system-tts/models/config.model.js +71 -0
- package/dist/plugins/buddy-system-tts/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-system-tts/platforms/system-tts.provider.d.ts +15 -0
- package/dist/plugins/buddy-system-tts/platforms/system-tts.provider.js +139 -0
- package/dist/plugins/buddy-system-tts/platforms/system-tts.provider.js.map +1 -0
- package/dist/plugins/buddy-telegram/buddy-telegram.constants.d.ts +6 -0
- package/dist/plugins/buddy-telegram/buddy-telegram.constants.js +10 -0
- package/dist/plugins/buddy-telegram/buddy-telegram.constants.js.map +1 -0
- package/dist/plugins/buddy-telegram/buddy-telegram.openapi.d.ts +3 -0
- package/dist/plugins/buddy-telegram/buddy-telegram.openapi.js +7 -0
- package/dist/plugins/buddy-telegram/buddy-telegram.openapi.js.map +1 -0
- package/dist/plugins/buddy-telegram/buddy-telegram.plugin.d.ts +15 -0
- package/dist/plugins/buddy-telegram/buddy-telegram.plugin.js +100 -0
- package/dist/plugins/buddy-telegram/buddy-telegram.plugin.js.map +1 -0
- package/dist/plugins/buddy-telegram/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/buddy-telegram/dto/update-config.dto.js +72 -0
- package/dist/plugins/buddy-telegram/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-telegram/models/config.model.d.ts +7 -0
- package/dist/plugins/buddy-telegram/models/config.model.js +75 -0
- package/dist/plugins/buddy-telegram/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-telegram/platforms/telegram-bot.provider.d.ts +33 -0
- package/dist/plugins/buddy-telegram/platforms/telegram-bot.provider.js +304 -0
- package/dist/plugins/buddy-telegram/platforms/telegram-bot.provider.js.map +1 -0
- package/dist/plugins/buddy-telegram/services/telegram-config-validator.service.d.ts +10 -0
- package/dist/plugins/buddy-telegram/services/telegram-config-validator.service.js +37 -0
- package/dist/plugins/buddy-telegram/services/telegram-config-validator.service.js.map +1 -0
- package/dist/plugins/buddy-voiceai/buddy-voiceai.constants.d.ts +5 -0
- package/dist/plugins/buddy-voiceai/buddy-voiceai.constants.js +9 -0
- package/dist/plugins/buddy-voiceai/buddy-voiceai.constants.js.map +1 -0
- package/dist/plugins/buddy-voiceai/buddy-voiceai.openapi.d.ts +3 -0
- package/dist/plugins/buddy-voiceai/buddy-voiceai.openapi.js +7 -0
- package/dist/plugins/buddy-voiceai/buddy-voiceai.openapi.js.map +1 -0
- package/dist/plugins/buddy-voiceai/buddy-voiceai.plugin.d.ts +15 -0
- package/dist/plugins/buddy-voiceai/buddy-voiceai.plugin.js +101 -0
- package/dist/plugins/buddy-voiceai/buddy-voiceai.plugin.js.map +1 -0
- package/dist/plugins/buddy-voiceai/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/buddy-voiceai/dto/update-config.dto.js +76 -0
- package/dist/plugins/buddy-voiceai/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-voiceai/models/config.model.d.ts +7 -0
- package/dist/plugins/buddy-voiceai/models/config.model.js +79 -0
- package/dist/plugins/buddy-voiceai/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-voiceai/platforms/voiceai-tts.provider.d.ts +13 -0
- package/dist/plugins/buddy-voiceai/platforms/voiceai-tts.provider.js +91 -0
- package/dist/plugins/buddy-voiceai/platforms/voiceai-tts.provider.js.map +1 -0
- package/dist/plugins/buddy-voiceai/services/voiceai-config-validator.service.d.ts +10 -0
- package/dist/plugins/buddy-voiceai/services/voiceai-config-validator.service.js +37 -0
- package/dist/plugins/buddy-voiceai/services/voiceai-config-validator.service.js.map +1 -0
- package/dist/plugins/buddy-whatsapp/buddy-whatsapp.constants.d.ts +13 -0
- package/dist/plugins/buddy-whatsapp/buddy-whatsapp.constants.js +18 -0
- package/dist/plugins/buddy-whatsapp/buddy-whatsapp.constants.js.map +1 -0
- package/dist/plugins/buddy-whatsapp/buddy-whatsapp.openapi.d.ts +3 -0
- package/dist/plugins/buddy-whatsapp/buddy-whatsapp.openapi.js +7 -0
- package/dist/plugins/buddy-whatsapp/buddy-whatsapp.openapi.js.map +1 -0
- package/dist/plugins/buddy-whatsapp/buddy-whatsapp.plugin.d.ts +15 -0
- package/dist/plugins/buddy-whatsapp/buddy-whatsapp.plugin.js +102 -0
- package/dist/plugins/buddy-whatsapp/buddy-whatsapp.plugin.js.map +1 -0
- package/dist/plugins/buddy-whatsapp/controllers/whatsapp-webhook.controller.d.ts +14 -0
- package/dist/plugins/buddy-whatsapp/controllers/whatsapp-webhook.controller.js +66 -0
- package/dist/plugins/buddy-whatsapp/controllers/whatsapp-webhook.controller.js.map +1 -0
- package/dist/plugins/buddy-whatsapp/dto/update-config.dto.d.ts +7 -0
- package/dist/plugins/buddy-whatsapp/dto/update-config.dto.js +59 -0
- package/dist/plugins/buddy-whatsapp/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/buddy-whatsapp/models/config.model.d.ts +6 -0
- package/dist/plugins/buddy-whatsapp/models/config.model.js +61 -0
- package/dist/plugins/buddy-whatsapp/models/config.model.js.map +1 -0
- package/dist/plugins/buddy-whatsapp/platforms/whatsapp-bot.provider.d.ts +41 -0
- package/dist/plugins/buddy-whatsapp/platforms/whatsapp-bot.provider.js +366 -0
- package/dist/plugins/buddy-whatsapp/platforms/whatsapp-bot.provider.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/data-sources-device-channel.constants.d.ts +2 -0
- package/dist/plugins/data-sources-device-channel/data-sources-device-channel.constants.js +6 -0
- package/dist/plugins/data-sources-device-channel/data-sources-device-channel.constants.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/data-sources-device-channel.openapi.d.ts +5 -0
- package/dist/plugins/data-sources-device-channel/data-sources-device-channel.openapi.js +16 -0
- package/dist/plugins/data-sources-device-channel/data-sources-device-channel.openapi.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/data-sources-device-channel.plugin.d.ts +18 -0
- package/dist/plugins/data-sources-device-channel/data-sources-device-channel.plugin.js +161 -0
- package/dist/plugins/data-sources-device-channel/data-sources-device-channel.plugin.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/dto/create-data-source.dto.d.ts +9 -0
- package/dist/plugins/data-sources-device-channel/dto/create-data-source.dto.js +88 -0
- package/dist/plugins/data-sources-device-channel/dto/create-data-source.dto.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/data-sources-device-channel/dto/update-config.dto.js +34 -0
- package/dist/plugins/data-sources-device-channel/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/dto/update-data-source.dto.d.ts +9 -0
- package/dist/plugins/data-sources-device-channel/dto/update-data-source.dto.js +94 -0
- package/dist/plugins/data-sources-device-channel/dto/update-data-source.dto.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/entities/data-sources-device-channel.entity.d.ts +12 -0
- package/dist/plugins/data-sources-device-channel/entities/data-sources-device-channel.entity.js +128 -0
- package/dist/plugins/data-sources-device-channel/entities/data-sources-device-channel.entity.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/models/config.model.d.ts +5 -0
- package/dist/plugins/data-sources-device-channel/models/config.model.js +49 -0
- package/dist/plugins/data-sources-device-channel/models/config.model.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/services/data-source-relations-loader.service.d.ts +14 -0
- package/dist/plugins/data-sources-device-channel/services/data-source-relations-loader.service.js +47 -0
- package/dist/plugins/data-sources-device-channel/services/data-source-relations-loader.service.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/validators/channel-property-exists-constraint.validator.d.ts +11 -0
- package/dist/plugins/data-sources-device-channel/validators/channel-property-exists-constraint.validator.js +61 -0
- package/dist/plugins/data-sources-device-channel/validators/channel-property-exists-constraint.validator.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/validators/device-channel-exists-constraint.validator.d.ts +11 -0
- package/dist/plugins/data-sources-device-channel/validators/device-channel-exists-constraint.validator.js +61 -0
- package/dist/plugins/data-sources-device-channel/validators/device-channel-exists-constraint.validator.js.map +1 -0
- package/dist/plugins/data-sources-device-channel/validators/device-exists-constraint.validator.d.ts +9 -0
- package/dist/plugins/data-sources-device-channel/validators/device-exists-constraint.validator.js +49 -0
- package/dist/plugins/data-sources-device-channel/validators/device-exists-constraint.validator.js.map +1 -0
- package/dist/plugins/data-sources-weather/data-sources-weather.constants.d.ts +18 -0
- package/dist/plugins/data-sources-weather/data-sources-weather.constants.js +23 -0
- package/dist/plugins/data-sources-weather/data-sources-weather.constants.js.map +1 -0
- package/dist/plugins/data-sources-weather/data-sources-weather.openapi.d.ts +5 -0
- package/dist/plugins/data-sources-weather/data-sources-weather.openapi.js +19 -0
- package/dist/plugins/data-sources-weather/data-sources-weather.openapi.js.map +1 -0
- package/dist/plugins/data-sources-weather/data-sources-weather.plugin.d.ts +18 -0
- package/dist/plugins/data-sources-weather/data-sources-weather.plugin.js +177 -0
- package/dist/plugins/data-sources-weather/data-sources-weather.plugin.js.map +1 -0
- package/dist/plugins/data-sources-weather/dto/create-data-source.dto.d.ts +17 -0
- package/dist/plugins/data-sources-weather/dto/create-data-source.dto.js +174 -0
- package/dist/plugins/data-sources-weather/dto/create-data-source.dto.js.map +1 -0
- package/dist/plugins/data-sources-weather/dto/update-config.dto.d.ts +6 -0
- package/dist/plugins/data-sources-weather/dto/update-config.dto.js +45 -0
- package/dist/plugins/data-sources-weather/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/data-sources-weather/dto/update-data-source.dto.d.ts +17 -0
- package/dist/plugins/data-sources-weather/dto/update-data-source.dto.js +180 -0
- package/dist/plugins/data-sources-weather/dto/update-data-source.dto.js.map +1 -0
- package/dist/plugins/data-sources-weather/entities/data-sources-weather.entity.d.ts +20 -0
- package/dist/plugins/data-sources-weather/entities/data-sources-weather.entity.js +195 -0
- package/dist/plugins/data-sources-weather/entities/data-sources-weather.entity.js.map +1 -0
- package/dist/plugins/data-sources-weather/models/config.model.d.ts +5 -0
- package/dist/plugins/data-sources-weather/models/config.model.js +47 -0
- package/dist/plugins/data-sources-weather/models/config.model.js.map +1 -0
- package/dist/plugins/data-sources-weather/services/data-source-relations-loader.service.d.ts +10 -0
- package/dist/plugins/data-sources-weather/services/data-source-relations-loader.service.js +35 -0
- package/dist/plugins/data-sources-weather/services/data-source-relations-loader.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-discovered-devices.controller.d.ts +18 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-discovered-devices.controller.js +245 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-discovered-devices.controller.js.map +1 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-discovered-helpers.controller.d.ts +18 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-discovered-helpers.controller.js +245 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-discovered-helpers.controller.js.map +1 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-discovery.controller.d.ts +9 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-discovery.controller.js +79 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-discovery.controller.js.map +1 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-registry.controller.d.ts +9 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-registry.controller.js +121 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-registry.controller.js.map +1 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-states.controller.d.ts +9 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-states.controller.js +128 -0
- package/dist/plugins/devices-home-assistant/controllers/home-assistant-states.controller.js.map +1 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.constants.d.ts +171 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.constants.js +191 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.constants.js.map +1 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.exceptions.d.ts +12 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.exceptions.js +32 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.exceptions.js.map +1 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.openapi.d.ts +20 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.openapi.js +82 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.openapi.js.map +1 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.plugin.d.ts +44 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.plugin.js +469 -0
- package/dist/plugins/devices-home-assistant/devices-home-assistant.plugin.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/create-channel-property.dto.d.ts +8 -0
- package/dist/plugins/devices-home-assistant/dto/create-channel-property.dto.js +76 -0
- package/dist/plugins/devices-home-assistant/dto/create-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/create-channel.dto.d.ts +7 -0
- package/dist/plugins/devices-home-assistant/dto/create-channel.dto.js +49 -0
- package/dist/plugins/devices-home-assistant/dto/create-channel.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/create-device.dto.d.ts +6 -0
- package/dist/plugins/devices-home-assistant/dto/create-device.dto.js +45 -0
- package/dist/plugins/devices-home-assistant/dto/create-device.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/helper-mapping-preview.dto.d.ts +25 -0
- package/dist/plugins/devices-home-assistant/dto/helper-mapping-preview.dto.js +203 -0
- package/dist/plugins/devices-home-assistant/dto/helper-mapping-preview.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-discovered-device.dto.d.ts +5 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-discovered-device.dto.js +35 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-discovered-device.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-discovered-helper.dto.d.ts +5 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-discovered-helper.dto.js +33 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-discovered-helper.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-service-request.dto.d.ts +4 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-service-request.dto.js +23 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-service-request.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-state.dto.d.ts +26 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-state.dto.js +142 -0
- package/dist/plugins/devices-home-assistant/dto/home-assistant-state.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/mapping-preview.dto.d.ts +33 -0
- package/dist/plugins/devices-home-assistant/dto/mapping-preview.dto.js +278 -0
- package/dist/plugins/devices-home-assistant/dto/mapping-preview.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/update-channel-property.dto.d.ts +8 -0
- package/dist/plugins/devices-home-assistant/dto/update-channel-property.dto.js +76 -0
- package/dist/plugins/devices-home-assistant/dto/update-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/update-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-home-assistant/dto/update-channel.dto.js +33 -0
- package/dist/plugins/devices-home-assistant/dto/update-channel.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/update-config.dto.d.ts +7 -0
- package/dist/plugins/devices-home-assistant/dto/update-config.dto.js +60 -0
- package/dist/plugins/devices-home-assistant/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/dto/update-device.dto.d.ts +5 -0
- package/dist/plugins/devices-home-assistant/dto/update-device.dto.js +33 -0
- package/dist/plugins/devices-home-assistant/dto/update-device.dto.js.map +1 -0
- package/dist/plugins/devices-home-assistant/entities/devices-home-assistant.entity.d.ts +19 -0
- package/dist/plugins/devices-home-assistant/entities/devices-home-assistant.entity.js +166 -0
- package/dist/plugins/devices-home-assistant/entities/devices-home-assistant.entity.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappers/binary-sensor.entity.mapper.service.d.ts +10 -0
- package/dist/plugins/devices-home-assistant/mappers/binary-sensor.entity.mapper.service.js +207 -0
- package/dist/plugins/devices-home-assistant/mappers/binary-sensor.entity.mapper.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappers/climate.entity.mapper.service.d.ts +14 -0
- package/dist/plugins/devices-home-assistant/mappers/climate.entity.mapper.service.js +187 -0
- package/dist/plugins/devices-home-assistant/mappers/climate.entity.mapper.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappers/cover.entity.mapper.service.d.ts +15 -0
- package/dist/plugins/devices-home-assistant/mappers/cover.entity.mapper.service.js +110 -0
- package/dist/plugins/devices-home-assistant/mappers/cover.entity.mapper.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappers/entity.mapper.d.ts +26 -0
- package/dist/plugins/devices-home-assistant/mappers/entity.mapper.js +29 -0
- package/dist/plugins/devices-home-assistant/mappers/entity.mapper.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappers/light.entity.mapper.service.d.ts +15 -0
- package/dist/plugins/devices-home-assistant/mappers/light.entity.mapper.service.js +250 -0
- package/dist/plugins/devices-home-assistant/mappers/light.entity.mapper.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappers/mapper.service.d.ts +45 -0
- package/dist/plugins/devices-home-assistant/mappers/mapper.service.js +311 -0
- package/dist/plugins/devices-home-assistant/mappers/mapper.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappers/sensor.entity.mapper.service.d.ts +11 -0
- package/dist/plugins/devices-home-assistant/mappers/sensor.entity.mapper.service.js +690 -0
- package/dist/plugins/devices-home-assistant/mappers/sensor.entity.mapper.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappers/switch.entity.mapper.service.d.ts +14 -0
- package/dist/plugins/devices-home-assistant/mappers/switch.entity.mapper.service.js +74 -0
- package/dist/plugins/devices-home-assistant/mappers/switch.entity.mapper.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappers/universal.entity.mapper.service.d.ts +9 -0
- package/dist/plugins/devices-home-assistant/mappers/universal.entity.mapper.service.js +50 -0
- package/dist/plugins/devices-home-assistant/mappers/universal.entity.mapper.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappings/definitions/entity-mappings.yaml +1161 -0
- package/dist/plugins/devices-home-assistant/mappings/definitions/virtual-properties.yaml +159 -0
- package/dist/plugins/devices-home-assistant/mappings/index.d.ts +5 -0
- package/dist/plugins/devices-home-assistant/mappings/index.js +28 -0
- package/dist/plugins/devices-home-assistant/mappings/index.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappings/mapping-loader.service.d.ts +52 -0
- package/dist/plugins/devices-home-assistant/mappings/mapping-loader.service.js +472 -0
- package/dist/plugins/devices-home-assistant/mappings/mapping-loader.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappings/mapping.types.d.ts +188 -0
- package/dist/plugins/devices-home-assistant/mappings/mapping.types.js +10 -0
- package/dist/plugins/devices-home-assistant/mappings/mapping.types.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappings/schema/mapping-schema.json +306 -0
- package/dist/plugins/devices-home-assistant/mappings/schema/virtual-properties-schema.json +232 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/index.d.ts +3 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/index.js +20 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/index.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/transformer.registry.d.ts +43 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/transformer.registry.js +284 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/transformer.registry.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/transformer.types.d.ts +62 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/transformer.types.js +3 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/transformer.types.js.map +1 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/transformers.d.ts +72 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/transformers.js +378 -0
- package/dist/plugins/devices-home-assistant/mappings/transformers/transformers.js.map +1 -0
- package/dist/plugins/devices-home-assistant/models/config.model.d.ts +6 -0
- package/dist/plugins/devices-home-assistant/models/config.model.js +63 -0
- package/dist/plugins/devices-home-assistant/models/config.model.js.map +1 -0
- package/dist/plugins/devices-home-assistant/models/discovered-instance.model.d.ts +11 -0
- package/dist/plugins/devices-home-assistant/models/discovered-instance.model.js +92 -0
- package/dist/plugins/devices-home-assistant/models/discovered-instance.model.js.map +1 -0
- package/dist/plugins/devices-home-assistant/models/helper-mapping-preview.model.d.ts +45 -0
- package/dist/plugins/devices-home-assistant/models/helper-mapping-preview.model.js +346 -0
- package/dist/plugins/devices-home-assistant/models/helper-mapping-preview.model.js.map +1 -0
- package/dist/plugins/devices-home-assistant/models/home-assistant-response.model.d.ts +26 -0
- package/dist/plugins/devices-home-assistant/models/home-assistant-response.model.js +134 -0
- package/dist/plugins/devices-home-assistant/models/home-assistant-response.model.js.map +1 -0
- package/dist/plugins/devices-home-assistant/models/home-assistant.model.d.ts +63 -0
- package/dist/plugins/devices-home-assistant/models/home-assistant.model.js +730 -0
- package/dist/plugins/devices-home-assistant/models/home-assistant.model.js.map +1 -0
- package/dist/plugins/devices-home-assistant/models/mapping-preview.model.d.ts +76 -0
- package/dist/plugins/devices-home-assistant/models/mapping-preview.model.js +650 -0
- package/dist/plugins/devices-home-assistant/models/mapping-preview.model.js.map +1 -0
- package/dist/plugins/devices-home-assistant/platforms/home-assistant.device.platform.d.ts +24 -0
- package/dist/plugins/devices-home-assistant/platforms/home-assistant.device.platform.js +147 -0
- package/dist/plugins/devices-home-assistant/platforms/home-assistant.device.platform.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/device-adoption.service.d.ts +26 -0
- package/dist/plugins/devices-home-assistant/services/device-adoption.service.js +733 -0
- package/dist/plugins/devices-home-assistant/services/device-adoption.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/ha-mdns-discoverer.service.d.ts +31 -0
- package/dist/plugins/devices-home-assistant/services/ha-mdns-discoverer.service.js +158 -0
- package/dist/plugins/devices-home-assistant/services/ha-mdns-discoverer.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/helper-adoption.service.d.ts +21 -0
- package/dist/plugins/devices-home-assistant/services/helper-adoption.service.js +284 -0
- package/dist/plugins/devices-home-assistant/services/helper-adoption.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/helper-mapping-preview.service.d.ts +15 -0
- package/dist/plugins/devices-home-assistant/services/helper-mapping-preview.service.js +256 -0
- package/dist/plugins/devices-home-assistant/services/helper-mapping-preview.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/home-assistant-config-validator.service.d.ts +12 -0
- package/dist/plugins/devices-home-assistant/services/home-assistant-config-validator.service.js +102 -0
- package/dist/plugins/devices-home-assistant/services/home-assistant-config-validator.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/home-assistant.http.service.d.ts +44 -0
- package/dist/plugins/devices-home-assistant/services/home-assistant.http.service.js +732 -0
- package/dist/plugins/devices-home-assistant/services/home-assistant.http.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/home-assistant.ws.service.d.ts +50 -0
- package/dist/plugins/devices-home-assistant/services/home-assistant.ws.service.js +397 -0
- package/dist/plugins/devices-home-assistant/services/home-assistant.ws.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/light-capability.analyzer.d.ts +21 -0
- package/dist/plugins/devices-home-assistant/services/light-capability.analyzer.js +139 -0
- package/dist/plugins/devices-home-assistant/services/light-capability.analyzer.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/mapping-preview.service.d.ts +42 -0
- package/dist/plugins/devices-home-assistant/services/mapping-preview.service.js +836 -0
- package/dist/plugins/devices-home-assistant/services/mapping-preview.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/state-changed.event.service.d.ts +31 -0
- package/dist/plugins/devices-home-assistant/services/state-changed.event.service.js +245 -0
- package/dist/plugins/devices-home-assistant/services/state-changed.event.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/virtual-property.service.d.ts +28 -0
- package/dist/plugins/devices-home-assistant/services/virtual-property.service.js +169 -0
- package/dist/plugins/devices-home-assistant/services/virtual-property.service.js.map +1 -0
- package/dist/plugins/devices-home-assistant/services/virtual-property.types.d.ts +21 -0
- package/dist/plugins/devices-home-assistant/services/virtual-property.types.js +3 -0
- package/dist/plugins/devices-home-assistant/services/virtual-property.types.js.map +1 -0
- package/dist/plugins/devices-home-assistant/subscribers/devices-service.subscriber.d.ts +13 -0
- package/dist/plugins/devices-home-assistant/subscribers/devices-service.subscriber.js +125 -0
- package/dist/plugins/devices-home-assistant/subscribers/devices-service.subscriber.js.map +1 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.constants.d.ts +82 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.constants.js +354 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.constants.js.map +1 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.exceptions.d.ts +4 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.exceptions.js +11 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.exceptions.js.map +1 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.openapi.d.ts +8 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.openapi.js +28 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.openapi.js.map +1 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.plugin.d.ts +26 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.plugin.js +221 -0
- package/dist/plugins/devices-reterminal/devices-reterminal.plugin.js.map +1 -0
- package/dist/plugins/devices-reterminal/dto/create-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-reterminal/dto/create-channel-property.dto.js +35 -0
- package/dist/plugins/devices-reterminal/dto/create-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-reterminal/dto/create-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-reterminal/dto/create-channel.dto.js +35 -0
- package/dist/plugins/devices-reterminal/dto/create-channel.dto.js.map +1 -0
- package/dist/plugins/devices-reterminal/dto/create-device.dto.d.ts +6 -0
- package/dist/plugins/devices-reterminal/dto/create-device.dto.js +49 -0
- package/dist/plugins/devices-reterminal/dto/create-device.dto.js.map +1 -0
- package/dist/plugins/devices-reterminal/dto/update-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-reterminal/dto/update-channel-property.dto.js +35 -0
- package/dist/plugins/devices-reterminal/dto/update-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-reterminal/dto/update-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-reterminal/dto/update-channel.dto.js +35 -0
- package/dist/plugins/devices-reterminal/dto/update-channel.dto.js.map +1 -0
- package/dist/plugins/devices-reterminal/dto/update-config.dto.d.ts +9 -0
- package/dist/plugins/devices-reterminal/dto/update-config.dto.js +66 -0
- package/dist/plugins/devices-reterminal/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/devices-reterminal/dto/update-device.dto.d.ts +6 -0
- package/dist/plugins/devices-reterminal/dto/update-device.dto.js +47 -0
- package/dist/plugins/devices-reterminal/dto/update-device.dto.js.map +1 -0
- package/dist/plugins/devices-reterminal/entities/devices-reterminal.entity.d.ts +15 -0
- package/dist/plugins/devices-reterminal/entities/devices-reterminal.entity.js +108 -0
- package/dist/plugins/devices-reterminal/entities/devices-reterminal.entity.js.map +1 -0
- package/dist/plugins/devices-reterminal/index.d.ts +18 -0
- package/dist/plugins/devices-reterminal/index.js +35 -0
- package/dist/plugins/devices-reterminal/index.js.map +1 -0
- package/dist/plugins/devices-reterminal/models/config.model.d.ts +8 -0
- package/dist/plugins/devices-reterminal/models/config.model.js +68 -0
- package/dist/plugins/devices-reterminal/models/config.model.js.map +1 -0
- package/dist/plugins/devices-reterminal/platforms/reterminal.device.platform.d.ts +16 -0
- package/dist/plugins/devices-reterminal/platforms/reterminal.device.platform.js +148 -0
- package/dist/plugins/devices-reterminal/platforms/reterminal.device.platform.js.map +1 -0
- package/dist/plugins/devices-reterminal/services/device-mapper.service.d.ts +29 -0
- package/dist/plugins/devices-reterminal/services/device-mapper.service.js +221 -0
- package/dist/plugins/devices-reterminal/services/device-mapper.service.js.map +1 -0
- package/dist/plugins/devices-reterminal/services/reterminal-button.service.d.ts +19 -0
- package/dist/plugins/devices-reterminal/services/reterminal-button.service.js +242 -0
- package/dist/plugins/devices-reterminal/services/reterminal-button.service.js.map +1 -0
- package/dist/plugins/devices-reterminal/services/reterminal-sysfs.service.d.ts +13 -0
- package/dist/plugins/devices-reterminal/services/reterminal-sysfs.service.js +162 -0
- package/dist/plugins/devices-reterminal/services/reterminal-sysfs.service.js.map +1 -0
- package/dist/plugins/devices-reterminal/services/reterminal.service.d.ts +24 -0
- package/dist/plugins/devices-reterminal/services/reterminal.service.js +110 -0
- package/dist/plugins/devices-reterminal/services/reterminal.service.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/controllers/shelly-ng-devices.controller.d.ts +13 -0
- package/dist/plugins/devices-shelly-ng/controllers/shelly-ng-devices.controller.js +206 -0
- package/dist/plugins/devices-shelly-ng/controllers/shelly-ng-devices.controller.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/delegates/delegates-manager.service.d.ts +60 -0
- package/dist/plugins/devices-shelly-ng/delegates/delegates-manager.service.js +1117 -0
- package/dist/plugins/devices-shelly-ng/delegates/delegates-manager.service.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/delegates/shelly-device.delegate.d.ts +30 -0
- package/dist/plugins/devices-shelly-ng/delegates/shelly-device.delegate.js +178 -0
- package/dist/plugins/devices-shelly-ng/delegates/shelly-device.delegate.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.constants.d.ts +94 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.constants.js +673 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.constants.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.exceptions.d.ts +15 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.exceptions.js +39 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.exceptions.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.openapi.d.ts +9 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.openapi.js +43 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.openapi.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.plugin.d.ts +26 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.plugin.js +235 -0
- package/dist/plugins/devices-shelly-ng/devices-shelly-ng.plugin.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/dto/create-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-shelly-ng/dto/create-channel-property.dto.js +35 -0
- package/dist/plugins/devices-shelly-ng/dto/create-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/dto/create-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-shelly-ng/dto/create-channel.dto.js +35 -0
- package/dist/plugins/devices-shelly-ng/dto/create-channel.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/dto/create-device.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-ng/dto/create-device.dto.js +64 -0
- package/dist/plugins/devices-shelly-ng/dto/create-device.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/dto/shelly-ng-get-info.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-ng/dto/shelly-ng-get-info.dto.js +63 -0
- package/dist/plugins/devices-shelly-ng/dto/shelly-ng-get-info.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/dto/update-channel-property.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-ng/dto/update-channel-property.dto.js +53 -0
- package/dist/plugins/devices-shelly-ng/dto/update-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/dto/update-channel.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-ng/dto/update-channel.dto.js +53 -0
- package/dist/plugins/devices-shelly-ng/dto/update-channel.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/dto/update-config.dto.d.ts +16 -0
- package/dist/plugins/devices-shelly-ng/dto/update-config.dto.js +148 -0
- package/dist/plugins/devices-shelly-ng/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/dto/update-device.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-ng/dto/update-device.dto.js +59 -0
- package/dist/plugins/devices-shelly-ng/dto/update-device.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/entities/devices-shelly-ng.entity.d.ts +15 -0
- package/dist/plugins/devices-shelly-ng/entities/devices-shelly-ng.entity.js +122 -0
- package/dist/plugins/devices-shelly-ng/entities/devices-shelly-ng.entity.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/mappings/definitions/covers.yaml +70 -0
- package/dist/plugins/devices-shelly-ng/mappings/definitions/derivation-rules.yaml +33 -0
- package/dist/plugins/devices-shelly-ng/mappings/definitions/lights.yaml +42 -0
- package/dist/plugins/devices-shelly-ng/mappings/definitions/power.yaml +70 -0
- package/dist/plugins/devices-shelly-ng/mappings/definitions/rgb.yaml +157 -0
- package/dist/plugins/devices-shelly-ng/mappings/definitions/sensors.yaml +95 -0
- package/dist/plugins/devices-shelly-ng/mappings/definitions/switches.yaml +115 -0
- package/dist/plugins/devices-shelly-ng/mappings/index.d.ts +5 -0
- package/dist/plugins/devices-shelly-ng/mappings/index.js +22 -0
- package/dist/plugins/devices-shelly-ng/mappings/index.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/mappings/mapping-loader.service.d.ts +68 -0
- package/dist/plugins/devices-shelly-ng/mappings/mapping-loader.service.js +592 -0
- package/dist/plugins/devices-shelly-ng/mappings/mapping-loader.service.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/mappings/mapping.constants.d.ts +7 -0
- package/dist/plugins/devices-shelly-ng/mappings/mapping.constants.js +10 -0
- package/dist/plugins/devices-shelly-ng/mappings/mapping.constants.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/mappings/mapping.types.d.ts +179 -0
- package/dist/plugins/devices-shelly-ng/mappings/mapping.types.js +3 -0
- package/dist/plugins/devices-shelly-ng/mappings/mapping.types.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/mappings/property-mapping-storage.service.d.ts +9 -0
- package/dist/plugins/devices-shelly-ng/mappings/property-mapping-storage.service.js +41 -0
- package/dist/plugins/devices-shelly-ng/mappings/property-mapping-storage.service.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/mappings/schema/mapping-schema.json +308 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/index.d.ts +3 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/index.js +20 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/index.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/transformer.registry.d.ts +12 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/transformer.registry.js +101 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/transformer.registry.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/transformer.types.d.ts +67 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/transformer.types.js +3 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/transformer.types.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/transformers.d.ts +67 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/transformers.js +339 -0
- package/dist/plugins/devices-shelly-ng/mappings/transformers/transformers.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/models/config.model.d.ts +15 -0
- package/dist/plugins/devices-shelly-ng/models/config.model.js +137 -0
- package/dist/plugins/devices-shelly-ng/models/config.model.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/models/shelly-ng-response.model.d.ts +11 -0
- package/dist/plugins/devices-shelly-ng/models/shelly-ng-response.model.js +60 -0
- package/dist/plugins/devices-shelly-ng/models/shelly-ng-response.model.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/models/shelly-ng.model.d.ts +54 -0
- package/dist/plugins/devices-shelly-ng/models/shelly-ng.model.js +432 -0
- package/dist/plugins/devices-shelly-ng/models/shelly-ng.model.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/platforms/shelly-ng.device.platform.d.ts +14 -0
- package/dist/plugins/devices-shelly-ng/platforms/shelly-ng.device.platform.js +113 -0
- package/dist/plugins/devices-shelly-ng/platforms/shelly-ng.device.platform.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/services/database-discoverer.service.d.ts +10 -0
- package/dist/plugins/devices-shelly-ng/services/database-discoverer.service.js +54 -0
- package/dist/plugins/devices-shelly-ng/services/database-discoverer.service.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/services/device-manager.service.d.ts +56 -0
- package/dist/plugins/devices-shelly-ng/services/device-manager.service.js +1117 -0
- package/dist/plugins/devices-shelly-ng/services/device-manager.service.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/services/shelly-ng.service.d.ts +50 -0
- package/dist/plugins/devices-shelly-ng/services/shelly-ng.service.js +357 -0
- package/dist/plugins/devices-shelly-ng/services/shelly-ng.service.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/services/shelly-rpc-client.service.d.ts +670 -0
- package/dist/plugins/devices-shelly-ng/services/shelly-rpc-client.service.js +177 -0
- package/dist/plugins/devices-shelly-ng/services/shelly-rpc-client.service.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/subscribers/device-entity.subscriber.d.ts +17 -0
- package/dist/plugins/devices-shelly-ng/subscribers/device-entity.subscriber.js +84 -0
- package/dist/plugins/devices-shelly-ng/subscribers/device-entity.subscriber.js.map +1 -0
- package/dist/plugins/devices-shelly-ng/utils/transform.utils.d.ts +10 -0
- package/dist/plugins/devices-shelly-ng/utils/transform.utils.js +32 -0
- package/dist/plugins/devices-shelly-ng/utils/transform.utils.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/controllers/shelly-v1-devices.controller.d.ts +10 -0
- package/dist/plugins/devices-shelly-v1/controllers/shelly-v1-devices.controller.js +135 -0
- package/dist/plugins/devices-shelly-v1/controllers/shelly-v1-devices.controller.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.constants.d.ts +64 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.constants.js +1787 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.constants.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.exceptions.d.ts +16 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.exceptions.js +35 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.exceptions.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.openapi.d.ts +10 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.openapi.js +36 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.openapi.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.plugin.d.ts +26 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.plugin.js +235 -0
- package/dist/plugins/devices-shelly-v1/devices-shelly-v1.plugin.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/dto/create-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-shelly-v1/dto/create-channel-property.dto.js +35 -0
- package/dist/plugins/devices-shelly-v1/dto/create-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/dto/create-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-shelly-v1/dto/create-channel.dto.js +35 -0
- package/dist/plugins/devices-shelly-v1/dto/create-channel.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/dto/create-device.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-v1/dto/create-device.dto.js +61 -0
- package/dist/plugins/devices-shelly-v1/dto/create-device.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/dto/shelly-v1-probe.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-v1/dto/shelly-v1-probe.dto.js +63 -0
- package/dist/plugins/devices-shelly-v1/dto/shelly-v1-probe.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/dto/update-channel-property.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-v1/dto/update-channel-property.dto.js +53 -0
- package/dist/plugins/devices-shelly-v1/dto/update-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/dto/update-channel.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-v1/dto/update-channel.dto.js +53 -0
- package/dist/plugins/devices-shelly-v1/dto/update-channel.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/dto/update-config.dto.d.ts +15 -0
- package/dist/plugins/devices-shelly-v1/dto/update-config.dto.js +124 -0
- package/dist/plugins/devices-shelly-v1/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/dto/update-device.dto.d.ts +7 -0
- package/dist/plugins/devices-shelly-v1/dto/update-device.dto.js +59 -0
- package/dist/plugins/devices-shelly-v1/dto/update-device.dto.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/entities/devices-shelly-v1.entity.d.ts +15 -0
- package/dist/plugins/devices-shelly-v1/entities/devices-shelly-v1.entity.js +122 -0
- package/dist/plugins/devices-shelly-v1/entities/devices-shelly-v1.entity.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/interfaces/shellies.interface.d.ts +66 -0
- package/dist/plugins/devices-shelly-v1/interfaces/shellies.interface.js +12 -0
- package/dist/plugins/devices-shelly-v1/interfaces/shellies.interface.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/interfaces/shelly-http.interface.d.ts +81 -0
- package/dist/plugins/devices-shelly-v1/interfaces/shelly-http.interface.js +3 -0
- package/dist/plugins/devices-shelly-v1/interfaces/shelly-http.interface.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/lib/shellies.d.ts +3 -0
- package/dist/plugins/devices-shelly-v1/lib/shellies.js +5 -0
- package/dist/plugins/devices-shelly-v1/lib/shellies.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/models/config.model.d.ts +14 -0
- package/dist/plugins/devices-shelly-v1/models/config.model.js +124 -0
- package/dist/plugins/devices-shelly-v1/models/config.model.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/models/shelly-v1-response.model.d.ts +8 -0
- package/dist/plugins/devices-shelly-v1/models/shelly-v1-response.model.js +46 -0
- package/dist/plugins/devices-shelly-v1/models/shelly-v1-response.model.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/models/shelly-v1.model.d.ts +18 -0
- package/dist/plugins/devices-shelly-v1/models/shelly-v1.model.js +170 -0
- package/dist/plugins/devices-shelly-v1/models/shelly-v1.model.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/platforms/shelly-v1.device.platform.d.ts +22 -0
- package/dist/plugins/devices-shelly-v1/platforms/shelly-v1.device.platform.js +314 -0
- package/dist/plugins/devices-shelly-v1/platforms/shelly-v1.device.platform.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/services/device-mapper.service.d.ts +35 -0
- package/dist/plugins/devices-shelly-v1/services/device-mapper.service.js +543 -0
- package/dist/plugins/devices-shelly-v1/services/device-mapper.service.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/services/shellies-adapter.service.d.ts +28 -0
- package/dist/plugins/devices-shelly-v1/services/shellies-adapter.service.js +237 -0
- package/dist/plugins/devices-shelly-v1/services/shellies-adapter.service.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/services/shelly-v1-http-client.service.d.ts +10 -0
- package/dist/plugins/devices-shelly-v1/services/shelly-v1-http-client.service.js +74 -0
- package/dist/plugins/devices-shelly-v1/services/shelly-v1-http-client.service.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/services/shelly-v1-probe.service.d.ts +10 -0
- package/dist/plugins/devices-shelly-v1/services/shelly-v1-probe.service.js +104 -0
- package/dist/plugins/devices-shelly-v1/services/shelly-v1-probe.service.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/services/shelly-v1.service.d.ts +43 -0
- package/dist/plugins/devices-shelly-v1/services/shelly-v1.service.js +488 -0
- package/dist/plugins/devices-shelly-v1/services/shelly-v1.service.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/subscribers/device-entity.subscriber.d.ts +19 -0
- package/dist/plugins/devices-shelly-v1/subscribers/device-entity.subscriber.js +130 -0
- package/dist/plugins/devices-shelly-v1/subscribers/device-entity.subscriber.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/utils/synthetic-properties.utils.d.ts +10 -0
- package/dist/plugins/devices-shelly-v1/utils/synthetic-properties.utils.js +117 -0
- package/dist/plugins/devices-shelly-v1/utils/synthetic-properties.utils.js.map +1 -0
- package/dist/plugins/devices-shelly-v1/utils/value-mapping.utils.d.ts +14 -0
- package/dist/plugins/devices-shelly-v1/utils/value-mapping.utils.js +96 -0
- package/dist/plugins/devices-shelly-v1/utils/value-mapping.utils.js.map +1 -0
- package/dist/plugins/devices-third-party/controllers/third-party-demo.controller.d.ts +10 -0
- package/dist/plugins/devices-third-party/controllers/third-party-demo.controller.js +138 -0
- package/dist/plugins/devices-third-party/controllers/third-party-demo.controller.js.map +1 -0
- package/dist/plugins/devices-third-party/devices-third-party.constants.d.ts +19 -0
- package/dist/plugins/devices-third-party/devices-third-party.constants.js +24 -0
- package/dist/plugins/devices-third-party/devices-third-party.constants.js.map +1 -0
- package/dist/plugins/devices-third-party/devices-third-party.openapi.d.ts +13 -0
- package/dist/plugins/devices-third-party/devices-third-party.openapi.js +37 -0
- package/dist/plugins/devices-third-party/devices-third-party.openapi.js.map +1 -0
- package/dist/plugins/devices-third-party/devices-third-party.plugin.d.ts +22 -0
- package/dist/plugins/devices-third-party/devices-third-party.plugin.js +213 -0
- package/dist/plugins/devices-third-party/devices-third-party.plugin.js.map +1 -0
- package/dist/plugins/devices-third-party/dto/create-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-third-party/dto/create-channel-property.dto.js +35 -0
- package/dist/plugins/devices-third-party/dto/create-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-third-party/dto/create-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-third-party/dto/create-channel.dto.js +35 -0
- package/dist/plugins/devices-third-party/dto/create-channel.dto.js.map +1 -0
- package/dist/plugins/devices-third-party/dto/create-device.dto.d.ts +6 -0
- package/dist/plugins/devices-third-party/dto/create-device.dto.js +46 -0
- package/dist/plugins/devices-third-party/dto/create-device.dto.js.map +1 -0
- package/dist/plugins/devices-third-party/dto/third-party-property-update-request.dto.d.ts +9 -0
- package/dist/plugins/devices-third-party/dto/third-party-property-update-request.dto.js +86 -0
- package/dist/plugins/devices-third-party/dto/third-party-property-update-request.dto.js.map +1 -0
- package/dist/plugins/devices-third-party/dto/third-party-property-update-response.dto.d.ts +10 -0
- package/dist/plugins/devices-third-party/dto/third-party-property-update-response.dto.js +84 -0
- package/dist/plugins/devices-third-party/dto/third-party-property-update-response.dto.js.map +1 -0
- package/dist/plugins/devices-third-party/dto/update-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-third-party/dto/update-channel-property.dto.js +35 -0
- package/dist/plugins/devices-third-party/dto/update-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-third-party/dto/update-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-third-party/dto/update-channel.dto.js +35 -0
- package/dist/plugins/devices-third-party/dto/update-channel.dto.js.map +1 -0
- package/dist/plugins/devices-third-party/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/devices-third-party/dto/update-config.dto.js +33 -0
- package/dist/plugins/devices-third-party/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/devices-third-party/dto/update-device.dto.d.ts +6 -0
- package/dist/plugins/devices-third-party/dto/update-device.dto.js +48 -0
- package/dist/plugins/devices-third-party/dto/update-device.dto.js.map +1 -0
- package/dist/plugins/devices-third-party/entities/devices-third-party.entity.d.ts +11 -0
- package/dist/plugins/devices-third-party/entities/devices-third-party.entity.js +95 -0
- package/dist/plugins/devices-third-party/entities/devices-third-party.entity.js.map +1 -0
- package/dist/plugins/devices-third-party/models/config.model.d.ts +5 -0
- package/dist/plugins/devices-third-party/models/config.model.js +47 -0
- package/dist/plugins/devices-third-party/models/config.model.js.map +1 -0
- package/dist/plugins/devices-third-party/models/demo-control-response.model.d.ts +4 -0
- package/dist/plugins/devices-third-party/models/demo-control-response.model.js +32 -0
- package/dist/plugins/devices-third-party/models/demo-control-response.model.js.map +1 -0
- package/dist/plugins/devices-third-party/models/demo-control.model.d.ts +13 -0
- package/dist/plugins/devices-third-party/models/demo-control.model.js +95 -0
- package/dist/plugins/devices-third-party/models/demo-control.model.js.map +1 -0
- package/dist/plugins/devices-third-party/platforms/third-party-device.platform.d.ts +13 -0
- package/dist/plugins/devices-third-party/platforms/third-party-device.platform.js +103 -0
- package/dist/plugins/devices-third-party/platforms/third-party-device.platform.js.map +1 -0
- package/dist/plugins/devices-wled/controllers/wled-discovery.controller.d.ts +8 -0
- package/dist/plugins/devices-wled/controllers/wled-discovery.controller.js +61 -0
- package/dist/plugins/devices-wled/controllers/wled-discovery.controller.js.map +1 -0
- package/dist/plugins/devices-wled/devices-wled.constants.d.ts +77 -0
- package/dist/plugins/devices-wled/devices-wled.constants.js +277 -0
- package/dist/plugins/devices-wled/devices-wled.constants.js.map +1 -0
- package/dist/plugins/devices-wled/devices-wled.exceptions.d.ts +13 -0
- package/dist/plugins/devices-wled/devices-wled.exceptions.js +29 -0
- package/dist/plugins/devices-wled/devices-wled.exceptions.js.map +1 -0
- package/dist/plugins/devices-wled/devices-wled.openapi.d.ts +9 -0
- package/dist/plugins/devices-wled/devices-wled.openapi.js +33 -0
- package/dist/plugins/devices-wled/devices-wled.openapi.js.map +1 -0
- package/dist/plugins/devices-wled/devices-wled.plugin.d.ts +26 -0
- package/dist/plugins/devices-wled/devices-wled.plugin.js +228 -0
- package/dist/plugins/devices-wled/devices-wled.plugin.js.map +1 -0
- package/dist/plugins/devices-wled/dto/create-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-wled/dto/create-channel-property.dto.js +35 -0
- package/dist/plugins/devices-wled/dto/create-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-wled/dto/create-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-wled/dto/create-channel.dto.js +35 -0
- package/dist/plugins/devices-wled/dto/create-channel.dto.js.map +1 -0
- package/dist/plugins/devices-wled/dto/create-device.dto.d.ts +6 -0
- package/dist/plugins/devices-wled/dto/create-device.dto.js +49 -0
- package/dist/plugins/devices-wled/dto/create-device.dto.js.map +1 -0
- package/dist/plugins/devices-wled/dto/update-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-wled/dto/update-channel-property.dto.js +35 -0
- package/dist/plugins/devices-wled/dto/update-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-wled/dto/update-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-wled/dto/update-channel.dto.js +35 -0
- package/dist/plugins/devices-wled/dto/update-channel.dto.js.map +1 -0
- package/dist/plugins/devices-wled/dto/update-config.dto.d.ts +25 -0
- package/dist/plugins/devices-wled/dto/update-config.dto.js +213 -0
- package/dist/plugins/devices-wled/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/devices-wled/dto/update-device.dto.d.ts +6 -0
- package/dist/plugins/devices-wled/dto/update-device.dto.js +47 -0
- package/dist/plugins/devices-wled/dto/update-device.dto.js.map +1 -0
- package/dist/plugins/devices-wled/entities/devices-wled.entity.d.ts +14 -0
- package/dist/plugins/devices-wled/entities/devices-wled.entity.js +108 -0
- package/dist/plugins/devices-wled/entities/devices-wled.entity.js.map +1 -0
- package/dist/plugins/devices-wled/index.d.ts +19 -0
- package/dist/plugins/devices-wled/index.js +36 -0
- package/dist/plugins/devices-wled/index.js.map +1 -0
- package/dist/plugins/devices-wled/interfaces/wled.interface.d.ts +179 -0
- package/dist/plugins/devices-wled/interfaces/wled.interface.js +16 -0
- package/dist/plugins/devices-wled/interfaces/wled.interface.js.map +1 -0
- package/dist/plugins/devices-wled/models/config.model.d.ts +24 -0
- package/dist/plugins/devices-wled/models/config.model.js +207 -0
- package/dist/plugins/devices-wled/models/config.model.js.map +1 -0
- package/dist/plugins/devices-wled/models/wled-discovery.model.d.ts +10 -0
- package/dist/plugins/devices-wled/models/wled-discovery.model.js +76 -0
- package/dist/plugins/devices-wled/models/wled-discovery.model.js.map +1 -0
- package/dist/plugins/devices-wled/platforms/wled.device.platform.d.ts +22 -0
- package/dist/plugins/devices-wled/platforms/wled.device.platform.js +243 -0
- package/dist/plugins/devices-wled/platforms/wled.device.platform.js.map +1 -0
- package/dist/plugins/devices-wled/services/device-mapper.service.d.ts +31 -0
- package/dist/plugins/devices-wled/services/device-mapper.service.js +290 -0
- package/dist/plugins/devices-wled/services/device-mapper.service.js.map +1 -0
- package/dist/plugins/devices-wled/services/wled-client-adapter.service.d.ts +59 -0
- package/dist/plugins/devices-wled/services/wled-client-adapter.service.js +637 -0
- package/dist/plugins/devices-wled/services/wled-client-adapter.service.js.map +1 -0
- package/dist/plugins/devices-wled/services/wled-mdns-discoverer.service.d.ts +20 -0
- package/dist/plugins/devices-wled/services/wled-mdns-discoverer.service.js +131 -0
- package/dist/plugins/devices-wled/services/wled-mdns-discoverer.service.js.map +1 -0
- package/dist/plugins/devices-wled/services/wled.service.d.ts +52 -0
- package/dist/plugins/devices-wled/services/wled.service.js +379 -0
- package/dist/plugins/devices-wled/services/wled.service.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/controllers/zigbee2mqtt-discovered-devices.controller.d.ts +20 -0
- package/dist/plugins/devices-zigbee2mqtt/controllers/zigbee2mqtt-discovered-devices.controller.js +295 -0
- package/dist/plugins/devices-zigbee2mqtt/controllers/zigbee2mqtt-discovered-devices.controller.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/base.converter.d.ts +55 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/base.converter.js +185 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/base.converter.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/converter.interface.d.ts +57 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/converter.interface.js +11 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/converter.interface.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/converter.registry.d.ts +23 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/converter.registry.js +121 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/converter.registry.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/index.d.ts +3 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/index.js +20 -0
- package/dist/plugins/devices-zigbee2mqtt/converters/index.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.constants.d.ts +64 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.constants.js +498 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.constants.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.exceptions.d.ts +22 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.exceptions.js +75 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.exceptions.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.openapi.d.ts +10 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.openapi.js +51 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.openapi.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.plugin.d.ts +26 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.plugin.js +326 -0
- package/dist/plugins/devices-zigbee2mqtt/devices-zigbee2mqtt.plugin.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/create-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/create-channel-property.dto.js +35 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/create-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/create-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/create-channel.dto.js +35 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/create-channel.dto.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/create-device.dto.d.ts +5 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/create-device.dto.js +35 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/create-device.dto.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/mapping-preview.dto.d.ts +38 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/mapping-preview.dto.js +297 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/mapping-preview.dto.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-channel-property.dto.d.ts +5 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-channel-property.dto.js +35 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-channel-property.dto.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-channel.dto.d.ts +5 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-channel.dto.js +35 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-channel.dto.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-config.dto.d.ts +31 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-config.dto.js +294 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-device.dto.d.ts +5 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-device.dto.js +35 -0
- package/dist/plugins/devices-zigbee2mqtt/dto/update-device.dto.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/entities/devices-zigbee2mqtt.entity.d.ts +13 -0
- package/dist/plugins/devices-zigbee2mqtt/entities/devices-zigbee2mqtt.entity.js +90 -0
- package/dist/plugins/devices-zigbee2mqtt/entities/devices-zigbee2mqtt.entity.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/index.d.ts +13 -0
- package/dist/plugins/devices-zigbee2mqtt/index.js +30 -0
- package/dist/plugins/devices-zigbee2mqtt/index.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/interfaces/zigbee2mqtt.interface.d.ts +157 -0
- package/dist/plugins/devices-zigbee2mqtt/interfaces/zigbee2mqtt.interface.js +3 -0
- package/dist/plugins/devices-zigbee2mqtt/interfaces/zigbee2mqtt.interface.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/config-driven.converter.d.ts +71 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/config-driven.converter.js +670 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/config-driven.converter.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/climate.yaml +212 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/covers.yaml +108 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/derivation-rules.yaml +165 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/devices/ikea/starkvind-air-purifier.yaml +190 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/fans.yaml +188 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/lights.yaml +106 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/locks.yaml +75 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/remotes.yaml +83 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/sensors.yaml +869 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/definitions/switches.yaml +101 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/index.d.ts +4 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/index.js +21 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/index.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/mapping-loader.service.d.ts +54 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/mapping-loader.service.js +448 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/mapping-loader.service.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/mapping.types.d.ts +186 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/mapping.types.js +3 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/mapping.types.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/schema/mapping-schema.json +713 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/index.d.ts +3 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/index.js +20 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/index.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/transformer.registry.d.ts +16 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/transformer.registry.js +162 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/transformer.registry.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/transformer.types.d.ts +72 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/transformer.types.js +3 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/transformer.types.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/transformers.d.ts +81 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/transformers.js +520 -0
- package/dist/plugins/devices-zigbee2mqtt/mappings/transformers/transformers.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/models/config.model.d.ts +30 -0
- package/dist/plugins/devices-zigbee2mqtt/models/config.model.js +292 -0
- package/dist/plugins/devices-zigbee2mqtt/models/config.model.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/models/zigbee2mqtt-response.model.d.ts +84 -0
- package/dist/plugins/devices-zigbee2mqtt/models/zigbee2mqtt-response.model.js +693 -0
- package/dist/plugins/devices-zigbee2mqtt/models/zigbee2mqtt-response.model.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/platforms/zigbee2mqtt.device.platform.d.ts +25 -0
- package/dist/plugins/devices-zigbee2mqtt/platforms/zigbee2mqtt.device.platform.js +206 -0
- package/dist/plugins/devices-zigbee2mqtt/platforms/zigbee2mqtt.device.platform.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/services/device-adoption.service.d.ts +32 -0
- package/dist/plugins/devices-zigbee2mqtt/services/device-adoption.service.js +469 -0
- package/dist/plugins/devices-zigbee2mqtt/services/device-adoption.service.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/services/device-mapper.service.d.ts +52 -0
- package/dist/plugins/devices-zigbee2mqtt/services/device-mapper.service.js +626 -0
- package/dist/plugins/devices-zigbee2mqtt/services/device-mapper.service.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/services/exposes-mapper.service.d.ts +44 -0
- package/dist/plugins/devices-zigbee2mqtt/services/exposes-mapper.service.js +70 -0
- package/dist/plugins/devices-zigbee2mqtt/services/exposes-mapper.service.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/services/mapping-preview.service.d.ts +26 -0
- package/dist/plugins/devices-zigbee2mqtt/services/mapping-preview.service.js +404 -0
- package/dist/plugins/devices-zigbee2mqtt/services/mapping-preview.service.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/services/mqtt-client-adapter.service.d.ts +36 -0
- package/dist/plugins/devices-zigbee2mqtt/services/mqtt-client-adapter.service.js +477 -0
- package/dist/plugins/devices-zigbee2mqtt/services/mqtt-client-adapter.service.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/services/virtual-property.service.d.ts +18 -0
- package/dist/plugins/devices-zigbee2mqtt/services/virtual-property.service.js +181 -0
- package/dist/plugins/devices-zigbee2mqtt/services/virtual-property.service.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/services/virtual-property.types.d.ts +61 -0
- package/dist/plugins/devices-zigbee2mqtt/services/virtual-property.types.js +114 -0
- package/dist/plugins/devices-zigbee2mqtt/services/virtual-property.types.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/services/zigbee2mqtt-config-validator.service.d.ts +11 -0
- package/dist/plugins/devices-zigbee2mqtt/services/zigbee2mqtt-config-validator.service.js +102 -0
- package/dist/plugins/devices-zigbee2mqtt/services/zigbee2mqtt-config-validator.service.js.map +1 -0
- package/dist/plugins/devices-zigbee2mqtt/services/zigbee2mqtt.service.d.ts +51 -0
- package/dist/plugins/devices-zigbee2mqtt/services/zigbee2mqtt.service.js +377 -0
- package/dist/plugins/devices-zigbee2mqtt/services/zigbee2mqtt.service.js.map +1 -0
- package/dist/plugins/logger-rotating-file/dto/update-config.dto.d.ts +10 -0
- package/dist/plugins/logger-rotating-file/dto/update-config.dto.js +139 -0
- package/dist/plugins/logger-rotating-file/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.constants.d.ts +3 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.constants.js +7 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.constants.js.map +1 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.exceptions.d.ts +12 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.exceptions.js +32 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.exceptions.js.map +1 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.openapi.d.ts +3 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.openapi.js +10 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.openapi.js.map +1 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.plugin.d.ts +16 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.plugin.js +108 -0
- package/dist/plugins/logger-rotating-file/logger-rotating-file.plugin.js.map +1 -0
- package/dist/plugins/logger-rotating-file/models/config.model.d.ts +9 -0
- package/dist/plugins/logger-rotating-file/models/config.model.js +105 -0
- package/dist/plugins/logger-rotating-file/models/config.model.js.map +1 -0
- package/dist/plugins/logger-rotating-file/services/file-logger.service.d.ts +30 -0
- package/dist/plugins/logger-rotating-file/services/file-logger.service.js +276 -0
- package/dist/plugins/logger-rotating-file/services/file-logger.service.js.map +1 -0
- package/dist/plugins/pages-cards/controllers/cards.controller.d.ts +19 -0
- package/dist/plugins/pages-cards/controllers/cards.controller.js +213 -0
- package/dist/plugins/pages-cards/controllers/cards.controller.js.map +1 -0
- package/dist/plugins/pages-cards/dto/create-card.dto.d.ts +18 -0
- package/dist/plugins/pages-cards/dto/create-card.dto.js +170 -0
- package/dist/plugins/pages-cards/dto/create-card.dto.js.map +1 -0
- package/dist/plugins/pages-cards/dto/create-page.dto.d.ts +7 -0
- package/dist/plugins/pages-cards/dto/create-page.dto.js +48 -0
- package/dist/plugins/pages-cards/dto/create-page.dto.js.map +1 -0
- package/dist/plugins/pages-cards/dto/update-card.dto.d.ts +10 -0
- package/dist/plugins/pages-cards/dto/update-card.dto.js +105 -0
- package/dist/plugins/pages-cards/dto/update-card.dto.js.map +1 -0
- package/dist/plugins/pages-cards/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/pages-cards/dto/update-config.dto.js +34 -0
- package/dist/plugins/pages-cards/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/pages-cards/dto/update-page.dto.d.ts +5 -0
- package/dist/plugins/pages-cards/dto/update-page.dto.js +31 -0
- package/dist/plugins/pages-cards/dto/update-page.dto.js.map +1 -0
- package/dist/plugins/pages-cards/entities/pages-cards.entity.d.ts +16 -0
- package/dist/plugins/pages-cards/entities/pages-cards.entity.js +176 -0
- package/dist/plugins/pages-cards/entities/pages-cards.entity.js.map +1 -0
- package/dist/plugins/pages-cards/models/config.model.d.ts +5 -0
- package/dist/plugins/pages-cards/models/config.model.js +49 -0
- package/dist/plugins/pages-cards/models/config.model.js.map +1 -0
- package/dist/plugins/pages-cards/models/pages-cards-response.model.d.ts +8 -0
- package/dist/plugins/pages-cards/models/pages-cards-response.model.js +46 -0
- package/dist/plugins/pages-cards/models/pages-cards-response.model.js.map +1 -0
- package/dist/plugins/pages-cards/pages-cards.constants.d.ts +12 -0
- package/dist/plugins/pages-cards/pages-cards.constants.js +17 -0
- package/dist/plugins/pages-cards/pages-cards.constants.js.map +1 -0
- package/dist/plugins/pages-cards/pages-cards.exceptions.d.ts +9 -0
- package/dist/plugins/pages-cards/pages-cards.exceptions.js +25 -0
- package/dist/plugins/pages-cards/pages-cards.exceptions.js.map +1 -0
- package/dist/plugins/pages-cards/pages-cards.openapi.d.ts +7 -0
- package/dist/plugins/pages-cards/pages-cards.openapi.js +24 -0
- package/dist/plugins/pages-cards/pages-cards.openapi.js.map +1 -0
- package/dist/plugins/pages-cards/pages-cards.plugin.d.ts +22 -0
- package/dist/plugins/pages-cards/pages-cards.plugin.js +156 -0
- package/dist/plugins/pages-cards/pages-cards.plugin.js.map +1 -0
- package/dist/plugins/pages-cards/services/cards.service.d.ts +25 -0
- package/dist/plugins/pages-cards/services/cards.service.js +201 -0
- package/dist/plugins/pages-cards/services/cards.service.js.map +1 -0
- package/dist/plugins/pages-cards/services/page-create-nested-builder.service.d.ts +17 -0
- package/dist/plugins/pages-cards/services/page-create-nested-builder.service.js +81 -0
- package/dist/plugins/pages-cards/services/page-create-nested-builder.service.js.map +1 -0
- package/dist/plugins/pages-cards/services/plugin-reset.service.d.ts +13 -0
- package/dist/plugins/pages-cards/services/plugin-reset.service.js +54 -0
- package/dist/plugins/pages-cards/services/plugin-reset.service.js.map +1 -0
- package/dist/plugins/pages-device-detail/dto/create-page.dto.d.ts +6 -0
- package/dist/plugins/pages-device-detail/dto/create-page.dto.js +46 -0
- package/dist/plugins/pages-device-detail/dto/create-page.dto.js.map +1 -0
- package/dist/plugins/pages-device-detail/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/pages-device-detail/dto/update-config.dto.js +34 -0
- package/dist/plugins/pages-device-detail/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/pages-device-detail/dto/update-page.dto.d.ts +6 -0
- package/dist/plugins/pages-device-detail/dto/update-page.dto.js +48 -0
- package/dist/plugins/pages-device-detail/dto/update-page.dto.js.map +1 -0
- package/dist/plugins/pages-device-detail/entities/pages-device-detail.entity.d.ts +7 -0
- package/dist/plugins/pages-device-detail/entities/pages-device-detail.entity.js +67 -0
- package/dist/plugins/pages-device-detail/entities/pages-device-detail.entity.js.map +1 -0
- package/dist/plugins/pages-device-detail/models/config.model.d.ts +5 -0
- package/dist/plugins/pages-device-detail/models/config.model.js +49 -0
- package/dist/plugins/pages-device-detail/models/config.model.js.map +1 -0
- package/dist/plugins/pages-device-detail/pages-device-detail.constants.d.ts +2 -0
- package/dist/plugins/pages-device-detail/pages-device-detail.constants.js +6 -0
- package/dist/plugins/pages-device-detail/pages-device-detail.constants.js.map +1 -0
- package/dist/plugins/pages-device-detail/pages-device-detail.openapi.d.ts +5 -0
- package/dist/plugins/pages-device-detail/pages-device-detail.openapi.js +16 -0
- package/dist/plugins/pages-device-detail/pages-device-detail.openapi.js.map +1 -0
- package/dist/plugins/pages-device-detail/pages-device-detail.plugin.d.ts +18 -0
- package/dist/plugins/pages-device-detail/pages-device-detail.plugin.js +146 -0
- package/dist/plugins/pages-device-detail/pages-device-detail.plugin.js.map +1 -0
- package/dist/plugins/pages-device-detail/services/page-relations-loader.service.d.ts +10 -0
- package/dist/plugins/pages-device-detail/services/page-relations-loader.service.js +35 -0
- package/dist/plugins/pages-device-detail/services/page-relations-loader.service.js.map +1 -0
- package/dist/plugins/pages-tiles/dto/create-page.dto.d.ts +10 -0
- package/dist/plugins/pages-tiles/dto/create-page.dto.js +96 -0
- package/dist/plugins/pages-tiles/dto/create-page.dto.js.map +1 -0
- package/dist/plugins/pages-tiles/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/pages-tiles/dto/update-config.dto.js +34 -0
- package/dist/plugins/pages-tiles/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/pages-tiles/dto/update-page.dto.d.ts +8 -0
- package/dist/plugins/pages-tiles/dto/update-page.dto.js +77 -0
- package/dist/plugins/pages-tiles/dto/update-page.dto.js.map +1 -0
- package/dist/plugins/pages-tiles/entities/pages-tiles.entity.d.ts +8 -0
- package/dist/plugins/pages-tiles/entities/pages-tiles.entity.js +91 -0
- package/dist/plugins/pages-tiles/entities/pages-tiles.entity.js.map +1 -0
- package/dist/plugins/pages-tiles/models/config.model.d.ts +5 -0
- package/dist/plugins/pages-tiles/models/config.model.js +49 -0
- package/dist/plugins/pages-tiles/models/config.model.js.map +1 -0
- package/dist/plugins/pages-tiles/pages-tiles.constants.d.ts +2 -0
- package/dist/plugins/pages-tiles/pages-tiles.constants.js +6 -0
- package/dist/plugins/pages-tiles/pages-tiles.constants.js.map +1 -0
- package/dist/plugins/pages-tiles/pages-tiles.exceptions.d.ts +9 -0
- package/dist/plugins/pages-tiles/pages-tiles.exceptions.js +25 -0
- package/dist/plugins/pages-tiles/pages-tiles.exceptions.js.map +1 -0
- package/dist/plugins/pages-tiles/pages-tiles.openapi.d.ts +5 -0
- package/dist/plugins/pages-tiles/pages-tiles.openapi.js +16 -0
- package/dist/plugins/pages-tiles/pages-tiles.openapi.js.map +1 -0
- package/dist/plugins/pages-tiles/pages-tiles.plugin.d.ts +22 -0
- package/dist/plugins/pages-tiles/pages-tiles.plugin.js +152 -0
- package/dist/plugins/pages-tiles/pages-tiles.plugin.js.map +1 -0
- package/dist/plugins/pages-tiles/services/page-create-nested-builder.service.d.ts +17 -0
- package/dist/plugins/pages-tiles/services/page-create-nested-builder.service.js +70 -0
- package/dist/plugins/pages-tiles/services/page-create-nested-builder.service.js.map +1 -0
- package/dist/plugins/pages-tiles/services/page-relations-loader.service.d.ts +10 -0
- package/dist/plugins/pages-tiles/services/page-relations-loader.service.js +35 -0
- package/dist/plugins/pages-tiles/services/page-relations-loader.service.js.map +1 -0
- package/dist/plugins/scenes-local/dto/create-local-scene-action.dto.d.ts +8 -0
- package/dist/plugins/scenes-local/dto/create-local-scene-action.dto.js +104 -0
- package/dist/plugins/scenes-local/dto/create-local-scene-action.dto.js.map +1 -0
- package/dist/plugins/scenes-local/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/scenes-local/dto/update-config.dto.js +34 -0
- package/dist/plugins/scenes-local/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/scenes-local/dto/update-local-scene-action.dto.d.ts +8 -0
- package/dist/plugins/scenes-local/dto/update-local-scene-action.dto.js +108 -0
- package/dist/plugins/scenes-local/dto/update-local-scene-action.dto.js.map +1 -0
- package/dist/plugins/scenes-local/entities/scenes-local.entity.d.ts +7 -0
- package/dist/plugins/scenes-local/entities/scenes-local.entity.js +101 -0
- package/dist/plugins/scenes-local/entities/scenes-local.entity.js.map +1 -0
- package/dist/plugins/scenes-local/models/config.model.d.ts +5 -0
- package/dist/plugins/scenes-local/models/config.model.js +49 -0
- package/dist/plugins/scenes-local/models/config.model.js.map +1 -0
- package/dist/plugins/scenes-local/platforms/local-scene.platform.d.ts +32 -0
- package/dist/plugins/scenes-local/platforms/local-scene.platform.js +228 -0
- package/dist/plugins/scenes-local/platforms/local-scene.platform.js.map +1 -0
- package/dist/plugins/scenes-local/scenes-local.constants.d.ts +2 -0
- package/dist/plugins/scenes-local/scenes-local.constants.js +6 -0
- package/dist/plugins/scenes-local/scenes-local.constants.js.map +1 -0
- package/dist/plugins/scenes-local/scenes-local.openapi.d.ts +4 -0
- package/dist/plugins/scenes-local/scenes-local.openapi.js +16 -0
- package/dist/plugins/scenes-local/scenes-local.openapi.js.map +1 -0
- package/dist/plugins/scenes-local/scenes-local.plugin.d.ts +19 -0
- package/dist/plugins/scenes-local/scenes-local.plugin.js +141 -0
- package/dist/plugins/scenes-local/scenes-local.plugin.js.map +1 -0
- package/dist/plugins/simulator/behaviors/air-conditioner.behavior.d.ts +15 -0
- package/dist/plugins/simulator/behaviors/air-conditioner.behavior.js +137 -0
- package/dist/plugins/simulator/behaviors/air-conditioner.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/device-behavior.interface.d.ts +54 -0
- package/dist/plugins/simulator/behaviors/device-behavior.interface.js +90 -0
- package/dist/plugins/simulator/behaviors/device-behavior.interface.js.map +1 -0
- package/dist/plugins/simulator/behaviors/door.behavior.d.ts +9 -0
- package/dist/plugins/simulator/behaviors/door.behavior.js +53 -0
- package/dist/plugins/simulator/behaviors/door.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/humidifier.behavior.d.ts +13 -0
- package/dist/plugins/simulator/behaviors/humidifier.behavior.js +138 -0
- package/dist/plugins/simulator/behaviors/humidifier.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/index.d.ts +12 -0
- package/dist/plugins/simulator/behaviors/index.js +29 -0
- package/dist/plugins/simulator/behaviors/index.js.map +1 -0
- package/dist/plugins/simulator/behaviors/lock.behavior.d.ts +10 -0
- package/dist/plugins/simulator/behaviors/lock.behavior.js +47 -0
- package/dist/plugins/simulator/behaviors/lock.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/projector.behavior.d.ts +10 -0
- package/dist/plugins/simulator/behaviors/projector.behavior.js +37 -0
- package/dist/plugins/simulator/behaviors/projector.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/speaker.behavior.d.ts +9 -0
- package/dist/plugins/simulator/behaviors/speaker.behavior.js +32 -0
- package/dist/plugins/simulator/behaviors/speaker.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/television.behavior.d.ts +10 -0
- package/dist/plugins/simulator/behaviors/television.behavior.js +37 -0
- package/dist/plugins/simulator/behaviors/television.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/thermostat.behavior.d.ts +13 -0
- package/dist/plugins/simulator/behaviors/thermostat.behavior.js +161 -0
- package/dist/plugins/simulator/behaviors/thermostat.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/valve.behavior.d.ts +10 -0
- package/dist/plugins/simulator/behaviors/valve.behavior.js +70 -0
- package/dist/plugins/simulator/behaviors/valve.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/water-heater.behavior.d.ts +14 -0
- package/dist/plugins/simulator/behaviors/water-heater.behavior.js +138 -0
- package/dist/plugins/simulator/behaviors/water-heater.behavior.js.map +1 -0
- package/dist/plugins/simulator/behaviors/window-covering.behavior.d.ts +11 -0
- package/dist/plugins/simulator/behaviors/window-covering.behavior.js +90 -0
- package/dist/plugins/simulator/behaviors/window-covering.behavior.js.map +1 -0
- package/dist/plugins/simulator/commands/generate-device.command.d.ts +31 -0
- package/dist/plugins/simulator/commands/generate-device.command.js +241 -0
- package/dist/plugins/simulator/commands/generate-device.command.js.map +1 -0
- package/dist/plugins/simulator/commands/populate-values.command.d.ts +26 -0
- package/dist/plugins/simulator/commands/populate-values.command.js +208 -0
- package/dist/plugins/simulator/commands/populate-values.command.js.map +1 -0
- package/dist/plugins/simulator/commands/scenario.command.d.ts +35 -0
- package/dist/plugins/simulator/commands/scenario.command.js +391 -0
- package/dist/plugins/simulator/commands/scenario.command.js.map +1 -0
- package/dist/plugins/simulator/commands/set-connection-state.command.d.ts +24 -0
- package/dist/plugins/simulator/commands/set-connection-state.command.js +216 -0
- package/dist/plugins/simulator/commands/set-connection-state.command.js.map +1 -0
- package/dist/plugins/simulator/commands/simulate.command.d.ts +38 -0
- package/dist/plugins/simulator/commands/simulate.command.js +361 -0
- package/dist/plugins/simulator/commands/simulate.command.js.map +1 -0
- package/dist/plugins/simulator/controllers/simulator.controller.d.ts +27 -0
- package/dist/plugins/simulator/controllers/simulator.controller.js +295 -0
- package/dist/plugins/simulator/controllers/simulator.controller.js.map +1 -0
- package/dist/plugins/simulator/dto/create-channel-property.dto.d.ts +5 -0
- package/dist/plugins/simulator/dto/create-channel-property.dto.js +35 -0
- package/dist/plugins/simulator/dto/create-channel-property.dto.js.map +1 -0
- package/dist/plugins/simulator/dto/create-channel.dto.d.ts +5 -0
- package/dist/plugins/simulator/dto/create-channel.dto.js +35 -0
- package/dist/plugins/simulator/dto/create-channel.dto.js.map +1 -0
- package/dist/plugins/simulator/dto/create-device.dto.d.ts +8 -0
- package/dist/plugins/simulator/dto/create-device.dto.js +84 -0
- package/dist/plugins/simulator/dto/create-device.dto.js.map +1 -0
- package/dist/plugins/simulator/dto/generate-device.dto.d.ts +15 -0
- package/dist/plugins/simulator/dto/generate-device.dto.js +162 -0
- package/dist/plugins/simulator/dto/generate-device.dto.js.map +1 -0
- package/dist/plugins/simulator/dto/simulate-value.dto.d.ts +7 -0
- package/dist/plugins/simulator/dto/simulate-value.dto.js +58 -0
- package/dist/plugins/simulator/dto/simulate-value.dto.js.map +1 -0
- package/dist/plugins/simulator/dto/update-channel-property.dto.d.ts +5 -0
- package/dist/plugins/simulator/dto/update-channel-property.dto.js +35 -0
- package/dist/plugins/simulator/dto/update-channel-property.dto.js.map +1 -0
- package/dist/plugins/simulator/dto/update-channel.dto.d.ts +5 -0
- package/dist/plugins/simulator/dto/update-channel.dto.js +35 -0
- package/dist/plugins/simulator/dto/update-channel.dto.js.map +1 -0
- package/dist/plugins/simulator/dto/update-config.dto.d.ts +11 -0
- package/dist/plugins/simulator/dto/update-config.dto.js +104 -0
- package/dist/plugins/simulator/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/simulator/dto/update-device.dto.d.ts +8 -0
- package/dist/plugins/simulator/dto/update-device.dto.js +81 -0
- package/dist/plugins/simulator/dto/update-device.dto.js.map +1 -0
- package/dist/plugins/simulator/entities/simulator.entity.d.ts +13 -0
- package/dist/plugins/simulator/entities/simulator.entity.js +119 -0
- package/dist/plugins/simulator/entities/simulator.entity.js.map +1 -0
- package/dist/plugins/simulator/models/config.model.d.ts +11 -0
- package/dist/plugins/simulator/models/config.model.js +118 -0
- package/dist/plugins/simulator/models/config.model.js.map +1 -0
- package/dist/plugins/simulator/models/simulator-response.model.d.ts +29 -0
- package/dist/plugins/simulator/models/simulator-response.model.js +171 -0
- package/dist/plugins/simulator/models/simulator-response.model.js.map +1 -0
- package/dist/plugins/simulator/platforms/simulator-device.platform.d.ts +16 -0
- package/dist/plugins/simulator/platforms/simulator-device.platform.js +85 -0
- package/dist/plugins/simulator/platforms/simulator-device.platform.js.map +1 -0
- package/dist/plugins/simulator/scenarios/definitions/large-house.yaml +2293 -0
- package/dist/plugins/simulator/scenarios/definitions/luxury-apartment.yaml +1171 -0
- package/dist/plugins/simulator/scenarios/definitions/office.yaml +278 -0
- package/dist/plugins/simulator/scenarios/definitions/penthouse.yaml +608 -0
- package/dist/plugins/simulator/scenarios/definitions/small-apartment.yaml +231 -0
- package/dist/plugins/simulator/scenarios/definitions/small-house.yaml +454 -0
- package/dist/plugins/simulator/scenarios/definitions/smart-house-max-plus.yaml +2291 -0
- package/dist/plugins/simulator/scenarios/definitions/smart-house-max.yaml +2601 -0
- package/dist/plugins/simulator/scenarios/definitions/smart-house-stress.yaml +8616 -0
- package/dist/plugins/simulator/scenarios/definitions/smart-house.yaml +1795 -0
- package/dist/plugins/simulator/scenarios/scenario.types.d.ts +85 -0
- package/dist/plugins/simulator/scenarios/scenario.types.js +3 -0
- package/dist/plugins/simulator/scenarios/scenario.types.js.map +1 -0
- package/dist/plugins/simulator/scenarios/schema/scenario-schema.json +293 -0
- package/dist/plugins/simulator/services/device-behavior-manager.service.d.ts +43 -0
- package/dist/plugins/simulator/services/device-behavior-manager.service.js +254 -0
- package/dist/plugins/simulator/services/device-behavior-manager.service.js.map +1 -0
- package/dist/plugins/simulator/services/device-generator.service.d.ts +30 -0
- package/dist/plugins/simulator/services/device-generator.service.js +261 -0
- package/dist/plugins/simulator/services/device-generator.service.js.map +1 -0
- package/dist/plugins/simulator/services/scenario-executor.service.d.ts +55 -0
- package/dist/plugins/simulator/services/scenario-executor.service.js +568 -0
- package/dist/plugins/simulator/services/scenario-executor.service.js.map +1 -0
- package/dist/plugins/simulator/services/scenario-loader.service.d.ts +34 -0
- package/dist/plugins/simulator/services/scenario-loader.service.js +295 -0
- package/dist/plugins/simulator/services/scenario-loader.service.js.map +1 -0
- package/dist/plugins/simulator/services/simulation.service.d.ts +65 -0
- package/dist/plugins/simulator/services/simulation.service.js +432 -0
- package/dist/plugins/simulator/services/simulation.service.js.map +1 -0
- package/dist/plugins/simulator/services/simulator-actions.service.d.ts +27 -0
- package/dist/plugins/simulator/services/simulator-actions.service.js +331 -0
- package/dist/plugins/simulator/services/simulator-actions.service.js.map +1 -0
- package/dist/plugins/simulator/simulator.constants.d.ts +5 -0
- package/dist/plugins/simulator/simulator.constants.js +9 -0
- package/dist/plugins/simulator/simulator.constants.js.map +1 -0
- package/dist/plugins/simulator/simulator.openapi.d.ts +10 -0
- package/dist/plugins/simulator/simulator.openapi.js +36 -0
- package/dist/plugins/simulator/simulator.openapi.js.map +1 -0
- package/dist/plugins/simulator/simulator.plugin.d.ts +28 -0
- package/dist/plugins/simulator/simulator.plugin.js +315 -0
- package/dist/plugins/simulator/simulator.plugin.js.map +1 -0
- package/dist/plugins/simulator/simulators/air-conditioner.simulator.d.ts +16 -0
- package/dist/plugins/simulator/simulators/air-conditioner.simulator.js +206 -0
- package/dist/plugins/simulator/simulators/air-conditioner.simulator.js.map +1 -0
- package/dist/plugins/simulator/simulators/device-simulator.interface.d.ts +25 -0
- package/dist/plugins/simulator/simulators/device-simulator.interface.js +39 -0
- package/dist/plugins/simulator/simulators/device-simulator.interface.js.map +1 -0
- package/dist/plugins/simulator/simulators/fan.simulator.d.ts +10 -0
- package/dist/plugins/simulator/simulators/fan.simulator.js +75 -0
- package/dist/plugins/simulator/simulators/fan.simulator.js.map +1 -0
- package/dist/plugins/simulator/simulators/heating-unit.simulator.d.ts +14 -0
- package/dist/plugins/simulator/simulators/heating-unit.simulator.js +135 -0
- package/dist/plugins/simulator/simulators/heating-unit.simulator.js.map +1 -0
- package/dist/plugins/simulator/simulators/index.d.ts +11 -0
- package/dist/plugins/simulator/simulators/index.js +28 -0
- package/dist/plugins/simulator/simulators/index.js.map +1 -0
- package/dist/plugins/simulator/simulators/lighting.simulator.d.ts +14 -0
- package/dist/plugins/simulator/simulators/lighting.simulator.js +190 -0
- package/dist/plugins/simulator/simulators/lighting.simulator.js.map +1 -0
- package/dist/plugins/simulator/simulators/lock.simulator.d.ts +11 -0
- package/dist/plugins/simulator/simulators/lock.simulator.js +78 -0
- package/dist/plugins/simulator/simulators/lock.simulator.js.map +1 -0
- package/dist/plugins/simulator/simulators/outlet.simulator.d.ts +13 -0
- package/dist/plugins/simulator/simulators/outlet.simulator.js +126 -0
- package/dist/plugins/simulator/simulators/outlet.simulator.js.map +1 -0
- package/dist/plugins/simulator/simulators/sensor.simulator.d.ts +22 -0
- package/dist/plugins/simulator/simulators/sensor.simulator.js +271 -0
- package/dist/plugins/simulator/simulators/sensor.simulator.js.map +1 -0
- package/dist/plugins/simulator/simulators/simulation-context.d.ts +15 -0
- package/dist/plugins/simulator/simulators/simulation-context.js +86 -0
- package/dist/plugins/simulator/simulators/simulation-context.js.map +1 -0
- package/dist/plugins/simulator/simulators/thermostat.simulator.d.ts +16 -0
- package/dist/plugins/simulator/simulators/thermostat.simulator.js +177 -0
- package/dist/plugins/simulator/simulators/thermostat.simulator.js.map +1 -0
- package/dist/plugins/simulator/simulators/window-covering.simulator.d.ts +11 -0
- package/dist/plugins/simulator/simulators/window-covering.simulator.js +86 -0
- package/dist/plugins/simulator/simulators/window-covering.simulator.js.map +1 -0
- package/dist/plugins/tiles-device-preview/dto/create-tile.dto.d.ts +10 -0
- package/dist/plugins/tiles-device-preview/dto/create-tile.dto.js +76 -0
- package/dist/plugins/tiles-device-preview/dto/create-tile.dto.js.map +1 -0
- package/dist/plugins/tiles-device-preview/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/tiles-device-preview/dto/update-config.dto.js +34 -0
- package/dist/plugins/tiles-device-preview/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/tiles-device-preview/dto/update-tile.dto.d.ts +10 -0
- package/dist/plugins/tiles-device-preview/dto/update-tile.dto.js +78 -0
- package/dist/plugins/tiles-device-preview/dto/update-tile.dto.js.map +1 -0
- package/dist/plugins/tiles-device-preview/entities/tiles-device-preview.entity.d.ts +8 -0
- package/dist/plugins/tiles-device-preview/entities/tiles-device-preview.entity.js +80 -0
- package/dist/plugins/tiles-device-preview/entities/tiles-device-preview.entity.js.map +1 -0
- package/dist/plugins/tiles-device-preview/models/config.model.d.ts +5 -0
- package/dist/plugins/tiles-device-preview/models/config.model.js +49 -0
- package/dist/plugins/tiles-device-preview/models/config.model.js.map +1 -0
- package/dist/plugins/tiles-device-preview/services/tile-relations-loader.service.d.ts +10 -0
- package/dist/plugins/tiles-device-preview/services/tile-relations-loader.service.js +35 -0
- package/dist/plugins/tiles-device-preview/services/tile-relations-loader.service.js.map +1 -0
- package/dist/plugins/tiles-device-preview/tiles-device-preview.constants.d.ts +2 -0
- package/dist/plugins/tiles-device-preview/tiles-device-preview.constants.js +6 -0
- package/dist/plugins/tiles-device-preview/tiles-device-preview.constants.js.map +1 -0
- package/dist/plugins/tiles-device-preview/tiles-device-preview.openapi.d.ts +5 -0
- package/dist/plugins/tiles-device-preview/tiles-device-preview.openapi.js +18 -0
- package/dist/plugins/tiles-device-preview/tiles-device-preview.openapi.js.map +1 -0
- package/dist/plugins/tiles-device-preview/tiles-device-preview.plugin.d.ts +18 -0
- package/dist/plugins/tiles-device-preview/tiles-device-preview.plugin.js +143 -0
- package/dist/plugins/tiles-device-preview/tiles-device-preview.plugin.js.map +1 -0
- package/dist/plugins/tiles-scene/dto/create-tile.dto.d.ts +10 -0
- package/dist/plugins/tiles-scene/dto/create-tile.dto.js +76 -0
- package/dist/plugins/tiles-scene/dto/create-tile.dto.js.map +1 -0
- package/dist/plugins/tiles-scene/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/tiles-scene/dto/update-config.dto.js +34 -0
- package/dist/plugins/tiles-scene/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/tiles-scene/dto/update-tile.dto.d.ts +10 -0
- package/dist/plugins/tiles-scene/dto/update-tile.dto.js +78 -0
- package/dist/plugins/tiles-scene/dto/update-tile.dto.js.map +1 -0
- package/dist/plugins/tiles-scene/entities/tiles-scene.entity.d.ts +8 -0
- package/dist/plugins/tiles-scene/entities/tiles-scene.entity.js +80 -0
- package/dist/plugins/tiles-scene/entities/tiles-scene.entity.js.map +1 -0
- package/dist/plugins/tiles-scene/index.d.ts +2 -0
- package/dist/plugins/tiles-scene/index.js +19 -0
- package/dist/plugins/tiles-scene/index.js.map +1 -0
- package/dist/plugins/tiles-scene/models/config.model.d.ts +5 -0
- package/dist/plugins/tiles-scene/models/config.model.js +49 -0
- package/dist/plugins/tiles-scene/models/config.model.js.map +1 -0
- package/dist/plugins/tiles-scene/services/tile-relations-loader.service.d.ts +10 -0
- package/dist/plugins/tiles-scene/services/tile-relations-loader.service.js +35 -0
- package/dist/plugins/tiles-scene/services/tile-relations-loader.service.js.map +1 -0
- package/dist/plugins/tiles-scene/tiles-scene.constants.d.ts +2 -0
- package/dist/plugins/tiles-scene/tiles-scene.constants.js +6 -0
- package/dist/plugins/tiles-scene/tiles-scene.constants.js.map +1 -0
- package/dist/plugins/tiles-scene/tiles-scene.openapi.d.ts +5 -0
- package/dist/plugins/tiles-scene/tiles-scene.openapi.js +18 -0
- package/dist/plugins/tiles-scene/tiles-scene.openapi.js.map +1 -0
- package/dist/plugins/tiles-scene/tiles-scene.plugin.d.ts +18 -0
- package/dist/plugins/tiles-scene/tiles-scene.plugin.js +143 -0
- package/dist/plugins/tiles-scene/tiles-scene.plugin.js.map +1 -0
- package/dist/plugins/tiles-time/dto/create-tile.dto.d.ts +8 -0
- package/dist/plugins/tiles-time/dto/create-tile.dto.js +49 -0
- package/dist/plugins/tiles-time/dto/create-tile.dto.js.map +1 -0
- package/dist/plugins/tiles-time/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/tiles-time/dto/update-config.dto.js +34 -0
- package/dist/plugins/tiles-time/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/tiles-time/dto/update-tile.dto.d.ts +8 -0
- package/dist/plugins/tiles-time/dto/update-tile.dto.js +49 -0
- package/dist/plugins/tiles-time/dto/update-tile.dto.js.map +1 -0
- package/dist/plugins/tiles-time/entities/tiles-time.entity.d.ts +4 -0
- package/dist/plugins/tiles-time/entities/tiles-time.entity.js +39 -0
- package/dist/plugins/tiles-time/entities/tiles-time.entity.js.map +1 -0
- package/dist/plugins/tiles-time/models/config.model.d.ts +5 -0
- package/dist/plugins/tiles-time/models/config.model.js +49 -0
- package/dist/plugins/tiles-time/models/config.model.js.map +1 -0
- package/dist/plugins/tiles-time/tiles-time.constants.d.ts +3 -0
- package/dist/plugins/tiles-time/tiles-time.constants.js +7 -0
- package/dist/plugins/tiles-time/tiles-time.constants.js.map +1 -0
- package/dist/plugins/tiles-time/tiles-time.openapi.d.ts +5 -0
- package/dist/plugins/tiles-time/tiles-time.openapi.js +18 -0
- package/dist/plugins/tiles-time/tiles-time.openapi.js.map +1 -0
- package/dist/plugins/tiles-time/tiles-time.plugin.d.ts +14 -0
- package/dist/plugins/tiles-time/tiles-time.plugin.js +124 -0
- package/dist/plugins/tiles-time/tiles-time.plugin.js.map +1 -0
- package/dist/plugins/tiles-weather/dto/create-tile.dto.d.ts +16 -0
- package/dist/plugins/tiles-weather/dto/create-tile.dto.js +108 -0
- package/dist/plugins/tiles-weather/dto/create-tile.dto.js.map +1 -0
- package/dist/plugins/tiles-weather/dto/update-config.dto.d.ts +5 -0
- package/dist/plugins/tiles-weather/dto/update-config.dto.js +34 -0
- package/dist/plugins/tiles-weather/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/tiles-weather/dto/update-tile.dto.d.ts +16 -0
- package/dist/plugins/tiles-weather/dto/update-tile.dto.js +108 -0
- package/dist/plugins/tiles-weather/dto/update-tile.dto.js.map +1 -0
- package/dist/plugins/tiles-weather/entities/tiles-weather.entity.d.ts +9 -0
- package/dist/plugins/tiles-weather/entities/tiles-weather.entity.js +95 -0
- package/dist/plugins/tiles-weather/entities/tiles-weather.entity.js.map +1 -0
- package/dist/plugins/tiles-weather/models/config.model.d.ts +5 -0
- package/dist/plugins/tiles-weather/models/config.model.js +49 -0
- package/dist/plugins/tiles-weather/models/config.model.js.map +1 -0
- package/dist/plugins/tiles-weather/tiles-weather.constants.d.ts +3 -0
- package/dist/plugins/tiles-weather/tiles-weather.constants.js +7 -0
- package/dist/plugins/tiles-weather/tiles-weather.constants.js.map +1 -0
- package/dist/plugins/tiles-weather/tiles-weather.openapi.d.ts +5 -0
- package/dist/plugins/tiles-weather/tiles-weather.openapi.js +23 -0
- package/dist/plugins/tiles-weather/tiles-weather.openapi.js.map +1 -0
- package/dist/plugins/tiles-weather/tiles-weather.plugin.d.ts +14 -0
- package/dist/plugins/tiles-weather/tiles-weather.plugin.js +157 -0
- package/dist/plugins/tiles-weather/tiles-weather.plugin.js.map +1 -0
- package/dist/plugins/weather-open-meteo/controllers/geolocation.controller.d.ts +7 -0
- package/dist/plugins/weather-open-meteo/controllers/geolocation.controller.js +59 -0
- package/dist/plugins/weather-open-meteo/controllers/geolocation.controller.js.map +1 -0
- package/dist/plugins/weather-open-meteo/dto/create-location.dto.d.ts +8 -0
- package/dist/plugins/weather-open-meteo/dto/create-location.dto.js +77 -0
- package/dist/plugins/weather-open-meteo/dto/create-location.dto.js.map +1 -0
- package/dist/plugins/weather-open-meteo/dto/open-meteo-response.dto.d.ts +55 -0
- package/dist/plugins/weather-open-meteo/dto/open-meteo-response.dto.js +306 -0
- package/dist/plugins/weather-open-meteo/dto/open-meteo-response.dto.js.map +1 -0
- package/dist/plugins/weather-open-meteo/dto/update-config.dto.d.ts +8 -0
- package/dist/plugins/weather-open-meteo/dto/update-config.dto.js +59 -0
- package/dist/plugins/weather-open-meteo/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/weather-open-meteo/dto/update-location.dto.d.ts +6 -0
- package/dist/plugins/weather-open-meteo/dto/update-location.dto.js +67 -0
- package/dist/plugins/weather-open-meteo/dto/update-location.dto.js.map +1 -0
- package/dist/plugins/weather-open-meteo/entities/locations-open-meteo.entity.d.ts +7 -0
- package/dist/plugins/weather-open-meteo/entities/locations-open-meteo.entity.js +80 -0
- package/dist/plugins/weather-open-meteo/entities/locations-open-meteo.entity.js.map +1 -0
- package/dist/plugins/weather-open-meteo/models/config.model.d.ts +7 -0
- package/dist/plugins/weather-open-meteo/models/config.model.js +59 -0
- package/dist/plugins/weather-open-meteo/models/config.model.js.map +1 -0
- package/dist/plugins/weather-open-meteo/models/geolocation.model.d.ts +12 -0
- package/dist/plugins/weather-open-meteo/models/geolocation.model.js +91 -0
- package/dist/plugins/weather-open-meteo/models/geolocation.model.js.map +1 -0
- package/dist/plugins/weather-open-meteo/platforms/open-meteo.provider.d.ts +24 -0
- package/dist/plugins/weather-open-meteo/platforms/open-meteo.provider.js +126 -0
- package/dist/plugins/weather-open-meteo/platforms/open-meteo.provider.js.map +1 -0
- package/dist/plugins/weather-open-meteo/services/open-meteo-geolocation.service.d.ts +7 -0
- package/dist/plugins/weather-open-meteo/services/open-meteo-geolocation.service.js +49 -0
- package/dist/plugins/weather-open-meteo/services/open-meteo-geolocation.service.js.map +1 -0
- package/dist/plugins/weather-open-meteo/services/open-meteo-http.service.d.ts +23 -0
- package/dist/plugins/weather-open-meteo/services/open-meteo-http.service.js +409 -0
- package/dist/plugins/weather-open-meteo/services/open-meteo-http.service.js.map +1 -0
- package/dist/plugins/weather-open-meteo/weather-open-meteo.constants.d.ts +5 -0
- package/dist/plugins/weather-open-meteo/weather-open-meteo.constants.js +9 -0
- package/dist/plugins/weather-open-meteo/weather-open-meteo.constants.js.map +1 -0
- package/dist/plugins/weather-open-meteo/weather-open-meteo.openapi.d.ts +7 -0
- package/dist/plugins/weather-open-meteo/weather-open-meteo.openapi.js +19 -0
- package/dist/plugins/weather-open-meteo/weather-open-meteo.openapi.js.map +1 -0
- package/dist/plugins/weather-open-meteo/weather-open-meteo.plugin.d.ts +19 -0
- package/dist/plugins/weather-open-meteo/weather-open-meteo.plugin.js +155 -0
- package/dist/plugins/weather-open-meteo/weather-open-meteo.plugin.js.map +1 -0
- package/dist/plugins/weather-openweathermap/dto/create-location.dto.d.ts +12 -0
- package/dist/plugins/weather-openweathermap/dto/create-location.dto.js +146 -0
- package/dist/plugins/weather-openweathermap/dto/create-location.dto.js.map +1 -0
- package/dist/plugins/weather-openweathermap/dto/forecast-response.dto.d.ts +68 -0
- package/dist/plugins/weather-openweathermap/dto/forecast-response.dto.js +294 -0
- package/dist/plugins/weather-openweathermap/dto/forecast-response.dto.js.map +1 -0
- package/dist/plugins/weather-openweathermap/dto/update-config.dto.d.ts +9 -0
- package/dist/plugins/weather-openweathermap/dto/update-config.dto.js +75 -0
- package/dist/plugins/weather-openweathermap/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/weather-openweathermap/dto/update-location.dto.d.ts +11 -0
- package/dist/plugins/weather-openweathermap/dto/update-location.dto.js +135 -0
- package/dist/plugins/weather-openweathermap/dto/update-location.dto.js.map +1 -0
- package/dist/plugins/weather-openweathermap/dto/weather-response.dto.d.ts +59 -0
- package/dist/plugins/weather-openweathermap/dto/weather-response.dto.js +248 -0
- package/dist/plugins/weather-openweathermap/dto/weather-response.dto.js.map +1 -0
- package/dist/plugins/weather-openweathermap/entities/locations-openweathermap.entity.d.ts +12 -0
- package/dist/plugins/weather-openweathermap/entities/locations-openweathermap.entity.js +143 -0
- package/dist/plugins/weather-openweathermap/entities/locations-openweathermap.entity.js.map +1 -0
- package/dist/plugins/weather-openweathermap/models/config.model.d.ts +8 -0
- package/dist/plugins/weather-openweathermap/models/config.model.js +76 -0
- package/dist/plugins/weather-openweathermap/models/config.model.js.map +1 -0
- package/dist/plugins/weather-openweathermap/platforms/openweathermap.provider.d.ts +16 -0
- package/dist/plugins/weather-openweathermap/platforms/openweathermap.provider.js +70 -0
- package/dist/plugins/weather-openweathermap/platforms/openweathermap.provider.js.map +1 -0
- package/dist/plugins/weather-openweathermap/services/openweathermap-config-validator.service.d.ts +10 -0
- package/dist/plugins/weather-openweathermap/services/openweathermap-config-validator.service.js +37 -0
- package/dist/plugins/weather-openweathermap/services/openweathermap-config-validator.service.js.map +1 -0
- package/dist/plugins/weather-openweathermap/services/openweathermap-http.service.d.ts +21 -0
- package/dist/plugins/weather-openweathermap/services/openweathermap-http.service.js +271 -0
- package/dist/plugins/weather-openweathermap/services/openweathermap-http.service.js.map +1 -0
- package/dist/plugins/weather-openweathermap/weather-openweathermap.constants.d.ts +11 -0
- package/dist/plugins/weather-openweathermap/weather-openweathermap.constants.js +16 -0
- package/dist/plugins/weather-openweathermap/weather-openweathermap.constants.js.map +1 -0
- package/dist/plugins/weather-openweathermap/weather-openweathermap.openapi.d.ts +6 -0
- package/dist/plugins/weather-openweathermap/weather-openweathermap.openapi.js +16 -0
- package/dist/plugins/weather-openweathermap/weather-openweathermap.openapi.js.map +1 -0
- package/dist/plugins/weather-openweathermap/weather-openweathermap.plugin.d.ts +19 -0
- package/dist/plugins/weather-openweathermap/weather-openweathermap.plugin.js +157 -0
- package/dist/plugins/weather-openweathermap/weather-openweathermap.plugin.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/controllers/geolocation.controller.d.ts +10 -0
- package/dist/plugins/weather-openweathermap-onecall/controllers/geolocation.controller.js +124 -0
- package/dist/plugins/weather-openweathermap-onecall/controllers/geolocation.controller.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/create-location.dto.d.ts +8 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/create-location.dto.js +77 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/create-location.dto.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/onecall-response.dto.d.ts +93 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/onecall-response.dto.js +434 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/onecall-response.dto.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/update-config.dto.d.ts +9 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/update-config.dto.js +75 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/update-config.dto.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/update-location.dto.d.ts +6 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/update-location.dto.js +67 -0
- package/dist/plugins/weather-openweathermap-onecall/dto/update-location.dto.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/entities/locations-openweathermap-onecall.entity.d.ts +7 -0
- package/dist/plugins/weather-openweathermap-onecall/entities/locations-openweathermap-onecall.entity.js +80 -0
- package/dist/plugins/weather-openweathermap-onecall/entities/locations-openweathermap-onecall.entity.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/models/config.model.d.ts +8 -0
- package/dist/plugins/weather-openweathermap-onecall/models/config.model.js +76 -0
- package/dist/plugins/weather-openweathermap-onecall/models/config.model.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/models/geolocation.model.d.ts +25 -0
- package/dist/plugins/weather-openweathermap-onecall/models/geolocation.model.js +171 -0
- package/dist/plugins/weather-openweathermap-onecall/models/geolocation.model.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/platforms/openweathermap-onecall.provider.d.ts +24 -0
- package/dist/plugins/weather-openweathermap-onecall/platforms/openweathermap-onecall.provider.js +118 -0
- package/dist/plugins/weather-openweathermap-onecall/platforms/openweathermap-onecall.provider.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/services/openweathermap-onecall-config-validator.service.d.ts +10 -0
- package/dist/plugins/weather-openweathermap-onecall/services/openweathermap-onecall-config-validator.service.js +37 -0
- package/dist/plugins/weather-openweathermap-onecall/services/openweathermap-onecall-config-validator.service.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/services/openweathermap-onecall-geolocation.service.d.ts +13 -0
- package/dist/plugins/weather-openweathermap-onecall/services/openweathermap-onecall-geolocation.service.js +132 -0
- package/dist/plugins/weather-openweathermap-onecall/services/openweathermap-onecall-geolocation.service.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/services/openweathermap-onecall-http.service.d.ts +24 -0
- package/dist/plugins/weather-openweathermap-onecall/services/openweathermap-onecall-http.service.js +207 -0
- package/dist/plugins/weather-openweathermap-onecall/services/openweathermap-onecall-http.service.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/weather-openweathermap-onecall.constants.d.ts +5 -0
- package/dist/plugins/weather-openweathermap-onecall/weather-openweathermap-onecall.constants.js +9 -0
- package/dist/plugins/weather-openweathermap-onecall/weather-openweathermap-onecall.constants.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/weather-openweathermap-onecall.openapi.d.ts +7 -0
- package/dist/plugins/weather-openweathermap-onecall/weather-openweathermap-onecall.openapi.js +22 -0
- package/dist/plugins/weather-openweathermap-onecall/weather-openweathermap-onecall.openapi.js.map +1 -0
- package/dist/plugins/weather-openweathermap-onecall/weather-openweathermap-onecall.plugin.d.ts +19 -0
- package/dist/plugins/weather-openweathermap-onecall/weather-openweathermap-onecall.plugin.js +164 -0
- package/dist/plugins/weather-openweathermap-onecall/weather-openweathermap-onecall.plugin.js.map +1 -0
- package/dist/spec/channels.d.ts +2732 -0
- package/dist/spec/channels.js +4101 -0
- package/dist/spec/channels.js.map +1 -0
- package/dist/spec/devices.d.ts +1293 -0
- package/dist/spec/devices.js +1309 -0
- package/dist/spec/devices.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +179 -0
- package/static/index.html +50 -0
|
@@ -0,0 +1,2293 @@
|
|
|
1
|
+
version: "1.0"
|
|
2
|
+
name: "Large Smart House"
|
|
3
|
+
description: "Two-story smart home with comprehensive automation across all floors including multiple climate zones, advanced lighting, security, and entertainment systems"
|
|
4
|
+
|
|
5
|
+
rooms:
|
|
6
|
+
# Floor 1
|
|
7
|
+
- id: foyer
|
|
8
|
+
name: "Foyer"
|
|
9
|
+
category: entryway
|
|
10
|
+
- id: living-room
|
|
11
|
+
name: "Living Room"
|
|
12
|
+
category: living_room
|
|
13
|
+
- id: family-room
|
|
14
|
+
name: "Family Room"
|
|
15
|
+
category: living_room
|
|
16
|
+
- id: kitchen
|
|
17
|
+
name: "Kitchen"
|
|
18
|
+
category: kitchen
|
|
19
|
+
- id: dining-room
|
|
20
|
+
name: "Dining Room"
|
|
21
|
+
category: dining_room
|
|
22
|
+
- id: office
|
|
23
|
+
name: "Home Office"
|
|
24
|
+
category: office
|
|
25
|
+
- id: powder-room
|
|
26
|
+
name: "Powder Room"
|
|
27
|
+
category: bathroom
|
|
28
|
+
- id: mudroom
|
|
29
|
+
name: "Mudroom"
|
|
30
|
+
category: entryway
|
|
31
|
+
- id: laundry
|
|
32
|
+
name: "Laundry Room"
|
|
33
|
+
category: laundry
|
|
34
|
+
- id: garage
|
|
35
|
+
name: "Garage"
|
|
36
|
+
category: garage
|
|
37
|
+
# Floor 2
|
|
38
|
+
- id: upper-hallway
|
|
39
|
+
name: "Upper Hallway"
|
|
40
|
+
category: hallway
|
|
41
|
+
- id: master-suite
|
|
42
|
+
name: "Master Suite"
|
|
43
|
+
category: bedroom
|
|
44
|
+
- id: master-bathroom
|
|
45
|
+
name: "Master Bathroom"
|
|
46
|
+
category: bathroom
|
|
47
|
+
- id: master-closet
|
|
48
|
+
name: "Master Closet"
|
|
49
|
+
category: closet
|
|
50
|
+
- id: bedroom-2
|
|
51
|
+
name: "Bedroom 2"
|
|
52
|
+
category: bedroom
|
|
53
|
+
- id: bedroom-3
|
|
54
|
+
name: "Bedroom 3"
|
|
55
|
+
category: bedroom
|
|
56
|
+
- id: bedroom-4
|
|
57
|
+
name: "Bedroom 4"
|
|
58
|
+
category: bedroom
|
|
59
|
+
- id: bathroom-2
|
|
60
|
+
name: "Bathroom 2"
|
|
61
|
+
category: bathroom
|
|
62
|
+
- id: bathroom-3
|
|
63
|
+
name: "Bathroom 3"
|
|
64
|
+
category: bathroom
|
|
65
|
+
- id: bonus-room
|
|
66
|
+
name: "Bonus Room"
|
|
67
|
+
category: media_room
|
|
68
|
+
# Outdoor
|
|
69
|
+
- id: front-porch
|
|
70
|
+
name: "Front Porch"
|
|
71
|
+
type: zone
|
|
72
|
+
category: outdoor_walkway
|
|
73
|
+
- id: back-patio
|
|
74
|
+
name: "Back Patio"
|
|
75
|
+
type: zone
|
|
76
|
+
category: outdoor_terrace
|
|
77
|
+
- id: pool-area
|
|
78
|
+
name: "Pool Area"
|
|
79
|
+
type: zone
|
|
80
|
+
category: outdoor_garden
|
|
81
|
+
- id: backyard
|
|
82
|
+
name: "Backyard"
|
|
83
|
+
type: zone
|
|
84
|
+
category: outdoor_backyard
|
|
85
|
+
|
|
86
|
+
devices:
|
|
87
|
+
# ============================================================================
|
|
88
|
+
# FLOOR 1 - FOYER
|
|
89
|
+
# ============================================================================
|
|
90
|
+
- id: "10000001-0001-4000-8000-000000000002"
|
|
91
|
+
name: "Foyer Chandelier"
|
|
92
|
+
category: lighting
|
|
93
|
+
room: foyer
|
|
94
|
+
lighting_role: main
|
|
95
|
+
auto_simulate: true
|
|
96
|
+
channels:
|
|
97
|
+
- category: light
|
|
98
|
+
properties:
|
|
99
|
+
- id: "10000001-0001-4000-8000-000000000020"
|
|
100
|
+
category: on
|
|
101
|
+
value: true
|
|
102
|
+
- category: brightness
|
|
103
|
+
value: 80
|
|
104
|
+
- category: color_temperature
|
|
105
|
+
value: 3000
|
|
106
|
+
- category: device_information
|
|
107
|
+
properties:
|
|
108
|
+
- category: manufacturer
|
|
109
|
+
value: "FastyBird"
|
|
110
|
+
|
|
111
|
+
- name: "Foyer Accent Sconces"
|
|
112
|
+
category: lighting
|
|
113
|
+
room: foyer
|
|
114
|
+
lighting_role: accent
|
|
115
|
+
channels:
|
|
116
|
+
- category: light
|
|
117
|
+
properties:
|
|
118
|
+
- category: on
|
|
119
|
+
value: false
|
|
120
|
+
- category: brightness
|
|
121
|
+
value: 40
|
|
122
|
+
- category: device_information
|
|
123
|
+
properties:
|
|
124
|
+
- category: manufacturer
|
|
125
|
+
value: "FastyBird"
|
|
126
|
+
|
|
127
|
+
- id: "10000001-0001-4000-8000-000000000003"
|
|
128
|
+
name: "Front Door Lock"
|
|
129
|
+
category: lock
|
|
130
|
+
room: foyer
|
|
131
|
+
behavior_mode: realistic
|
|
132
|
+
channels:
|
|
133
|
+
- category: lock
|
|
134
|
+
properties:
|
|
135
|
+
- id: "10000001-0001-4000-8000-000000000030"
|
|
136
|
+
category: status
|
|
137
|
+
value: "locked"
|
|
138
|
+
- category: device_information
|
|
139
|
+
properties:
|
|
140
|
+
- category: manufacturer
|
|
141
|
+
value: "FastyBird"
|
|
142
|
+
|
|
143
|
+
- name: "Front Door Sensor"
|
|
144
|
+
category: sensor
|
|
145
|
+
room: foyer
|
|
146
|
+
channels:
|
|
147
|
+
- category: contact
|
|
148
|
+
properties:
|
|
149
|
+
- category: detected
|
|
150
|
+
value: false
|
|
151
|
+
- category: device_information
|
|
152
|
+
properties:
|
|
153
|
+
- category: manufacturer
|
|
154
|
+
value: "FastyBird"
|
|
155
|
+
|
|
156
|
+
- name: "Video Doorbell"
|
|
157
|
+
category: doorbell
|
|
158
|
+
room: foyer
|
|
159
|
+
channels:
|
|
160
|
+
- category: doorbell
|
|
161
|
+
properties:
|
|
162
|
+
- category: event
|
|
163
|
+
value: "single_press"
|
|
164
|
+
- category: device_information
|
|
165
|
+
properties:
|
|
166
|
+
- category: manufacturer
|
|
167
|
+
value: "FastyBird"
|
|
168
|
+
|
|
169
|
+
- name: "Foyer Motion Sensor"
|
|
170
|
+
category: sensor
|
|
171
|
+
room: foyer
|
|
172
|
+
auto_simulate: true
|
|
173
|
+
simulate_interval: 5000
|
|
174
|
+
channels:
|
|
175
|
+
- category: motion
|
|
176
|
+
properties:
|
|
177
|
+
- category: detected
|
|
178
|
+
value: false
|
|
179
|
+
- category: device_information
|
|
180
|
+
properties:
|
|
181
|
+
- category: manufacturer
|
|
182
|
+
value: "FastyBird"
|
|
183
|
+
|
|
184
|
+
- name: "Main Thermostat"
|
|
185
|
+
category: thermostat
|
|
186
|
+
room: foyer
|
|
187
|
+
auto_simulate: true
|
|
188
|
+
simulate_interval: 60000
|
|
189
|
+
behavior_mode: realistic
|
|
190
|
+
channels:
|
|
191
|
+
- category: temperature
|
|
192
|
+
properties:
|
|
193
|
+
- category: temperature
|
|
194
|
+
value: 22.0
|
|
195
|
+
- category: heater
|
|
196
|
+
properties:
|
|
197
|
+
- category: on
|
|
198
|
+
value: false
|
|
199
|
+
- category: temperature
|
|
200
|
+
value: 21.0
|
|
201
|
+
- category: device_information
|
|
202
|
+
properties:
|
|
203
|
+
- category: manufacturer
|
|
204
|
+
value: "FastyBird"
|
|
205
|
+
|
|
206
|
+
# ============================================================================
|
|
207
|
+
# FLOOR 1 - LIVING ROOM
|
|
208
|
+
# ============================================================================
|
|
209
|
+
- id: "10000001-0001-4000-8000-000000000001"
|
|
210
|
+
name: "Living Room Ceiling Light"
|
|
211
|
+
category: lighting
|
|
212
|
+
room: living-room
|
|
213
|
+
lighting_role: main
|
|
214
|
+
auto_simulate: true
|
|
215
|
+
channels:
|
|
216
|
+
- category: light
|
|
217
|
+
properties:
|
|
218
|
+
- id: "10000001-0001-4000-8000-000000000010"
|
|
219
|
+
category: on
|
|
220
|
+
value: true
|
|
221
|
+
- id: "10000001-0001-4000-8000-000000000011"
|
|
222
|
+
category: brightness
|
|
223
|
+
value: 80
|
|
224
|
+
- category: color_temperature
|
|
225
|
+
value: 4000
|
|
226
|
+
- category: device_information
|
|
227
|
+
properties:
|
|
228
|
+
- category: manufacturer
|
|
229
|
+
value: "FastyBird"
|
|
230
|
+
|
|
231
|
+
- name: "Living Room Recessed Lights"
|
|
232
|
+
category: lighting
|
|
233
|
+
room: living-room
|
|
234
|
+
lighting_role: main
|
|
235
|
+
channels:
|
|
236
|
+
- category: light
|
|
237
|
+
properties:
|
|
238
|
+
- category: on
|
|
239
|
+
value: true
|
|
240
|
+
- category: brightness
|
|
241
|
+
value: 60
|
|
242
|
+
- category: device_information
|
|
243
|
+
properties:
|
|
244
|
+
- category: manufacturer
|
|
245
|
+
value: "FastyBird"
|
|
246
|
+
|
|
247
|
+
- name: "Living Room Accent Cove"
|
|
248
|
+
category: lighting
|
|
249
|
+
room: living-room
|
|
250
|
+
lighting_role: accent
|
|
251
|
+
channels:
|
|
252
|
+
- category: light
|
|
253
|
+
properties:
|
|
254
|
+
- category: on
|
|
255
|
+
value: false
|
|
256
|
+
- category: brightness
|
|
257
|
+
value: 40
|
|
258
|
+
- category: hue
|
|
259
|
+
value: 30
|
|
260
|
+
- category: saturation
|
|
261
|
+
value: 70
|
|
262
|
+
- category: device_information
|
|
263
|
+
properties:
|
|
264
|
+
- category: manufacturer
|
|
265
|
+
value: "FastyBird"
|
|
266
|
+
|
|
267
|
+
- name: "Living Room Floor Lamp"
|
|
268
|
+
category: lighting
|
|
269
|
+
room: living-room
|
|
270
|
+
lighting_role: ambient
|
|
271
|
+
channels:
|
|
272
|
+
- category: light
|
|
273
|
+
properties:
|
|
274
|
+
- category: on
|
|
275
|
+
value: false
|
|
276
|
+
- category: brightness
|
|
277
|
+
value: 50
|
|
278
|
+
- category: color_temperature
|
|
279
|
+
value: 2700
|
|
280
|
+
- category: device_information
|
|
281
|
+
properties:
|
|
282
|
+
- category: manufacturer
|
|
283
|
+
value: "FastyBird"
|
|
284
|
+
|
|
285
|
+
- name: "Living Room Table Lamp"
|
|
286
|
+
category: lighting
|
|
287
|
+
room: living-room
|
|
288
|
+
lighting_role: ambient
|
|
289
|
+
channels:
|
|
290
|
+
- category: light
|
|
291
|
+
properties:
|
|
292
|
+
- category: on
|
|
293
|
+
value: false
|
|
294
|
+
- category: brightness
|
|
295
|
+
value: 40
|
|
296
|
+
- category: device_information
|
|
297
|
+
properties:
|
|
298
|
+
- category: manufacturer
|
|
299
|
+
value: "FastyBird"
|
|
300
|
+
|
|
301
|
+
- name: "Living Room Climate Sensor"
|
|
302
|
+
category: sensor
|
|
303
|
+
room: living-room
|
|
304
|
+
auto_simulate: true
|
|
305
|
+
simulate_interval: 30000
|
|
306
|
+
channels:
|
|
307
|
+
- category: temperature
|
|
308
|
+
properties:
|
|
309
|
+
- category: temperature
|
|
310
|
+
value: 22.5
|
|
311
|
+
- category: humidity
|
|
312
|
+
properties:
|
|
313
|
+
- category: humidity
|
|
314
|
+
value: 45
|
|
315
|
+
- category: device_information
|
|
316
|
+
properties:
|
|
317
|
+
- category: manufacturer
|
|
318
|
+
value: "FastyBird"
|
|
319
|
+
|
|
320
|
+
- name: "Living Room Air Purifier"
|
|
321
|
+
category: air_purifier
|
|
322
|
+
room: living-room
|
|
323
|
+
auto_simulate: true
|
|
324
|
+
channels:
|
|
325
|
+
- category: fan
|
|
326
|
+
properties:
|
|
327
|
+
- category: on
|
|
328
|
+
value: true
|
|
329
|
+
- category: speed
|
|
330
|
+
value: "low"
|
|
331
|
+
- category: air_quality
|
|
332
|
+
properties:
|
|
333
|
+
- category: level
|
|
334
|
+
value: "excellent"
|
|
335
|
+
- category: device_information
|
|
336
|
+
properties:
|
|
337
|
+
- category: manufacturer
|
|
338
|
+
value: "FastyBird"
|
|
339
|
+
|
|
340
|
+
- name: "Living Room Sheer Curtains Left"
|
|
341
|
+
category: window_covering
|
|
342
|
+
room: living-room
|
|
343
|
+
auto_simulate: true
|
|
344
|
+
behavior_mode: realistic
|
|
345
|
+
channels:
|
|
346
|
+
- category: window_covering
|
|
347
|
+
properties:
|
|
348
|
+
- category: position
|
|
349
|
+
value: 100
|
|
350
|
+
- category: type
|
|
351
|
+
value: "curtain"
|
|
352
|
+
- category: device_information
|
|
353
|
+
properties:
|
|
354
|
+
- category: manufacturer
|
|
355
|
+
value: "FastyBird"
|
|
356
|
+
|
|
357
|
+
- name: "Living Room Sheer Curtains Right"
|
|
358
|
+
category: window_covering
|
|
359
|
+
room: living-room
|
|
360
|
+
behavior_mode: realistic
|
|
361
|
+
channels:
|
|
362
|
+
- category: window_covering
|
|
363
|
+
properties:
|
|
364
|
+
- category: position
|
|
365
|
+
value: 100
|
|
366
|
+
- category: type
|
|
367
|
+
value: "curtain"
|
|
368
|
+
- category: device_information
|
|
369
|
+
properties:
|
|
370
|
+
- category: manufacturer
|
|
371
|
+
value: "FastyBird"
|
|
372
|
+
|
|
373
|
+
- name: "Living Room Solar Shades"
|
|
374
|
+
category: window_covering
|
|
375
|
+
room: living-room
|
|
376
|
+
auto_simulate: true
|
|
377
|
+
behavior_mode: realistic
|
|
378
|
+
channels:
|
|
379
|
+
- category: window_covering
|
|
380
|
+
properties:
|
|
381
|
+
- category: position
|
|
382
|
+
value: 50
|
|
383
|
+
- category: type
|
|
384
|
+
value: "roller"
|
|
385
|
+
- category: device_information
|
|
386
|
+
properties:
|
|
387
|
+
- category: manufacturer
|
|
388
|
+
value: "FastyBird"
|
|
389
|
+
|
|
390
|
+
- name: "Living Room Window Sensor"
|
|
391
|
+
category: sensor
|
|
392
|
+
room: living-room
|
|
393
|
+
channels:
|
|
394
|
+
- category: contact
|
|
395
|
+
properties:
|
|
396
|
+
- category: detected
|
|
397
|
+
value: false
|
|
398
|
+
- category: device_information
|
|
399
|
+
properties:
|
|
400
|
+
- category: manufacturer
|
|
401
|
+
value: "FastyBird"
|
|
402
|
+
|
|
403
|
+
# ============================================================================
|
|
404
|
+
# FLOOR 1 - FAMILY ROOM
|
|
405
|
+
# ============================================================================
|
|
406
|
+
- name: "Family Room Ceiling Fan"
|
|
407
|
+
category: fan
|
|
408
|
+
room: family-room
|
|
409
|
+
auto_simulate: true
|
|
410
|
+
channels:
|
|
411
|
+
- category: fan
|
|
412
|
+
properties:
|
|
413
|
+
- category: on
|
|
414
|
+
value: true
|
|
415
|
+
- category: speed
|
|
416
|
+
value: "medium"
|
|
417
|
+
- category: direction
|
|
418
|
+
value: "clockwise"
|
|
419
|
+
- category: light
|
|
420
|
+
properties:
|
|
421
|
+
- category: on
|
|
422
|
+
value: true
|
|
423
|
+
- category: brightness
|
|
424
|
+
value: 70
|
|
425
|
+
- category: device_information
|
|
426
|
+
properties:
|
|
427
|
+
- category: manufacturer
|
|
428
|
+
value: "FastyBird"
|
|
429
|
+
|
|
430
|
+
- name: "Family Room Recessed Lights"
|
|
431
|
+
category: lighting
|
|
432
|
+
room: family-room
|
|
433
|
+
lighting_role: main
|
|
434
|
+
channels:
|
|
435
|
+
- category: light
|
|
436
|
+
properties:
|
|
437
|
+
- category: on
|
|
438
|
+
value: false
|
|
439
|
+
- category: brightness
|
|
440
|
+
value: 80
|
|
441
|
+
- category: device_information
|
|
442
|
+
properties:
|
|
443
|
+
- category: manufacturer
|
|
444
|
+
value: "FastyBird"
|
|
445
|
+
|
|
446
|
+
- name: "Family Room TV"
|
|
447
|
+
category: television
|
|
448
|
+
room: family-room
|
|
449
|
+
behavior_mode: realistic
|
|
450
|
+
channels:
|
|
451
|
+
- category: television
|
|
452
|
+
properties:
|
|
453
|
+
- category: on
|
|
454
|
+
value: false
|
|
455
|
+
- category: speaker
|
|
456
|
+
properties:
|
|
457
|
+
- category: volume
|
|
458
|
+
value: 20
|
|
459
|
+
- category: active
|
|
460
|
+
value: true
|
|
461
|
+
- category: device_information
|
|
462
|
+
properties:
|
|
463
|
+
- category: manufacturer
|
|
464
|
+
value: "FastyBird"
|
|
465
|
+
|
|
466
|
+
- name: "Family Room Soundbar"
|
|
467
|
+
category: speaker
|
|
468
|
+
room: family-room
|
|
469
|
+
behavior_mode: realistic
|
|
470
|
+
channels:
|
|
471
|
+
- category: speaker
|
|
472
|
+
properties:
|
|
473
|
+
- category: active
|
|
474
|
+
value: false
|
|
475
|
+
- category: volume
|
|
476
|
+
value: 30
|
|
477
|
+
- category: device_information
|
|
478
|
+
properties:
|
|
479
|
+
- category: manufacturer
|
|
480
|
+
value: "FastyBird"
|
|
481
|
+
|
|
482
|
+
- name: "Family Room Accent Lights"
|
|
483
|
+
category: lighting
|
|
484
|
+
room: family-room
|
|
485
|
+
lighting_role: accent
|
|
486
|
+
channels:
|
|
487
|
+
- category: light
|
|
488
|
+
properties:
|
|
489
|
+
- category: on
|
|
490
|
+
value: false
|
|
491
|
+
- category: brightness
|
|
492
|
+
value: 30
|
|
493
|
+
- category: hue
|
|
494
|
+
value: 280
|
|
495
|
+
- category: saturation
|
|
496
|
+
value: 60
|
|
497
|
+
- category: device_information
|
|
498
|
+
properties:
|
|
499
|
+
- category: manufacturer
|
|
500
|
+
value: "FastyBird"
|
|
501
|
+
|
|
502
|
+
- name: "Family Room Motorized Blinds"
|
|
503
|
+
category: window_covering
|
|
504
|
+
room: family-room
|
|
505
|
+
behavior_mode: realistic
|
|
506
|
+
channels:
|
|
507
|
+
- category: window_covering
|
|
508
|
+
properties:
|
|
509
|
+
- category: position
|
|
510
|
+
value: 0
|
|
511
|
+
- category: tilt
|
|
512
|
+
value: 45
|
|
513
|
+
- category: type
|
|
514
|
+
value: "blind"
|
|
515
|
+
- category: device_information
|
|
516
|
+
properties:
|
|
517
|
+
- category: manufacturer
|
|
518
|
+
value: "FastyBird"
|
|
519
|
+
|
|
520
|
+
- name: "Family Room Blackout Shades"
|
|
521
|
+
category: window_covering
|
|
522
|
+
room: family-room
|
|
523
|
+
behavior_mode: realistic
|
|
524
|
+
channels:
|
|
525
|
+
- category: window_covering
|
|
526
|
+
properties:
|
|
527
|
+
- category: position
|
|
528
|
+
value: 0
|
|
529
|
+
- category: type
|
|
530
|
+
value: "roller"
|
|
531
|
+
- category: device_information
|
|
532
|
+
properties:
|
|
533
|
+
- category: manufacturer
|
|
534
|
+
value: "FastyBird"
|
|
535
|
+
|
|
536
|
+
# ============================================================================
|
|
537
|
+
# FLOOR 1 - KITCHEN
|
|
538
|
+
# ============================================================================
|
|
539
|
+
- id: "10000001-0001-4000-8000-000000000005"
|
|
540
|
+
name: "Kitchen Main Light"
|
|
541
|
+
category: lighting
|
|
542
|
+
room: kitchen
|
|
543
|
+
lighting_role: main
|
|
544
|
+
auto_simulate: true
|
|
545
|
+
channels:
|
|
546
|
+
- category: light
|
|
547
|
+
properties:
|
|
548
|
+
- id: "10000001-0001-4000-8000-000000000050"
|
|
549
|
+
category: on
|
|
550
|
+
value: true
|
|
551
|
+
- id: "10000001-0001-4000-8000-000000000051"
|
|
552
|
+
category: brightness
|
|
553
|
+
value: 100
|
|
554
|
+
- category: color_temperature
|
|
555
|
+
value: 5000
|
|
556
|
+
- category: device_information
|
|
557
|
+
properties:
|
|
558
|
+
- category: manufacturer
|
|
559
|
+
value: "FastyBird"
|
|
560
|
+
|
|
561
|
+
- name: "Kitchen Under-Cabinet Lights"
|
|
562
|
+
category: lighting
|
|
563
|
+
room: kitchen
|
|
564
|
+
lighting_role: task
|
|
565
|
+
channels:
|
|
566
|
+
- category: light
|
|
567
|
+
properties:
|
|
568
|
+
- category: on
|
|
569
|
+
value: false
|
|
570
|
+
- category: brightness
|
|
571
|
+
value: 80
|
|
572
|
+
- category: color_temperature
|
|
573
|
+
value: 4500
|
|
574
|
+
- category: device_information
|
|
575
|
+
properties:
|
|
576
|
+
- category: manufacturer
|
|
577
|
+
value: "FastyBird"
|
|
578
|
+
|
|
579
|
+
- name: "Kitchen Island Pendants"
|
|
580
|
+
category: lighting
|
|
581
|
+
room: kitchen
|
|
582
|
+
lighting_role: ambient
|
|
583
|
+
channels:
|
|
584
|
+
- category: light
|
|
585
|
+
properties:
|
|
586
|
+
- category: on
|
|
587
|
+
value: false
|
|
588
|
+
- category: brightness
|
|
589
|
+
value: 70
|
|
590
|
+
- category: color_temperature
|
|
591
|
+
value: 3000
|
|
592
|
+
- category: device_information
|
|
593
|
+
properties:
|
|
594
|
+
- category: manufacturer
|
|
595
|
+
value: "FastyBird"
|
|
596
|
+
|
|
597
|
+
- name: "Kitchen Pantry Light"
|
|
598
|
+
category: lighting
|
|
599
|
+
room: kitchen
|
|
600
|
+
lighting_role: main
|
|
601
|
+
channels:
|
|
602
|
+
- category: light
|
|
603
|
+
properties:
|
|
604
|
+
- category: on
|
|
605
|
+
value: false
|
|
606
|
+
- category: brightness
|
|
607
|
+
value: 100
|
|
608
|
+
- category: device_information
|
|
609
|
+
properties:
|
|
610
|
+
- category: manufacturer
|
|
611
|
+
value: "FastyBird"
|
|
612
|
+
|
|
613
|
+
- name: "Kitchen Outlet - Coffee Maker"
|
|
614
|
+
category: outlet
|
|
615
|
+
room: kitchen
|
|
616
|
+
auto_simulate: true
|
|
617
|
+
channels:
|
|
618
|
+
- category: outlet
|
|
619
|
+
properties:
|
|
620
|
+
- category: on
|
|
621
|
+
value: true
|
|
622
|
+
- category: electrical_power
|
|
623
|
+
properties:
|
|
624
|
+
- category: power
|
|
625
|
+
value: 950.0
|
|
626
|
+
- category: device_information
|
|
627
|
+
properties:
|
|
628
|
+
- category: manufacturer
|
|
629
|
+
value: "FastyBird"
|
|
630
|
+
|
|
631
|
+
- name: "Kitchen Outlet - Toaster"
|
|
632
|
+
category: outlet
|
|
633
|
+
room: kitchen
|
|
634
|
+
channels:
|
|
635
|
+
- category: outlet
|
|
636
|
+
properties:
|
|
637
|
+
- category: on
|
|
638
|
+
value: false
|
|
639
|
+
- category: device_information
|
|
640
|
+
properties:
|
|
641
|
+
- category: manufacturer
|
|
642
|
+
value: "FastyBird"
|
|
643
|
+
|
|
644
|
+
- name: "Kitchen Outlet - Mixer"
|
|
645
|
+
category: outlet
|
|
646
|
+
room: kitchen
|
|
647
|
+
auto_simulate: true
|
|
648
|
+
channels:
|
|
649
|
+
- category: outlet
|
|
650
|
+
properties:
|
|
651
|
+
- category: on
|
|
652
|
+
value: true
|
|
653
|
+
- category: electrical_power
|
|
654
|
+
properties:
|
|
655
|
+
- category: power
|
|
656
|
+
value: 300.0
|
|
657
|
+
- category: device_information
|
|
658
|
+
properties:
|
|
659
|
+
- category: manufacturer
|
|
660
|
+
value: "FastyBird"
|
|
661
|
+
|
|
662
|
+
- name: "Kitchen Smoke Detector"
|
|
663
|
+
category: sensor
|
|
664
|
+
room: kitchen
|
|
665
|
+
channels:
|
|
666
|
+
- category: smoke
|
|
667
|
+
properties:
|
|
668
|
+
- category: detected
|
|
669
|
+
value: false
|
|
670
|
+
- category: device_information
|
|
671
|
+
properties:
|
|
672
|
+
- category: manufacturer
|
|
673
|
+
value: "FastyBird"
|
|
674
|
+
|
|
675
|
+
- name: "Kitchen Sink Leak Sensor"
|
|
676
|
+
category: sensor
|
|
677
|
+
room: kitchen
|
|
678
|
+
channels:
|
|
679
|
+
- category: leak
|
|
680
|
+
properties:
|
|
681
|
+
- category: detected
|
|
682
|
+
value: false
|
|
683
|
+
- category: device_information
|
|
684
|
+
properties:
|
|
685
|
+
- category: manufacturer
|
|
686
|
+
value: "FastyBird"
|
|
687
|
+
|
|
688
|
+
- name: "Kitchen Dishwasher Leak Sensor"
|
|
689
|
+
category: sensor
|
|
690
|
+
room: kitchen
|
|
691
|
+
channels:
|
|
692
|
+
- category: leak
|
|
693
|
+
properties:
|
|
694
|
+
- category: detected
|
|
695
|
+
value: false
|
|
696
|
+
- category: device_information
|
|
697
|
+
properties:
|
|
698
|
+
- category: manufacturer
|
|
699
|
+
value: "FastyBird"
|
|
700
|
+
|
|
701
|
+
- name: "Kitchen Roman Shades"
|
|
702
|
+
category: window_covering
|
|
703
|
+
room: kitchen
|
|
704
|
+
behavior_mode: realistic
|
|
705
|
+
channels:
|
|
706
|
+
- category: window_covering
|
|
707
|
+
properties:
|
|
708
|
+
- category: position
|
|
709
|
+
value: 100
|
|
710
|
+
- category: type
|
|
711
|
+
value: "roller"
|
|
712
|
+
- category: device_information
|
|
713
|
+
properties:
|
|
714
|
+
- category: manufacturer
|
|
715
|
+
value: "FastyBird"
|
|
716
|
+
|
|
717
|
+
# ============================================================================
|
|
718
|
+
# FLOOR 1 - DINING ROOM
|
|
719
|
+
# ============================================================================
|
|
720
|
+
- name: "Dining Room Chandelier"
|
|
721
|
+
category: lighting
|
|
722
|
+
room: dining-room
|
|
723
|
+
lighting_role: main
|
|
724
|
+
auto_simulate: true
|
|
725
|
+
channels:
|
|
726
|
+
- category: light
|
|
727
|
+
properties:
|
|
728
|
+
- category: on
|
|
729
|
+
value: false
|
|
730
|
+
- category: brightness
|
|
731
|
+
value: 60
|
|
732
|
+
- category: color_temperature
|
|
733
|
+
value: 2700
|
|
734
|
+
- category: device_information
|
|
735
|
+
properties:
|
|
736
|
+
- category: manufacturer
|
|
737
|
+
value: "FastyBird"
|
|
738
|
+
|
|
739
|
+
- name: "Dining Room Accent Sconces"
|
|
740
|
+
category: lighting
|
|
741
|
+
room: dining-room
|
|
742
|
+
lighting_role: accent
|
|
743
|
+
channels:
|
|
744
|
+
- category: light
|
|
745
|
+
properties:
|
|
746
|
+
- category: on
|
|
747
|
+
value: false
|
|
748
|
+
- category: brightness
|
|
749
|
+
value: 30
|
|
750
|
+
- category: device_information
|
|
751
|
+
properties:
|
|
752
|
+
- category: manufacturer
|
|
753
|
+
value: "FastyBird"
|
|
754
|
+
|
|
755
|
+
- name: "Dining Room Curtains"
|
|
756
|
+
category: window_covering
|
|
757
|
+
room: dining-room
|
|
758
|
+
behavior_mode: realistic
|
|
759
|
+
channels:
|
|
760
|
+
- category: window_covering
|
|
761
|
+
properties:
|
|
762
|
+
- category: position
|
|
763
|
+
value: 100
|
|
764
|
+
- category: type
|
|
765
|
+
value: "curtain"
|
|
766
|
+
- category: device_information
|
|
767
|
+
properties:
|
|
768
|
+
- category: manufacturer
|
|
769
|
+
value: "FastyBird"
|
|
770
|
+
|
|
771
|
+
# ============================================================================
|
|
772
|
+
# FLOOR 1 - OFFICE
|
|
773
|
+
# ============================================================================
|
|
774
|
+
- name: "Office Ceiling Light"
|
|
775
|
+
category: lighting
|
|
776
|
+
room: office
|
|
777
|
+
lighting_role: main
|
|
778
|
+
auto_simulate: true
|
|
779
|
+
channels:
|
|
780
|
+
- category: light
|
|
781
|
+
properties:
|
|
782
|
+
- category: on
|
|
783
|
+
value: true
|
|
784
|
+
- category: brightness
|
|
785
|
+
value: 80
|
|
786
|
+
- category: color_temperature
|
|
787
|
+
value: 5000
|
|
788
|
+
- category: device_information
|
|
789
|
+
properties:
|
|
790
|
+
- category: manufacturer
|
|
791
|
+
value: "FastyBird"
|
|
792
|
+
|
|
793
|
+
- name: "Office Desk Lamp"
|
|
794
|
+
category: lighting
|
|
795
|
+
room: office
|
|
796
|
+
lighting_role: task
|
|
797
|
+
channels:
|
|
798
|
+
- category: light
|
|
799
|
+
properties:
|
|
800
|
+
- category: on
|
|
801
|
+
value: true
|
|
802
|
+
- category: brightness
|
|
803
|
+
value: 90
|
|
804
|
+
- category: color_temperature
|
|
805
|
+
value: 5500
|
|
806
|
+
- category: device_information
|
|
807
|
+
properties:
|
|
808
|
+
- category: manufacturer
|
|
809
|
+
value: "FastyBird"
|
|
810
|
+
|
|
811
|
+
- name: "Office Ambient Light"
|
|
812
|
+
category: lighting
|
|
813
|
+
room: office
|
|
814
|
+
lighting_role: main
|
|
815
|
+
channels:
|
|
816
|
+
- category: light
|
|
817
|
+
properties:
|
|
818
|
+
- category: on
|
|
819
|
+
value: false
|
|
820
|
+
- category: brightness
|
|
821
|
+
value: 40
|
|
822
|
+
- category: hue
|
|
823
|
+
value: 200
|
|
824
|
+
- category: saturation
|
|
825
|
+
value: 30
|
|
826
|
+
- category: device_information
|
|
827
|
+
properties:
|
|
828
|
+
- category: manufacturer
|
|
829
|
+
value: "FastyBird"
|
|
830
|
+
|
|
831
|
+
- name: "Office Air Quality Monitor"
|
|
832
|
+
category: sensor
|
|
833
|
+
room: office
|
|
834
|
+
auto_simulate: true
|
|
835
|
+
simulate_interval: 30000
|
|
836
|
+
channels:
|
|
837
|
+
- category: temperature
|
|
838
|
+
properties:
|
|
839
|
+
- category: temperature
|
|
840
|
+
value: 22.5
|
|
841
|
+
- category: humidity
|
|
842
|
+
properties:
|
|
843
|
+
- category: humidity
|
|
844
|
+
value: 42
|
|
845
|
+
- category: carbon_dioxide
|
|
846
|
+
properties:
|
|
847
|
+
- category: concentration
|
|
848
|
+
value: 650
|
|
849
|
+
- category: device_information
|
|
850
|
+
properties:
|
|
851
|
+
- category: manufacturer
|
|
852
|
+
value: "FastyBird"
|
|
853
|
+
|
|
854
|
+
- name: "Office Roller Shade"
|
|
855
|
+
category: window_covering
|
|
856
|
+
room: office
|
|
857
|
+
behavior_mode: realistic
|
|
858
|
+
channels:
|
|
859
|
+
- category: window_covering
|
|
860
|
+
properties:
|
|
861
|
+
- category: position
|
|
862
|
+
value: 75
|
|
863
|
+
- category: type
|
|
864
|
+
value: "roller"
|
|
865
|
+
- category: device_information
|
|
866
|
+
properties:
|
|
867
|
+
- category: manufacturer
|
|
868
|
+
value: "FastyBird"
|
|
869
|
+
|
|
870
|
+
# ============================================================================
|
|
871
|
+
# FLOOR 1 - POWDER ROOM
|
|
872
|
+
# ============================================================================
|
|
873
|
+
- name: "Powder Room Light"
|
|
874
|
+
category: lighting
|
|
875
|
+
room: powder-room
|
|
876
|
+
lighting_role: main
|
|
877
|
+
channels:
|
|
878
|
+
- category: light
|
|
879
|
+
properties:
|
|
880
|
+
- category: on
|
|
881
|
+
value: false
|
|
882
|
+
- category: brightness
|
|
883
|
+
value: 100
|
|
884
|
+
- category: device_information
|
|
885
|
+
properties:
|
|
886
|
+
- category: manufacturer
|
|
887
|
+
value: "FastyBird"
|
|
888
|
+
|
|
889
|
+
- name: "Powder Room Fan"
|
|
890
|
+
category: fan
|
|
891
|
+
room: powder-room
|
|
892
|
+
channels:
|
|
893
|
+
- category: fan
|
|
894
|
+
properties:
|
|
895
|
+
- category: on
|
|
896
|
+
value: false
|
|
897
|
+
- category: device_information
|
|
898
|
+
properties:
|
|
899
|
+
- category: manufacturer
|
|
900
|
+
value: "FastyBird"
|
|
901
|
+
|
|
902
|
+
# ============================================================================
|
|
903
|
+
# FLOOR 1 - MUDROOM
|
|
904
|
+
# ============================================================================
|
|
905
|
+
- name: "Mudroom Light"
|
|
906
|
+
category: lighting
|
|
907
|
+
room: mudroom
|
|
908
|
+
lighting_role: main
|
|
909
|
+
channels:
|
|
910
|
+
- category: light
|
|
911
|
+
properties:
|
|
912
|
+
- category: on
|
|
913
|
+
value: false
|
|
914
|
+
- category: brightness
|
|
915
|
+
value: 100
|
|
916
|
+
- category: device_information
|
|
917
|
+
properties:
|
|
918
|
+
- category: manufacturer
|
|
919
|
+
value: "FastyBird"
|
|
920
|
+
|
|
921
|
+
- name: "Side Door Lock"
|
|
922
|
+
category: lock
|
|
923
|
+
room: mudroom
|
|
924
|
+
behavior_mode: realistic
|
|
925
|
+
channels:
|
|
926
|
+
- category: lock
|
|
927
|
+
properties:
|
|
928
|
+
- category: status
|
|
929
|
+
value: "locked"
|
|
930
|
+
- category: device_information
|
|
931
|
+
properties:
|
|
932
|
+
- category: manufacturer
|
|
933
|
+
value: "FastyBird"
|
|
934
|
+
|
|
935
|
+
- name: "Side Door Sensor"
|
|
936
|
+
category: sensor
|
|
937
|
+
room: mudroom
|
|
938
|
+
channels:
|
|
939
|
+
- category: contact
|
|
940
|
+
properties:
|
|
941
|
+
- category: detected
|
|
942
|
+
value: false
|
|
943
|
+
- category: device_information
|
|
944
|
+
properties:
|
|
945
|
+
- category: manufacturer
|
|
946
|
+
value: "FastyBird"
|
|
947
|
+
|
|
948
|
+
# ============================================================================
|
|
949
|
+
# FLOOR 1 - LAUNDRY
|
|
950
|
+
# ============================================================================
|
|
951
|
+
- name: "Laundry Room Light"
|
|
952
|
+
category: lighting
|
|
953
|
+
room: laundry
|
|
954
|
+
lighting_role: main
|
|
955
|
+
channels:
|
|
956
|
+
- category: light
|
|
957
|
+
properties:
|
|
958
|
+
- category: on
|
|
959
|
+
value: false
|
|
960
|
+
- category: brightness
|
|
961
|
+
value: 100
|
|
962
|
+
- category: device_information
|
|
963
|
+
properties:
|
|
964
|
+
- category: manufacturer
|
|
965
|
+
value: "FastyBird"
|
|
966
|
+
|
|
967
|
+
- name: "Laundry Washer Outlet"
|
|
968
|
+
category: outlet
|
|
969
|
+
room: laundry
|
|
970
|
+
auto_simulate: true
|
|
971
|
+
channels:
|
|
972
|
+
- category: outlet
|
|
973
|
+
properties:
|
|
974
|
+
- category: on
|
|
975
|
+
value: true
|
|
976
|
+
- category: electrical_power
|
|
977
|
+
properties:
|
|
978
|
+
- category: power
|
|
979
|
+
value: 450.0
|
|
980
|
+
- category: device_information
|
|
981
|
+
properties:
|
|
982
|
+
- category: manufacturer
|
|
983
|
+
value: "FastyBird"
|
|
984
|
+
|
|
985
|
+
- name: "Laundry Dryer Outlet"
|
|
986
|
+
category: outlet
|
|
987
|
+
room: laundry
|
|
988
|
+
auto_simulate: true
|
|
989
|
+
channels:
|
|
990
|
+
- category: outlet
|
|
991
|
+
properties:
|
|
992
|
+
- category: on
|
|
993
|
+
value: true
|
|
994
|
+
- category: electrical_power
|
|
995
|
+
properties:
|
|
996
|
+
- category: power
|
|
997
|
+
value: 2200.0
|
|
998
|
+
- category: device_information
|
|
999
|
+
properties:
|
|
1000
|
+
- category: manufacturer
|
|
1001
|
+
value: "FastyBird"
|
|
1002
|
+
|
|
1003
|
+
- name: "Laundry Leak Sensor"
|
|
1004
|
+
category: sensor
|
|
1005
|
+
room: laundry
|
|
1006
|
+
channels:
|
|
1007
|
+
- category: leak
|
|
1008
|
+
properties:
|
|
1009
|
+
- category: detected
|
|
1010
|
+
value: false
|
|
1011
|
+
- category: device_information
|
|
1012
|
+
properties:
|
|
1013
|
+
- category: manufacturer
|
|
1014
|
+
value: "FastyBird"
|
|
1015
|
+
|
|
1016
|
+
# ============================================================================
|
|
1017
|
+
# FLOOR 1 - GARAGE
|
|
1018
|
+
# ============================================================================
|
|
1019
|
+
- name: "Garage Main Lights"
|
|
1020
|
+
category: lighting
|
|
1021
|
+
room: garage
|
|
1022
|
+
lighting_role: main
|
|
1023
|
+
channels:
|
|
1024
|
+
- category: light
|
|
1025
|
+
properties:
|
|
1026
|
+
- category: on
|
|
1027
|
+
value: false
|
|
1028
|
+
- category: brightness
|
|
1029
|
+
value: 100
|
|
1030
|
+
- category: device_information
|
|
1031
|
+
properties:
|
|
1032
|
+
- category: manufacturer
|
|
1033
|
+
value: "FastyBird"
|
|
1034
|
+
|
|
1035
|
+
- name: "Garage Workbench Light"
|
|
1036
|
+
category: lighting
|
|
1037
|
+
room: garage
|
|
1038
|
+
lighting_role: task
|
|
1039
|
+
channels:
|
|
1040
|
+
- category: light
|
|
1041
|
+
properties:
|
|
1042
|
+
- category: on
|
|
1043
|
+
value: false
|
|
1044
|
+
- category: brightness
|
|
1045
|
+
value: 100
|
|
1046
|
+
- category: device_information
|
|
1047
|
+
properties:
|
|
1048
|
+
- category: manufacturer
|
|
1049
|
+
value: "FastyBird"
|
|
1050
|
+
|
|
1051
|
+
- name: "Garage Door Sensor"
|
|
1052
|
+
category: sensor
|
|
1053
|
+
room: garage
|
|
1054
|
+
channels:
|
|
1055
|
+
- category: contact
|
|
1056
|
+
properties:
|
|
1057
|
+
- category: detected
|
|
1058
|
+
value: false
|
|
1059
|
+
- category: device_information
|
|
1060
|
+
properties:
|
|
1061
|
+
- category: manufacturer
|
|
1062
|
+
value: "FastyBird"
|
|
1063
|
+
|
|
1064
|
+
- name: "Garage Motion Sensor"
|
|
1065
|
+
category: sensor
|
|
1066
|
+
room: garage
|
|
1067
|
+
auto_simulate: true
|
|
1068
|
+
simulate_interval: 5000
|
|
1069
|
+
channels:
|
|
1070
|
+
- category: motion
|
|
1071
|
+
properties:
|
|
1072
|
+
- category: detected
|
|
1073
|
+
value: false
|
|
1074
|
+
- category: device_information
|
|
1075
|
+
properties:
|
|
1076
|
+
- category: manufacturer
|
|
1077
|
+
value: "FastyBird"
|
|
1078
|
+
|
|
1079
|
+
- name: "Garage Smart Outlet"
|
|
1080
|
+
category: outlet
|
|
1081
|
+
room: garage
|
|
1082
|
+
channels:
|
|
1083
|
+
- category: outlet
|
|
1084
|
+
properties:
|
|
1085
|
+
- category: on
|
|
1086
|
+
value: false
|
|
1087
|
+
- category: device_information
|
|
1088
|
+
properties:
|
|
1089
|
+
- category: manufacturer
|
|
1090
|
+
value: "FastyBird"
|
|
1091
|
+
|
|
1092
|
+
- name: "Garage Freezer Outlet"
|
|
1093
|
+
category: outlet
|
|
1094
|
+
room: garage
|
|
1095
|
+
auto_simulate: true
|
|
1096
|
+
channels:
|
|
1097
|
+
- category: outlet
|
|
1098
|
+
properties:
|
|
1099
|
+
- category: on
|
|
1100
|
+
value: true
|
|
1101
|
+
- category: electrical_power
|
|
1102
|
+
properties:
|
|
1103
|
+
- category: power
|
|
1104
|
+
value: 120.0
|
|
1105
|
+
- category: device_information
|
|
1106
|
+
properties:
|
|
1107
|
+
- category: manufacturer
|
|
1108
|
+
value: "FastyBird"
|
|
1109
|
+
|
|
1110
|
+
# ============================================================================
|
|
1111
|
+
# FLOOR 2 - UPPER HALLWAY
|
|
1112
|
+
# ============================================================================
|
|
1113
|
+
- name: "Upper Hallway Light"
|
|
1114
|
+
category: lighting
|
|
1115
|
+
room: upper-hallway
|
|
1116
|
+
lighting_role: main
|
|
1117
|
+
auto_simulate: true
|
|
1118
|
+
channels:
|
|
1119
|
+
- category: light
|
|
1120
|
+
properties:
|
|
1121
|
+
- category: on
|
|
1122
|
+
value: true
|
|
1123
|
+
- category: brightness
|
|
1124
|
+
value: 50
|
|
1125
|
+
- category: device_information
|
|
1126
|
+
properties:
|
|
1127
|
+
- category: manufacturer
|
|
1128
|
+
value: "FastyBird"
|
|
1129
|
+
|
|
1130
|
+
- name: "Upper Hallway Motion Sensor"
|
|
1131
|
+
category: sensor
|
|
1132
|
+
room: upper-hallway
|
|
1133
|
+
auto_simulate: true
|
|
1134
|
+
simulate_interval: 5000
|
|
1135
|
+
channels:
|
|
1136
|
+
- category: motion
|
|
1137
|
+
properties:
|
|
1138
|
+
- category: detected
|
|
1139
|
+
value: false
|
|
1140
|
+
- category: device_information
|
|
1141
|
+
properties:
|
|
1142
|
+
- category: manufacturer
|
|
1143
|
+
value: "FastyBird"
|
|
1144
|
+
|
|
1145
|
+
- name: "Upper Hallway Smoke Detector"
|
|
1146
|
+
category: sensor
|
|
1147
|
+
room: upper-hallway
|
|
1148
|
+
channels:
|
|
1149
|
+
- category: smoke
|
|
1150
|
+
properties:
|
|
1151
|
+
- category: detected
|
|
1152
|
+
value: false
|
|
1153
|
+
- category: device_information
|
|
1154
|
+
properties:
|
|
1155
|
+
- category: manufacturer
|
|
1156
|
+
value: "FastyBird"
|
|
1157
|
+
|
|
1158
|
+
- name: "Upstairs Thermostat"
|
|
1159
|
+
category: thermostat
|
|
1160
|
+
room: upper-hallway
|
|
1161
|
+
auto_simulate: true
|
|
1162
|
+
simulate_interval: 60000
|
|
1163
|
+
behavior_mode: realistic
|
|
1164
|
+
channels:
|
|
1165
|
+
- category: temperature
|
|
1166
|
+
properties:
|
|
1167
|
+
- category: temperature
|
|
1168
|
+
value: 21.5
|
|
1169
|
+
- category: heater
|
|
1170
|
+
properties:
|
|
1171
|
+
- category: on
|
|
1172
|
+
value: false
|
|
1173
|
+
- category: temperature
|
|
1174
|
+
value: 21.0
|
|
1175
|
+
- category: device_information
|
|
1176
|
+
properties:
|
|
1177
|
+
- category: manufacturer
|
|
1178
|
+
value: "FastyBird"
|
|
1179
|
+
|
|
1180
|
+
# ============================================================================
|
|
1181
|
+
# FLOOR 2 - MASTER SUITE
|
|
1182
|
+
# ============================================================================
|
|
1183
|
+
- id: "10000001-0001-4000-8000-000000000004"
|
|
1184
|
+
name: "Master Bedroom Main Light"
|
|
1185
|
+
category: lighting
|
|
1186
|
+
room: master-suite
|
|
1187
|
+
lighting_role: main
|
|
1188
|
+
auto_simulate: true
|
|
1189
|
+
channels:
|
|
1190
|
+
- category: light
|
|
1191
|
+
properties:
|
|
1192
|
+
- id: "10000001-0001-4000-8000-000000000040"
|
|
1193
|
+
category: on
|
|
1194
|
+
value: false
|
|
1195
|
+
- category: brightness
|
|
1196
|
+
value: 70
|
|
1197
|
+
- category: color_temperature
|
|
1198
|
+
value: 2700
|
|
1199
|
+
- category: device_information
|
|
1200
|
+
properties:
|
|
1201
|
+
- category: manufacturer
|
|
1202
|
+
value: "FastyBird"
|
|
1203
|
+
|
|
1204
|
+
- name: "Master Bedroom Bedside Left"
|
|
1205
|
+
category: lighting
|
|
1206
|
+
room: master-suite
|
|
1207
|
+
lighting_role: ambient
|
|
1208
|
+
channels:
|
|
1209
|
+
- category: light
|
|
1210
|
+
properties:
|
|
1211
|
+
- category: on
|
|
1212
|
+
value: false
|
|
1213
|
+
- category: brightness
|
|
1214
|
+
value: 30
|
|
1215
|
+
- category: device_information
|
|
1216
|
+
properties:
|
|
1217
|
+
- category: manufacturer
|
|
1218
|
+
value: "FastyBird"
|
|
1219
|
+
|
|
1220
|
+
- name: "Master Bedroom Bedside Right"
|
|
1221
|
+
category: lighting
|
|
1222
|
+
room: master-suite
|
|
1223
|
+
lighting_role: ambient
|
|
1224
|
+
channels:
|
|
1225
|
+
- category: light
|
|
1226
|
+
properties:
|
|
1227
|
+
- category: on
|
|
1228
|
+
value: false
|
|
1229
|
+
- category: brightness
|
|
1230
|
+
value: 30
|
|
1231
|
+
- category: device_information
|
|
1232
|
+
properties:
|
|
1233
|
+
- category: manufacturer
|
|
1234
|
+
value: "FastyBird"
|
|
1235
|
+
|
|
1236
|
+
- name: "Master Bedroom Accent Strip"
|
|
1237
|
+
category: lighting
|
|
1238
|
+
room: master-suite
|
|
1239
|
+
lighting_role: accent
|
|
1240
|
+
channels:
|
|
1241
|
+
- category: light
|
|
1242
|
+
properties:
|
|
1243
|
+
- category: on
|
|
1244
|
+
value: false
|
|
1245
|
+
- category: brightness
|
|
1246
|
+
value: 20
|
|
1247
|
+
- category: hue
|
|
1248
|
+
value: 240
|
|
1249
|
+
- category: saturation
|
|
1250
|
+
value: 50
|
|
1251
|
+
- category: device_information
|
|
1252
|
+
properties:
|
|
1253
|
+
- category: manufacturer
|
|
1254
|
+
value: "FastyBird"
|
|
1255
|
+
|
|
1256
|
+
- name: "Master Bedroom Ceiling Fan"
|
|
1257
|
+
category: fan
|
|
1258
|
+
room: master-suite
|
|
1259
|
+
channels:
|
|
1260
|
+
- category: fan
|
|
1261
|
+
properties:
|
|
1262
|
+
- category: on
|
|
1263
|
+
value: false
|
|
1264
|
+
- category: speed
|
|
1265
|
+
value: "low"
|
|
1266
|
+
- category: device_information
|
|
1267
|
+
properties:
|
|
1268
|
+
- category: manufacturer
|
|
1269
|
+
value: "FastyBird"
|
|
1270
|
+
|
|
1271
|
+
- name: "Master Bedroom TV"
|
|
1272
|
+
category: television
|
|
1273
|
+
room: master-suite
|
|
1274
|
+
behavior_mode: realistic
|
|
1275
|
+
channels:
|
|
1276
|
+
- category: television
|
|
1277
|
+
properties:
|
|
1278
|
+
- category: on
|
|
1279
|
+
value: false
|
|
1280
|
+
- category: speaker
|
|
1281
|
+
properties:
|
|
1282
|
+
- category: volume
|
|
1283
|
+
value: 15
|
|
1284
|
+
- category: active
|
|
1285
|
+
value: true
|
|
1286
|
+
- category: device_information
|
|
1287
|
+
properties:
|
|
1288
|
+
- category: manufacturer
|
|
1289
|
+
value: "FastyBird"
|
|
1290
|
+
|
|
1291
|
+
- name: "Master Bedroom Climate Sensor"
|
|
1292
|
+
category: sensor
|
|
1293
|
+
room: master-suite
|
|
1294
|
+
auto_simulate: true
|
|
1295
|
+
channels:
|
|
1296
|
+
- category: temperature
|
|
1297
|
+
properties:
|
|
1298
|
+
- category: temperature
|
|
1299
|
+
value: 21.0
|
|
1300
|
+
- category: humidity
|
|
1301
|
+
properties:
|
|
1302
|
+
- category: humidity
|
|
1303
|
+
value: 50
|
|
1304
|
+
- category: device_information
|
|
1305
|
+
properties:
|
|
1306
|
+
- category: manufacturer
|
|
1307
|
+
value: "FastyBird"
|
|
1308
|
+
|
|
1309
|
+
- name: "Master Bedroom AC"
|
|
1310
|
+
category: air_conditioner
|
|
1311
|
+
room: master-suite
|
|
1312
|
+
auto_simulate: true
|
|
1313
|
+
behavior_mode: realistic
|
|
1314
|
+
channels:
|
|
1315
|
+
- category: cooler
|
|
1316
|
+
properties:
|
|
1317
|
+
- category: on
|
|
1318
|
+
value: false
|
|
1319
|
+
- category: temperature
|
|
1320
|
+
value: 22.0
|
|
1321
|
+
- category: temperature
|
|
1322
|
+
properties:
|
|
1323
|
+
- category: temperature
|
|
1324
|
+
value: 23.0
|
|
1325
|
+
- category: device_information
|
|
1326
|
+
properties:
|
|
1327
|
+
- category: manufacturer
|
|
1328
|
+
value: "FastyBird"
|
|
1329
|
+
|
|
1330
|
+
- name: "Master Bedroom Humidifier"
|
|
1331
|
+
category: air_humidifier
|
|
1332
|
+
room: master-suite
|
|
1333
|
+
auto_simulate: true
|
|
1334
|
+
behavior_mode: realistic
|
|
1335
|
+
channels:
|
|
1336
|
+
- category: humidifier
|
|
1337
|
+
properties:
|
|
1338
|
+
- category: on
|
|
1339
|
+
value: false
|
|
1340
|
+
- category: humidity
|
|
1341
|
+
value: 50
|
|
1342
|
+
- category: humidity
|
|
1343
|
+
properties:
|
|
1344
|
+
- category: humidity
|
|
1345
|
+
value: 45
|
|
1346
|
+
- category: device_information
|
|
1347
|
+
properties:
|
|
1348
|
+
- category: manufacturer
|
|
1349
|
+
value: "FastyBird"
|
|
1350
|
+
|
|
1351
|
+
- name: "Master Bedroom Blackout Shades"
|
|
1352
|
+
category: window_covering
|
|
1353
|
+
room: master-suite
|
|
1354
|
+
auto_simulate: true
|
|
1355
|
+
behavior_mode: realistic
|
|
1356
|
+
channels:
|
|
1357
|
+
- category: window_covering
|
|
1358
|
+
properties:
|
|
1359
|
+
- category: position
|
|
1360
|
+
value: 0
|
|
1361
|
+
- category: type
|
|
1362
|
+
value: "roller"
|
|
1363
|
+
- category: device_information
|
|
1364
|
+
properties:
|
|
1365
|
+
- category: manufacturer
|
|
1366
|
+
value: "FastyBird"
|
|
1367
|
+
|
|
1368
|
+
- name: "Master Bedroom Sheer Curtains"
|
|
1369
|
+
category: window_covering
|
|
1370
|
+
room: master-suite
|
|
1371
|
+
behavior_mode: realistic
|
|
1372
|
+
channels:
|
|
1373
|
+
- category: window_covering
|
|
1374
|
+
properties:
|
|
1375
|
+
- category: position
|
|
1376
|
+
value: 100
|
|
1377
|
+
- category: type
|
|
1378
|
+
value: "curtain"
|
|
1379
|
+
- category: device_information
|
|
1380
|
+
properties:
|
|
1381
|
+
- category: manufacturer
|
|
1382
|
+
value: "FastyBird"
|
|
1383
|
+
|
|
1384
|
+
- name: "Master Bedroom Motion Sensor"
|
|
1385
|
+
category: sensor
|
|
1386
|
+
room: master-suite
|
|
1387
|
+
auto_simulate: true
|
|
1388
|
+
simulate_interval: 5000
|
|
1389
|
+
channels:
|
|
1390
|
+
- category: motion
|
|
1391
|
+
properties:
|
|
1392
|
+
- category: detected
|
|
1393
|
+
value: false
|
|
1394
|
+
- category: device_information
|
|
1395
|
+
properties:
|
|
1396
|
+
- category: manufacturer
|
|
1397
|
+
value: "FastyBird"
|
|
1398
|
+
|
|
1399
|
+
# ============================================================================
|
|
1400
|
+
# FLOOR 2 - MASTER BATHROOM
|
|
1401
|
+
# ============================================================================
|
|
1402
|
+
- name: "Master Bath Main Light"
|
|
1403
|
+
category: lighting
|
|
1404
|
+
room: master-bathroom
|
|
1405
|
+
lighting_role: main
|
|
1406
|
+
channels:
|
|
1407
|
+
- category: light
|
|
1408
|
+
properties:
|
|
1409
|
+
- category: on
|
|
1410
|
+
value: false
|
|
1411
|
+
- category: brightness
|
|
1412
|
+
value: 100
|
|
1413
|
+
- category: color_temperature
|
|
1414
|
+
value: 5000
|
|
1415
|
+
- category: device_information
|
|
1416
|
+
properties:
|
|
1417
|
+
- category: manufacturer
|
|
1418
|
+
value: "FastyBird"
|
|
1419
|
+
|
|
1420
|
+
- name: "Master Bath Vanity Light"
|
|
1421
|
+
category: lighting
|
|
1422
|
+
room: master-bathroom
|
|
1423
|
+
lighting_role: task
|
|
1424
|
+
channels:
|
|
1425
|
+
- category: light
|
|
1426
|
+
properties:
|
|
1427
|
+
- category: on
|
|
1428
|
+
value: false
|
|
1429
|
+
- category: brightness
|
|
1430
|
+
value: 80
|
|
1431
|
+
- category: color_temperature
|
|
1432
|
+
value: 4000
|
|
1433
|
+
- category: device_information
|
|
1434
|
+
properties:
|
|
1435
|
+
- category: manufacturer
|
|
1436
|
+
value: "FastyBird"
|
|
1437
|
+
|
|
1438
|
+
- name: "Master Bath Shower Light"
|
|
1439
|
+
category: lighting
|
|
1440
|
+
room: master-bathroom
|
|
1441
|
+
lighting_role: main
|
|
1442
|
+
channels:
|
|
1443
|
+
- category: light
|
|
1444
|
+
properties:
|
|
1445
|
+
- category: on
|
|
1446
|
+
value: false
|
|
1447
|
+
- category: brightness
|
|
1448
|
+
value: 100
|
|
1449
|
+
- category: device_information
|
|
1450
|
+
properties:
|
|
1451
|
+
- category: manufacturer
|
|
1452
|
+
value: "FastyBird"
|
|
1453
|
+
|
|
1454
|
+
- name: "Master Bath Exhaust Fan"
|
|
1455
|
+
category: fan
|
|
1456
|
+
room: master-bathroom
|
|
1457
|
+
channels:
|
|
1458
|
+
- category: fan
|
|
1459
|
+
properties:
|
|
1460
|
+
- category: on
|
|
1461
|
+
value: false
|
|
1462
|
+
- category: speed
|
|
1463
|
+
value: "low"
|
|
1464
|
+
- category: device_information
|
|
1465
|
+
properties:
|
|
1466
|
+
- category: manufacturer
|
|
1467
|
+
value: "FastyBird"
|
|
1468
|
+
|
|
1469
|
+
- name: "Master Bath Humidity Sensor"
|
|
1470
|
+
category: sensor
|
|
1471
|
+
room: master-bathroom
|
|
1472
|
+
auto_simulate: true
|
|
1473
|
+
channels:
|
|
1474
|
+
- category: humidity
|
|
1475
|
+
properties:
|
|
1476
|
+
- category: humidity
|
|
1477
|
+
value: 55
|
|
1478
|
+
- category: device_information
|
|
1479
|
+
properties:
|
|
1480
|
+
- category: manufacturer
|
|
1481
|
+
value: "FastyBird"
|
|
1482
|
+
|
|
1483
|
+
- name: "Master Bath Leak Sensor"
|
|
1484
|
+
category: sensor
|
|
1485
|
+
room: master-bathroom
|
|
1486
|
+
channels:
|
|
1487
|
+
- category: leak
|
|
1488
|
+
properties:
|
|
1489
|
+
- category: detected
|
|
1490
|
+
value: false
|
|
1491
|
+
- category: device_information
|
|
1492
|
+
properties:
|
|
1493
|
+
- category: manufacturer
|
|
1494
|
+
value: "FastyBird"
|
|
1495
|
+
|
|
1496
|
+
- name: "Master Bath Dehumidifier"
|
|
1497
|
+
category: air_dehumidifier
|
|
1498
|
+
room: master-bathroom
|
|
1499
|
+
auto_simulate: true
|
|
1500
|
+
channels:
|
|
1501
|
+
- category: dehumidifier
|
|
1502
|
+
properties:
|
|
1503
|
+
- category: on
|
|
1504
|
+
value: false
|
|
1505
|
+
- category: humidity
|
|
1506
|
+
value: 50
|
|
1507
|
+
- category: humidity
|
|
1508
|
+
properties:
|
|
1509
|
+
- category: humidity
|
|
1510
|
+
value: 58
|
|
1511
|
+
- category: device_information
|
|
1512
|
+
properties:
|
|
1513
|
+
- category: manufacturer
|
|
1514
|
+
value: "FastyBird"
|
|
1515
|
+
|
|
1516
|
+
# ============================================================================
|
|
1517
|
+
# FLOOR 2 - MASTER CLOSET
|
|
1518
|
+
# ============================================================================
|
|
1519
|
+
- name: "Master Closet Light"
|
|
1520
|
+
category: lighting
|
|
1521
|
+
room: master-closet
|
|
1522
|
+
lighting_role: main
|
|
1523
|
+
channels:
|
|
1524
|
+
- category: light
|
|
1525
|
+
properties:
|
|
1526
|
+
- category: on
|
|
1527
|
+
value: false
|
|
1528
|
+
- category: brightness
|
|
1529
|
+
value: 100
|
|
1530
|
+
- category: device_information
|
|
1531
|
+
properties:
|
|
1532
|
+
- category: manufacturer
|
|
1533
|
+
value: "FastyBird"
|
|
1534
|
+
|
|
1535
|
+
- name: "Master Closet Motion Sensor"
|
|
1536
|
+
category: sensor
|
|
1537
|
+
room: master-closet
|
|
1538
|
+
auto_simulate: true
|
|
1539
|
+
channels:
|
|
1540
|
+
- category: motion
|
|
1541
|
+
properties:
|
|
1542
|
+
- category: detected
|
|
1543
|
+
value: false
|
|
1544
|
+
- category: device_information
|
|
1545
|
+
properties:
|
|
1546
|
+
- category: manufacturer
|
|
1547
|
+
value: "FastyBird"
|
|
1548
|
+
|
|
1549
|
+
# ============================================================================
|
|
1550
|
+
# FLOOR 2 - BEDROOM 2
|
|
1551
|
+
# ============================================================================
|
|
1552
|
+
- name: "Bedroom 2 Ceiling Light"
|
|
1553
|
+
category: lighting
|
|
1554
|
+
room: bedroom-2
|
|
1555
|
+
lighting_role: main
|
|
1556
|
+
channels:
|
|
1557
|
+
- category: light
|
|
1558
|
+
properties:
|
|
1559
|
+
- category: on
|
|
1560
|
+
value: false
|
|
1561
|
+
- category: brightness
|
|
1562
|
+
value: 100
|
|
1563
|
+
- category: device_information
|
|
1564
|
+
properties:
|
|
1565
|
+
- category: manufacturer
|
|
1566
|
+
value: "FastyBird"
|
|
1567
|
+
|
|
1568
|
+
- name: "Bedroom 2 Desk Lamp"
|
|
1569
|
+
category: lighting
|
|
1570
|
+
room: bedroom-2
|
|
1571
|
+
lighting_role: task
|
|
1572
|
+
channels:
|
|
1573
|
+
- category: light
|
|
1574
|
+
properties:
|
|
1575
|
+
- category: on
|
|
1576
|
+
value: false
|
|
1577
|
+
- category: brightness
|
|
1578
|
+
value: 70
|
|
1579
|
+
- category: color_temperature
|
|
1580
|
+
value: 5000
|
|
1581
|
+
- category: device_information
|
|
1582
|
+
properties:
|
|
1583
|
+
- category: manufacturer
|
|
1584
|
+
value: "FastyBird"
|
|
1585
|
+
|
|
1586
|
+
- name: "Bedroom 2 Ceiling Fan"
|
|
1587
|
+
category: fan
|
|
1588
|
+
room: bedroom-2
|
|
1589
|
+
channels:
|
|
1590
|
+
- category: fan
|
|
1591
|
+
properties:
|
|
1592
|
+
- category: on
|
|
1593
|
+
value: false
|
|
1594
|
+
- category: speed
|
|
1595
|
+
value: "medium"
|
|
1596
|
+
- category: device_information
|
|
1597
|
+
properties:
|
|
1598
|
+
- category: manufacturer
|
|
1599
|
+
value: "FastyBird"
|
|
1600
|
+
|
|
1601
|
+
- name: "Bedroom 2 Roller Shade"
|
|
1602
|
+
category: window_covering
|
|
1603
|
+
room: bedroom-2
|
|
1604
|
+
behavior_mode: realistic
|
|
1605
|
+
channels:
|
|
1606
|
+
- category: window_covering
|
|
1607
|
+
properties:
|
|
1608
|
+
- category: position
|
|
1609
|
+
value: 50
|
|
1610
|
+
- category: type
|
|
1611
|
+
value: "roller"
|
|
1612
|
+
- category: device_information
|
|
1613
|
+
properties:
|
|
1614
|
+
- category: manufacturer
|
|
1615
|
+
value: "FastyBird"
|
|
1616
|
+
|
|
1617
|
+
# ============================================================================
|
|
1618
|
+
# FLOOR 2 - BEDROOM 3
|
|
1619
|
+
# ============================================================================
|
|
1620
|
+
- name: "Bedroom 3 Ceiling Light"
|
|
1621
|
+
category: lighting
|
|
1622
|
+
room: bedroom-3
|
|
1623
|
+
lighting_role: main
|
|
1624
|
+
channels:
|
|
1625
|
+
- category: light
|
|
1626
|
+
properties:
|
|
1627
|
+
- category: on
|
|
1628
|
+
value: false
|
|
1629
|
+
- category: brightness
|
|
1630
|
+
value: 100
|
|
1631
|
+
- category: device_information
|
|
1632
|
+
properties:
|
|
1633
|
+
- category: manufacturer
|
|
1634
|
+
value: "FastyBird"
|
|
1635
|
+
|
|
1636
|
+
- name: "Bedroom 3 Bedside Lamp"
|
|
1637
|
+
category: lighting
|
|
1638
|
+
room: bedroom-3
|
|
1639
|
+
lighting_role: ambient
|
|
1640
|
+
channels:
|
|
1641
|
+
- category: light
|
|
1642
|
+
properties:
|
|
1643
|
+
- category: on
|
|
1644
|
+
value: false
|
|
1645
|
+
- category: brightness
|
|
1646
|
+
value: 40
|
|
1647
|
+
- category: device_information
|
|
1648
|
+
properties:
|
|
1649
|
+
- category: manufacturer
|
|
1650
|
+
value: "FastyBird"
|
|
1651
|
+
|
|
1652
|
+
- name: "Bedroom 3 Ceiling Fan"
|
|
1653
|
+
category: fan
|
|
1654
|
+
room: bedroom-3
|
|
1655
|
+
channels:
|
|
1656
|
+
- category: fan
|
|
1657
|
+
properties:
|
|
1658
|
+
- category: on
|
|
1659
|
+
value: false
|
|
1660
|
+
- category: speed
|
|
1661
|
+
value: "low"
|
|
1662
|
+
- category: device_information
|
|
1663
|
+
properties:
|
|
1664
|
+
- category: manufacturer
|
|
1665
|
+
value: "FastyBird"
|
|
1666
|
+
|
|
1667
|
+
- name: "Bedroom 3 Roller Shade"
|
|
1668
|
+
category: window_covering
|
|
1669
|
+
room: bedroom-3
|
|
1670
|
+
behavior_mode: realistic
|
|
1671
|
+
channels:
|
|
1672
|
+
- category: window_covering
|
|
1673
|
+
properties:
|
|
1674
|
+
- category: position
|
|
1675
|
+
value: 0
|
|
1676
|
+
- category: type
|
|
1677
|
+
value: "roller"
|
|
1678
|
+
- category: device_information
|
|
1679
|
+
properties:
|
|
1680
|
+
- category: manufacturer
|
|
1681
|
+
value: "FastyBird"
|
|
1682
|
+
|
|
1683
|
+
# ============================================================================
|
|
1684
|
+
# FLOOR 2 - BEDROOM 4
|
|
1685
|
+
# ============================================================================
|
|
1686
|
+
- name: "Bedroom 4 Ceiling Light"
|
|
1687
|
+
category: lighting
|
|
1688
|
+
room: bedroom-4
|
|
1689
|
+
lighting_role: main
|
|
1690
|
+
channels:
|
|
1691
|
+
- category: light
|
|
1692
|
+
properties:
|
|
1693
|
+
- category: on
|
|
1694
|
+
value: false
|
|
1695
|
+
- category: brightness
|
|
1696
|
+
value: 100
|
|
1697
|
+
- category: device_information
|
|
1698
|
+
properties:
|
|
1699
|
+
- category: manufacturer
|
|
1700
|
+
value: "FastyBird"
|
|
1701
|
+
|
|
1702
|
+
- name: "Bedroom 4 Nightlight"
|
|
1703
|
+
category: lighting
|
|
1704
|
+
room: bedroom-4
|
|
1705
|
+
lighting_role: night
|
|
1706
|
+
channels:
|
|
1707
|
+
- category: light
|
|
1708
|
+
properties:
|
|
1709
|
+
- category: on
|
|
1710
|
+
value: true
|
|
1711
|
+
- category: brightness
|
|
1712
|
+
value: 10
|
|
1713
|
+
- category: hue
|
|
1714
|
+
value: 30
|
|
1715
|
+
- category: saturation
|
|
1716
|
+
value: 80
|
|
1717
|
+
- category: device_information
|
|
1718
|
+
properties:
|
|
1719
|
+
- category: manufacturer
|
|
1720
|
+
value: "FastyBird"
|
|
1721
|
+
|
|
1722
|
+
- name: "Bedroom 4 Roller Shade"
|
|
1723
|
+
category: window_covering
|
|
1724
|
+
room: bedroom-4
|
|
1725
|
+
behavior_mode: realistic
|
|
1726
|
+
channels:
|
|
1727
|
+
- category: window_covering
|
|
1728
|
+
properties:
|
|
1729
|
+
- category: position
|
|
1730
|
+
value: 0
|
|
1731
|
+
- category: type
|
|
1732
|
+
value: "roller"
|
|
1733
|
+
- category: device_information
|
|
1734
|
+
properties:
|
|
1735
|
+
- category: manufacturer
|
|
1736
|
+
value: "FastyBird"
|
|
1737
|
+
|
|
1738
|
+
# ============================================================================
|
|
1739
|
+
# FLOOR 2 - BATHROOM 2
|
|
1740
|
+
# ============================================================================
|
|
1741
|
+
- name: "Bathroom 2 Light"
|
|
1742
|
+
category: lighting
|
|
1743
|
+
room: bathroom-2
|
|
1744
|
+
lighting_role: main
|
|
1745
|
+
channels:
|
|
1746
|
+
- category: light
|
|
1747
|
+
properties:
|
|
1748
|
+
- category: on
|
|
1749
|
+
value: false
|
|
1750
|
+
- category: brightness
|
|
1751
|
+
value: 100
|
|
1752
|
+
- category: device_information
|
|
1753
|
+
properties:
|
|
1754
|
+
- category: manufacturer
|
|
1755
|
+
value: "FastyBird"
|
|
1756
|
+
|
|
1757
|
+
- name: "Bathroom 2 Fan"
|
|
1758
|
+
category: fan
|
|
1759
|
+
room: bathroom-2
|
|
1760
|
+
channels:
|
|
1761
|
+
- category: fan
|
|
1762
|
+
properties:
|
|
1763
|
+
- category: on
|
|
1764
|
+
value: false
|
|
1765
|
+
- category: device_information
|
|
1766
|
+
properties:
|
|
1767
|
+
- category: manufacturer
|
|
1768
|
+
value: "FastyBird"
|
|
1769
|
+
|
|
1770
|
+
- name: "Bathroom 2 Humidity Sensor"
|
|
1771
|
+
category: sensor
|
|
1772
|
+
room: bathroom-2
|
|
1773
|
+
auto_simulate: true
|
|
1774
|
+
channels:
|
|
1775
|
+
- category: humidity
|
|
1776
|
+
properties:
|
|
1777
|
+
- category: humidity
|
|
1778
|
+
value: 50
|
|
1779
|
+
- category: device_information
|
|
1780
|
+
properties:
|
|
1781
|
+
- category: manufacturer
|
|
1782
|
+
value: "FastyBird"
|
|
1783
|
+
|
|
1784
|
+
# ============================================================================
|
|
1785
|
+
# FLOOR 2 - BATHROOM 3
|
|
1786
|
+
# ============================================================================
|
|
1787
|
+
- name: "Bathroom 3 Light"
|
|
1788
|
+
category: lighting
|
|
1789
|
+
room: bathroom-3
|
|
1790
|
+
lighting_role: main
|
|
1791
|
+
channels:
|
|
1792
|
+
- category: light
|
|
1793
|
+
properties:
|
|
1794
|
+
- category: on
|
|
1795
|
+
value: false
|
|
1796
|
+
- category: brightness
|
|
1797
|
+
value: 100
|
|
1798
|
+
- category: device_information
|
|
1799
|
+
properties:
|
|
1800
|
+
- category: manufacturer
|
|
1801
|
+
value: "FastyBird"
|
|
1802
|
+
|
|
1803
|
+
- name: "Bathroom 3 Fan"
|
|
1804
|
+
category: fan
|
|
1805
|
+
room: bathroom-3
|
|
1806
|
+
channels:
|
|
1807
|
+
- category: fan
|
|
1808
|
+
properties:
|
|
1809
|
+
- category: on
|
|
1810
|
+
value: false
|
|
1811
|
+
- category: device_information
|
|
1812
|
+
properties:
|
|
1813
|
+
- category: manufacturer
|
|
1814
|
+
value: "FastyBird"
|
|
1815
|
+
|
|
1816
|
+
# ============================================================================
|
|
1817
|
+
# FLOOR 2 - BONUS ROOM
|
|
1818
|
+
# ============================================================================
|
|
1819
|
+
- name: "Bonus Room Main Light"
|
|
1820
|
+
category: lighting
|
|
1821
|
+
room: bonus-room
|
|
1822
|
+
lighting_role: main
|
|
1823
|
+
channels:
|
|
1824
|
+
- category: light
|
|
1825
|
+
properties:
|
|
1826
|
+
- category: on
|
|
1827
|
+
value: false
|
|
1828
|
+
- category: brightness
|
|
1829
|
+
value: 80
|
|
1830
|
+
- category: device_information
|
|
1831
|
+
properties:
|
|
1832
|
+
- category: manufacturer
|
|
1833
|
+
value: "FastyBird"
|
|
1834
|
+
|
|
1835
|
+
- name: "Bonus Room Accent Lights"
|
|
1836
|
+
category: lighting
|
|
1837
|
+
room: bonus-room
|
|
1838
|
+
lighting_role: accent
|
|
1839
|
+
channels:
|
|
1840
|
+
- category: light
|
|
1841
|
+
properties:
|
|
1842
|
+
- category: on
|
|
1843
|
+
value: false
|
|
1844
|
+
- category: brightness
|
|
1845
|
+
value: 40
|
|
1846
|
+
- category: hue
|
|
1847
|
+
value: 280
|
|
1848
|
+
- category: saturation
|
|
1849
|
+
value: 70
|
|
1850
|
+
- category: device_information
|
|
1851
|
+
properties:
|
|
1852
|
+
- category: manufacturer
|
|
1853
|
+
value: "FastyBird"
|
|
1854
|
+
|
|
1855
|
+
- name: "Bonus Room TV"
|
|
1856
|
+
category: television
|
|
1857
|
+
room: bonus-room
|
|
1858
|
+
behavior_mode: realistic
|
|
1859
|
+
channels:
|
|
1860
|
+
- category: television
|
|
1861
|
+
properties:
|
|
1862
|
+
- category: on
|
|
1863
|
+
value: false
|
|
1864
|
+
- category: speaker
|
|
1865
|
+
properties:
|
|
1866
|
+
- category: volume
|
|
1867
|
+
value: 25
|
|
1868
|
+
- category: active
|
|
1869
|
+
value: true
|
|
1870
|
+
- category: device_information
|
|
1871
|
+
properties:
|
|
1872
|
+
- category: manufacturer
|
|
1873
|
+
value: "FastyBird"
|
|
1874
|
+
|
|
1875
|
+
- name: "Bonus Room Ceiling Fan"
|
|
1876
|
+
category: fan
|
|
1877
|
+
room: bonus-room
|
|
1878
|
+
channels:
|
|
1879
|
+
- category: fan
|
|
1880
|
+
properties:
|
|
1881
|
+
- category: on
|
|
1882
|
+
value: false
|
|
1883
|
+
- category: speed
|
|
1884
|
+
value: "medium"
|
|
1885
|
+
- category: device_information
|
|
1886
|
+
properties:
|
|
1887
|
+
- category: manufacturer
|
|
1888
|
+
value: "FastyBird"
|
|
1889
|
+
|
|
1890
|
+
# ============================================================================
|
|
1891
|
+
# OUTDOOR - FRONT PORCH
|
|
1892
|
+
# ============================================================================
|
|
1893
|
+
- name: "Front Porch Light"
|
|
1894
|
+
category: lighting
|
|
1895
|
+
room: front-porch
|
|
1896
|
+
lighting_role: main
|
|
1897
|
+
channels:
|
|
1898
|
+
- category: light
|
|
1899
|
+
properties:
|
|
1900
|
+
- category: on
|
|
1901
|
+
value: false
|
|
1902
|
+
- category: brightness
|
|
1903
|
+
value: 100
|
|
1904
|
+
- category: device_information
|
|
1905
|
+
properties:
|
|
1906
|
+
- category: manufacturer
|
|
1907
|
+
value: "FastyBird"
|
|
1908
|
+
|
|
1909
|
+
- name: "Front Porch Motion Sensor"
|
|
1910
|
+
category: sensor
|
|
1911
|
+
room: front-porch
|
|
1912
|
+
auto_simulate: true
|
|
1913
|
+
simulate_interval: 5000
|
|
1914
|
+
channels:
|
|
1915
|
+
- category: motion
|
|
1916
|
+
properties:
|
|
1917
|
+
- category: detected
|
|
1918
|
+
value: false
|
|
1919
|
+
- category: device_information
|
|
1920
|
+
properties:
|
|
1921
|
+
- category: manufacturer
|
|
1922
|
+
value: "FastyBird"
|
|
1923
|
+
|
|
1924
|
+
# ============================================================================
|
|
1925
|
+
# OUTDOOR - BACK PATIO
|
|
1926
|
+
# ============================================================================
|
|
1927
|
+
- name: "Back Patio Ceiling Light"
|
|
1928
|
+
category: lighting
|
|
1929
|
+
room: back-patio
|
|
1930
|
+
lighting_role: main
|
|
1931
|
+
channels:
|
|
1932
|
+
- category: light
|
|
1933
|
+
properties:
|
|
1934
|
+
- category: on
|
|
1935
|
+
value: false
|
|
1936
|
+
- category: brightness
|
|
1937
|
+
value: 100
|
|
1938
|
+
- category: device_information
|
|
1939
|
+
properties:
|
|
1940
|
+
- category: manufacturer
|
|
1941
|
+
value: "FastyBird"
|
|
1942
|
+
|
|
1943
|
+
- name: "Back Patio String Lights"
|
|
1944
|
+
category: lighting
|
|
1945
|
+
room: back-patio
|
|
1946
|
+
lighting_role: accent
|
|
1947
|
+
channels:
|
|
1948
|
+
- category: light
|
|
1949
|
+
properties:
|
|
1950
|
+
- category: on
|
|
1951
|
+
value: false
|
|
1952
|
+
- category: brightness
|
|
1953
|
+
value: 70
|
|
1954
|
+
- category: hue
|
|
1955
|
+
value: 45
|
|
1956
|
+
- category: saturation
|
|
1957
|
+
value: 80
|
|
1958
|
+
- category: device_information
|
|
1959
|
+
properties:
|
|
1960
|
+
- category: manufacturer
|
|
1961
|
+
value: "FastyBird"
|
|
1962
|
+
|
|
1963
|
+
- name: "Back Patio Ceiling Fan"
|
|
1964
|
+
category: fan
|
|
1965
|
+
room: back-patio
|
|
1966
|
+
channels:
|
|
1967
|
+
- category: fan
|
|
1968
|
+
properties:
|
|
1969
|
+
- category: on
|
|
1970
|
+
value: false
|
|
1971
|
+
- category: speed
|
|
1972
|
+
value: "high"
|
|
1973
|
+
- category: device_information
|
|
1974
|
+
properties:
|
|
1975
|
+
- category: manufacturer
|
|
1976
|
+
value: "FastyBird"
|
|
1977
|
+
|
|
1978
|
+
- name: "Patio Door Lock"
|
|
1979
|
+
category: lock
|
|
1980
|
+
room: back-patio
|
|
1981
|
+
behavior_mode: realistic
|
|
1982
|
+
channels:
|
|
1983
|
+
- category: lock
|
|
1984
|
+
properties:
|
|
1985
|
+
- category: status
|
|
1986
|
+
value: "locked"
|
|
1987
|
+
- category: device_information
|
|
1988
|
+
properties:
|
|
1989
|
+
- category: manufacturer
|
|
1990
|
+
value: "FastyBird"
|
|
1991
|
+
|
|
1992
|
+
- name: "Patio Door Sensor"
|
|
1993
|
+
category: sensor
|
|
1994
|
+
room: back-patio
|
|
1995
|
+
channels:
|
|
1996
|
+
- category: contact
|
|
1997
|
+
properties:
|
|
1998
|
+
- category: detected
|
|
1999
|
+
value: false
|
|
2000
|
+
- category: device_information
|
|
2001
|
+
properties:
|
|
2002
|
+
- category: manufacturer
|
|
2003
|
+
value: "FastyBird"
|
|
2004
|
+
|
|
2005
|
+
- name: "Patio Motorized Awning"
|
|
2006
|
+
category: window_covering
|
|
2007
|
+
room: back-patio
|
|
2008
|
+
behavior_mode: realistic
|
|
2009
|
+
channels:
|
|
2010
|
+
- category: window_covering
|
|
2011
|
+
properties:
|
|
2012
|
+
- category: position
|
|
2013
|
+
value: 0
|
|
2014
|
+
- category: type
|
|
2015
|
+
value: "outdoor_blind"
|
|
2016
|
+
- category: device_information
|
|
2017
|
+
properties:
|
|
2018
|
+
- category: manufacturer
|
|
2019
|
+
value: "FastyBird"
|
|
2020
|
+
|
|
2021
|
+
- name: "Patio Heater Outlet"
|
|
2022
|
+
category: outlet
|
|
2023
|
+
room: back-patio
|
|
2024
|
+
channels:
|
|
2025
|
+
- category: outlet
|
|
2026
|
+
properties:
|
|
2027
|
+
- category: on
|
|
2028
|
+
value: false
|
|
2029
|
+
- category: device_information
|
|
2030
|
+
properties:
|
|
2031
|
+
- category: manufacturer
|
|
2032
|
+
value: "FastyBird"
|
|
2033
|
+
|
|
2034
|
+
# ============================================================================
|
|
2035
|
+
# OUTDOOR - POOL AREA
|
|
2036
|
+
# ============================================================================
|
|
2037
|
+
- name: "Pool Area Lights"
|
|
2038
|
+
category: lighting
|
|
2039
|
+
room: pool-area
|
|
2040
|
+
lighting_role: main
|
|
2041
|
+
channels:
|
|
2042
|
+
- category: light
|
|
2043
|
+
properties:
|
|
2044
|
+
- category: on
|
|
2045
|
+
value: false
|
|
2046
|
+
- category: brightness
|
|
2047
|
+
value: 100
|
|
2048
|
+
- category: device_information
|
|
2049
|
+
properties:
|
|
2050
|
+
- category: manufacturer
|
|
2051
|
+
value: "FastyBird"
|
|
2052
|
+
|
|
2053
|
+
- name: "Pool Underwater Lights"
|
|
2054
|
+
category: lighting
|
|
2055
|
+
room: pool-area
|
|
2056
|
+
lighting_role: main
|
|
2057
|
+
channels:
|
|
2058
|
+
- category: light
|
|
2059
|
+
properties:
|
|
2060
|
+
- category: on
|
|
2061
|
+
value: false
|
|
2062
|
+
- category: brightness
|
|
2063
|
+
value: 80
|
|
2064
|
+
- category: hue
|
|
2065
|
+
value: 200
|
|
2066
|
+
- category: saturation
|
|
2067
|
+
value: 90
|
|
2068
|
+
- category: device_information
|
|
2069
|
+
properties:
|
|
2070
|
+
- category: manufacturer
|
|
2071
|
+
value: "FastyBird"
|
|
2072
|
+
|
|
2073
|
+
- name: "Pool Pump Outlet"
|
|
2074
|
+
category: outlet
|
|
2075
|
+
room: pool-area
|
|
2076
|
+
auto_simulate: true
|
|
2077
|
+
channels:
|
|
2078
|
+
- category: outlet
|
|
2079
|
+
properties:
|
|
2080
|
+
- category: on
|
|
2081
|
+
value: true
|
|
2082
|
+
- category: electrical_power
|
|
2083
|
+
properties:
|
|
2084
|
+
- category: power
|
|
2085
|
+
value: 1500.0
|
|
2086
|
+
- category: device_information
|
|
2087
|
+
properties:
|
|
2088
|
+
- category: manufacturer
|
|
2089
|
+
value: "FastyBird"
|
|
2090
|
+
|
|
2091
|
+
- name: "Pool Heater Outlet"
|
|
2092
|
+
category: outlet
|
|
2093
|
+
room: pool-area
|
|
2094
|
+
auto_simulate: true
|
|
2095
|
+
channels:
|
|
2096
|
+
- category: outlet
|
|
2097
|
+
properties:
|
|
2098
|
+
- category: on
|
|
2099
|
+
value: false
|
|
2100
|
+
- category: electrical_power
|
|
2101
|
+
properties:
|
|
2102
|
+
- category: power
|
|
2103
|
+
value: 0.0
|
|
2104
|
+
- category: device_information
|
|
2105
|
+
properties:
|
|
2106
|
+
- category: manufacturer
|
|
2107
|
+
value: "FastyBird"
|
|
2108
|
+
|
|
2109
|
+
- name: "Pool Temperature Sensor"
|
|
2110
|
+
category: sensor
|
|
2111
|
+
room: pool-area
|
|
2112
|
+
auto_simulate: true
|
|
2113
|
+
simulate_interval: 60000
|
|
2114
|
+
channels:
|
|
2115
|
+
- category: temperature
|
|
2116
|
+
properties:
|
|
2117
|
+
- category: temperature
|
|
2118
|
+
value: 28.0
|
|
2119
|
+
- category: device_information
|
|
2120
|
+
properties:
|
|
2121
|
+
- category: manufacturer
|
|
2122
|
+
value: "FastyBird"
|
|
2123
|
+
|
|
2124
|
+
# ============================================================================
|
|
2125
|
+
# OUTDOOR - BACKYARD
|
|
2126
|
+
# ============================================================================
|
|
2127
|
+
- name: "Backyard Flood Lights"
|
|
2128
|
+
category: lighting
|
|
2129
|
+
room: backyard
|
|
2130
|
+
lighting_role: main
|
|
2131
|
+
channels:
|
|
2132
|
+
- category: light
|
|
2133
|
+
properties:
|
|
2134
|
+
- category: on
|
|
2135
|
+
value: false
|
|
2136
|
+
- category: brightness
|
|
2137
|
+
value: 100
|
|
2138
|
+
- category: device_information
|
|
2139
|
+
properties:
|
|
2140
|
+
- category: manufacturer
|
|
2141
|
+
value: "FastyBird"
|
|
2142
|
+
|
|
2143
|
+
- name: "Backyard Path Lights"
|
|
2144
|
+
category: lighting
|
|
2145
|
+
room: backyard
|
|
2146
|
+
lighting_role: ambient
|
|
2147
|
+
channels:
|
|
2148
|
+
- category: light
|
|
2149
|
+
properties:
|
|
2150
|
+
- category: on
|
|
2151
|
+
value: false
|
|
2152
|
+
- category: brightness
|
|
2153
|
+
value: 50
|
|
2154
|
+
- category: device_information
|
|
2155
|
+
properties:
|
|
2156
|
+
- category: manufacturer
|
|
2157
|
+
value: "FastyBird"
|
|
2158
|
+
|
|
2159
|
+
- name: "Backyard Garden Lights"
|
|
2160
|
+
category: lighting
|
|
2161
|
+
room: backyard
|
|
2162
|
+
lighting_role: main
|
|
2163
|
+
channels:
|
|
2164
|
+
- category: light
|
|
2165
|
+
properties:
|
|
2166
|
+
- category: on
|
|
2167
|
+
value: false
|
|
2168
|
+
- category: brightness
|
|
2169
|
+
value: 40
|
|
2170
|
+
- category: hue
|
|
2171
|
+
value: 120
|
|
2172
|
+
- category: saturation
|
|
2173
|
+
value: 60
|
|
2174
|
+
- category: device_information
|
|
2175
|
+
properties:
|
|
2176
|
+
- category: manufacturer
|
|
2177
|
+
value: "FastyBird"
|
|
2178
|
+
|
|
2179
|
+
- name: "Backyard Weather Station"
|
|
2180
|
+
category: sensor
|
|
2181
|
+
room: backyard
|
|
2182
|
+
auto_simulate: true
|
|
2183
|
+
simulate_interval: 60000
|
|
2184
|
+
channels:
|
|
2185
|
+
- category: temperature
|
|
2186
|
+
properties:
|
|
2187
|
+
- category: temperature
|
|
2188
|
+
value: 18.0
|
|
2189
|
+
- category: humidity
|
|
2190
|
+
properties:
|
|
2191
|
+
- category: humidity
|
|
2192
|
+
value: 65
|
|
2193
|
+
- category: illuminance
|
|
2194
|
+
properties:
|
|
2195
|
+
- category: illuminance
|
|
2196
|
+
value: 500
|
|
2197
|
+
- category: device_information
|
|
2198
|
+
properties:
|
|
2199
|
+
- category: manufacturer
|
|
2200
|
+
value: "FastyBird"
|
|
2201
|
+
|
|
2202
|
+
- name: "Garden Sprinkler Zone 1"
|
|
2203
|
+
category: sprinkler
|
|
2204
|
+
room: backyard
|
|
2205
|
+
channels:
|
|
2206
|
+
- category: valve
|
|
2207
|
+
properties:
|
|
2208
|
+
- category: on
|
|
2209
|
+
value: false
|
|
2210
|
+
- category: type
|
|
2211
|
+
value: "irrigation"
|
|
2212
|
+
- category: device_information
|
|
2213
|
+
properties:
|
|
2214
|
+
- category: manufacturer
|
|
2215
|
+
value: "FastyBird"
|
|
2216
|
+
|
|
2217
|
+
- name: "Garden Sprinkler Zone 2"
|
|
2218
|
+
category: sprinkler
|
|
2219
|
+
room: backyard
|
|
2220
|
+
channels:
|
|
2221
|
+
- category: valve
|
|
2222
|
+
properties:
|
|
2223
|
+
- category: on
|
|
2224
|
+
value: false
|
|
2225
|
+
- category: type
|
|
2226
|
+
value: "irrigation"
|
|
2227
|
+
- category: device_information
|
|
2228
|
+
properties:
|
|
2229
|
+
- category: manufacturer
|
|
2230
|
+
value: "FastyBird"
|
|
2231
|
+
|
|
2232
|
+
- name: "Garden Sprinkler Zone 3"
|
|
2233
|
+
category: sprinkler
|
|
2234
|
+
room: backyard
|
|
2235
|
+
channels:
|
|
2236
|
+
- category: valve
|
|
2237
|
+
properties:
|
|
2238
|
+
- category: on
|
|
2239
|
+
value: false
|
|
2240
|
+
- category: type
|
|
2241
|
+
value: "irrigation"
|
|
2242
|
+
- category: device_information
|
|
2243
|
+
properties:
|
|
2244
|
+
- category: manufacturer
|
|
2245
|
+
value: "FastyBird"
|
|
2246
|
+
|
|
2247
|
+
- name: "Backyard Motion Sensor"
|
|
2248
|
+
category: sensor
|
|
2249
|
+
room: backyard
|
|
2250
|
+
auto_simulate: true
|
|
2251
|
+
simulate_interval: 5000
|
|
2252
|
+
channels:
|
|
2253
|
+
- category: motion
|
|
2254
|
+
properties:
|
|
2255
|
+
- category: detected
|
|
2256
|
+
value: false
|
|
2257
|
+
- category: device_information
|
|
2258
|
+
properties:
|
|
2259
|
+
- category: manufacturer
|
|
2260
|
+
value: "FastyBird"
|
|
2261
|
+
|
|
2262
|
+
scenes:
|
|
2263
|
+
- name: "Good Night"
|
|
2264
|
+
category: night
|
|
2265
|
+
actions:
|
|
2266
|
+
- device_id: "10000001-0001-4000-8000-000000000001"
|
|
2267
|
+
property_id: "10000001-0001-4000-8000-000000000010"
|
|
2268
|
+
value: false
|
|
2269
|
+
- device_id: "10000001-0001-4000-8000-000000000002"
|
|
2270
|
+
property_id: "10000001-0001-4000-8000-000000000020"
|
|
2271
|
+
value: false
|
|
2272
|
+
- device_id: "10000001-0001-4000-8000-000000000004"
|
|
2273
|
+
property_id: "10000001-0001-4000-8000-000000000040"
|
|
2274
|
+
value: false
|
|
2275
|
+
- device_id: "10000001-0001-4000-8000-000000000003"
|
|
2276
|
+
property_id: "10000001-0001-4000-8000-000000000030"
|
|
2277
|
+
value: "locked"
|
|
2278
|
+
|
|
2279
|
+
- name: "Good Morning"
|
|
2280
|
+
category: morning
|
|
2281
|
+
actions:
|
|
2282
|
+
- device_id: "10000001-0001-4000-8000-000000000005"
|
|
2283
|
+
property_id: "10000001-0001-4000-8000-000000000050"
|
|
2284
|
+
value: true
|
|
2285
|
+
- device_id: "10000001-0001-4000-8000-000000000005"
|
|
2286
|
+
property_id: "10000001-0001-4000-8000-000000000051"
|
|
2287
|
+
value: 100
|
|
2288
|
+
- device_id: "10000001-0001-4000-8000-000000000002"
|
|
2289
|
+
property_id: "10000001-0001-4000-8000-000000000020"
|
|
2290
|
+
value: true
|
|
2291
|
+
- device_id: "10000001-0001-4000-8000-000000000003"
|
|
2292
|
+
property_id: "10000001-0001-4000-8000-000000000030"
|
|
2293
|
+
value: "unlocked"
|