@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,543 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var DeviceMapperService_1;
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
exports.DeviceMapperService = void 0;
|
|
14
|
+
const common_1 = require("@nestjs/common");
|
|
15
|
+
const logger_1 = require("../../../common/logger");
|
|
16
|
+
const transform_utils_1 = require("../../../common/utils/transform.utils");
|
|
17
|
+
const devices_constants_1 = require("../../../modules/devices/devices.constants");
|
|
18
|
+
const channels_properties_service_1 = require("../../../modules/devices/services/channels.properties.service");
|
|
19
|
+
const channels_service_1 = require("../../../modules/devices/services/channels.service");
|
|
20
|
+
const device_connectivity_service_1 = require("../../../modules/devices/services/device-connectivity.service");
|
|
21
|
+
const device_provision_queue_service_1 = require("../../../modules/devices/services/device-provision-queue.service");
|
|
22
|
+
const devices_service_1 = require("../../../modules/devices/services/devices.service");
|
|
23
|
+
const schema_utils_1 = require("../../../modules/devices/utils/schema.utils");
|
|
24
|
+
const devices_shelly_v1_constants_1 = require("../devices-shelly-v1.constants");
|
|
25
|
+
const devices_shelly_v1_exceptions_1 = require("../devices-shelly-v1.exceptions");
|
|
26
|
+
const update_channel_property_dto_1 = require("../dto/update-channel-property.dto");
|
|
27
|
+
const synthetic_properties_utils_1 = require("../utils/synthetic-properties.utils");
|
|
28
|
+
const value_mapping_utils_1 = require("../utils/value-mapping.utils");
|
|
29
|
+
const shellies_adapter_service_1 = require("./shellies-adapter.service");
|
|
30
|
+
const shelly_v1_http_client_service_1 = require("./shelly-v1-http-client.service");
|
|
31
|
+
let DeviceMapperService = DeviceMapperService_1 = class DeviceMapperService {
|
|
32
|
+
constructor(devicesService, channelsService, channelsPropertiesService, deviceConnectivityService, shelliesAdapter, httpClient, provisionQueue) {
|
|
33
|
+
this.devicesService = devicesService;
|
|
34
|
+
this.channelsService = channelsService;
|
|
35
|
+
this.channelsPropertiesService = channelsPropertiesService;
|
|
36
|
+
this.deviceConnectivityService = deviceConnectivityService;
|
|
37
|
+
this.shelliesAdapter = shelliesAdapter;
|
|
38
|
+
this.httpClient = httpClient;
|
|
39
|
+
this.provisionQueue = provisionQueue;
|
|
40
|
+
this.logger = (0, logger_1.createExtensionLogger)(devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_PLUGIN_NAME, 'DeviceMapperService');
|
|
41
|
+
}
|
|
42
|
+
async mapDevice(event) {
|
|
43
|
+
return this.provisionQueue.enqueue(event.id, () => this.doMapDevice(event));
|
|
44
|
+
}
|
|
45
|
+
async doMapDevice(event) {
|
|
46
|
+
const shellyDevice = this.shelliesAdapter.getDevice(event.type, event.id);
|
|
47
|
+
if (!shellyDevice) {
|
|
48
|
+
this.logger.warn(`Device ${event.id} not found in adapter`);
|
|
49
|
+
throw new devices_shelly_v1_exceptions_1.DevicesShellyV1NotSupportedException(`Device ${event.id} not found in adapter`);
|
|
50
|
+
}
|
|
51
|
+
const descriptor = this.findDescriptor(event.type);
|
|
52
|
+
if (!descriptor) {
|
|
53
|
+
this.logger.warn(`No descriptor found for device type: ${event.type}`);
|
|
54
|
+
throw new devices_shelly_v1_exceptions_1.DevicesShellyV1NotSupportedException(`Unsupported device type: ${event.type}`);
|
|
55
|
+
}
|
|
56
|
+
let username;
|
|
57
|
+
let password;
|
|
58
|
+
let deviceName = event.id;
|
|
59
|
+
try {
|
|
60
|
+
const settings = await this.httpClient.getDeviceSettings(shellyDevice.host);
|
|
61
|
+
deviceName = settings.name || event.id;
|
|
62
|
+
}
|
|
63
|
+
catch (error) {
|
|
64
|
+
this.logger.warn(`Failed to fetch device settings from ${shellyDevice.host}`, {
|
|
65
|
+
message: error instanceof Error ? error.message : String(error),
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
let device = await this.devicesService.findOneBy('identifier', event.id, devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE);
|
|
69
|
+
if (!device) {
|
|
70
|
+
const createDto = {
|
|
71
|
+
type: devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE,
|
|
72
|
+
identifier: event.id,
|
|
73
|
+
name: deviceName,
|
|
74
|
+
category: descriptor.categories[0] || devices_constants_1.DeviceCategory.GENERIC,
|
|
75
|
+
enabled: true,
|
|
76
|
+
hostname: event.host,
|
|
77
|
+
};
|
|
78
|
+
device = await this.devicesService.create(createDto);
|
|
79
|
+
this.logger.log(`Creating new device: ${event.id} with name: ${deviceName}`, { resource: device.id });
|
|
80
|
+
}
|
|
81
|
+
else {
|
|
82
|
+
if (!device.enabled) {
|
|
83
|
+
this.shelliesAdapter.updateDeviceEnabledStatus(event.id, false);
|
|
84
|
+
await this.deviceConnectivityService.setConnectionState(device.id, {
|
|
85
|
+
state: devices_constants_1.ConnectionState.UNKNOWN,
|
|
86
|
+
});
|
|
87
|
+
return device;
|
|
88
|
+
}
|
|
89
|
+
this.shelliesAdapter.updateDeviceEnabledStatus(event.id, true);
|
|
90
|
+
if (device.password) {
|
|
91
|
+
try {
|
|
92
|
+
const loginSettings = await this.httpClient.getLoginSettings(shellyDevice.host);
|
|
93
|
+
username = loginSettings.username || devices_shelly_v1_constants_1.SHELLY_AUTH_USERNAME;
|
|
94
|
+
password = device.password;
|
|
95
|
+
this.shelliesAdapter.setDeviceAuthCredentials(event.type, event.id, username, password);
|
|
96
|
+
}
|
|
97
|
+
catch (error) {
|
|
98
|
+
this.logger.warn(`Failed to fetch login settings from ${shellyDevice.host}, using default username`, {
|
|
99
|
+
message: error instanceof Error ? error.message : String(error),
|
|
100
|
+
resource: device.id,
|
|
101
|
+
});
|
|
102
|
+
username = devices_shelly_v1_constants_1.SHELLY_AUTH_USERNAME;
|
|
103
|
+
password = device.password;
|
|
104
|
+
this.shelliesAdapter.setDeviceAuthCredentials(event.type, event.id, username, password);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
if (device.hostname !== event.host) {
|
|
108
|
+
this.logger.log(`Updating hostname for device ${event.id}: ${device.hostname} -> ${event.host}`, {
|
|
109
|
+
resource: device.id,
|
|
110
|
+
});
|
|
111
|
+
const updateDto = {
|
|
112
|
+
type: devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE,
|
|
113
|
+
hostname: event.host,
|
|
114
|
+
};
|
|
115
|
+
device = await this.devicesService.update(device.id, updateDto);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
await this.createDeviceInformationChannel(device, shellyDevice, username, password);
|
|
119
|
+
let bindings = [];
|
|
120
|
+
if (descriptor.instance?.modeProperty && descriptor.modes) {
|
|
121
|
+
const modeValue = shellyDevice[descriptor.instance.modeProperty];
|
|
122
|
+
this.logger.debug(`Device ${event.id} has mode property: ${descriptor.instance.modeProperty} = ${String(modeValue)}`, { resource: device.id });
|
|
123
|
+
const modeProfile = descriptor.modes.find((mode) => mode.modeValue === modeValue);
|
|
124
|
+
if (modeProfile) {
|
|
125
|
+
bindings = modeProfile.bindings;
|
|
126
|
+
}
|
|
127
|
+
else {
|
|
128
|
+
this.logger.warn(`No mode profile found for mode value: ${String(modeValue)}, device will have no channels`, {
|
|
129
|
+
resource: device.id,
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
else if (descriptor.bindings) {
|
|
134
|
+
bindings = descriptor.bindings;
|
|
135
|
+
}
|
|
136
|
+
await this.createChannelsFromBindings(device, bindings, shellyDevice);
|
|
137
|
+
await this.deviceConnectivityService.setConnectionState(device.id, {
|
|
138
|
+
state: devices_constants_1.ConnectionState.CONNECTED,
|
|
139
|
+
});
|
|
140
|
+
this.logger.log(`Device ${device.identifier} discovery completed and set to CONNECTED`, { resource: device.id });
|
|
141
|
+
return device;
|
|
142
|
+
}
|
|
143
|
+
async createDeviceInformationChannel(device, shellyDevice, username, password) {
|
|
144
|
+
const channelIdentifier = devices_shelly_v1_constants_1.SHELLY_V1_CHANNEL_IDENTIFIERS.DEVICE_INFORMATION;
|
|
145
|
+
let deviceInfo;
|
|
146
|
+
let deviceStatus;
|
|
147
|
+
try {
|
|
148
|
+
[deviceInfo, deviceStatus] = await Promise.all([
|
|
149
|
+
this.httpClient.getDeviceInfo(shellyDevice.host),
|
|
150
|
+
this.httpClient.getDeviceStatus(shellyDevice.host, undefined, username, password),
|
|
151
|
+
]);
|
|
152
|
+
}
|
|
153
|
+
catch (error) {
|
|
154
|
+
this.logger.warn(`Failed to fetch device info from ${shellyDevice.host}`, {
|
|
155
|
+
message: error instanceof Error ? error.message : String(error),
|
|
156
|
+
resource: device.id,
|
|
157
|
+
});
|
|
158
|
+
deviceInfo = null;
|
|
159
|
+
deviceStatus = null;
|
|
160
|
+
}
|
|
161
|
+
let channel = await this.channelsService.findOneBy('identifier', channelIdentifier, device.id, devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE);
|
|
162
|
+
if (!channel) {
|
|
163
|
+
const createChannelDto = {
|
|
164
|
+
type: devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE,
|
|
165
|
+
device: device.id,
|
|
166
|
+
identifier: channelIdentifier,
|
|
167
|
+
name: 'Device Information',
|
|
168
|
+
category: devices_constants_1.ChannelCategory.DEVICE_INFORMATION,
|
|
169
|
+
};
|
|
170
|
+
channel = await this.channelsService.create(createChannelDto);
|
|
171
|
+
}
|
|
172
|
+
const deviceInfoProperties = [
|
|
173
|
+
{
|
|
174
|
+
identifier: devices_shelly_v1_constants_1.SHELLY_V1_DEVICE_INFO_PROPERTY_IDENTIFIERS.MANUFACTURER,
|
|
175
|
+
name: 'Manufacturer',
|
|
176
|
+
category: devices_constants_1.PropertyCategory.MANUFACTURER,
|
|
177
|
+
dataType: devices_constants_1.DataTypeType.STRING,
|
|
178
|
+
value: 'Shelly',
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
identifier: devices_shelly_v1_constants_1.SHELLY_V1_DEVICE_INFO_PROPERTY_IDENTIFIERS.MODEL,
|
|
182
|
+
name: 'Model',
|
|
183
|
+
category: devices_constants_1.PropertyCategory.MODEL,
|
|
184
|
+
dataType: devices_constants_1.DataTypeType.STRING,
|
|
185
|
+
value: shellyDevice.type,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
identifier: devices_shelly_v1_constants_1.SHELLY_V1_DEVICE_INFO_PROPERTY_IDENTIFIERS.SERIAL_NUMBER,
|
|
189
|
+
name: 'Serial Number',
|
|
190
|
+
category: devices_constants_1.PropertyCategory.SERIAL_NUMBER,
|
|
191
|
+
dataType: devices_constants_1.DataTypeType.STRING,
|
|
192
|
+
value: deviceInfo?.mac || shellyDevice.id,
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
identifier: devices_shelly_v1_constants_1.SHELLY_V1_DEVICE_INFO_PROPERTY_IDENTIFIERS.FIRMWARE_VERSION,
|
|
196
|
+
name: 'Firmware Version',
|
|
197
|
+
category: devices_constants_1.PropertyCategory.FIRMWARE_REVISION,
|
|
198
|
+
dataType: devices_constants_1.DataTypeType.STRING,
|
|
199
|
+
value: deviceInfo?.fw || null,
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
identifier: devices_shelly_v1_constants_1.SHELLY_V1_DEVICE_INFO_PROPERTY_IDENTIFIERS.LINK_QUALITY,
|
|
203
|
+
name: 'Link Quality',
|
|
204
|
+
category: devices_constants_1.PropertyCategory.LINK_QUALITY,
|
|
205
|
+
dataType: devices_constants_1.DataTypeType.UCHAR,
|
|
206
|
+
format: [0, 100],
|
|
207
|
+
value: deviceStatus?.wifi_sta?.rssi ? this.rssiToQuality(deviceStatus.wifi_sta.rssi) : null,
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
identifier: devices_shelly_v1_constants_1.SHELLY_V1_DEVICE_INFO_PROPERTY_IDENTIFIERS.STATUS,
|
|
211
|
+
name: 'Status',
|
|
212
|
+
category: devices_constants_1.PropertyCategory.STATUS,
|
|
213
|
+
dataType: devices_constants_1.DataTypeType.ENUM,
|
|
214
|
+
value: devices_constants_1.ConnectionState.CONNECTED,
|
|
215
|
+
format: [devices_constants_1.ConnectionState.CONNECTED, devices_constants_1.ConnectionState.DISCONNECTED, devices_constants_1.ConnectionState.UNKNOWN],
|
|
216
|
+
},
|
|
217
|
+
];
|
|
218
|
+
if (shellyDevice['mode']) {
|
|
219
|
+
const modeValue = shellyDevice['mode'];
|
|
220
|
+
deviceInfoProperties.push({
|
|
221
|
+
identifier: devices_shelly_v1_constants_1.SHELLY_V1_DEVICE_INFO_PROPERTY_IDENTIFIERS.MODE,
|
|
222
|
+
name: 'Mode',
|
|
223
|
+
category: devices_constants_1.PropertyCategory.MODE,
|
|
224
|
+
dataType: devices_constants_1.DataTypeType.STRING,
|
|
225
|
+
value: typeof modeValue === 'function' ? null : modeValue,
|
|
226
|
+
});
|
|
227
|
+
}
|
|
228
|
+
for (const propDef of deviceInfoProperties) {
|
|
229
|
+
await this.createOrUpdateProperty(channel, propDef);
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
async createChannelsFromBindings(device, bindings, shellyDevice) {
|
|
233
|
+
const channelBindingsMap = new Map();
|
|
234
|
+
for (const binding of bindings) {
|
|
235
|
+
if (!channelBindingsMap.has(binding.channelIdentifier)) {
|
|
236
|
+
channelBindingsMap.set(binding.channelIdentifier, []);
|
|
237
|
+
}
|
|
238
|
+
channelBindingsMap.get(binding.channelIdentifier).push(binding);
|
|
239
|
+
}
|
|
240
|
+
const channelEntries = Array.from(channelBindingsMap.entries()).map(([identifier, channelBindings]) => ({
|
|
241
|
+
identifier,
|
|
242
|
+
bindings: channelBindings,
|
|
243
|
+
category: this.inferChannelCategory(identifier, channelBindings, device.category),
|
|
244
|
+
}));
|
|
245
|
+
const controlCategories = [
|
|
246
|
+
devices_constants_1.ChannelCategory.LIGHT,
|
|
247
|
+
devices_constants_1.ChannelCategory.OUTLET,
|
|
248
|
+
devices_constants_1.ChannelCategory.SWITCHER,
|
|
249
|
+
devices_constants_1.ChannelCategory.FAN,
|
|
250
|
+
devices_constants_1.ChannelCategory.VALVE,
|
|
251
|
+
devices_constants_1.ChannelCategory.WINDOW_COVERING,
|
|
252
|
+
];
|
|
253
|
+
const monitoringCategories = [devices_constants_1.ChannelCategory.ELECTRICAL_POWER, devices_constants_1.ChannelCategory.ELECTRICAL_ENERGY];
|
|
254
|
+
channelEntries.sort((a, b) => {
|
|
255
|
+
const aIsControl = controlCategories.includes(a.category);
|
|
256
|
+
const bIsControl = controlCategories.includes(b.category);
|
|
257
|
+
if (aIsControl && !bIsControl)
|
|
258
|
+
return -1;
|
|
259
|
+
if (!aIsControl && bIsControl)
|
|
260
|
+
return 1;
|
|
261
|
+
return 0;
|
|
262
|
+
});
|
|
263
|
+
const channelIdMap = new Map();
|
|
264
|
+
for (const entry of channelEntries) {
|
|
265
|
+
let parentId;
|
|
266
|
+
if (monitoringCategories.includes(entry.category)) {
|
|
267
|
+
parentId = this.findParentChannelId(entry.identifier, channelIdMap, controlCategories, channelEntries);
|
|
268
|
+
}
|
|
269
|
+
const channel = await this.createChannelWithProperties(device, entry.identifier, entry.bindings, shellyDevice, parentId);
|
|
270
|
+
if (channel) {
|
|
271
|
+
channelIdMap.set(entry.identifier, channel.id);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
findParentChannelId(channelIdentifier, channelIdMap, controlCategories, channelEntries) {
|
|
276
|
+
const match = channelIdentifier.match(/_(\d+)$/);
|
|
277
|
+
const index = match ? match[1] : null;
|
|
278
|
+
if (!index) {
|
|
279
|
+
for (const [identifier, id] of channelIdMap.entries()) {
|
|
280
|
+
const entry = channelEntries.find((e) => e.identifier === identifier);
|
|
281
|
+
if (entry && controlCategories.includes(entry.category)) {
|
|
282
|
+
return id;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
return undefined;
|
|
286
|
+
}
|
|
287
|
+
for (const [identifier, id] of channelIdMap.entries()) {
|
|
288
|
+
const entry = channelEntries.find((e) => e.identifier === identifier);
|
|
289
|
+
if (entry && controlCategories.includes(entry.category) && identifier.endsWith(`_${index}`)) {
|
|
290
|
+
return id;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
return undefined;
|
|
294
|
+
}
|
|
295
|
+
async createChannelWithProperties(device, channelIdentifier, bindings, shellyDevice, parentId) {
|
|
296
|
+
let channel = await this.channelsService.findOneBy('identifier', channelIdentifier, device.id, devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE);
|
|
297
|
+
if (!channel) {
|
|
298
|
+
const channelCategory = this.inferChannelCategory(channelIdentifier, bindings, device.category);
|
|
299
|
+
const channelName = this.formatChannelName(channelIdentifier);
|
|
300
|
+
const createChannelDto = {
|
|
301
|
+
type: devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE,
|
|
302
|
+
device: device.id,
|
|
303
|
+
identifier: channelIdentifier,
|
|
304
|
+
name: channelName,
|
|
305
|
+
category: channelCategory,
|
|
306
|
+
parent: parentId ?? null,
|
|
307
|
+
};
|
|
308
|
+
channel = await this.channelsService.create(createChannelDto);
|
|
309
|
+
}
|
|
310
|
+
else {
|
|
311
|
+
channel = await this.channelsService.update(channel.id, {
|
|
312
|
+
type: devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE,
|
|
313
|
+
parent: parentId ?? null,
|
|
314
|
+
});
|
|
315
|
+
}
|
|
316
|
+
for (const binding of bindings) {
|
|
317
|
+
const rawValue = shellyDevice[binding.shelliesProperty];
|
|
318
|
+
let initialValue = typeof rawValue === 'function' ? undefined : rawValue;
|
|
319
|
+
if (binding.dataType === devices_constants_1.DataTypeType.ENUM &&
|
|
320
|
+
binding.valueMap &&
|
|
321
|
+
initialValue !== undefined &&
|
|
322
|
+
initialValue !== null) {
|
|
323
|
+
const valueMapConfig = value_mapping_utils_1.VALUE_MAP_REGISTRY[binding.valueMap];
|
|
324
|
+
if (valueMapConfig) {
|
|
325
|
+
const mappedValue = (0, value_mapping_utils_1.mapValueToCanonical)(initialValue, valueMapConfig.forward, `${channel.identifier}.${binding.propertyIdentifier}`);
|
|
326
|
+
if (mappedValue !== null) {
|
|
327
|
+
if (binding.format && (0, value_mapping_utils_1.validateEnumValue)(mappedValue, binding.format, binding.propertyIdentifier)) {
|
|
328
|
+
initialValue = mappedValue;
|
|
329
|
+
}
|
|
330
|
+
else {
|
|
331
|
+
this.logger.warn(`Mapped value "${mappedValue}" for ${binding.propertyIdentifier} is not in format, skipping`, { resource: device.id });
|
|
332
|
+
initialValue = null;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
else {
|
|
336
|
+
this.logger.warn(`Unknown raw value "${String(rawValue)}" for ${binding.propertyIdentifier}, skipping`, {
|
|
337
|
+
resource: device.id,
|
|
338
|
+
});
|
|
339
|
+
initialValue = null;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
else {
|
|
343
|
+
this.logger.warn(`Value map "${binding.valueMap}" not found in registry for ${binding.propertyIdentifier}`, {
|
|
344
|
+
resource: device.id,
|
|
345
|
+
});
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
if (binding.dataType === devices_constants_1.DataTypeType.ENUM &&
|
|
349
|
+
binding.format &&
|
|
350
|
+
initialValue !== undefined &&
|
|
351
|
+
initialValue !== null) {
|
|
352
|
+
if (!(0, value_mapping_utils_1.validateEnumValue)(initialValue, binding.format, binding.propertyIdentifier)) {
|
|
353
|
+
this.logger.warn(`Value "${initialValue}" for ${binding.propertyIdentifier} is not in format, skipping`, {
|
|
354
|
+
resource: device.id,
|
|
355
|
+
});
|
|
356
|
+
initialValue = null;
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
await this.createOrUpdateProperty(channel, {
|
|
360
|
+
identifier: binding.propertyIdentifier,
|
|
361
|
+
name: this.formatPropertyName(binding.propertyIdentifier),
|
|
362
|
+
category: binding.category,
|
|
363
|
+
dataType: binding.dataType,
|
|
364
|
+
permissions: binding.permissions,
|
|
365
|
+
format: binding.format,
|
|
366
|
+
value: initialValue !== undefined ? initialValue : null,
|
|
367
|
+
});
|
|
368
|
+
}
|
|
369
|
+
await this.ensureRequiredProperties(channel, bindings, shellyDevice);
|
|
370
|
+
await this.ensureSyntheticProperties(channel, shellyDevice);
|
|
371
|
+
return channel;
|
|
372
|
+
}
|
|
373
|
+
async ensureRequiredProperties(channel, bindings, _shellyDevice) {
|
|
374
|
+
const requiredProperties = (0, schema_utils_1.getRequiredProperties)(channel.category);
|
|
375
|
+
this.logger.debug(`Checking required properties for channel ${channel.identifier} (${channel.category}): ${requiredProperties.join(', ')}`);
|
|
376
|
+
const existingPropertyCategories = bindings.map((b) => b.category);
|
|
377
|
+
for (const requiredPropertyCategory of requiredProperties) {
|
|
378
|
+
if (existingPropertyCategories.includes(requiredPropertyCategory)) {
|
|
379
|
+
continue;
|
|
380
|
+
}
|
|
381
|
+
if ((0, synthetic_properties_utils_1.isSyntheticProperty)(channel.category, requiredPropertyCategory)) {
|
|
382
|
+
continue;
|
|
383
|
+
}
|
|
384
|
+
const propertyMetadata = (0, schema_utils_1.getPropertyMetadata)(channel.category, requiredPropertyCategory);
|
|
385
|
+
if (!propertyMetadata) {
|
|
386
|
+
this.logger.warn(`No schema metadata found for required property ${requiredPropertyCategory} in channel ${channel.category}`);
|
|
387
|
+
continue;
|
|
388
|
+
}
|
|
389
|
+
const defaultValue = (0, schema_utils_1.getPropertyDefaultValue)(channel.category, requiredPropertyCategory);
|
|
390
|
+
await this.createOrUpdateProperty(channel, {
|
|
391
|
+
identifier: `${requiredPropertyCategory.toLowerCase()}`,
|
|
392
|
+
name: this.formatPropertyName(requiredPropertyCategory.toLowerCase()),
|
|
393
|
+
category: requiredPropertyCategory,
|
|
394
|
+
dataType: propertyMetadata.data_type,
|
|
395
|
+
permissions: propertyMetadata.permissions,
|
|
396
|
+
format: propertyMetadata.format ?? undefined,
|
|
397
|
+
value: defaultValue,
|
|
398
|
+
});
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
async ensureSyntheticProperties(channel, _shellyDevice) {
|
|
402
|
+
const syntheticProperties = (0, synthetic_properties_utils_1.getSyntheticProperties)(channel.category);
|
|
403
|
+
if (syntheticProperties.length === 0) {
|
|
404
|
+
return;
|
|
405
|
+
}
|
|
406
|
+
for (const syntheticProp of syntheticProperties) {
|
|
407
|
+
const sourceProperty = await this.channelsPropertiesService.findOneBy('category', syntheticProp.sourcePropertyCategory, channel.id);
|
|
408
|
+
if (!sourceProperty) {
|
|
409
|
+
this.logger.warn(`Source property ${syntheticProp.sourcePropertyCategory} not found for synthetic property ${syntheticProp.propertyCategory} in channel ${channel.identifier}`);
|
|
410
|
+
continue;
|
|
411
|
+
}
|
|
412
|
+
const existingSyntheticProperty = await this.channelsPropertiesService.findOneBy('category', syntheticProp.propertyCategory, channel.id);
|
|
413
|
+
const syntheticValue = syntheticProp.deriveValue(sourceProperty.value?.value ?? null, existingSyntheticProperty?.value?.value ?? null);
|
|
414
|
+
const propertyMetadata = (0, schema_utils_1.getPropertyMetadata)(channel.category, syntheticProp.propertyCategory);
|
|
415
|
+
if (!propertyMetadata) {
|
|
416
|
+
this.logger.warn(`No schema metadata found for synthetic property ${syntheticProp.propertyCategory} in channel ${channel.category}`);
|
|
417
|
+
continue;
|
|
418
|
+
}
|
|
419
|
+
await this.createOrUpdateProperty(channel, {
|
|
420
|
+
identifier: `${syntheticProp.propertyCategory.toLowerCase()}`,
|
|
421
|
+
name: this.formatPropertyName(syntheticProp.propertyCategory.toLowerCase()),
|
|
422
|
+
category: syntheticProp.propertyCategory,
|
|
423
|
+
dataType: propertyMetadata.data_type,
|
|
424
|
+
permissions: propertyMetadata.permissions,
|
|
425
|
+
format: propertyMetadata.format ?? undefined,
|
|
426
|
+
value: syntheticValue,
|
|
427
|
+
});
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
async createOrUpdateProperty(channel, propDef) {
|
|
431
|
+
const existingProperty = await this.channelsPropertiesService.findOneBy('identifier', propDef.identifier, channel.id, devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE);
|
|
432
|
+
if (!existingProperty) {
|
|
433
|
+
const createPropertyDto = {
|
|
434
|
+
type: devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE,
|
|
435
|
+
identifier: propDef.identifier,
|
|
436
|
+
name: propDef.name,
|
|
437
|
+
category: propDef.category,
|
|
438
|
+
data_type: propDef.dataType,
|
|
439
|
+
permissions: propDef.permissions || [devices_constants_1.PermissionType.READ_ONLY],
|
|
440
|
+
...(propDef.format !== undefined && { format: propDef.format }),
|
|
441
|
+
...(propDef.value !== undefined && propDef.value !== null && { value: propDef.value }),
|
|
442
|
+
};
|
|
443
|
+
await this.channelsPropertiesService.create(channel.id, createPropertyDto);
|
|
444
|
+
}
|
|
445
|
+
else {
|
|
446
|
+
await this.channelsPropertiesService.update(existingProperty.id, (0, transform_utils_1.toInstance)(update_channel_property_dto_1.UpdateShellyV1ChannelPropertyDto, {
|
|
447
|
+
type: devices_shelly_v1_constants_1.DEVICES_SHELLY_V1_TYPE,
|
|
448
|
+
category: propDef.category,
|
|
449
|
+
data_type: propDef.dataType,
|
|
450
|
+
permissions: propDef.permissions || [devices_constants_1.PermissionType.READ_ONLY],
|
|
451
|
+
...(propDef.format !== undefined && { format: propDef.format }),
|
|
452
|
+
...(propDef.value !== undefined && propDef.value !== null && { value: propDef.value }),
|
|
453
|
+
}));
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
inferChannelCategory(channelIdentifier, bindings, deviceCategory) {
|
|
457
|
+
for (const binding of bindings) {
|
|
458
|
+
if (binding.channelCategory !== undefined) {
|
|
459
|
+
return binding.channelCategory;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
const prefix = channelIdentifier.split('_')[0];
|
|
463
|
+
if (prefix === 'relay' && deviceCategory) {
|
|
464
|
+
const mapped = DeviceMapperService_1.RELAY_DEVICE_CATEGORY_TO_CHANNEL[deviceCategory];
|
|
465
|
+
if (mapped) {
|
|
466
|
+
return mapped;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
if (devices_shelly_v1_constants_1.SHELLY_V1_CHANNEL_PREFIX_TO_CATEGORY[prefix]) {
|
|
470
|
+
return devices_shelly_v1_constants_1.SHELLY_V1_CHANNEL_PREFIX_TO_CATEGORY[prefix];
|
|
471
|
+
}
|
|
472
|
+
for (const binding of bindings) {
|
|
473
|
+
switch (binding.category) {
|
|
474
|
+
case devices_constants_1.PropertyCategory.ON:
|
|
475
|
+
case devices_constants_1.PropertyCategory.BRIGHTNESS:
|
|
476
|
+
case devices_constants_1.PropertyCategory.LEVEL:
|
|
477
|
+
return devices_constants_1.ChannelCategory.LIGHT;
|
|
478
|
+
case devices_constants_1.PropertyCategory.POWER:
|
|
479
|
+
return devices_constants_1.ChannelCategory.ELECTRICAL_POWER;
|
|
480
|
+
case devices_constants_1.PropertyCategory.CONSUMPTION:
|
|
481
|
+
return devices_constants_1.ChannelCategory.ELECTRICAL_ENERGY;
|
|
482
|
+
case devices_constants_1.PropertyCategory.TEMPERATURE:
|
|
483
|
+
return devices_constants_1.ChannelCategory.TEMPERATURE;
|
|
484
|
+
case devices_constants_1.PropertyCategory.HUMIDITY:
|
|
485
|
+
return devices_constants_1.ChannelCategory.HUMIDITY;
|
|
486
|
+
case devices_constants_1.PropertyCategory.DETECTED:
|
|
487
|
+
return devices_constants_1.ChannelCategory.CONTACT;
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
return devices_constants_1.ChannelCategory.GENERIC;
|
|
491
|
+
}
|
|
492
|
+
formatChannelName(identifier) {
|
|
493
|
+
return identifier
|
|
494
|
+
.split('_')
|
|
495
|
+
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
|
496
|
+
.join(' ');
|
|
497
|
+
}
|
|
498
|
+
formatPropertyName(identifier) {
|
|
499
|
+
return identifier
|
|
500
|
+
.split('_')
|
|
501
|
+
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
|
502
|
+
.join(' ');
|
|
503
|
+
}
|
|
504
|
+
findDescriptor(deviceType) {
|
|
505
|
+
for (const descriptor of Object.values(devices_shelly_v1_constants_1.DESCRIPTORS)) {
|
|
506
|
+
if (descriptor.models.some((model) => deviceType.toUpperCase().includes(model))) {
|
|
507
|
+
return descriptor;
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
const typeUpper = deviceType.toUpperCase();
|
|
511
|
+
for (const [key, descriptor] of Object.entries(devices_shelly_v1_constants_1.DESCRIPTORS)) {
|
|
512
|
+
if (typeUpper.includes(key) || descriptor.name.toUpperCase().includes(typeUpper)) {
|
|
513
|
+
return descriptor;
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
return null;
|
|
517
|
+
}
|
|
518
|
+
rssiToQuality(rssi) {
|
|
519
|
+
if (rssi <= -100)
|
|
520
|
+
return 0;
|
|
521
|
+
if (rssi >= -50)
|
|
522
|
+
return 100;
|
|
523
|
+
return Math.round(2 * (rssi + 100));
|
|
524
|
+
}
|
|
525
|
+
};
|
|
526
|
+
exports.DeviceMapperService = DeviceMapperService;
|
|
527
|
+
DeviceMapperService.RELAY_DEVICE_CATEGORY_TO_CHANNEL = {
|
|
528
|
+
[devices_constants_1.DeviceCategory.OUTLET]: devices_constants_1.ChannelCategory.OUTLET,
|
|
529
|
+
[devices_constants_1.DeviceCategory.SWITCHER]: devices_constants_1.ChannelCategory.SWITCHER,
|
|
530
|
+
[devices_constants_1.DeviceCategory.PUMP]: devices_constants_1.ChannelCategory.SWITCHER,
|
|
531
|
+
[devices_constants_1.DeviceCategory.VALVE]: devices_constants_1.ChannelCategory.VALVE,
|
|
532
|
+
};
|
|
533
|
+
exports.DeviceMapperService = DeviceMapperService = DeviceMapperService_1 = __decorate([
|
|
534
|
+
(0, common_1.Injectable)(),
|
|
535
|
+
__metadata("design:paramtypes", [devices_service_1.DevicesService,
|
|
536
|
+
channels_service_1.ChannelsService,
|
|
537
|
+
channels_properties_service_1.ChannelsPropertiesService,
|
|
538
|
+
device_connectivity_service_1.DeviceConnectivityService,
|
|
539
|
+
shellies_adapter_service_1.ShelliesAdapterService,
|
|
540
|
+
shelly_v1_http_client_service_1.ShellyV1HttpClientService,
|
|
541
|
+
device_provision_queue_service_1.DeviceProvisionQueueService])
|
|
542
|
+
], DeviceMapperService);
|
|
543
|
+
//# sourceMappingURL=device-mapper.service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"device-mapper.service.js","sourceRoot":"","sources":["../../../../src/plugins/devices-shelly-v1/services/device-mapper.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ConfigService } from '../../../modules/config/services/config.service';
|
|
2
|
+
import { RegisteredDevice, ShelliesAdapterCallbacks, ShellyDevice } from '../interfaces/shellies.interface';
|
|
3
|
+
export declare class ShelliesAdapterService {
|
|
4
|
+
private readonly configService;
|
|
5
|
+
private readonly logger;
|
|
6
|
+
private shellies;
|
|
7
|
+
private isStarted;
|
|
8
|
+
private pluginConfig;
|
|
9
|
+
private readonly devicesRegistry;
|
|
10
|
+
private callbacks;
|
|
11
|
+
constructor(configService: ConfigService);
|
|
12
|
+
setCallbacks(callbacks: ShelliesAdapterCallbacks): void;
|
|
13
|
+
start(): Promise<void>;
|
|
14
|
+
stop(): void;
|
|
15
|
+
getDevice(type: string, id: string): ShellyDevice | undefined;
|
|
16
|
+
getRegisteredDevices(): RegisteredDevice[];
|
|
17
|
+
getRegisteredDevice(deviceId: string): RegisteredDevice | undefined;
|
|
18
|
+
updateDeviceEnabledStatus(deviceId: string, enabled: boolean): void;
|
|
19
|
+
setDeviceAuthCredentials(deviceType: string, deviceId: string, username: string, password: string): void;
|
|
20
|
+
private handleDeviceDiscovered;
|
|
21
|
+
private handleDeviceChange;
|
|
22
|
+
private handleDeviceOffline;
|
|
23
|
+
private handleDeviceOnline;
|
|
24
|
+
private handleDeviceRemoved;
|
|
25
|
+
private get config();
|
|
26
|
+
checkDevicesStatus(): void;
|
|
27
|
+
getNetworkInterface(): Promise<string | null>;
|
|
28
|
+
}
|