@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,418 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InitialSetup1000000000000 = void 0;
|
|
4
|
+
class InitialSetup1000000000000 {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = 'InitialSetup1000000000000';
|
|
7
|
+
}
|
|
8
|
+
async up(queryRunner) {
|
|
9
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_spaces" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "description" varchar, "type" varchar NOT NULL DEFAULT ('room'), "category" varchar, "parentId" varchar, "icon" varchar, "displayOrder" integer NOT NULL DEFAULT (0), "suggestionsEnabled" boolean NOT NULL DEFAULT (1), "statusWidgets" text, "lastActivityAt" datetime)`);
|
|
10
|
+
await queryRunner.query(`CREATE INDEX "IDX_d19c463ca04d42084e8e23e424" ON "spaces_module_spaces" ("parentId") `);
|
|
11
|
+
await queryRunner.query(`CREATE TABLE "devices_module_devices" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "category" varchar CHECK( "category" IN ('generic','air_conditioner','air_dehumidifier','air_humidifier','air_purifier','av_receiver','alarm','camera','door','doorbell','fan','game_console','heating_unit','lighting','lock','media','outlet','projector','pump','robot_vacuum','sensor','set_top_box','speaker','sprinkler','streaming_service','switcher','television','terminal','thermostat','valve','water_heater','window_covering') ) NOT NULL DEFAULT ('generic'), "identifier" varchar, "name" varchar NOT NULL, "description" varchar, "enabled" boolean NOT NULL DEFAULT (1), "roomId" varchar, "password" varchar, "hostname" varchar, "haDeviceId" varchar, "autoSimulate" boolean DEFAULT (0), "simulateInterval" integer DEFAULT (5000), "behaviorMode" varchar DEFAULT ('default'), "serviceAddress" varchar, "variant" varchar, "type" varchar NOT NULL, CONSTRAINT "UQ_devices_identifier_type" UNIQUE ("identifier", "type"))`);
|
|
12
|
+
await queryRunner.query(`CREATE INDEX "IDX_2e587b2a8bcb55f468bb6ec6fe" ON "devices_module_devices" ("identifier") `);
|
|
13
|
+
await queryRunner.query(`CREATE INDEX "IDX_b6aa1841ab84616391d34cd5cf" ON "devices_module_devices" ("enabled") `);
|
|
14
|
+
await queryRunner.query(`CREATE INDEX "IDX_9c2fa00cfe1d7964da6b8ad497" ON "devices_module_devices" ("roomId") `);
|
|
15
|
+
await queryRunner.query(`CREATE UNIQUE INDEX "IDX_36ec1c9bafc04373563cfb5f83" ON "devices_module_devices" ("haDeviceId") `);
|
|
16
|
+
await queryRunner.query(`CREATE INDEX "IDX_de1447169fa1df5ea8d41bf02a" ON "devices_module_devices" ("type") `);
|
|
17
|
+
await queryRunner.query(`CREATE TABLE "devices_module_devices_controls" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "deviceId" varchar, CONSTRAINT "UQ_5b8582a956a365854e2ba8634de" UNIQUE ("name", "deviceId"))`);
|
|
18
|
+
await queryRunner.query(`CREATE TABLE "devices_module_channels" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "category" varchar CHECK( "category" IN ('generic','accelerometer','air_particulate','air_quality','alarm','battery','button','buzzer','camera','carbon_dioxide','carbon_monoxide','contact','cooler','dehumidifier','device_information','door','doorbell','electrical_energy','electrical_generation','electrical_power','fan','filter','flow','gas','heater','humidifier','humidity','illuminance','indicator','leak','light','lock','media_input','media_playback','microphone','motion','nitrogen_dioxide','occupancy','outlet','ozone','pressure','projector','robot_vacuum','smoke','speaker','sulphur_dioxide','switcher','television','temperature','thermostat','valve','volatile_organic_compounds','window_covering') ) NOT NULL DEFAULT ('generic'), "identifier" varchar, "name" varchar NOT NULL, "description" varchar, "parentId" varchar, "type" varchar NOT NULL, "deviceId" varchar, CONSTRAINT "UQ_channels_identifier_type" UNIQUE ("identifier", "deviceId"))`);
|
|
19
|
+
await queryRunner.query(`CREATE INDEX "IDX_38441e91ae9be25547912ebc44" ON "devices_module_channels" ("identifier") `);
|
|
20
|
+
await queryRunner.query(`CREATE INDEX "IDX_4ff87e5bef5426c24fe7f0ff6c" ON "devices_module_channels" ("parentId") `);
|
|
21
|
+
await queryRunner.query(`CREATE INDEX "IDX_a654e0cabea37168a1a967ab5d" ON "devices_module_channels" ("type") `);
|
|
22
|
+
await queryRunner.query(`CREATE TABLE "devices_module_channels_controls" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "channelId" varchar, CONSTRAINT "UQ_d6f8eb1f9d68d513d0ed9689765" UNIQUE ("name", "channelId"))`);
|
|
23
|
+
await queryRunner.query(`CREATE TABLE "devices_module_channels_properties" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "category" varchar CHECK( "category" IN ('generic','acceleration_x','acceleration_y','acceleration_z','active','alarm_state','album','angle','artist','artwork_url','aqi','average_power','balance','bass','brightness','change_needed','child_lock','color_blue','color_green','color_red','color_temperature','color_white','command','connection_type','consumption','current','concentration','defrost_active','detected','direction','distance','duration','event','fault','fault_description','firmware_revision','frequency','grid_export','grid_import','hardware_revision','hue','humidity','in_use','infrared','last_event','level','life_remaining','link_quality','locked','illuminance','manufacturer','media_type','mist_level','model','mode','mute','natural_breeze','obstruction','on','orientation','over_current','over_voltage','over_power','pan','peak_level','percentage','position','power','pressure','production','rate','remaining','repeat','reset','remote_key','saturation','siren','serial_number','shuffle','source','source_label','state','speed','status','swing','tampered','temperature','tilt','timer','treble','triggered','track','type','voltage','volume','warm_mist','water_tank_empty','water_tank_full','water_tank_level','zoom') ) NOT NULL DEFAULT ('generic'), "identifier" varchar, "name" varchar, "permissions" text NOT NULL DEFAULT ('ro'), "dataType" varchar CHECK( "dataType" IN ('char','uchar','short','ushort','int','uint','float','bool','string','enum','unknown') ) NOT NULL DEFAULT ('unknown'), "format" json, "invalid" text, "step" real, "haEntityId" varchar, "haAttribute" varchar, "haTransformer" varchar, "type" varchar NOT NULL, "channelId" varchar, CONSTRAINT "UQ_channels_properties_identifier_type" UNIQUE ("identifier", "channelId"))`);
|
|
24
|
+
await queryRunner.query(`CREATE INDEX "IDX_869661aed3457e1949b0e7e335" ON "devices_module_channels_properties" ("identifier") `);
|
|
25
|
+
await queryRunner.query(`CREATE INDEX "IDX_98ffd1e6ff9c4463c3e7d9a9c7" ON "devices_module_channels_properties" ("type") `);
|
|
26
|
+
await queryRunner.query(`CREATE TABLE "devices_module_devices_zones" ("deviceId" varchar NOT NULL, "zoneId" varchar NOT NULL, "createdAt" datetime NOT NULL DEFAULT (datetime('now')), PRIMARY KEY ("deviceId", "zoneId"))`);
|
|
27
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_pages" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "title" varchar NOT NULL, "icon" varchar, "order" integer NOT NULL DEFAULT (0), "showTopBar" boolean NOT NULL DEFAULT (1), "tileSize" float, "rows" integer, "cols" integer, "type" varchar NOT NULL, "deviceId" varchar)`);
|
|
28
|
+
await queryRunner.query(`CREATE INDEX "IDX_36e8c03f4a3b3c12bf52d211c9" ON "dashboard_module_pages" ("type") `);
|
|
29
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_tiles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "parentType" varchar(64) NOT NULL, "parentId" varchar NOT NULL, "row" integer NOT NULL, "col" integer NOT NULL, "rowSpan" integer NOT NULL DEFAULT (1), "colSpan" integer NOT NULL DEFAULT (1), "hidden" boolean NOT NULL DEFAULT (0), "icon" varchar, "location_id" varchar, "type" varchar NOT NULL, "sceneId" varchar, "deviceId" varchar)`);
|
|
30
|
+
await queryRunner.query(`CREATE INDEX "IDX_c94b5a4bf6856324ed5d8c4d1c" ON "dashboard_module_tiles" ("type") `);
|
|
31
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_data_source" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "parentType" varchar(64) NOT NULL, "parentId" varchar NOT NULL, "field" varchar DEFAULT ('temperature'), "icon" varchar, "unit" varchar, "dayOffset" integer DEFAULT (1), "type" varchar NOT NULL, "locationId" varchar, "deviceId" varchar, "channelId" varchar, "propertyId" varchar)`);
|
|
32
|
+
await queryRunner.query(`CREATE INDEX "IDX_9237609236d02277e75bb98556" ON "dashboard_module_data_source" ("type") `);
|
|
33
|
+
await queryRunner.query(`CREATE TABLE "displays_module_displays" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "macAddress" varchar NOT NULL, "version" varchar, "build" varchar, "screenWidth" integer NOT NULL DEFAULT (0), "screenHeight" integer NOT NULL DEFAULT (0), "pixelRatio" float NOT NULL DEFAULT (1), "unitSize" float NOT NULL DEFAULT (8), "rows" integer NOT NULL DEFAULT (12), "cols" integer NOT NULL DEFAULT (24), "darkMode" boolean NOT NULL DEFAULT (0), "brightness" integer NOT NULL DEFAULT (100), "screenLockDuration" integer NOT NULL DEFAULT (30), "screenSaver" boolean NOT NULL DEFAULT (1), "screenPowerOff" boolean NOT NULL DEFAULT (0), "name" varchar, "role" varchar(20) NOT NULL DEFAULT ('room'), "roomId" varchar, "homeMode" varchar(20) NOT NULL DEFAULT ('auto_space'), "homePageId" varchar, "audioOutputSupported" boolean NOT NULL DEFAULT (0), "audioInputSupported" boolean NOT NULL DEFAULT (0), "speaker" boolean NOT NULL DEFAULT (0), "speakerVolume" integer NOT NULL DEFAULT (50), "microphone" boolean NOT NULL DEFAULT (0), "microphoneVolume" integer NOT NULL DEFAULT (50), "numberFormat" varchar(20), "temperatureUnit" varchar(20), "windSpeedUnit" varchar(20), "pressureUnit" varchar(20), "precipitationUnit" varchar(20), "distanceUnit" varchar(20), "weatherLocationId" varchar(36), "registeredFromIp" varchar, "currentIpAddress" varchar, CONSTRAINT "UQ_cd17d1db23915094c008a3ab20a" UNIQUE ("macAddress"))`);
|
|
34
|
+
await queryRunner.query(`CREATE INDEX "IDX_07df3633b70cc1035e3dc8850a" ON "displays_module_displays" ("roomId") `);
|
|
35
|
+
await queryRunner.query(`CREATE INDEX "IDX_1a2cd1b9b2e15f20a2646a5419" ON "displays_module_displays" ("homePageId") `);
|
|
36
|
+
await queryRunner.query(`CREATE TABLE "weather_module_locations" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "latitude" real, "longitude" real, "countryCode" varchar, "locationType" varchar CHECK( "locationType" IN ('lat_lon','city_name','city_id','zip_code') ), "cityName" varchar, "cityId" integer, "zipCode" varchar, "type" varchar NOT NULL)`);
|
|
37
|
+
await queryRunner.query(`CREATE INDEX "IDX_180637606049ce770868555d34" ON "weather_module_locations" ("type") `);
|
|
38
|
+
await queryRunner.query(`CREATE TABLE "scenes_module_scenes" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "primarySpaceId" varchar(36), "category" varchar CHECK( "category" IN ('generic','lighting','climate','media','work','relax','night','morning','party','movie','away','home','security','energy','custom') ) NOT NULL DEFAULT ('generic'), "name" varchar NOT NULL, "description" varchar, "order" integer NOT NULL DEFAULT (0), "enabled" boolean NOT NULL DEFAULT (1), "triggerable" boolean NOT NULL DEFAULT (1), "editable" boolean NOT NULL DEFAULT (1), "lastTriggeredAt" datetime)`);
|
|
39
|
+
await queryRunner.query(`CREATE INDEX "IDX_4f8027bbea13f66c3e20c24ad3" ON "scenes_module_scenes" ("primarySpaceId") `);
|
|
40
|
+
await queryRunner.query(`CREATE INDEX "IDX_9a43f9bc46ab2b054a129094d9" ON "scenes_module_scenes" ("enabled") `);
|
|
41
|
+
await queryRunner.query(`CREATE TABLE "scenes_module_scene_actions" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "configuration" json NOT NULL DEFAULT ('{}'), "order" integer NOT NULL DEFAULT (0), "enabled" boolean NOT NULL DEFAULT (1), "type" varchar(100) NOT NULL DEFAULT ('local'), "deviceId" varchar(36), "channelId" varchar(36), "propertyId" varchar(36), "value" text, "sceneId" varchar)`);
|
|
42
|
+
await queryRunner.query(`CREATE INDEX "IDX_bdbb8594e2e5a823531f7a40d3" ON "scenes_module_scene_actions" ("order") `);
|
|
43
|
+
await queryRunner.query(`CREATE INDEX "IDX_35ec392f88d687d87cb8892ddb" ON "scenes_module_scene_actions" ("type") `);
|
|
44
|
+
await queryRunner.query(`CREATE INDEX "IDX_12f6b278ea9b037ea7f0e6ac0b" ON "scenes_module_scene_actions" ("deviceId") `);
|
|
45
|
+
await queryRunner.query(`CREATE INDEX "IDX_233a2d2a93689b5603607d1af8" ON "scenes_module_scene_actions" ("propertyId") `);
|
|
46
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_cards" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "title" varchar NOT NULL, "icon" varchar, "order" integer NOT NULL DEFAULT (0), "rows" integer, "cols" integer, "pageId" varchar)`);
|
|
47
|
+
await queryRunner.query(`CREATE TABLE "users_module_users" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "isHidden" boolean NOT NULL DEFAULT (0), "password" varchar, "email" varchar, "firstName" varchar, "lastName" varchar, "username" varchar NOT NULL, "role" varchar CHECK( "role" IN ('owner','admin','user') ) NOT NULL DEFAULT ('user'), "language" text, CONSTRAINT "UQ_2a324415aadd7601a86ea76143a" UNIQUE ("username"))`);
|
|
48
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_sensor_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar NOT NULL, "role" varchar NOT NULL DEFAULT ('other'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_afceb66854f55dd313c65dd78f2" UNIQUE ("spaceId", "deviceId", "channelId"))`);
|
|
49
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_media_activity_bindings" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "activityKey" varchar NOT NULL, "displayEndpointId" varchar(255), "audioEndpointId" varchar(255), "sourceEndpointId" varchar(255), "remoteEndpointId" varchar(255), "displayInputId" varchar(50), "audioInputId" varchar(50), "sourceInputId" varchar(50), "audioVolumePreset" integer, CONSTRAINT "UQ_1c2005e85d45585b780c2800093" UNIQUE ("spaceId", "activityKey"))`);
|
|
50
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_lighting_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar NOT NULL, "role" varchar NOT NULL DEFAULT ('other'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_d2c1cd125dfb21f44a3ba348d38" UNIQUE ("spaceId", "deviceId", "channelId"))`);
|
|
51
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_covers_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar NOT NULL, "role" varchar NOT NULL DEFAULT ('primary'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_a271095ea076965f76b68f2fa50" UNIQUE ("spaceId", "deviceId", "channelId"))`);
|
|
52
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_climate_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar, "role" varchar NOT NULL DEFAULT ('auto'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_a5ab3b10739ce5515beb7a0c32f" UNIQUE ("spaceId", "deviceId", "channelId"))`);
|
|
53
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_active_media_activities" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "activityKey" varchar, "state" varchar NOT NULL DEFAULT ('deactivated'), "activatedAt" datetime, "resolved" text, "lastResult" text, CONSTRAINT "UQ_121820422a88b6416813a813826" UNIQUE ("spaceId"))`);
|
|
54
|
+
await queryRunner.query(`CREATE TABLE "energy_module_deltas" ("id" varchar PRIMARY KEY NOT NULL, "deviceId" varchar NOT NULL, "roomId" varchar, "sourceType" varchar CHECK( "sourceType" IN ('consumption_import','generation_production','grid_import','grid_export') ) NOT NULL, "deltaKwh" real NOT NULL, "intervalStart" datetime NOT NULL, "intervalEnd" datetime NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), CONSTRAINT "UQ_energy_deltas_device_source_interval" UNIQUE ("deviceId", "sourceType", "intervalStart"))`);
|
|
55
|
+
await queryRunner.query(`CREATE INDEX "IDX_c8232d88b926adc774467458d8" ON "energy_module_deltas" ("deviceId") `);
|
|
56
|
+
await queryRunner.query(`CREATE INDEX "IDX_b0dfbf2cc611a4e8341303034b" ON "energy_module_deltas" ("roomId") `);
|
|
57
|
+
await queryRunner.query(`CREATE INDEX "IDX_energy_deltas_interval_end" ON "energy_module_deltas" ("intervalEnd") `);
|
|
58
|
+
await queryRunner.query(`CREATE INDEX "IDX_energy_deltas_device_interval" ON "energy_module_deltas" ("deviceId", "intervalStart") `);
|
|
59
|
+
await queryRunner.query(`CREATE INDEX "IDX_energy_deltas_room_interval" ON "energy_module_deltas" ("roomId", "sourceType", "intervalStart") `);
|
|
60
|
+
await queryRunner.query(`CREATE TABLE "security_module_alert_acks" ("id" varchar PRIMARY KEY NOT NULL, "acknowledged" boolean NOT NULL DEFAULT (0), "acknowledgedAt" datetime, "lastEventAt" datetime, "acknowledgedBy" varchar, "updatedAt" datetime NOT NULL DEFAULT (datetime('now')))`);
|
|
61
|
+
await queryRunner.query(`CREATE TABLE "buddy_module_conversations" ("id" varchar PRIMARY KEY NOT NULL, "title" varchar, "spaceId" varchar, "createdAt" datetime NOT NULL DEFAULT (datetime('now')), "updatedAt" datetime NOT NULL DEFAULT (datetime('now')))`);
|
|
62
|
+
await queryRunner.query(`CREATE TABLE "buddy_module_messages" ("id" varchar PRIMARY KEY NOT NULL, "conversationId" varchar NOT NULL, "role" varchar NOT NULL, "content" text NOT NULL, "metadata" text, "createdAt" datetime NOT NULL DEFAULT (datetime('now')))`);
|
|
63
|
+
await queryRunner.query(`CREATE TABLE "auth_module_tokens" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "hashedToken" varchar NOT NULL, "expiresAt" datetime, "revoked" boolean NOT NULL DEFAULT (0), "ownerId" varchar, "parentId" varchar, "ownerType" varchar DEFAULT ('user'), "tokenOwnerId" varchar, "name" varchar, "description" varchar, "type" varchar NOT NULL)`);
|
|
64
|
+
await queryRunner.query(`CREATE INDEX "IDX_46d748f90ee8ec23f8ae860554" ON "auth_module_tokens" ("hashedToken") `);
|
|
65
|
+
await queryRunner.query(`CREATE INDEX "IDX_73f1acaf851473bc7a97e1f313" ON "auth_module_tokens" ("expiresAt") `);
|
|
66
|
+
await queryRunner.query(`CREATE INDEX "IDX_7070ff015d55da6c6913fe5323" ON "auth_module_tokens" ("revoked") `);
|
|
67
|
+
await queryRunner.query(`CREATE INDEX "IDX_556f3f9dd96854b298a70d3f9d" ON "auth_module_tokens" ("type") `);
|
|
68
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_pages_displays" ("pageId" varchar NOT NULL, "displayId" varchar NOT NULL, PRIMARY KEY ("pageId", "displayId"))`);
|
|
69
|
+
await queryRunner.query(`CREATE INDEX "IDX_995aa962e1dbc1c9532526156a" ON "dashboard_module_pages_displays" ("pageId") `);
|
|
70
|
+
await queryRunner.query(`CREATE INDEX "IDX_036b00fdeab221319d16bfab8c" ON "dashboard_module_pages_displays" ("displayId") `);
|
|
71
|
+
await queryRunner.query(`DROP INDEX "IDX_d19c463ca04d42084e8e23e424"`);
|
|
72
|
+
await queryRunner.query(`CREATE TABLE "temporary_spaces_module_spaces" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "description" varchar, "type" varchar NOT NULL DEFAULT ('room'), "category" varchar, "parentId" varchar, "icon" varchar, "displayOrder" integer NOT NULL DEFAULT (0), "suggestionsEnabled" boolean NOT NULL DEFAULT (1), "statusWidgets" text, "lastActivityAt" datetime, CONSTRAINT "FK_d19c463ca04d42084e8e23e4246" FOREIGN KEY ("parentId") REFERENCES "spaces_module_spaces" ("id") ON DELETE SET NULL ON UPDATE NO ACTION)`);
|
|
73
|
+
await queryRunner.query(`INSERT INTO "temporary_spaces_module_spaces"("id", "createdAt", "updatedAt", "name", "description", "type", "category", "parentId", "icon", "displayOrder", "suggestionsEnabled", "statusWidgets", "lastActivityAt") SELECT "id", "createdAt", "updatedAt", "name", "description", "type", "category", "parentId", "icon", "displayOrder", "suggestionsEnabled", "statusWidgets", "lastActivityAt" FROM "spaces_module_spaces"`);
|
|
74
|
+
await queryRunner.query(`DROP TABLE "spaces_module_spaces"`);
|
|
75
|
+
await queryRunner.query(`ALTER TABLE "temporary_spaces_module_spaces" RENAME TO "spaces_module_spaces"`);
|
|
76
|
+
await queryRunner.query(`CREATE INDEX "IDX_d19c463ca04d42084e8e23e424" ON "spaces_module_spaces" ("parentId") `);
|
|
77
|
+
await queryRunner.query(`DROP INDEX "IDX_2e587b2a8bcb55f468bb6ec6fe"`);
|
|
78
|
+
await queryRunner.query(`DROP INDEX "IDX_b6aa1841ab84616391d34cd5cf"`);
|
|
79
|
+
await queryRunner.query(`DROP INDEX "IDX_9c2fa00cfe1d7964da6b8ad497"`);
|
|
80
|
+
await queryRunner.query(`DROP INDEX "IDX_36ec1c9bafc04373563cfb5f83"`);
|
|
81
|
+
await queryRunner.query(`DROP INDEX "IDX_de1447169fa1df5ea8d41bf02a"`);
|
|
82
|
+
await queryRunner.query(`CREATE TABLE "temporary_devices_module_devices" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "category" varchar CHECK( "category" IN ('generic','air_conditioner','air_dehumidifier','air_humidifier','air_purifier','av_receiver','alarm','camera','door','doorbell','fan','game_console','heating_unit','lighting','lock','media','outlet','projector','pump','robot_vacuum','sensor','set_top_box','speaker','sprinkler','streaming_service','switcher','television','terminal','thermostat','valve','water_heater','window_covering') ) NOT NULL DEFAULT ('generic'), "identifier" varchar, "name" varchar NOT NULL, "description" varchar, "enabled" boolean NOT NULL DEFAULT (1), "roomId" varchar, "password" varchar, "hostname" varchar, "haDeviceId" varchar, "autoSimulate" boolean DEFAULT (0), "simulateInterval" integer DEFAULT (5000), "behaviorMode" varchar DEFAULT ('default'), "serviceAddress" varchar, "variant" varchar, "type" varchar NOT NULL, CONSTRAINT "UQ_devices_identifier_type" UNIQUE ("identifier", "type"), CONSTRAINT "FK_9c2fa00cfe1d7964da6b8ad4976" FOREIGN KEY ("roomId") REFERENCES "spaces_module_spaces" ("id") ON DELETE SET NULL ON UPDATE NO ACTION)`);
|
|
83
|
+
await queryRunner.query(`INSERT INTO "temporary_devices_module_devices"("id", "createdAt", "updatedAt", "category", "identifier", "name", "description", "enabled", "roomId", "password", "hostname", "haDeviceId", "autoSimulate", "simulateInterval", "behaviorMode", "serviceAddress", "variant", "type") SELECT "id", "createdAt", "updatedAt", "category", "identifier", "name", "description", "enabled", "roomId", "password", "hostname", "haDeviceId", "autoSimulate", "simulateInterval", "behaviorMode", "serviceAddress", "variant", "type" FROM "devices_module_devices"`);
|
|
84
|
+
await queryRunner.query(`DROP TABLE "devices_module_devices"`);
|
|
85
|
+
await queryRunner.query(`ALTER TABLE "temporary_devices_module_devices" RENAME TO "devices_module_devices"`);
|
|
86
|
+
await queryRunner.query(`CREATE INDEX "IDX_2e587b2a8bcb55f468bb6ec6fe" ON "devices_module_devices" ("identifier") `);
|
|
87
|
+
await queryRunner.query(`CREATE INDEX "IDX_b6aa1841ab84616391d34cd5cf" ON "devices_module_devices" ("enabled") `);
|
|
88
|
+
await queryRunner.query(`CREATE INDEX "IDX_9c2fa00cfe1d7964da6b8ad497" ON "devices_module_devices" ("roomId") `);
|
|
89
|
+
await queryRunner.query(`CREATE UNIQUE INDEX "IDX_36ec1c9bafc04373563cfb5f83" ON "devices_module_devices" ("haDeviceId") `);
|
|
90
|
+
await queryRunner.query(`CREATE INDEX "IDX_de1447169fa1df5ea8d41bf02a" ON "devices_module_devices" ("type") `);
|
|
91
|
+
await queryRunner.query(`CREATE TABLE "temporary_devices_module_devices_controls" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "deviceId" varchar, CONSTRAINT "UQ_5b8582a956a365854e2ba8634de" UNIQUE ("name", "deviceId"), CONSTRAINT "FK_17c8d8204ab961a662403a7baf2" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
92
|
+
await queryRunner.query(`INSERT INTO "temporary_devices_module_devices_controls"("id", "createdAt", "updatedAt", "name", "deviceId") SELECT "id", "createdAt", "updatedAt", "name", "deviceId" FROM "devices_module_devices_controls"`);
|
|
93
|
+
await queryRunner.query(`DROP TABLE "devices_module_devices_controls"`);
|
|
94
|
+
await queryRunner.query(`ALTER TABLE "temporary_devices_module_devices_controls" RENAME TO "devices_module_devices_controls"`);
|
|
95
|
+
await queryRunner.query(`DROP INDEX "IDX_38441e91ae9be25547912ebc44"`);
|
|
96
|
+
await queryRunner.query(`DROP INDEX "IDX_4ff87e5bef5426c24fe7f0ff6c"`);
|
|
97
|
+
await queryRunner.query(`DROP INDEX "IDX_a654e0cabea37168a1a967ab5d"`);
|
|
98
|
+
await queryRunner.query(`CREATE TABLE "temporary_devices_module_channels" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "category" varchar CHECK( "category" IN ('generic','accelerometer','air_particulate','air_quality','alarm','battery','button','buzzer','camera','carbon_dioxide','carbon_monoxide','contact','cooler','dehumidifier','device_information','door','doorbell','electrical_energy','electrical_generation','electrical_power','fan','filter','flow','gas','heater','humidifier','humidity','illuminance','indicator','leak','light','lock','media_input','media_playback','microphone','motion','nitrogen_dioxide','occupancy','outlet','ozone','pressure','projector','robot_vacuum','smoke','speaker','sulphur_dioxide','switcher','television','temperature','thermostat','valve','volatile_organic_compounds','window_covering') ) NOT NULL DEFAULT ('generic'), "identifier" varchar, "name" varchar NOT NULL, "description" varchar, "parentId" varchar, "type" varchar NOT NULL, "deviceId" varchar, CONSTRAINT "UQ_channels_identifier_type" UNIQUE ("identifier", "deviceId"), CONSTRAINT "FK_e5e83bd86799131ff462ba199bd" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_4ff87e5bef5426c24fe7f0ff6c2" FOREIGN KEY ("parentId") REFERENCES "devices_module_channels" ("id") ON DELETE SET NULL ON UPDATE NO ACTION)`);
|
|
99
|
+
await queryRunner.query(`INSERT INTO "temporary_devices_module_channels"("id", "createdAt", "updatedAt", "category", "identifier", "name", "description", "parentId", "type", "deviceId") SELECT "id", "createdAt", "updatedAt", "category", "identifier", "name", "description", "parentId", "type", "deviceId" FROM "devices_module_channels"`);
|
|
100
|
+
await queryRunner.query(`DROP TABLE "devices_module_channels"`);
|
|
101
|
+
await queryRunner.query(`ALTER TABLE "temporary_devices_module_channels" RENAME TO "devices_module_channels"`);
|
|
102
|
+
await queryRunner.query(`CREATE INDEX "IDX_38441e91ae9be25547912ebc44" ON "devices_module_channels" ("identifier") `);
|
|
103
|
+
await queryRunner.query(`CREATE INDEX "IDX_4ff87e5bef5426c24fe7f0ff6c" ON "devices_module_channels" ("parentId") `);
|
|
104
|
+
await queryRunner.query(`CREATE INDEX "IDX_a654e0cabea37168a1a967ab5d" ON "devices_module_channels" ("type") `);
|
|
105
|
+
await queryRunner.query(`CREATE TABLE "temporary_devices_module_channels_controls" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "channelId" varchar, CONSTRAINT "UQ_d6f8eb1f9d68d513d0ed9689765" UNIQUE ("name", "channelId"), CONSTRAINT "FK_f6d1006e1e3076d59a8a6d7e7d5" FOREIGN KEY ("channelId") REFERENCES "devices_module_channels" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
106
|
+
await queryRunner.query(`INSERT INTO "temporary_devices_module_channels_controls"("id", "createdAt", "updatedAt", "name", "channelId") SELECT "id", "createdAt", "updatedAt", "name", "channelId" FROM "devices_module_channels_controls"`);
|
|
107
|
+
await queryRunner.query(`DROP TABLE "devices_module_channels_controls"`);
|
|
108
|
+
await queryRunner.query(`ALTER TABLE "temporary_devices_module_channels_controls" RENAME TO "devices_module_channels_controls"`);
|
|
109
|
+
await queryRunner.query(`DROP INDEX "IDX_869661aed3457e1949b0e7e335"`);
|
|
110
|
+
await queryRunner.query(`DROP INDEX "IDX_98ffd1e6ff9c4463c3e7d9a9c7"`);
|
|
111
|
+
await queryRunner.query(`CREATE TABLE "temporary_devices_module_channels_properties" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "category" varchar CHECK( "category" IN ('generic','acceleration_x','acceleration_y','acceleration_z','active','alarm_state','album','angle','artist','artwork_url','aqi','average_power','balance','bass','brightness','change_needed','child_lock','color_blue','color_green','color_red','color_temperature','color_white','command','connection_type','consumption','current','concentration','defrost_active','detected','direction','distance','duration','event','fault','fault_description','firmware_revision','frequency','grid_export','grid_import','hardware_revision','hue','humidity','in_use','infrared','last_event','level','life_remaining','link_quality','locked','illuminance','manufacturer','media_type','mist_level','model','mode','mute','natural_breeze','obstruction','on','orientation','over_current','over_voltage','over_power','pan','peak_level','percentage','position','power','pressure','production','rate','remaining','repeat','reset','remote_key','saturation','siren','serial_number','shuffle','source','source_label','state','speed','status','swing','tampered','temperature','tilt','timer','treble','triggered','track','type','voltage','volume','warm_mist','water_tank_empty','water_tank_full','water_tank_level','zoom') ) NOT NULL DEFAULT ('generic'), "identifier" varchar, "name" varchar, "permissions" text NOT NULL DEFAULT ('ro'), "dataType" varchar CHECK( "dataType" IN ('char','uchar','short','ushort','int','uint','float','bool','string','enum','unknown') ) NOT NULL DEFAULT ('unknown'), "format" json, "invalid" text, "step" real, "haEntityId" varchar, "haAttribute" varchar, "haTransformer" varchar, "type" varchar NOT NULL, "channelId" varchar, CONSTRAINT "UQ_channels_properties_identifier_type" UNIQUE ("identifier", "channelId"), CONSTRAINT "FK_25ddb149b40ce110e482ccd2a3d" FOREIGN KEY ("channelId") REFERENCES "devices_module_channels" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
112
|
+
await queryRunner.query(`INSERT INTO "temporary_devices_module_channels_properties"("id", "createdAt", "updatedAt", "category", "identifier", "name", "permissions", "dataType", "format", "invalid", "step", "haEntityId", "haAttribute", "haTransformer", "type", "channelId") SELECT "id", "createdAt", "updatedAt", "category", "identifier", "name", "permissions", "dataType", "format", "invalid", "step", "haEntityId", "haAttribute", "haTransformer", "type", "channelId" FROM "devices_module_channels_properties"`);
|
|
113
|
+
await queryRunner.query(`DROP TABLE "devices_module_channels_properties"`);
|
|
114
|
+
await queryRunner.query(`ALTER TABLE "temporary_devices_module_channels_properties" RENAME TO "devices_module_channels_properties"`);
|
|
115
|
+
await queryRunner.query(`CREATE INDEX "IDX_869661aed3457e1949b0e7e335" ON "devices_module_channels_properties" ("identifier") `);
|
|
116
|
+
await queryRunner.query(`CREATE INDEX "IDX_98ffd1e6ff9c4463c3e7d9a9c7" ON "devices_module_channels_properties" ("type") `);
|
|
117
|
+
await queryRunner.query(`CREATE TABLE "temporary_devices_module_devices_zones" ("deviceId" varchar NOT NULL, "zoneId" varchar NOT NULL, "createdAt" datetime NOT NULL DEFAULT (datetime('now')), CONSTRAINT "FK_761b3876a96d6ccdd8ceef4417b" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_6f9f3ad7114f40cc02bdd55e9ab" FOREIGN KEY ("zoneId") REFERENCES "spaces_module_spaces" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, PRIMARY KEY ("deviceId", "zoneId"))`);
|
|
118
|
+
await queryRunner.query(`INSERT INTO "temporary_devices_module_devices_zones"("deviceId", "zoneId", "createdAt") SELECT "deviceId", "zoneId", "createdAt" FROM "devices_module_devices_zones"`);
|
|
119
|
+
await queryRunner.query(`DROP TABLE "devices_module_devices_zones"`);
|
|
120
|
+
await queryRunner.query(`ALTER TABLE "temporary_devices_module_devices_zones" RENAME TO "devices_module_devices_zones"`);
|
|
121
|
+
await queryRunner.query(`DROP INDEX "IDX_36e8c03f4a3b3c12bf52d211c9"`);
|
|
122
|
+
await queryRunner.query(`CREATE TABLE "temporary_dashboard_module_pages" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "title" varchar NOT NULL, "icon" varchar, "order" integer NOT NULL DEFAULT (0), "showTopBar" boolean NOT NULL DEFAULT (1), "tileSize" float, "rows" integer, "cols" integer, "type" varchar NOT NULL, "deviceId" varchar, CONSTRAINT "FK_59a4de274605ffa12dcac2c81d2" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
123
|
+
await queryRunner.query(`INSERT INTO "temporary_dashboard_module_pages"("id", "createdAt", "updatedAt", "title", "icon", "order", "showTopBar", "tileSize", "rows", "cols", "type", "deviceId") SELECT "id", "createdAt", "updatedAt", "title", "icon", "order", "showTopBar", "tileSize", "rows", "cols", "type", "deviceId" FROM "dashboard_module_pages"`);
|
|
124
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_pages"`);
|
|
125
|
+
await queryRunner.query(`ALTER TABLE "temporary_dashboard_module_pages" RENAME TO "dashboard_module_pages"`);
|
|
126
|
+
await queryRunner.query(`CREATE INDEX "IDX_36e8c03f4a3b3c12bf52d211c9" ON "dashboard_module_pages" ("type") `);
|
|
127
|
+
await queryRunner.query(`DROP INDEX "IDX_c94b5a4bf6856324ed5d8c4d1c"`);
|
|
128
|
+
await queryRunner.query(`CREATE TABLE "temporary_dashboard_module_tiles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "parentType" varchar(64) NOT NULL, "parentId" varchar NOT NULL, "row" integer NOT NULL, "col" integer NOT NULL, "rowSpan" integer NOT NULL DEFAULT (1), "colSpan" integer NOT NULL DEFAULT (1), "hidden" boolean NOT NULL DEFAULT (0), "icon" varchar, "location_id" varchar, "type" varchar NOT NULL, "sceneId" varchar, "deviceId" varchar, CONSTRAINT "FK_66c96ddf867b4cbdf5ba5aae06d" FOREIGN KEY ("sceneId") REFERENCES "scenes_module_scenes" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_dae951877f4e5c0b1b02c74f37b" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
129
|
+
await queryRunner.query(`INSERT INTO "temporary_dashboard_module_tiles"("id", "createdAt", "updatedAt", "parentType", "parentId", "row", "col", "rowSpan", "colSpan", "hidden", "icon", "location_id", "type", "sceneId", "deviceId") SELECT "id", "createdAt", "updatedAt", "parentType", "parentId", "row", "col", "rowSpan", "colSpan", "hidden", "icon", "location_id", "type", "sceneId", "deviceId" FROM "dashboard_module_tiles"`);
|
|
130
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_tiles"`);
|
|
131
|
+
await queryRunner.query(`ALTER TABLE "temporary_dashboard_module_tiles" RENAME TO "dashboard_module_tiles"`);
|
|
132
|
+
await queryRunner.query(`CREATE INDEX "IDX_c94b5a4bf6856324ed5d8c4d1c" ON "dashboard_module_tiles" ("type") `);
|
|
133
|
+
await queryRunner.query(`DROP INDEX "IDX_9237609236d02277e75bb98556"`);
|
|
134
|
+
await queryRunner.query(`CREATE TABLE "temporary_dashboard_module_data_source" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "parentType" varchar(64) NOT NULL, "parentId" varchar NOT NULL, "field" varchar DEFAULT ('temperature'), "icon" varchar, "unit" varchar, "dayOffset" integer DEFAULT (1), "type" varchar NOT NULL, "locationId" varchar, "deviceId" varchar, "channelId" varchar, "propertyId" varchar, CONSTRAINT "FK_01db94d795e98d06fa518646dd3" FOREIGN KEY ("locationId") REFERENCES "weather_module_locations" ("id") ON DELETE SET NULL ON UPDATE NO ACTION, CONSTRAINT "FK_8257a6394abdcc598c68aa5be75" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_e7e1cdbc354f28e4745572f0ef4" FOREIGN KEY ("channelId") REFERENCES "devices_module_channels" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_c2249907552c90b35d6599be661" FOREIGN KEY ("propertyId") REFERENCES "devices_module_channels_properties" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
135
|
+
await queryRunner.query(`INSERT INTO "temporary_dashboard_module_data_source"("id", "createdAt", "updatedAt", "parentType", "parentId", "field", "icon", "unit", "dayOffset", "type", "locationId", "deviceId", "channelId", "propertyId") SELECT "id", "createdAt", "updatedAt", "parentType", "parentId", "field", "icon", "unit", "dayOffset", "type", "locationId", "deviceId", "channelId", "propertyId" FROM "dashboard_module_data_source"`);
|
|
136
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_data_source"`);
|
|
137
|
+
await queryRunner.query(`ALTER TABLE "temporary_dashboard_module_data_source" RENAME TO "dashboard_module_data_source"`);
|
|
138
|
+
await queryRunner.query(`CREATE INDEX "IDX_9237609236d02277e75bb98556" ON "dashboard_module_data_source" ("type") `);
|
|
139
|
+
await queryRunner.query(`DROP INDEX "IDX_07df3633b70cc1035e3dc8850a"`);
|
|
140
|
+
await queryRunner.query(`DROP INDEX "IDX_1a2cd1b9b2e15f20a2646a5419"`);
|
|
141
|
+
await queryRunner.query(`CREATE TABLE "temporary_displays_module_displays" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "macAddress" varchar NOT NULL, "version" varchar, "build" varchar, "screenWidth" integer NOT NULL DEFAULT (0), "screenHeight" integer NOT NULL DEFAULT (0), "pixelRatio" float NOT NULL DEFAULT (1), "unitSize" float NOT NULL DEFAULT (8), "rows" integer NOT NULL DEFAULT (12), "cols" integer NOT NULL DEFAULT (24), "darkMode" boolean NOT NULL DEFAULT (0), "brightness" integer NOT NULL DEFAULT (100), "screenLockDuration" integer NOT NULL DEFAULT (30), "screenSaver" boolean NOT NULL DEFAULT (1), "screenPowerOff" boolean NOT NULL DEFAULT (0), "name" varchar, "role" varchar(20) NOT NULL DEFAULT ('room'), "roomId" varchar, "homeMode" varchar(20) NOT NULL DEFAULT ('auto_space'), "homePageId" varchar, "audioOutputSupported" boolean NOT NULL DEFAULT (0), "audioInputSupported" boolean NOT NULL DEFAULT (0), "speaker" boolean NOT NULL DEFAULT (0), "speakerVolume" integer NOT NULL DEFAULT (50), "microphone" boolean NOT NULL DEFAULT (0), "microphoneVolume" integer NOT NULL DEFAULT (50), "numberFormat" varchar(20), "temperatureUnit" varchar(20), "windSpeedUnit" varchar(20), "pressureUnit" varchar(20), "precipitationUnit" varchar(20), "distanceUnit" varchar(20), "weatherLocationId" varchar(36), "registeredFromIp" varchar, "currentIpAddress" varchar, CONSTRAINT "UQ_cd17d1db23915094c008a3ab20a" UNIQUE ("macAddress"), CONSTRAINT "FK_07df3633b70cc1035e3dc8850a2" FOREIGN KEY ("roomId") REFERENCES "spaces_module_spaces" ("id") ON DELETE SET NULL ON UPDATE NO ACTION, CONSTRAINT "FK_1a2cd1b9b2e15f20a2646a54194" FOREIGN KEY ("homePageId") REFERENCES "dashboard_module_pages" ("id") ON DELETE SET NULL ON UPDATE NO ACTION)`);
|
|
142
|
+
await queryRunner.query(`INSERT INTO "temporary_displays_module_displays"("id", "createdAt", "updatedAt", "macAddress", "version", "build", "screenWidth", "screenHeight", "pixelRatio", "unitSize", "rows", "cols", "darkMode", "brightness", "screenLockDuration", "screenSaver", "screenPowerOff", "name", "role", "roomId", "homeMode", "homePageId", "audioOutputSupported", "audioInputSupported", "speaker", "speakerVolume", "microphone", "microphoneVolume", "numberFormat", "temperatureUnit", "windSpeedUnit", "pressureUnit", "precipitationUnit", "distanceUnit", "weatherLocationId", "registeredFromIp", "currentIpAddress") SELECT "id", "createdAt", "updatedAt", "macAddress", "version", "build", "screenWidth", "screenHeight", "pixelRatio", "unitSize", "rows", "cols", "darkMode", "brightness", "screenLockDuration", "screenSaver", "screenPowerOff", "name", "role", "roomId", "homeMode", "homePageId", "audioOutputSupported", "audioInputSupported", "speaker", "speakerVolume", "microphone", "microphoneVolume", "numberFormat", "temperatureUnit", "windSpeedUnit", "pressureUnit", "precipitationUnit", "distanceUnit", "weatherLocationId", "registeredFromIp", "currentIpAddress" FROM "displays_module_displays"`);
|
|
143
|
+
await queryRunner.query(`DROP TABLE "displays_module_displays"`);
|
|
144
|
+
await queryRunner.query(`ALTER TABLE "temporary_displays_module_displays" RENAME TO "displays_module_displays"`);
|
|
145
|
+
await queryRunner.query(`CREATE INDEX "IDX_07df3633b70cc1035e3dc8850a" ON "displays_module_displays" ("roomId") `);
|
|
146
|
+
await queryRunner.query(`CREATE INDEX "IDX_1a2cd1b9b2e15f20a2646a5419" ON "displays_module_displays" ("homePageId") `);
|
|
147
|
+
await queryRunner.query(`DROP INDEX "IDX_bdbb8594e2e5a823531f7a40d3"`);
|
|
148
|
+
await queryRunner.query(`DROP INDEX "IDX_35ec392f88d687d87cb8892ddb"`);
|
|
149
|
+
await queryRunner.query(`DROP INDEX "IDX_12f6b278ea9b037ea7f0e6ac0b"`);
|
|
150
|
+
await queryRunner.query(`DROP INDEX "IDX_233a2d2a93689b5603607d1af8"`);
|
|
151
|
+
await queryRunner.query(`CREATE TABLE "temporary_scenes_module_scene_actions" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "configuration" json NOT NULL DEFAULT ('{}'), "order" integer NOT NULL DEFAULT (0), "enabled" boolean NOT NULL DEFAULT (1), "type" varchar(100) NOT NULL DEFAULT ('local'), "deviceId" varchar(36), "channelId" varchar(36), "propertyId" varchar(36), "value" text, "sceneId" varchar, CONSTRAINT "FK_2b2c920f15e86d86231a770d95e" FOREIGN KEY ("sceneId") REFERENCES "scenes_module_scenes" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
152
|
+
await queryRunner.query(`INSERT INTO "temporary_scenes_module_scene_actions"("id", "createdAt", "updatedAt", "configuration", "order", "enabled", "type", "deviceId", "channelId", "propertyId", "value", "sceneId") SELECT "id", "createdAt", "updatedAt", "configuration", "order", "enabled", "type", "deviceId", "channelId", "propertyId", "value", "sceneId" FROM "scenes_module_scene_actions"`);
|
|
153
|
+
await queryRunner.query(`DROP TABLE "scenes_module_scene_actions"`);
|
|
154
|
+
await queryRunner.query(`ALTER TABLE "temporary_scenes_module_scene_actions" RENAME TO "scenes_module_scene_actions"`);
|
|
155
|
+
await queryRunner.query(`CREATE INDEX "IDX_bdbb8594e2e5a823531f7a40d3" ON "scenes_module_scene_actions" ("order") `);
|
|
156
|
+
await queryRunner.query(`CREATE INDEX "IDX_35ec392f88d687d87cb8892ddb" ON "scenes_module_scene_actions" ("type") `);
|
|
157
|
+
await queryRunner.query(`CREATE INDEX "IDX_12f6b278ea9b037ea7f0e6ac0b" ON "scenes_module_scene_actions" ("deviceId") `);
|
|
158
|
+
await queryRunner.query(`CREATE INDEX "IDX_233a2d2a93689b5603607d1af8" ON "scenes_module_scene_actions" ("propertyId") `);
|
|
159
|
+
await queryRunner.query(`CREATE TABLE "temporary_dashboard_module_cards" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "title" varchar NOT NULL, "icon" varchar, "order" integer NOT NULL DEFAULT (0), "rows" integer, "cols" integer, "pageId" varchar, CONSTRAINT "FK_73659e3ccd862d4bb76dab4e6ff" FOREIGN KEY ("pageId") REFERENCES "dashboard_module_pages" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
160
|
+
await queryRunner.query(`INSERT INTO "temporary_dashboard_module_cards"("id", "createdAt", "updatedAt", "title", "icon", "order", "rows", "cols", "pageId") SELECT "id", "createdAt", "updatedAt", "title", "icon", "order", "rows", "cols", "pageId" FROM "dashboard_module_cards"`);
|
|
161
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_cards"`);
|
|
162
|
+
await queryRunner.query(`ALTER TABLE "temporary_dashboard_module_cards" RENAME TO "dashboard_module_cards"`);
|
|
163
|
+
await queryRunner.query(`CREATE TABLE "temporary_spaces_module_sensor_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar NOT NULL, "role" varchar NOT NULL DEFAULT ('other'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_afceb66854f55dd313c65dd78f2" UNIQUE ("spaceId", "deviceId", "channelId"), CONSTRAINT "FK_d9e7dd50eefe14753a8433c6b9e" FOREIGN KEY ("spaceId") REFERENCES "spaces_module_spaces" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_4e1c580245ce66f98c2ab523368" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_f0442ee3979aec79a8adf7d61f0" FOREIGN KEY ("channelId") REFERENCES "devices_module_channels" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
164
|
+
await queryRunner.query(`INSERT INTO "temporary_spaces_module_sensor_roles"("id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority") SELECT "id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority" FROM "spaces_module_sensor_roles"`);
|
|
165
|
+
await queryRunner.query(`DROP TABLE "spaces_module_sensor_roles"`);
|
|
166
|
+
await queryRunner.query(`ALTER TABLE "temporary_spaces_module_sensor_roles" RENAME TO "spaces_module_sensor_roles"`);
|
|
167
|
+
await queryRunner.query(`CREATE TABLE "temporary_spaces_module_media_activity_bindings" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "activityKey" varchar NOT NULL, "displayEndpointId" varchar(255), "audioEndpointId" varchar(255), "sourceEndpointId" varchar(255), "remoteEndpointId" varchar(255), "displayInputId" varchar(50), "audioInputId" varchar(50), "sourceInputId" varchar(50), "audioVolumePreset" integer, CONSTRAINT "UQ_1c2005e85d45585b780c2800093" UNIQUE ("spaceId", "activityKey"), CONSTRAINT "FK_6dca53780491d4072702d51a2e7" FOREIGN KEY ("spaceId") REFERENCES "spaces_module_spaces" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
168
|
+
await queryRunner.query(`INSERT INTO "temporary_spaces_module_media_activity_bindings"("id", "createdAt", "updatedAt", "spaceId", "activityKey", "displayEndpointId", "audioEndpointId", "sourceEndpointId", "remoteEndpointId", "displayInputId", "audioInputId", "sourceInputId", "audioVolumePreset") SELECT "id", "createdAt", "updatedAt", "spaceId", "activityKey", "displayEndpointId", "audioEndpointId", "sourceEndpointId", "remoteEndpointId", "displayInputId", "audioInputId", "sourceInputId", "audioVolumePreset" FROM "spaces_module_media_activity_bindings"`);
|
|
169
|
+
await queryRunner.query(`DROP TABLE "spaces_module_media_activity_bindings"`);
|
|
170
|
+
await queryRunner.query(`ALTER TABLE "temporary_spaces_module_media_activity_bindings" RENAME TO "spaces_module_media_activity_bindings"`);
|
|
171
|
+
await queryRunner.query(`CREATE TABLE "temporary_spaces_module_lighting_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar NOT NULL, "role" varchar NOT NULL DEFAULT ('other'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_d2c1cd125dfb21f44a3ba348d38" UNIQUE ("spaceId", "deviceId", "channelId"), CONSTRAINT "FK_717515e44f708964aee4c269e66" FOREIGN KEY ("spaceId") REFERENCES "spaces_module_spaces" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_20b1ea87b420de2c981a4bc0a88" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_da2d3bd15645bd2704a2cf8b019" FOREIGN KEY ("channelId") REFERENCES "devices_module_channels" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
172
|
+
await queryRunner.query(`INSERT INTO "temporary_spaces_module_lighting_roles"("id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority") SELECT "id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority" FROM "spaces_module_lighting_roles"`);
|
|
173
|
+
await queryRunner.query(`DROP TABLE "spaces_module_lighting_roles"`);
|
|
174
|
+
await queryRunner.query(`ALTER TABLE "temporary_spaces_module_lighting_roles" RENAME TO "spaces_module_lighting_roles"`);
|
|
175
|
+
await queryRunner.query(`CREATE TABLE "temporary_spaces_module_covers_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar NOT NULL, "role" varchar NOT NULL DEFAULT ('primary'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_a271095ea076965f76b68f2fa50" UNIQUE ("spaceId", "deviceId", "channelId"), CONSTRAINT "FK_5b4e48ef99a7703d82d879ed4ca" FOREIGN KEY ("spaceId") REFERENCES "spaces_module_spaces" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_04522b70dbc0c4cabe56ec44bf9" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_dd1cfd73845fec1a3fb8067b6bc" FOREIGN KEY ("channelId") REFERENCES "devices_module_channels" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
176
|
+
await queryRunner.query(`INSERT INTO "temporary_spaces_module_covers_roles"("id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority") SELECT "id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority" FROM "spaces_module_covers_roles"`);
|
|
177
|
+
await queryRunner.query(`DROP TABLE "spaces_module_covers_roles"`);
|
|
178
|
+
await queryRunner.query(`ALTER TABLE "temporary_spaces_module_covers_roles" RENAME TO "spaces_module_covers_roles"`);
|
|
179
|
+
await queryRunner.query(`CREATE TABLE "temporary_spaces_module_climate_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar, "role" varchar NOT NULL DEFAULT ('auto'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_a5ab3b10739ce5515beb7a0c32f" UNIQUE ("spaceId", "deviceId", "channelId"), CONSTRAINT "FK_c6bc703b5c7ab0a584176691a91" FOREIGN KEY ("spaceId") REFERENCES "spaces_module_spaces" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_e1b4f672d39b038cc444987c5cc" FOREIGN KEY ("deviceId") REFERENCES "devices_module_devices" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_7be339bb321ab1cf204f5fab993" FOREIGN KEY ("channelId") REFERENCES "devices_module_channels" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
180
|
+
await queryRunner.query(`INSERT INTO "temporary_spaces_module_climate_roles"("id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority") SELECT "id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority" FROM "spaces_module_climate_roles"`);
|
|
181
|
+
await queryRunner.query(`DROP TABLE "spaces_module_climate_roles"`);
|
|
182
|
+
await queryRunner.query(`ALTER TABLE "temporary_spaces_module_climate_roles" RENAME TO "spaces_module_climate_roles"`);
|
|
183
|
+
await queryRunner.query(`CREATE TABLE "temporary_spaces_module_active_media_activities" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "activityKey" varchar, "state" varchar NOT NULL DEFAULT ('deactivated'), "activatedAt" datetime, "resolved" text, "lastResult" text, CONSTRAINT "UQ_121820422a88b6416813a813826" UNIQUE ("spaceId"), CONSTRAINT "FK_121820422a88b6416813a813826" FOREIGN KEY ("spaceId") REFERENCES "spaces_module_spaces" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
184
|
+
await queryRunner.query(`INSERT INTO "temporary_spaces_module_active_media_activities"("id", "createdAt", "updatedAt", "spaceId", "activityKey", "state", "activatedAt", "resolved", "lastResult") SELECT "id", "createdAt", "updatedAt", "spaceId", "activityKey", "state", "activatedAt", "resolved", "lastResult" FROM "spaces_module_active_media_activities"`);
|
|
185
|
+
await queryRunner.query(`DROP TABLE "spaces_module_active_media_activities"`);
|
|
186
|
+
await queryRunner.query(`ALTER TABLE "temporary_spaces_module_active_media_activities" RENAME TO "spaces_module_active_media_activities"`);
|
|
187
|
+
await queryRunner.query(`CREATE TABLE "temporary_buddy_module_messages" ("id" varchar PRIMARY KEY NOT NULL, "conversationId" varchar NOT NULL, "role" varchar NOT NULL, "content" text NOT NULL, "metadata" text, "createdAt" datetime NOT NULL DEFAULT (datetime('now')), CONSTRAINT "FK_5545dad18f5de558361bfc91af7" FOREIGN KEY ("conversationId") REFERENCES "buddy_module_conversations" ("id") ON DELETE NO ACTION ON UPDATE NO ACTION)`);
|
|
188
|
+
await queryRunner.query(`INSERT INTO "temporary_buddy_module_messages"("id", "conversationId", "role", "content", "metadata", "createdAt") SELECT "id", "conversationId", "role", "content", "metadata", "createdAt" FROM "buddy_module_messages"`);
|
|
189
|
+
await queryRunner.query(`DROP TABLE "buddy_module_messages"`);
|
|
190
|
+
await queryRunner.query(`ALTER TABLE "temporary_buddy_module_messages" RENAME TO "buddy_module_messages"`);
|
|
191
|
+
await queryRunner.query(`DROP INDEX "IDX_46d748f90ee8ec23f8ae860554"`);
|
|
192
|
+
await queryRunner.query(`DROP INDEX "IDX_73f1acaf851473bc7a97e1f313"`);
|
|
193
|
+
await queryRunner.query(`DROP INDEX "IDX_7070ff015d55da6c6913fe5323"`);
|
|
194
|
+
await queryRunner.query(`DROP INDEX "IDX_556f3f9dd96854b298a70d3f9d"`);
|
|
195
|
+
await queryRunner.query(`CREATE TABLE "temporary_auth_module_tokens" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "hashedToken" varchar NOT NULL, "expiresAt" datetime, "revoked" boolean NOT NULL DEFAULT (0), "ownerId" varchar, "parentId" varchar, "ownerType" varchar DEFAULT ('user'), "tokenOwnerId" varchar, "name" varchar, "description" varchar, "type" varchar NOT NULL, CONSTRAINT "FK_506ec5c044fcfe86eedd61fcc2a" FOREIGN KEY ("ownerId") REFERENCES "users_module_users" ("id") ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT "FK_f23eec7f267f33cad8d4b0b8301" FOREIGN KEY ("parentId") REFERENCES "auth_module_tokens" ("id") ON DELETE CASCADE ON UPDATE NO ACTION)`);
|
|
196
|
+
await queryRunner.query(`INSERT INTO "temporary_auth_module_tokens"("id", "createdAt", "updatedAt", "hashedToken", "expiresAt", "revoked", "ownerId", "parentId", "ownerType", "tokenOwnerId", "name", "description", "type") SELECT "id", "createdAt", "updatedAt", "hashedToken", "expiresAt", "revoked", "ownerId", "parentId", "ownerType", "tokenOwnerId", "name", "description", "type" FROM "auth_module_tokens"`);
|
|
197
|
+
await queryRunner.query(`DROP TABLE "auth_module_tokens"`);
|
|
198
|
+
await queryRunner.query(`ALTER TABLE "temporary_auth_module_tokens" RENAME TO "auth_module_tokens"`);
|
|
199
|
+
await queryRunner.query(`CREATE INDEX "IDX_46d748f90ee8ec23f8ae860554" ON "auth_module_tokens" ("hashedToken") `);
|
|
200
|
+
await queryRunner.query(`CREATE INDEX "IDX_73f1acaf851473bc7a97e1f313" ON "auth_module_tokens" ("expiresAt") `);
|
|
201
|
+
await queryRunner.query(`CREATE INDEX "IDX_7070ff015d55da6c6913fe5323" ON "auth_module_tokens" ("revoked") `);
|
|
202
|
+
await queryRunner.query(`CREATE INDEX "IDX_556f3f9dd96854b298a70d3f9d" ON "auth_module_tokens" ("type") `);
|
|
203
|
+
await queryRunner.query(`DROP INDEX "IDX_995aa962e1dbc1c9532526156a"`);
|
|
204
|
+
await queryRunner.query(`DROP INDEX "IDX_036b00fdeab221319d16bfab8c"`);
|
|
205
|
+
await queryRunner.query(`CREATE TABLE "temporary_dashboard_module_pages_displays" ("pageId" varchar NOT NULL, "displayId" varchar NOT NULL, CONSTRAINT "FK_995aa962e1dbc1c9532526156af" FOREIGN KEY ("pageId") REFERENCES "dashboard_module_pages" ("id") ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT "FK_036b00fdeab221319d16bfab8ce" FOREIGN KEY ("displayId") REFERENCES "displays_module_displays" ("id") ON DELETE CASCADE ON UPDATE CASCADE, PRIMARY KEY ("pageId", "displayId"))`);
|
|
206
|
+
await queryRunner.query(`INSERT INTO "temporary_dashboard_module_pages_displays"("pageId", "displayId") SELECT "pageId", "displayId" FROM "dashboard_module_pages_displays"`);
|
|
207
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_pages_displays"`);
|
|
208
|
+
await queryRunner.query(`ALTER TABLE "temporary_dashboard_module_pages_displays" RENAME TO "dashboard_module_pages_displays"`);
|
|
209
|
+
await queryRunner.query(`CREATE INDEX "IDX_995aa962e1dbc1c9532526156a" ON "dashboard_module_pages_displays" ("pageId") `);
|
|
210
|
+
await queryRunner.query(`CREATE INDEX "IDX_036b00fdeab221319d16bfab8c" ON "dashboard_module_pages_displays" ("displayId") `);
|
|
211
|
+
}
|
|
212
|
+
async down(queryRunner) {
|
|
213
|
+
await queryRunner.query(`DROP INDEX "IDX_036b00fdeab221319d16bfab8c"`);
|
|
214
|
+
await queryRunner.query(`DROP INDEX "IDX_995aa962e1dbc1c9532526156a"`);
|
|
215
|
+
await queryRunner.query(`ALTER TABLE "dashboard_module_pages_displays" RENAME TO "temporary_dashboard_module_pages_displays"`);
|
|
216
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_pages_displays" ("pageId" varchar NOT NULL, "displayId" varchar NOT NULL, PRIMARY KEY ("pageId", "displayId"))`);
|
|
217
|
+
await queryRunner.query(`INSERT INTO "dashboard_module_pages_displays"("pageId", "displayId") SELECT "pageId", "displayId" FROM "temporary_dashboard_module_pages_displays"`);
|
|
218
|
+
await queryRunner.query(`DROP TABLE "temporary_dashboard_module_pages_displays"`);
|
|
219
|
+
await queryRunner.query(`CREATE INDEX "IDX_036b00fdeab221319d16bfab8c" ON "dashboard_module_pages_displays" ("displayId") `);
|
|
220
|
+
await queryRunner.query(`CREATE INDEX "IDX_995aa962e1dbc1c9532526156a" ON "dashboard_module_pages_displays" ("pageId") `);
|
|
221
|
+
await queryRunner.query(`DROP INDEX "IDX_556f3f9dd96854b298a70d3f9d"`);
|
|
222
|
+
await queryRunner.query(`DROP INDEX "IDX_7070ff015d55da6c6913fe5323"`);
|
|
223
|
+
await queryRunner.query(`DROP INDEX "IDX_73f1acaf851473bc7a97e1f313"`);
|
|
224
|
+
await queryRunner.query(`DROP INDEX "IDX_46d748f90ee8ec23f8ae860554"`);
|
|
225
|
+
await queryRunner.query(`ALTER TABLE "auth_module_tokens" RENAME TO "temporary_auth_module_tokens"`);
|
|
226
|
+
await queryRunner.query(`CREATE TABLE "auth_module_tokens" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "hashedToken" varchar NOT NULL, "expiresAt" datetime, "revoked" boolean NOT NULL DEFAULT (0), "ownerId" varchar, "parentId" varchar, "ownerType" varchar DEFAULT ('user'), "tokenOwnerId" varchar, "name" varchar, "description" varchar, "type" varchar NOT NULL)`);
|
|
227
|
+
await queryRunner.query(`INSERT INTO "auth_module_tokens"("id", "createdAt", "updatedAt", "hashedToken", "expiresAt", "revoked", "ownerId", "parentId", "ownerType", "tokenOwnerId", "name", "description", "type") SELECT "id", "createdAt", "updatedAt", "hashedToken", "expiresAt", "revoked", "ownerId", "parentId", "ownerType", "tokenOwnerId", "name", "description", "type" FROM "temporary_auth_module_tokens"`);
|
|
228
|
+
await queryRunner.query(`DROP TABLE "temporary_auth_module_tokens"`);
|
|
229
|
+
await queryRunner.query(`CREATE INDEX "IDX_556f3f9dd96854b298a70d3f9d" ON "auth_module_tokens" ("type") `);
|
|
230
|
+
await queryRunner.query(`CREATE INDEX "IDX_7070ff015d55da6c6913fe5323" ON "auth_module_tokens" ("revoked") `);
|
|
231
|
+
await queryRunner.query(`CREATE INDEX "IDX_73f1acaf851473bc7a97e1f313" ON "auth_module_tokens" ("expiresAt") `);
|
|
232
|
+
await queryRunner.query(`CREATE INDEX "IDX_46d748f90ee8ec23f8ae860554" ON "auth_module_tokens" ("hashedToken") `);
|
|
233
|
+
await queryRunner.query(`ALTER TABLE "buddy_module_messages" RENAME TO "temporary_buddy_module_messages"`);
|
|
234
|
+
await queryRunner.query(`CREATE TABLE "buddy_module_messages" ("id" varchar PRIMARY KEY NOT NULL, "conversationId" varchar NOT NULL, "role" varchar NOT NULL, "content" text NOT NULL, "metadata" text, "createdAt" datetime NOT NULL DEFAULT (datetime('now')))`);
|
|
235
|
+
await queryRunner.query(`INSERT INTO "buddy_module_messages"("id", "conversationId", "role", "content", "metadata", "createdAt") SELECT "id", "conversationId", "role", "content", "metadata", "createdAt" FROM "temporary_buddy_module_messages"`);
|
|
236
|
+
await queryRunner.query(`DROP TABLE "temporary_buddy_module_messages"`);
|
|
237
|
+
await queryRunner.query(`ALTER TABLE "spaces_module_active_media_activities" RENAME TO "temporary_spaces_module_active_media_activities"`);
|
|
238
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_active_media_activities" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "activityKey" varchar, "state" varchar NOT NULL DEFAULT ('deactivated'), "activatedAt" datetime, "resolved" text, "lastResult" text, CONSTRAINT "UQ_121820422a88b6416813a813826" UNIQUE ("spaceId"))`);
|
|
239
|
+
await queryRunner.query(`INSERT INTO "spaces_module_active_media_activities"("id", "createdAt", "updatedAt", "spaceId", "activityKey", "state", "activatedAt", "resolved", "lastResult") SELECT "id", "createdAt", "updatedAt", "spaceId", "activityKey", "state", "activatedAt", "resolved", "lastResult" FROM "temporary_spaces_module_active_media_activities"`);
|
|
240
|
+
await queryRunner.query(`DROP TABLE "temporary_spaces_module_active_media_activities"`);
|
|
241
|
+
await queryRunner.query(`ALTER TABLE "spaces_module_climate_roles" RENAME TO "temporary_spaces_module_climate_roles"`);
|
|
242
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_climate_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar, "role" varchar NOT NULL DEFAULT ('auto'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_a5ab3b10739ce5515beb7a0c32f" UNIQUE ("spaceId", "deviceId", "channelId"))`);
|
|
243
|
+
await queryRunner.query(`INSERT INTO "spaces_module_climate_roles"("id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority") SELECT "id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority" FROM "temporary_spaces_module_climate_roles"`);
|
|
244
|
+
await queryRunner.query(`DROP TABLE "temporary_spaces_module_climate_roles"`);
|
|
245
|
+
await queryRunner.query(`ALTER TABLE "spaces_module_covers_roles" RENAME TO "temporary_spaces_module_covers_roles"`);
|
|
246
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_covers_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar NOT NULL, "role" varchar NOT NULL DEFAULT ('primary'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_a271095ea076965f76b68f2fa50" UNIQUE ("spaceId", "deviceId", "channelId"))`);
|
|
247
|
+
await queryRunner.query(`INSERT INTO "spaces_module_covers_roles"("id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority") SELECT "id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority" FROM "temporary_spaces_module_covers_roles"`);
|
|
248
|
+
await queryRunner.query(`DROP TABLE "temporary_spaces_module_covers_roles"`);
|
|
249
|
+
await queryRunner.query(`ALTER TABLE "spaces_module_lighting_roles" RENAME TO "temporary_spaces_module_lighting_roles"`);
|
|
250
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_lighting_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar NOT NULL, "role" varchar NOT NULL DEFAULT ('other'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_d2c1cd125dfb21f44a3ba348d38" UNIQUE ("spaceId", "deviceId", "channelId"))`);
|
|
251
|
+
await queryRunner.query(`INSERT INTO "spaces_module_lighting_roles"("id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority") SELECT "id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority" FROM "temporary_spaces_module_lighting_roles"`);
|
|
252
|
+
await queryRunner.query(`DROP TABLE "temporary_spaces_module_lighting_roles"`);
|
|
253
|
+
await queryRunner.query(`ALTER TABLE "spaces_module_media_activity_bindings" RENAME TO "temporary_spaces_module_media_activity_bindings"`);
|
|
254
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_media_activity_bindings" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "activityKey" varchar NOT NULL, "displayEndpointId" varchar(255), "audioEndpointId" varchar(255), "sourceEndpointId" varchar(255), "remoteEndpointId" varchar(255), "displayInputId" varchar(50), "audioInputId" varchar(50), "sourceInputId" varchar(50), "audioVolumePreset" integer, CONSTRAINT "UQ_1c2005e85d45585b780c2800093" UNIQUE ("spaceId", "activityKey"))`);
|
|
255
|
+
await queryRunner.query(`INSERT INTO "spaces_module_media_activity_bindings"("id", "createdAt", "updatedAt", "spaceId", "activityKey", "displayEndpointId", "audioEndpointId", "sourceEndpointId", "remoteEndpointId", "displayInputId", "audioInputId", "sourceInputId", "audioVolumePreset") SELECT "id", "createdAt", "updatedAt", "spaceId", "activityKey", "displayEndpointId", "audioEndpointId", "sourceEndpointId", "remoteEndpointId", "displayInputId", "audioInputId", "sourceInputId", "audioVolumePreset" FROM "temporary_spaces_module_media_activity_bindings"`);
|
|
256
|
+
await queryRunner.query(`DROP TABLE "temporary_spaces_module_media_activity_bindings"`);
|
|
257
|
+
await queryRunner.query(`ALTER TABLE "spaces_module_sensor_roles" RENAME TO "temporary_spaces_module_sensor_roles"`);
|
|
258
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_sensor_roles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "spaceId" varchar NOT NULL, "deviceId" varchar NOT NULL, "channelId" varchar NOT NULL, "role" varchar NOT NULL DEFAULT ('other'), "priority" integer NOT NULL DEFAULT (0), CONSTRAINT "UQ_afceb66854f55dd313c65dd78f2" UNIQUE ("spaceId", "deviceId", "channelId"))`);
|
|
259
|
+
await queryRunner.query(`INSERT INTO "spaces_module_sensor_roles"("id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority") SELECT "id", "createdAt", "updatedAt", "spaceId", "deviceId", "channelId", "role", "priority" FROM "temporary_spaces_module_sensor_roles"`);
|
|
260
|
+
await queryRunner.query(`DROP TABLE "temporary_spaces_module_sensor_roles"`);
|
|
261
|
+
await queryRunner.query(`ALTER TABLE "dashboard_module_cards" RENAME TO "temporary_dashboard_module_cards"`);
|
|
262
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_cards" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "title" varchar NOT NULL, "icon" varchar, "order" integer NOT NULL DEFAULT (0), "rows" integer, "cols" integer, "pageId" varchar)`);
|
|
263
|
+
await queryRunner.query(`INSERT INTO "dashboard_module_cards"("id", "createdAt", "updatedAt", "title", "icon", "order", "rows", "cols", "pageId") SELECT "id", "createdAt", "updatedAt", "title", "icon", "order", "rows", "cols", "pageId" FROM "temporary_dashboard_module_cards"`);
|
|
264
|
+
await queryRunner.query(`DROP TABLE "temporary_dashboard_module_cards"`);
|
|
265
|
+
await queryRunner.query(`DROP INDEX "IDX_233a2d2a93689b5603607d1af8"`);
|
|
266
|
+
await queryRunner.query(`DROP INDEX "IDX_12f6b278ea9b037ea7f0e6ac0b"`);
|
|
267
|
+
await queryRunner.query(`DROP INDEX "IDX_35ec392f88d687d87cb8892ddb"`);
|
|
268
|
+
await queryRunner.query(`DROP INDEX "IDX_bdbb8594e2e5a823531f7a40d3"`);
|
|
269
|
+
await queryRunner.query(`ALTER TABLE "scenes_module_scene_actions" RENAME TO "temporary_scenes_module_scene_actions"`);
|
|
270
|
+
await queryRunner.query(`CREATE TABLE "scenes_module_scene_actions" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "configuration" json NOT NULL DEFAULT ('{}'), "order" integer NOT NULL DEFAULT (0), "enabled" boolean NOT NULL DEFAULT (1), "type" varchar(100) NOT NULL DEFAULT ('local'), "deviceId" varchar(36), "channelId" varchar(36), "propertyId" varchar(36), "value" text, "sceneId" varchar)`);
|
|
271
|
+
await queryRunner.query(`INSERT INTO "scenes_module_scene_actions"("id", "createdAt", "updatedAt", "configuration", "order", "enabled", "type", "deviceId", "channelId", "propertyId", "value", "sceneId") SELECT "id", "createdAt", "updatedAt", "configuration", "order", "enabled", "type", "deviceId", "channelId", "propertyId", "value", "sceneId" FROM "temporary_scenes_module_scene_actions"`);
|
|
272
|
+
await queryRunner.query(`DROP TABLE "temporary_scenes_module_scene_actions"`);
|
|
273
|
+
await queryRunner.query(`CREATE INDEX "IDX_233a2d2a93689b5603607d1af8" ON "scenes_module_scene_actions" ("propertyId") `);
|
|
274
|
+
await queryRunner.query(`CREATE INDEX "IDX_12f6b278ea9b037ea7f0e6ac0b" ON "scenes_module_scene_actions" ("deviceId") `);
|
|
275
|
+
await queryRunner.query(`CREATE INDEX "IDX_35ec392f88d687d87cb8892ddb" ON "scenes_module_scene_actions" ("type") `);
|
|
276
|
+
await queryRunner.query(`CREATE INDEX "IDX_bdbb8594e2e5a823531f7a40d3" ON "scenes_module_scene_actions" ("order") `);
|
|
277
|
+
await queryRunner.query(`DROP INDEX "IDX_1a2cd1b9b2e15f20a2646a5419"`);
|
|
278
|
+
await queryRunner.query(`DROP INDEX "IDX_07df3633b70cc1035e3dc8850a"`);
|
|
279
|
+
await queryRunner.query(`ALTER TABLE "displays_module_displays" RENAME TO "temporary_displays_module_displays"`);
|
|
280
|
+
await queryRunner.query(`CREATE TABLE "displays_module_displays" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "macAddress" varchar NOT NULL, "version" varchar, "build" varchar, "screenWidth" integer NOT NULL DEFAULT (0), "screenHeight" integer NOT NULL DEFAULT (0), "pixelRatio" float NOT NULL DEFAULT (1), "unitSize" float NOT NULL DEFAULT (8), "rows" integer NOT NULL DEFAULT (12), "cols" integer NOT NULL DEFAULT (24), "darkMode" boolean NOT NULL DEFAULT (0), "brightness" integer NOT NULL DEFAULT (100), "screenLockDuration" integer NOT NULL DEFAULT (30), "screenSaver" boolean NOT NULL DEFAULT (1), "screenPowerOff" boolean NOT NULL DEFAULT (0), "name" varchar, "role" varchar(20) NOT NULL DEFAULT ('room'), "roomId" varchar, "homeMode" varchar(20) NOT NULL DEFAULT ('auto_space'), "homePageId" varchar, "audioOutputSupported" boolean NOT NULL DEFAULT (0), "audioInputSupported" boolean NOT NULL DEFAULT (0), "speaker" boolean NOT NULL DEFAULT (0), "speakerVolume" integer NOT NULL DEFAULT (50), "microphone" boolean NOT NULL DEFAULT (0), "microphoneVolume" integer NOT NULL DEFAULT (50), "numberFormat" varchar(20), "temperatureUnit" varchar(20), "windSpeedUnit" varchar(20), "pressureUnit" varchar(20), "precipitationUnit" varchar(20), "distanceUnit" varchar(20), "weatherLocationId" varchar(36), "registeredFromIp" varchar, "currentIpAddress" varchar, CONSTRAINT "UQ_cd17d1db23915094c008a3ab20a" UNIQUE ("macAddress"))`);
|
|
281
|
+
await queryRunner.query(`INSERT INTO "displays_module_displays"("id", "createdAt", "updatedAt", "macAddress", "version", "build", "screenWidth", "screenHeight", "pixelRatio", "unitSize", "rows", "cols", "darkMode", "brightness", "screenLockDuration", "screenSaver", "screenPowerOff", "name", "role", "roomId", "homeMode", "homePageId", "audioOutputSupported", "audioInputSupported", "speaker", "speakerVolume", "microphone", "microphoneVolume", "numberFormat", "temperatureUnit", "windSpeedUnit", "pressureUnit", "precipitationUnit", "distanceUnit", "weatherLocationId", "registeredFromIp", "currentIpAddress") SELECT "id", "createdAt", "updatedAt", "macAddress", "version", "build", "screenWidth", "screenHeight", "pixelRatio", "unitSize", "rows", "cols", "darkMode", "brightness", "screenLockDuration", "screenSaver", "screenPowerOff", "name", "role", "roomId", "homeMode", "homePageId", "audioOutputSupported", "audioInputSupported", "speaker", "speakerVolume", "microphone", "microphoneVolume", "numberFormat", "temperatureUnit", "windSpeedUnit", "pressureUnit", "precipitationUnit", "distanceUnit", "weatherLocationId", "registeredFromIp", "currentIpAddress" FROM "temporary_displays_module_displays"`);
|
|
282
|
+
await queryRunner.query(`DROP TABLE "temporary_displays_module_displays"`);
|
|
283
|
+
await queryRunner.query(`CREATE INDEX "IDX_1a2cd1b9b2e15f20a2646a5419" ON "displays_module_displays" ("homePageId") `);
|
|
284
|
+
await queryRunner.query(`CREATE INDEX "IDX_07df3633b70cc1035e3dc8850a" ON "displays_module_displays" ("roomId") `);
|
|
285
|
+
await queryRunner.query(`DROP INDEX "IDX_9237609236d02277e75bb98556"`);
|
|
286
|
+
await queryRunner.query(`ALTER TABLE "dashboard_module_data_source" RENAME TO "temporary_dashboard_module_data_source"`);
|
|
287
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_data_source" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "parentType" varchar(64) NOT NULL, "parentId" varchar NOT NULL, "field" varchar DEFAULT ('temperature'), "icon" varchar, "unit" varchar, "dayOffset" integer DEFAULT (1), "type" varchar NOT NULL, "locationId" varchar, "deviceId" varchar, "channelId" varchar, "propertyId" varchar)`);
|
|
288
|
+
await queryRunner.query(`INSERT INTO "dashboard_module_data_source"("id", "createdAt", "updatedAt", "parentType", "parentId", "field", "icon", "unit", "dayOffset", "type", "locationId", "deviceId", "channelId", "propertyId") SELECT "id", "createdAt", "updatedAt", "parentType", "parentId", "field", "icon", "unit", "dayOffset", "type", "locationId", "deviceId", "channelId", "propertyId" FROM "temporary_dashboard_module_data_source"`);
|
|
289
|
+
await queryRunner.query(`DROP TABLE "temporary_dashboard_module_data_source"`);
|
|
290
|
+
await queryRunner.query(`CREATE INDEX "IDX_9237609236d02277e75bb98556" ON "dashboard_module_data_source" ("type") `);
|
|
291
|
+
await queryRunner.query(`DROP INDEX "IDX_c94b5a4bf6856324ed5d8c4d1c"`);
|
|
292
|
+
await queryRunner.query(`ALTER TABLE "dashboard_module_tiles" RENAME TO "temporary_dashboard_module_tiles"`);
|
|
293
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_tiles" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "parentType" varchar(64) NOT NULL, "parentId" varchar NOT NULL, "row" integer NOT NULL, "col" integer NOT NULL, "rowSpan" integer NOT NULL DEFAULT (1), "colSpan" integer NOT NULL DEFAULT (1), "hidden" boolean NOT NULL DEFAULT (0), "icon" varchar, "location_id" varchar, "type" varchar NOT NULL, "sceneId" varchar, "deviceId" varchar)`);
|
|
294
|
+
await queryRunner.query(`INSERT INTO "dashboard_module_tiles"("id", "createdAt", "updatedAt", "parentType", "parentId", "row", "col", "rowSpan", "colSpan", "hidden", "icon", "location_id", "type", "sceneId", "deviceId") SELECT "id", "createdAt", "updatedAt", "parentType", "parentId", "row", "col", "rowSpan", "colSpan", "hidden", "icon", "location_id", "type", "sceneId", "deviceId" FROM "temporary_dashboard_module_tiles"`);
|
|
295
|
+
await queryRunner.query(`DROP TABLE "temporary_dashboard_module_tiles"`);
|
|
296
|
+
await queryRunner.query(`CREATE INDEX "IDX_c94b5a4bf6856324ed5d8c4d1c" ON "dashboard_module_tiles" ("type") `);
|
|
297
|
+
await queryRunner.query(`DROP INDEX "IDX_36e8c03f4a3b3c12bf52d211c9"`);
|
|
298
|
+
await queryRunner.query(`ALTER TABLE "dashboard_module_pages" RENAME TO "temporary_dashboard_module_pages"`);
|
|
299
|
+
await queryRunner.query(`CREATE TABLE "dashboard_module_pages" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "title" varchar NOT NULL, "icon" varchar, "order" integer NOT NULL DEFAULT (0), "showTopBar" boolean NOT NULL DEFAULT (1), "tileSize" float, "rows" integer, "cols" integer, "type" varchar NOT NULL, "deviceId" varchar)`);
|
|
300
|
+
await queryRunner.query(`INSERT INTO "dashboard_module_pages"("id", "createdAt", "updatedAt", "title", "icon", "order", "showTopBar", "tileSize", "rows", "cols", "type", "deviceId") SELECT "id", "createdAt", "updatedAt", "title", "icon", "order", "showTopBar", "tileSize", "rows", "cols", "type", "deviceId" FROM "temporary_dashboard_module_pages"`);
|
|
301
|
+
await queryRunner.query(`DROP TABLE "temporary_dashboard_module_pages"`);
|
|
302
|
+
await queryRunner.query(`CREATE INDEX "IDX_36e8c03f4a3b3c12bf52d211c9" ON "dashboard_module_pages" ("type") `);
|
|
303
|
+
await queryRunner.query(`ALTER TABLE "devices_module_devices_zones" RENAME TO "temporary_devices_module_devices_zones"`);
|
|
304
|
+
await queryRunner.query(`CREATE TABLE "devices_module_devices_zones" ("deviceId" varchar NOT NULL, "zoneId" varchar NOT NULL, "createdAt" datetime NOT NULL DEFAULT (datetime('now')), PRIMARY KEY ("deviceId", "zoneId"))`);
|
|
305
|
+
await queryRunner.query(`INSERT INTO "devices_module_devices_zones"("deviceId", "zoneId", "createdAt") SELECT "deviceId", "zoneId", "createdAt" FROM "temporary_devices_module_devices_zones"`);
|
|
306
|
+
await queryRunner.query(`DROP TABLE "temporary_devices_module_devices_zones"`);
|
|
307
|
+
await queryRunner.query(`DROP INDEX "IDX_98ffd1e6ff9c4463c3e7d9a9c7"`);
|
|
308
|
+
await queryRunner.query(`DROP INDEX "IDX_869661aed3457e1949b0e7e335"`);
|
|
309
|
+
await queryRunner.query(`ALTER TABLE "devices_module_channels_properties" RENAME TO "temporary_devices_module_channels_properties"`);
|
|
310
|
+
await queryRunner.query(`CREATE TABLE "devices_module_channels_properties" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "category" varchar CHECK( "category" IN ('generic','acceleration_x','acceleration_y','acceleration_z','active','alarm_state','album','angle','artist','artwork_url','aqi','average_power','balance','bass','brightness','change_needed','child_lock','color_blue','color_green','color_red','color_temperature','color_white','command','connection_type','consumption','current','concentration','defrost_active','detected','direction','distance','duration','event','fault','fault_description','firmware_revision','frequency','grid_export','grid_import','hardware_revision','hue','humidity','in_use','infrared','last_event','level','life_remaining','link_quality','locked','illuminance','manufacturer','media_type','mist_level','model','mode','mute','natural_breeze','obstruction','on','orientation','over_current','over_voltage','over_power','pan','peak_level','percentage','position','power','pressure','production','rate','remaining','repeat','reset','remote_key','saturation','siren','serial_number','shuffle','source','source_label','state','speed','status','swing','tampered','temperature','tilt','timer','treble','triggered','track','type','voltage','volume','warm_mist','water_tank_empty','water_tank_full','water_tank_level','zoom') ) NOT NULL DEFAULT ('generic'), "identifier" varchar, "name" varchar, "permissions" text NOT NULL DEFAULT ('ro'), "dataType" varchar CHECK( "dataType" IN ('char','uchar','short','ushort','int','uint','float','bool','string','enum','unknown') ) NOT NULL DEFAULT ('unknown'), "format" json, "invalid" text, "step" real, "haEntityId" varchar, "haAttribute" varchar, "haTransformer" varchar, "type" varchar NOT NULL, "channelId" varchar, CONSTRAINT "UQ_channels_properties_identifier_type" UNIQUE ("identifier", "channelId"))`);
|
|
311
|
+
await queryRunner.query(`INSERT INTO "devices_module_channels_properties"("id", "createdAt", "updatedAt", "category", "identifier", "name", "permissions", "dataType", "format", "invalid", "step", "haEntityId", "haAttribute", "haTransformer", "type", "channelId") SELECT "id", "createdAt", "updatedAt", "category", "identifier", "name", "permissions", "dataType", "format", "invalid", "step", "haEntityId", "haAttribute", "haTransformer", "type", "channelId" FROM "temporary_devices_module_channels_properties"`);
|
|
312
|
+
await queryRunner.query(`DROP TABLE "temporary_devices_module_channels_properties"`);
|
|
313
|
+
await queryRunner.query(`CREATE INDEX "IDX_98ffd1e6ff9c4463c3e7d9a9c7" ON "devices_module_channels_properties" ("type") `);
|
|
314
|
+
await queryRunner.query(`CREATE INDEX "IDX_869661aed3457e1949b0e7e335" ON "devices_module_channels_properties" ("identifier") `);
|
|
315
|
+
await queryRunner.query(`ALTER TABLE "devices_module_channels_controls" RENAME TO "temporary_devices_module_channels_controls"`);
|
|
316
|
+
await queryRunner.query(`CREATE TABLE "devices_module_channels_controls" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "channelId" varchar, CONSTRAINT "UQ_d6f8eb1f9d68d513d0ed9689765" UNIQUE ("name", "channelId"))`);
|
|
317
|
+
await queryRunner.query(`INSERT INTO "devices_module_channels_controls"("id", "createdAt", "updatedAt", "name", "channelId") SELECT "id", "createdAt", "updatedAt", "name", "channelId" FROM "temporary_devices_module_channels_controls"`);
|
|
318
|
+
await queryRunner.query(`DROP TABLE "temporary_devices_module_channels_controls"`);
|
|
319
|
+
await queryRunner.query(`DROP INDEX "IDX_a654e0cabea37168a1a967ab5d"`);
|
|
320
|
+
await queryRunner.query(`DROP INDEX "IDX_4ff87e5bef5426c24fe7f0ff6c"`);
|
|
321
|
+
await queryRunner.query(`DROP INDEX "IDX_38441e91ae9be25547912ebc44"`);
|
|
322
|
+
await queryRunner.query(`ALTER TABLE "devices_module_channels" RENAME TO "temporary_devices_module_channels"`);
|
|
323
|
+
await queryRunner.query(`CREATE TABLE "devices_module_channels" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "category" varchar CHECK( "category" IN ('generic','accelerometer','air_particulate','air_quality','alarm','battery','button','buzzer','camera','carbon_dioxide','carbon_monoxide','contact','cooler','dehumidifier','device_information','door','doorbell','electrical_energy','electrical_generation','electrical_power','fan','filter','flow','gas','heater','humidifier','humidity','illuminance','indicator','leak','light','lock','media_input','media_playback','microphone','motion','nitrogen_dioxide','occupancy','outlet','ozone','pressure','projector','robot_vacuum','smoke','speaker','sulphur_dioxide','switcher','television','temperature','thermostat','valve','volatile_organic_compounds','window_covering') ) NOT NULL DEFAULT ('generic'), "identifier" varchar, "name" varchar NOT NULL, "description" varchar, "parentId" varchar, "type" varchar NOT NULL, "deviceId" varchar, CONSTRAINT "UQ_channels_identifier_type" UNIQUE ("identifier", "deviceId"))`);
|
|
324
|
+
await queryRunner.query(`INSERT INTO "devices_module_channels"("id", "createdAt", "updatedAt", "category", "identifier", "name", "description", "parentId", "type", "deviceId") SELECT "id", "createdAt", "updatedAt", "category", "identifier", "name", "description", "parentId", "type", "deviceId" FROM "temporary_devices_module_channels"`);
|
|
325
|
+
await queryRunner.query(`DROP TABLE "temporary_devices_module_channels"`);
|
|
326
|
+
await queryRunner.query(`CREATE INDEX "IDX_a654e0cabea37168a1a967ab5d" ON "devices_module_channels" ("type") `);
|
|
327
|
+
await queryRunner.query(`CREATE INDEX "IDX_4ff87e5bef5426c24fe7f0ff6c" ON "devices_module_channels" ("parentId") `);
|
|
328
|
+
await queryRunner.query(`CREATE INDEX "IDX_38441e91ae9be25547912ebc44" ON "devices_module_channels" ("identifier") `);
|
|
329
|
+
await queryRunner.query(`ALTER TABLE "devices_module_devices_controls" RENAME TO "temporary_devices_module_devices_controls"`);
|
|
330
|
+
await queryRunner.query(`CREATE TABLE "devices_module_devices_controls" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "deviceId" varchar, CONSTRAINT "UQ_5b8582a956a365854e2ba8634de" UNIQUE ("name", "deviceId"))`);
|
|
331
|
+
await queryRunner.query(`INSERT INTO "devices_module_devices_controls"("id", "createdAt", "updatedAt", "name", "deviceId") SELECT "id", "createdAt", "updatedAt", "name", "deviceId" FROM "temporary_devices_module_devices_controls"`);
|
|
332
|
+
await queryRunner.query(`DROP TABLE "temporary_devices_module_devices_controls"`);
|
|
333
|
+
await queryRunner.query(`DROP INDEX "IDX_de1447169fa1df5ea8d41bf02a"`);
|
|
334
|
+
await queryRunner.query(`DROP INDEX "IDX_36ec1c9bafc04373563cfb5f83"`);
|
|
335
|
+
await queryRunner.query(`DROP INDEX "IDX_9c2fa00cfe1d7964da6b8ad497"`);
|
|
336
|
+
await queryRunner.query(`DROP INDEX "IDX_b6aa1841ab84616391d34cd5cf"`);
|
|
337
|
+
await queryRunner.query(`DROP INDEX "IDX_2e587b2a8bcb55f468bb6ec6fe"`);
|
|
338
|
+
await queryRunner.query(`ALTER TABLE "devices_module_devices" RENAME TO "temporary_devices_module_devices"`);
|
|
339
|
+
await queryRunner.query(`CREATE TABLE "devices_module_devices" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "category" varchar CHECK( "category" IN ('generic','air_conditioner','air_dehumidifier','air_humidifier','air_purifier','av_receiver','alarm','camera','door','doorbell','fan','game_console','heating_unit','lighting','lock','media','outlet','projector','pump','robot_vacuum','sensor','set_top_box','speaker','sprinkler','streaming_service','switcher','television','terminal','thermostat','valve','water_heater','window_covering') ) NOT NULL DEFAULT ('generic'), "identifier" varchar, "name" varchar NOT NULL, "description" varchar, "enabled" boolean NOT NULL DEFAULT (1), "roomId" varchar, "password" varchar, "hostname" varchar, "haDeviceId" varchar, "autoSimulate" boolean DEFAULT (0), "simulateInterval" integer DEFAULT (5000), "behaviorMode" varchar DEFAULT ('default'), "serviceAddress" varchar, "variant" varchar, "type" varchar NOT NULL, CONSTRAINT "UQ_devices_identifier_type" UNIQUE ("identifier", "type"))`);
|
|
340
|
+
await queryRunner.query(`INSERT INTO "devices_module_devices"("id", "createdAt", "updatedAt", "category", "identifier", "name", "description", "enabled", "roomId", "password", "hostname", "haDeviceId", "autoSimulate", "simulateInterval", "behaviorMode", "serviceAddress", "variant", "type") SELECT "id", "createdAt", "updatedAt", "category", "identifier", "name", "description", "enabled", "roomId", "password", "hostname", "haDeviceId", "autoSimulate", "simulateInterval", "behaviorMode", "serviceAddress", "variant", "type" FROM "temporary_devices_module_devices"`);
|
|
341
|
+
await queryRunner.query(`DROP TABLE "temporary_devices_module_devices"`);
|
|
342
|
+
await queryRunner.query(`CREATE INDEX "IDX_de1447169fa1df5ea8d41bf02a" ON "devices_module_devices" ("type") `);
|
|
343
|
+
await queryRunner.query(`CREATE UNIQUE INDEX "IDX_36ec1c9bafc04373563cfb5f83" ON "devices_module_devices" ("haDeviceId") `);
|
|
344
|
+
await queryRunner.query(`CREATE INDEX "IDX_9c2fa00cfe1d7964da6b8ad497" ON "devices_module_devices" ("roomId") `);
|
|
345
|
+
await queryRunner.query(`CREATE INDEX "IDX_b6aa1841ab84616391d34cd5cf" ON "devices_module_devices" ("enabled") `);
|
|
346
|
+
await queryRunner.query(`CREATE INDEX "IDX_2e587b2a8bcb55f468bb6ec6fe" ON "devices_module_devices" ("identifier") `);
|
|
347
|
+
await queryRunner.query(`DROP INDEX "IDX_d19c463ca04d42084e8e23e424"`);
|
|
348
|
+
await queryRunner.query(`ALTER TABLE "spaces_module_spaces" RENAME TO "temporary_spaces_module_spaces"`);
|
|
349
|
+
await queryRunner.query(`CREATE TABLE "spaces_module_spaces" ("id" varchar PRIMARY KEY NOT NULL, "createdAt" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP), "updatedAt" datetime, "name" varchar NOT NULL, "description" varchar, "type" varchar NOT NULL DEFAULT ('room'), "category" varchar, "parentId" varchar, "icon" varchar, "displayOrder" integer NOT NULL DEFAULT (0), "suggestionsEnabled" boolean NOT NULL DEFAULT (1), "statusWidgets" text, "lastActivityAt" datetime)`);
|
|
350
|
+
await queryRunner.query(`INSERT INTO "spaces_module_spaces"("id", "createdAt", "updatedAt", "name", "description", "type", "category", "parentId", "icon", "displayOrder", "suggestionsEnabled", "statusWidgets", "lastActivityAt") SELECT "id", "createdAt", "updatedAt", "name", "description", "type", "category", "parentId", "icon", "displayOrder", "suggestionsEnabled", "statusWidgets", "lastActivityAt" FROM "temporary_spaces_module_spaces"`);
|
|
351
|
+
await queryRunner.query(`DROP TABLE "temporary_spaces_module_spaces"`);
|
|
352
|
+
await queryRunner.query(`CREATE INDEX "IDX_d19c463ca04d42084e8e23e424" ON "spaces_module_spaces" ("parentId") `);
|
|
353
|
+
await queryRunner.query(`DROP INDEX "IDX_036b00fdeab221319d16bfab8c"`);
|
|
354
|
+
await queryRunner.query(`DROP INDEX "IDX_995aa962e1dbc1c9532526156a"`);
|
|
355
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_pages_displays"`);
|
|
356
|
+
await queryRunner.query(`DROP INDEX "IDX_556f3f9dd96854b298a70d3f9d"`);
|
|
357
|
+
await queryRunner.query(`DROP INDEX "IDX_7070ff015d55da6c6913fe5323"`);
|
|
358
|
+
await queryRunner.query(`DROP INDEX "IDX_73f1acaf851473bc7a97e1f313"`);
|
|
359
|
+
await queryRunner.query(`DROP INDEX "IDX_46d748f90ee8ec23f8ae860554"`);
|
|
360
|
+
await queryRunner.query(`DROP TABLE "auth_module_tokens"`);
|
|
361
|
+
await queryRunner.query(`DROP TABLE "buddy_module_messages"`);
|
|
362
|
+
await queryRunner.query(`DROP TABLE "buddy_module_conversations"`);
|
|
363
|
+
await queryRunner.query(`DROP TABLE "security_module_alert_acks"`);
|
|
364
|
+
await queryRunner.query(`DROP INDEX "IDX_energy_deltas_room_interval"`);
|
|
365
|
+
await queryRunner.query(`DROP INDEX "IDX_energy_deltas_device_interval"`);
|
|
366
|
+
await queryRunner.query(`DROP INDEX "IDX_energy_deltas_interval_end"`);
|
|
367
|
+
await queryRunner.query(`DROP INDEX "IDX_b0dfbf2cc611a4e8341303034b"`);
|
|
368
|
+
await queryRunner.query(`DROP INDEX "IDX_c8232d88b926adc774467458d8"`);
|
|
369
|
+
await queryRunner.query(`DROP TABLE "energy_module_deltas"`);
|
|
370
|
+
await queryRunner.query(`DROP TABLE "spaces_module_active_media_activities"`);
|
|
371
|
+
await queryRunner.query(`DROP TABLE "spaces_module_climate_roles"`);
|
|
372
|
+
await queryRunner.query(`DROP TABLE "spaces_module_covers_roles"`);
|
|
373
|
+
await queryRunner.query(`DROP TABLE "spaces_module_lighting_roles"`);
|
|
374
|
+
await queryRunner.query(`DROP TABLE "spaces_module_media_activity_bindings"`);
|
|
375
|
+
await queryRunner.query(`DROP TABLE "spaces_module_sensor_roles"`);
|
|
376
|
+
await queryRunner.query(`DROP TABLE "users_module_users"`);
|
|
377
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_cards"`);
|
|
378
|
+
await queryRunner.query(`DROP INDEX "IDX_233a2d2a93689b5603607d1af8"`);
|
|
379
|
+
await queryRunner.query(`DROP INDEX "IDX_12f6b278ea9b037ea7f0e6ac0b"`);
|
|
380
|
+
await queryRunner.query(`DROP INDEX "IDX_35ec392f88d687d87cb8892ddb"`);
|
|
381
|
+
await queryRunner.query(`DROP INDEX "IDX_bdbb8594e2e5a823531f7a40d3"`);
|
|
382
|
+
await queryRunner.query(`DROP TABLE "scenes_module_scene_actions"`);
|
|
383
|
+
await queryRunner.query(`DROP INDEX "IDX_9a43f9bc46ab2b054a129094d9"`);
|
|
384
|
+
await queryRunner.query(`DROP INDEX "IDX_4f8027bbea13f66c3e20c24ad3"`);
|
|
385
|
+
await queryRunner.query(`DROP TABLE "scenes_module_scenes"`);
|
|
386
|
+
await queryRunner.query(`DROP INDEX "IDX_180637606049ce770868555d34"`);
|
|
387
|
+
await queryRunner.query(`DROP TABLE "weather_module_locations"`);
|
|
388
|
+
await queryRunner.query(`DROP INDEX "IDX_1a2cd1b9b2e15f20a2646a5419"`);
|
|
389
|
+
await queryRunner.query(`DROP INDEX "IDX_07df3633b70cc1035e3dc8850a"`);
|
|
390
|
+
await queryRunner.query(`DROP TABLE "displays_module_displays"`);
|
|
391
|
+
await queryRunner.query(`DROP INDEX "IDX_9237609236d02277e75bb98556"`);
|
|
392
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_data_source"`);
|
|
393
|
+
await queryRunner.query(`DROP INDEX "IDX_c94b5a4bf6856324ed5d8c4d1c"`);
|
|
394
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_tiles"`);
|
|
395
|
+
await queryRunner.query(`DROP INDEX "IDX_36e8c03f4a3b3c12bf52d211c9"`);
|
|
396
|
+
await queryRunner.query(`DROP TABLE "dashboard_module_pages"`);
|
|
397
|
+
await queryRunner.query(`DROP TABLE "devices_module_devices_zones"`);
|
|
398
|
+
await queryRunner.query(`DROP INDEX "IDX_98ffd1e6ff9c4463c3e7d9a9c7"`);
|
|
399
|
+
await queryRunner.query(`DROP INDEX "IDX_869661aed3457e1949b0e7e335"`);
|
|
400
|
+
await queryRunner.query(`DROP TABLE "devices_module_channels_properties"`);
|
|
401
|
+
await queryRunner.query(`DROP TABLE "devices_module_channels_controls"`);
|
|
402
|
+
await queryRunner.query(`DROP INDEX "IDX_a654e0cabea37168a1a967ab5d"`);
|
|
403
|
+
await queryRunner.query(`DROP INDEX "IDX_4ff87e5bef5426c24fe7f0ff6c"`);
|
|
404
|
+
await queryRunner.query(`DROP INDEX "IDX_38441e91ae9be25547912ebc44"`);
|
|
405
|
+
await queryRunner.query(`DROP TABLE "devices_module_channels"`);
|
|
406
|
+
await queryRunner.query(`DROP TABLE "devices_module_devices_controls"`);
|
|
407
|
+
await queryRunner.query(`DROP INDEX "IDX_de1447169fa1df5ea8d41bf02a"`);
|
|
408
|
+
await queryRunner.query(`DROP INDEX "IDX_36ec1c9bafc04373563cfb5f83"`);
|
|
409
|
+
await queryRunner.query(`DROP INDEX "IDX_9c2fa00cfe1d7964da6b8ad497"`);
|
|
410
|
+
await queryRunner.query(`DROP INDEX "IDX_b6aa1841ab84616391d34cd5cf"`);
|
|
411
|
+
await queryRunner.query(`DROP INDEX "IDX_2e587b2a8bcb55f468bb6ec6fe"`);
|
|
412
|
+
await queryRunner.query(`DROP TABLE "devices_module_devices"`);
|
|
413
|
+
await queryRunner.query(`DROP INDEX "IDX_d19c463ca04d42084e8e23e424"`);
|
|
414
|
+
await queryRunner.query(`DROP TABLE "spaces_module_spaces"`);
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
exports.InitialSetup1000000000000 = InitialSetup1000000000000;
|
|
418
|
+
//# sourceMappingURL=1000000000000-InitialSetup.js.map
|