@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,506 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
16
|
+
};
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.SpacesService = void 0;
|
|
19
|
+
const class_validator_1 = require("class-validator");
|
|
20
|
+
const lodash_isundefined_1 = __importDefault(require("lodash.isundefined"));
|
|
21
|
+
const lodash_omitby_1 = __importDefault(require("lodash.omitby"));
|
|
22
|
+
const typeorm_1 = require("typeorm");
|
|
23
|
+
const common_1 = require("@nestjs/common");
|
|
24
|
+
const event_emitter_1 = require("@nestjs/event-emitter");
|
|
25
|
+
const typeorm_2 = require("@nestjs/typeorm");
|
|
26
|
+
const logger_1 = require("../../../common/logger");
|
|
27
|
+
const transform_utils_1 = require("../../../common/utils/transform.utils");
|
|
28
|
+
const devices_constants_1 = require("../../devices/devices.constants");
|
|
29
|
+
const devices_entity_1 = require("../../devices/entities/devices.entity");
|
|
30
|
+
const device_zones_service_1 = require("../../devices/services/device-zones.service");
|
|
31
|
+
const displays_entity_1 = require("../../displays/entities/displays.entity");
|
|
32
|
+
const bulk_assign_dto_1 = require("../dto/bulk-assign.dto");
|
|
33
|
+
const create_space_dto_1 = require("../dto/create-space.dto");
|
|
34
|
+
const update_space_dto_1 = require("../dto/update-space.dto");
|
|
35
|
+
const space_entity_1 = require("../entities/space.entity");
|
|
36
|
+
const spaces_constants_1 = require("../spaces.constants");
|
|
37
|
+
const spaces_exceptions_1 = require("../spaces.exceptions");
|
|
38
|
+
const spaces_utils_1 = require("../spaces.utils");
|
|
39
|
+
let SpacesService = class SpacesService {
|
|
40
|
+
constructor(repository, deviceRepository, displayRepository, deviceZonesService, dataSource, eventEmitter) {
|
|
41
|
+
this.repository = repository;
|
|
42
|
+
this.deviceRepository = deviceRepository;
|
|
43
|
+
this.displayRepository = displayRepository;
|
|
44
|
+
this.deviceZonesService = deviceZonesService;
|
|
45
|
+
this.dataSource = dataSource;
|
|
46
|
+
this.eventEmitter = eventEmitter;
|
|
47
|
+
this.logger = (0, logger_1.createExtensionLogger)(spaces_constants_1.SPACES_MODULE_NAME, 'SpacesService');
|
|
48
|
+
}
|
|
49
|
+
async findAll() {
|
|
50
|
+
this.logger.debug('Fetching all spaces');
|
|
51
|
+
const spaces = await this.repository.find({
|
|
52
|
+
order: { displayOrder: 'ASC', name: 'ASC' },
|
|
53
|
+
});
|
|
54
|
+
this.logger.debug(`Found ${spaces.length} spaces`);
|
|
55
|
+
return spaces;
|
|
56
|
+
}
|
|
57
|
+
async findOne(id) {
|
|
58
|
+
this.logger.debug(`Fetching space with id=${id}`);
|
|
59
|
+
const space = await this.repository.findOne({ where: { id } });
|
|
60
|
+
if (!space) {
|
|
61
|
+
this.logger.warn(`Space not found by id=${id}`);
|
|
62
|
+
return null;
|
|
63
|
+
}
|
|
64
|
+
this.logger.debug('Successfully fetched space');
|
|
65
|
+
return space;
|
|
66
|
+
}
|
|
67
|
+
async getOneOrThrow(id) {
|
|
68
|
+
const space = await this.findOne(id);
|
|
69
|
+
if (!space) {
|
|
70
|
+
this.logger.error(`Space with id=${id} not found`);
|
|
71
|
+
throw new spaces_exceptions_1.SpacesNotFoundException('Requested space does not exist');
|
|
72
|
+
}
|
|
73
|
+
return space;
|
|
74
|
+
}
|
|
75
|
+
async findByCanonicalName(canonicalName) {
|
|
76
|
+
const allSpaces = await this.findAll();
|
|
77
|
+
return allSpaces.find((space) => (0, spaces_utils_1.canonicalizeSpaceName)(space.name) === canonicalName) ?? null;
|
|
78
|
+
}
|
|
79
|
+
async create(createDto) {
|
|
80
|
+
this.logger.debug('Creating new space');
|
|
81
|
+
const dtoInstance = await this.validateDto(create_space_dto_1.CreateSpaceDto, createDto);
|
|
82
|
+
const canonicalName = (0, spaces_utils_1.canonicalizeSpaceName)(dtoInstance.name);
|
|
83
|
+
const existingSpace = await this.findByCanonicalName(canonicalName);
|
|
84
|
+
if (existingSpace) {
|
|
85
|
+
this.logger.debug(`Space with canonical name "${canonicalName}" already exists (id=${existingSpace.id}), returning existing`);
|
|
86
|
+
return existingSpace;
|
|
87
|
+
}
|
|
88
|
+
const type = dtoInstance.type;
|
|
89
|
+
const category = dtoInstance.category ?? null;
|
|
90
|
+
if (type === spaces_constants_1.SpaceType.ZONE && category === null) {
|
|
91
|
+
this.logger.error('Zone must have a category');
|
|
92
|
+
throw new spaces_exceptions_1.SpacesValidationException('Category is required for zones.');
|
|
93
|
+
}
|
|
94
|
+
await this.validateParentAssignment(type, dtoInstance.parent_id ?? null);
|
|
95
|
+
const space = this.repository.create((0, transform_utils_1.toInstance)(space_entity_1.SpaceEntity, {
|
|
96
|
+
...dtoInstance,
|
|
97
|
+
category,
|
|
98
|
+
}));
|
|
99
|
+
await this.repository.save(space);
|
|
100
|
+
const savedSpace = await this.getOneOrThrow(space.id);
|
|
101
|
+
this.logger.debug(`Successfully created space with id=${savedSpace.id}`);
|
|
102
|
+
this.eventEmitter.emit(spaces_constants_1.EventType.SPACE_CREATED, savedSpace);
|
|
103
|
+
return savedSpace;
|
|
104
|
+
}
|
|
105
|
+
async update(id, updateDto) {
|
|
106
|
+
this.logger.debug(`Updating space with id=${id}`);
|
|
107
|
+
const space = await this.getOneOrThrow(id);
|
|
108
|
+
const dtoInstance = await this.validateDto(update_space_dto_1.UpdateSpaceDto, updateDto);
|
|
109
|
+
const effectiveType = dtoInstance.type ?? space.type;
|
|
110
|
+
const effectiveCategory = dtoInstance.category !== undefined ? dtoInstance.category : space.category;
|
|
111
|
+
if (effectiveType === spaces_constants_1.SpaceType.ZONE && effectiveCategory === null) {
|
|
112
|
+
this.logger.error(`Zone must have a category. Update rejected for space id=${id}`);
|
|
113
|
+
throw new spaces_exceptions_1.SpacesValidationException('Category is required for zones.');
|
|
114
|
+
}
|
|
115
|
+
if (effectiveCategory !== null && !(0, spaces_constants_1.isValidCategoryForType)(effectiveCategory, effectiveType)) {
|
|
116
|
+
this.logger.error(`Category '${effectiveCategory}' is not valid for type '${effectiveType}'. ` +
|
|
117
|
+
`Update rejected for space id=${id}`);
|
|
118
|
+
throw new spaces_exceptions_1.SpacesValidationException(`Category '${effectiveCategory}' is not valid for space type '${effectiveType}'.`);
|
|
119
|
+
}
|
|
120
|
+
const effectiveParentId = dtoInstance.parent_id !== undefined ? dtoInstance.parent_id : space.parentId;
|
|
121
|
+
await this.validateParentAssignment(effectiveType, effectiveParentId ?? null, id);
|
|
122
|
+
const updateData = {
|
|
123
|
+
...dtoInstance,
|
|
124
|
+
};
|
|
125
|
+
const updateFields = (0, lodash_omitby_1.default)((0, transform_utils_1.toInstance)(space_entity_1.SpaceEntity, updateData), lodash_isundefined_1.default);
|
|
126
|
+
const entityFieldsChanged = Object.keys(updateFields).some((key) => {
|
|
127
|
+
const newValue = updateFields[key];
|
|
128
|
+
const existingValue = space[key];
|
|
129
|
+
if (Array.isArray(newValue) && Array.isArray(existingValue)) {
|
|
130
|
+
return JSON.stringify(newValue) !== JSON.stringify(existingValue);
|
|
131
|
+
}
|
|
132
|
+
if (typeof newValue === 'object' &&
|
|
133
|
+
typeof existingValue === 'object' &&
|
|
134
|
+
newValue !== null &&
|
|
135
|
+
existingValue !== null) {
|
|
136
|
+
return JSON.stringify(newValue) !== JSON.stringify(existingValue);
|
|
137
|
+
}
|
|
138
|
+
if (newValue === null && existingValue === null) {
|
|
139
|
+
return false;
|
|
140
|
+
}
|
|
141
|
+
if (newValue === null || existingValue === null) {
|
|
142
|
+
return true;
|
|
143
|
+
}
|
|
144
|
+
return newValue !== existingValue;
|
|
145
|
+
}) ||
|
|
146
|
+
(dtoInstance.parent_id !== undefined && space.parentId !== (dtoInstance.parent_id ?? null));
|
|
147
|
+
Object.assign(space, updateFields);
|
|
148
|
+
if (dtoInstance.parent_id === null) {
|
|
149
|
+
space.parentId = null;
|
|
150
|
+
}
|
|
151
|
+
await this.repository.save(space);
|
|
152
|
+
this.logger.debug(`Successfully updated space with id=${space.id}`);
|
|
153
|
+
if (entityFieldsChanged) {
|
|
154
|
+
this.eventEmitter.emit(spaces_constants_1.EventType.SPACE_UPDATED, space);
|
|
155
|
+
}
|
|
156
|
+
return space;
|
|
157
|
+
}
|
|
158
|
+
async remove(id) {
|
|
159
|
+
this.logger.debug(`Removing space with id=${id}`);
|
|
160
|
+
const space = await this.getOneOrThrow(id);
|
|
161
|
+
await this.dataSource.transaction(async (manager) => {
|
|
162
|
+
await manager
|
|
163
|
+
.createQueryBuilder()
|
|
164
|
+
.update(space_entity_1.SpaceEntity)
|
|
165
|
+
.set({ parentId: null })
|
|
166
|
+
.where('parentId = :id', { id })
|
|
167
|
+
.execute();
|
|
168
|
+
await manager
|
|
169
|
+
.createQueryBuilder()
|
|
170
|
+
.update(devices_entity_1.DeviceEntity)
|
|
171
|
+
.set({ roomId: null })
|
|
172
|
+
.where('roomId = :id', { id })
|
|
173
|
+
.execute();
|
|
174
|
+
await manager
|
|
175
|
+
.createQueryBuilder()
|
|
176
|
+
.update(displays_entity_1.DisplayEntity)
|
|
177
|
+
.set({ roomId: null })
|
|
178
|
+
.where('roomId = :id', { id })
|
|
179
|
+
.execute();
|
|
180
|
+
await manager.remove(space);
|
|
181
|
+
});
|
|
182
|
+
this.logger.debug(`Successfully removed space with id=${id}`);
|
|
183
|
+
this.eventEmitter.emit(spaces_constants_1.EventType.SPACE_DELETED, { id });
|
|
184
|
+
}
|
|
185
|
+
async findDevicesBySpace(spaceId) {
|
|
186
|
+
this.logger.debug(`Fetching devices for space with id=${spaceId}`);
|
|
187
|
+
const space = await this.getOneOrThrow(spaceId);
|
|
188
|
+
if (space.type === spaces_constants_1.SpaceType.ROOM) {
|
|
189
|
+
const devices = await this.deviceRepository.find({
|
|
190
|
+
where: { roomId: spaceId },
|
|
191
|
+
relations: ['channels', 'channels.properties'],
|
|
192
|
+
order: { name: 'ASC' },
|
|
193
|
+
});
|
|
194
|
+
this.logger.debug(`Found ${devices.length} devices in room`);
|
|
195
|
+
return devices;
|
|
196
|
+
}
|
|
197
|
+
else {
|
|
198
|
+
const devices = await this.deviceZonesService.getZoneDevices(spaceId);
|
|
199
|
+
this.logger.debug(`Found ${devices.length} devices in zone`);
|
|
200
|
+
return devices;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
async findDevicesByIds(deviceIds) {
|
|
204
|
+
if (deviceIds.length === 0) {
|
|
205
|
+
return [];
|
|
206
|
+
}
|
|
207
|
+
this.logger.debug(`Fetching ${deviceIds.length} devices by IDs`);
|
|
208
|
+
const devices = await this.deviceRepository.find({
|
|
209
|
+
where: { id: (0, typeorm_1.In)(deviceIds) },
|
|
210
|
+
relations: ['channels', 'channels.properties'],
|
|
211
|
+
});
|
|
212
|
+
this.logger.debug(`Found ${devices.length} of ${deviceIds.length} requested devices`);
|
|
213
|
+
return devices;
|
|
214
|
+
}
|
|
215
|
+
async isDeviceInSpace(spaceId, deviceId) {
|
|
216
|
+
const space = await this.getOneOrThrow(spaceId);
|
|
217
|
+
if (space.type === spaces_constants_1.SpaceType.ROOM) {
|
|
218
|
+
const device = await this.deviceRepository.findOne({
|
|
219
|
+
where: { id: deviceId, roomId: spaceId },
|
|
220
|
+
});
|
|
221
|
+
return device !== null;
|
|
222
|
+
}
|
|
223
|
+
else {
|
|
224
|
+
const zoneDevices = await this.deviceZonesService.getZoneDevices(spaceId);
|
|
225
|
+
return zoneDevices.some((d) => d.id === deviceId);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
async findDisplaysBySpace(spaceId) {
|
|
229
|
+
this.logger.debug(`Fetching displays for space with id=${spaceId}`);
|
|
230
|
+
await this.getOneOrThrow(spaceId);
|
|
231
|
+
const displays = await this.displayRepository.find({
|
|
232
|
+
where: { roomId: spaceId },
|
|
233
|
+
order: { name: 'ASC' },
|
|
234
|
+
});
|
|
235
|
+
this.logger.debug(`Found ${displays.length} displays in space`);
|
|
236
|
+
return displays;
|
|
237
|
+
}
|
|
238
|
+
async bulkAssign(spaceId, bulkAssignDto) {
|
|
239
|
+
this.logger.debug(`Bulk assigning to space with id=${spaceId}`);
|
|
240
|
+
const space = await this.getOneOrThrow(spaceId);
|
|
241
|
+
const dtoInstance = await this.validateDto(bulk_assign_dto_1.BulkAssignDto, bulkAssignDto);
|
|
242
|
+
let devicesAssigned = 0;
|
|
243
|
+
let displaysAssigned = 0;
|
|
244
|
+
if (dtoInstance.deviceIds && dtoInstance.deviceIds.length > 0) {
|
|
245
|
+
if (space.type !== spaces_constants_1.SpaceType.ROOM) {
|
|
246
|
+
throw new spaces_exceptions_1.SpacesValidationException('Devices can only be assigned to rooms, not zones');
|
|
247
|
+
}
|
|
248
|
+
const result = await this.deviceRepository
|
|
249
|
+
.createQueryBuilder()
|
|
250
|
+
.update()
|
|
251
|
+
.set({ roomId: spaceId })
|
|
252
|
+
.where('id IN (:...ids)', { ids: dtoInstance.deviceIds })
|
|
253
|
+
.execute();
|
|
254
|
+
devicesAssigned = result.affected || 0;
|
|
255
|
+
this.logger.debug(`Assigned ${devicesAssigned} devices to space`);
|
|
256
|
+
if (devicesAssigned > 0) {
|
|
257
|
+
const updatedDevices = await this.deviceRepository.find({
|
|
258
|
+
where: { id: (0, typeorm_1.In)(dtoInstance.deviceIds) },
|
|
259
|
+
});
|
|
260
|
+
for (const device of updatedDevices) {
|
|
261
|
+
this.eventEmitter.emit(devices_constants_1.EventType.DEVICE_UPDATED, device);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
if (dtoInstance.displayIds && dtoInstance.displayIds.length > 0) {
|
|
266
|
+
const result = await this.displayRepository
|
|
267
|
+
.createQueryBuilder()
|
|
268
|
+
.update()
|
|
269
|
+
.set({ roomId: spaceId })
|
|
270
|
+
.where('id IN (:...ids)', { ids: dtoInstance.displayIds })
|
|
271
|
+
.execute();
|
|
272
|
+
displaysAssigned = result.affected || 0;
|
|
273
|
+
this.logger.debug(`Assigned ${displaysAssigned} displays to space`);
|
|
274
|
+
}
|
|
275
|
+
this.logger.debug(`Successfully bulk assigned to space with id=${spaceId}`);
|
|
276
|
+
return { devicesAssigned, displaysAssigned };
|
|
277
|
+
}
|
|
278
|
+
async unassignDevices(deviceIds) {
|
|
279
|
+
this.logger.debug(`Unassigning ${deviceIds.length} devices from their rooms`);
|
|
280
|
+
if (deviceIds.length === 0) {
|
|
281
|
+
return 0;
|
|
282
|
+
}
|
|
283
|
+
const result = await this.deviceRepository
|
|
284
|
+
.createQueryBuilder()
|
|
285
|
+
.update()
|
|
286
|
+
.set({ roomId: null })
|
|
287
|
+
.where('id IN (:...ids)', { ids: deviceIds })
|
|
288
|
+
.execute();
|
|
289
|
+
const unassigned = result.affected || 0;
|
|
290
|
+
this.logger.debug(`Unassigned ${unassigned} devices`);
|
|
291
|
+
if (unassigned > 0) {
|
|
292
|
+
const updatedDevices = await this.deviceRepository.find({
|
|
293
|
+
where: { id: (0, typeorm_1.In)(deviceIds) },
|
|
294
|
+
});
|
|
295
|
+
for (const device of updatedDevices) {
|
|
296
|
+
this.eventEmitter.emit(devices_constants_1.EventType.DEVICE_UPDATED, device);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
return unassigned;
|
|
300
|
+
}
|
|
301
|
+
async unassignDisplays(displayIds) {
|
|
302
|
+
this.logger.debug(`Unassigning ${displayIds.length} displays from their rooms`);
|
|
303
|
+
if (displayIds.length === 0) {
|
|
304
|
+
return 0;
|
|
305
|
+
}
|
|
306
|
+
const result = await this.displayRepository
|
|
307
|
+
.createQueryBuilder()
|
|
308
|
+
.update()
|
|
309
|
+
.set({ roomId: null })
|
|
310
|
+
.where('id IN (:...ids)', { ids: displayIds })
|
|
311
|
+
.execute();
|
|
312
|
+
const unassigned = result.affected || 0;
|
|
313
|
+
this.logger.debug(`Unassigned ${unassigned} displays`);
|
|
314
|
+
return unassigned;
|
|
315
|
+
}
|
|
316
|
+
async proposeSpaces() {
|
|
317
|
+
this.logger.debug('Proposing spaces based on device names');
|
|
318
|
+
const tokenMapping = {
|
|
319
|
+
'living room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.LIVING_ROOM },
|
|
320
|
+
bedroom: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.BEDROOM },
|
|
321
|
+
'master bedroom': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.BEDROOM },
|
|
322
|
+
'guest bedroom': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.GUEST_ROOM },
|
|
323
|
+
'guest room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.GUEST_ROOM },
|
|
324
|
+
'guests room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.GUEST_ROOM },
|
|
325
|
+
'kids bedroom': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.BEDROOM },
|
|
326
|
+
'children bedroom': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.BEDROOM },
|
|
327
|
+
kitchen: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.KITCHEN },
|
|
328
|
+
bathroom: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.BATHROOM },
|
|
329
|
+
'master bathroom': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.BATHROOM },
|
|
330
|
+
'guest bathroom': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.BATHROOM },
|
|
331
|
+
toilet: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.TOILET },
|
|
332
|
+
wc: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.TOILET },
|
|
333
|
+
restroom: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.TOILET },
|
|
334
|
+
lavatory: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.TOILET },
|
|
335
|
+
hallway: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.HALLWAY },
|
|
336
|
+
hall: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.HALLWAY },
|
|
337
|
+
corridor: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.HALLWAY },
|
|
338
|
+
entrance: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.ENTRYWAY },
|
|
339
|
+
entry: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.ENTRYWAY },
|
|
340
|
+
entryway: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.ENTRYWAY },
|
|
341
|
+
foyer: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.ENTRYWAY },
|
|
342
|
+
vestibule: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.ENTRYWAY },
|
|
343
|
+
garage: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.GARAGE },
|
|
344
|
+
office: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.OFFICE },
|
|
345
|
+
'home office': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.OFFICE },
|
|
346
|
+
study: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.OFFICE },
|
|
347
|
+
'dining room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.DINING_ROOM },
|
|
348
|
+
laundry: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.LAUNDRY },
|
|
349
|
+
'laundry room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.LAUNDRY },
|
|
350
|
+
'utility room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.UTILITY_ROOM },
|
|
351
|
+
utility: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.UTILITY_ROOM },
|
|
352
|
+
'boiler room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.UTILITY_ROOM },
|
|
353
|
+
nursery: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.NURSERY },
|
|
354
|
+
playroom: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.MEDIA_ROOM },
|
|
355
|
+
'game room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.MEDIA_ROOM },
|
|
356
|
+
'media room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.MEDIA_ROOM },
|
|
357
|
+
theater: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.MEDIA_ROOM },
|
|
358
|
+
gym: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.GYM },
|
|
359
|
+
workshop: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.WORKSHOP },
|
|
360
|
+
closet: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.CLOSET },
|
|
361
|
+
'walk-in closet': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.CLOSET },
|
|
362
|
+
wardrobe: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.CLOSET },
|
|
363
|
+
pantry: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.PANTRY },
|
|
364
|
+
storage: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.STORAGE },
|
|
365
|
+
'storage room': { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.STORAGE },
|
|
366
|
+
mudroom: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.HALLWAY },
|
|
367
|
+
sunroom: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.LIVING_ROOM },
|
|
368
|
+
sauna: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.OTHER },
|
|
369
|
+
basement: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.FLOOR_BASEMENT },
|
|
370
|
+
attic: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.FLOOR_ATTIC },
|
|
371
|
+
patio: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.OUTDOOR_TERRACE },
|
|
372
|
+
balcony: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.OUTDOOR_BALCONY },
|
|
373
|
+
terrace: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.OUTDOOR_TERRACE },
|
|
374
|
+
garden: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.OUTDOOR_GARDEN },
|
|
375
|
+
backyard: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.OUTDOOR_BACKYARD },
|
|
376
|
+
'front yard': { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.OUTDOOR_FRONT_YARD },
|
|
377
|
+
porch: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.OUTDOOR_TERRACE },
|
|
378
|
+
pool: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.OUTDOOR_BACKYARD },
|
|
379
|
+
spa: { type: spaces_constants_1.SpaceType.ROOM, category: spaces_constants_1.SpaceRoomCategory.OTHER },
|
|
380
|
+
driveway: { type: spaces_constants_1.SpaceType.ZONE, category: spaces_constants_1.SpaceZoneCategory.OUTDOOR_DRIVEWAY },
|
|
381
|
+
};
|
|
382
|
+
const tokens = Object.keys(tokenMapping);
|
|
383
|
+
const devices = await this.deviceRepository.find({
|
|
384
|
+
select: ['id', 'name'],
|
|
385
|
+
});
|
|
386
|
+
const spaceMap = new Map();
|
|
387
|
+
for (const device of devices) {
|
|
388
|
+
const deviceNameLower = device.name.toLowerCase();
|
|
389
|
+
let matchedToken = null;
|
|
390
|
+
let matchLength = 0;
|
|
391
|
+
for (const token of tokens) {
|
|
392
|
+
if (deviceNameLower.includes(token) && token.length > matchLength) {
|
|
393
|
+
matchedToken = token;
|
|
394
|
+
matchLength = token.length;
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
if (matchedToken) {
|
|
398
|
+
const existingDevices = spaceMap.get(matchedToken) ?? [];
|
|
399
|
+
existingDevices.push(device.id);
|
|
400
|
+
spaceMap.set(matchedToken, existingDevices);
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
const proposals = Array.from(spaceMap.entries())
|
|
404
|
+
.map(([token, deviceIds]) => {
|
|
405
|
+
const mapping = tokenMapping[token];
|
|
406
|
+
const name = token
|
|
407
|
+
.split(' ')
|
|
408
|
+
.map((word) => word.charAt(0).toUpperCase() + word.slice(1))
|
|
409
|
+
.join(' ');
|
|
410
|
+
return {
|
|
411
|
+
name,
|
|
412
|
+
type: mapping.type,
|
|
413
|
+
category: mapping.category,
|
|
414
|
+
deviceIds,
|
|
415
|
+
deviceCount: deviceIds.length,
|
|
416
|
+
};
|
|
417
|
+
})
|
|
418
|
+
.sort((a, b) => b.deviceCount - a.deviceCount);
|
|
419
|
+
this.logger.debug(`Proposed ${proposals.length} spaces from device names`);
|
|
420
|
+
return proposals;
|
|
421
|
+
}
|
|
422
|
+
async getChildRooms(zoneId) {
|
|
423
|
+
this.logger.debug(`Fetching child rooms for zone id=${zoneId}`);
|
|
424
|
+
const zone = await this.getOneOrThrow(zoneId);
|
|
425
|
+
if (zone.type !== spaces_constants_1.SpaceType.ZONE) {
|
|
426
|
+
this.logger.warn(`Space ${zoneId} is not a zone, returning empty list`);
|
|
427
|
+
return [];
|
|
428
|
+
}
|
|
429
|
+
const children = await this.repository.find({
|
|
430
|
+
where: { parentId: zoneId, type: spaces_constants_1.SpaceType.ROOM },
|
|
431
|
+
order: { displayOrder: 'ASC', name: 'ASC' },
|
|
432
|
+
});
|
|
433
|
+
this.logger.debug(`Found ${children.length} child rooms for zone`);
|
|
434
|
+
return children;
|
|
435
|
+
}
|
|
436
|
+
async getParentZone(roomId) {
|
|
437
|
+
this.logger.debug(`Fetching parent zone for room id=${roomId}`);
|
|
438
|
+
const room = await this.getOneOrThrow(roomId);
|
|
439
|
+
if (!room.parentId) {
|
|
440
|
+
this.logger.debug(`Room ${roomId} has no parent zone`);
|
|
441
|
+
return null;
|
|
442
|
+
}
|
|
443
|
+
const parent = await this.findOne(room.parentId);
|
|
444
|
+
return parent;
|
|
445
|
+
}
|
|
446
|
+
async findAllZones() {
|
|
447
|
+
this.logger.debug('Fetching all zones');
|
|
448
|
+
const zones = await this.repository.find({
|
|
449
|
+
where: { type: spaces_constants_1.SpaceType.ZONE },
|
|
450
|
+
order: { displayOrder: 'ASC', name: 'ASC' },
|
|
451
|
+
});
|
|
452
|
+
this.logger.debug(`Found ${zones.length} zones`);
|
|
453
|
+
return zones;
|
|
454
|
+
}
|
|
455
|
+
async validateParentAssignment(spaceType, parentId, currentSpaceId) {
|
|
456
|
+
if (parentId === null) {
|
|
457
|
+
return;
|
|
458
|
+
}
|
|
459
|
+
if (spaceType === spaces_constants_1.SpaceType.ZONE) {
|
|
460
|
+
this.logger.error('Zones cannot have a parent');
|
|
461
|
+
throw new spaces_exceptions_1.SpacesValidationException('Zones cannot have a parent. Only rooms can belong to a zone.');
|
|
462
|
+
}
|
|
463
|
+
if (currentSpaceId && parentId === currentSpaceId) {
|
|
464
|
+
this.logger.error('Cannot assign space as its own parent');
|
|
465
|
+
throw new spaces_exceptions_1.SpacesValidationException('A space cannot be its own parent.');
|
|
466
|
+
}
|
|
467
|
+
const parent = await this.findOne(parentId);
|
|
468
|
+
if (!parent) {
|
|
469
|
+
this.logger.error(`Parent space with id=${parentId} not found`);
|
|
470
|
+
throw new spaces_exceptions_1.SpacesNotFoundException('Parent space does not exist.');
|
|
471
|
+
}
|
|
472
|
+
if (parent.type !== spaces_constants_1.SpaceType.ZONE) {
|
|
473
|
+
this.logger.error(`Parent space ${parentId} is not a zone`);
|
|
474
|
+
throw new spaces_exceptions_1.SpacesValidationException('Parent must be a zone. Rooms can only belong to zones.');
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
async validateDto(DtoClass, dto) {
|
|
478
|
+
const dtoInstance = (0, transform_utils_1.toInstance)(DtoClass, dto, {
|
|
479
|
+
excludeExtraneousValues: false,
|
|
480
|
+
});
|
|
481
|
+
const errors = await (0, class_validator_1.validate)(dtoInstance, {
|
|
482
|
+
whitelist: true,
|
|
483
|
+
forbidNonWhitelisted: true,
|
|
484
|
+
stopAtFirstError: false,
|
|
485
|
+
});
|
|
486
|
+
if (errors.length > 0) {
|
|
487
|
+
this.logger.error(`Validation failed: ${JSON.stringify(errors)}`);
|
|
488
|
+
throw new spaces_exceptions_1.SpacesValidationException('Provided space data is invalid.');
|
|
489
|
+
}
|
|
490
|
+
return dtoInstance;
|
|
491
|
+
}
|
|
492
|
+
};
|
|
493
|
+
exports.SpacesService = SpacesService;
|
|
494
|
+
exports.SpacesService = SpacesService = __decorate([
|
|
495
|
+
(0, common_1.Injectable)(),
|
|
496
|
+
__param(0, (0, typeorm_2.InjectRepository)(space_entity_1.SpaceEntity)),
|
|
497
|
+
__param(1, (0, typeorm_2.InjectRepository)(devices_entity_1.DeviceEntity)),
|
|
498
|
+
__param(2, (0, typeorm_2.InjectRepository)(displays_entity_1.DisplayEntity)),
|
|
499
|
+
__metadata("design:paramtypes", [typeorm_1.Repository,
|
|
500
|
+
typeorm_1.Repository,
|
|
501
|
+
typeorm_1.Repository,
|
|
502
|
+
device_zones_service_1.DeviceZonesService,
|
|
503
|
+
typeorm_1.DataSource,
|
|
504
|
+
event_emitter_1.EventEmitter2])
|
|
505
|
+
], SpacesService);
|
|
506
|
+
//# sourceMappingURL=spaces.service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spaces.service.js","sourceRoot":"","sources":["../../../../src/modules/spaces/services/spaces.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,qDAA2C;AAC3C,4EAA6C;AAC7C,kEAAmC;AACnC,qCAAqD;AAErD,2CAA4C;AAC5C,yDAAsD;AACtD,6CAAmD;AAEnD,mDAA+D;AAC/D,2EAAmE;AACnE,uEAAgF;AAChF,0EAAqE;AACrE,sFAAiF;AACjF,6EAAwE;AACxE,4DAAuD;AACvD,8DAAyD;AACzD,8DAAyD;AACzD,2DAAuD;AACvD,0DAO6B;AAC7B,4DAA0F;AAC1F,kDAAwD;AAGjD,IAAM,aAAa,GAAnB,MAAM,aAAa;IAGzB,YAEC,UAAoD,EAEpD,gBAA2D,EAE3D,iBAA6D,EAC5C,kBAAsC,EACtC,UAAsB,EACtB,YAA2B;QAP3B,eAAU,GAAV,UAAU,CAAyB;QAEnC,qBAAgB,GAAhB,gBAAgB,CAA0B;QAE1C,sBAAiB,GAAjB,iBAAiB,CAA2B;QAC5C,uBAAkB,GAAlB,kBAAkB,CAAoB;QACtC,eAAU,GAAV,UAAU,CAAY;QACtB,iBAAY,GAAZ,YAAY,CAAe;QAX5B,WAAM,GAAG,IAAA,8BAAqB,EAAC,qCAAkB,EAAE,eAAe,CAAC,CAAC;IAYlF,CAAC;IAEJ,KAAK,CAAC,OAAO;QACZ,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC;QAEzC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;YACzC,KAAK,EAAE,EAAE,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE;SAC3C,CAAC,CAAC;QAEH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,MAAM,CAAC,MAAM,SAAS,CAAC,CAAC;QAEnD,OAAO,MAAM,CAAC;IACf,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,EAAU;QACvB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,0BAA0B,EAAE,EAAE,CAAC,CAAC;QAElD,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QAE/D,IAAI,CAAC,KAAK,EAAE,CAAC;YACZ,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,yBAAyB,EAAE,EAAE,CAAC,CAAC;YAEhD,OAAO,IAAI,CAAC;QACb,CAAC;QAED,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC;QAEhD,OAAO,KAAK,CAAC;IACd,CAAC;IAED,KAAK,CAAC,aAAa,CAAC,EAAU;QAC7B,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;QAErC,IAAI,CAAC,KAAK,EAAE,CAAC;YACZ,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,iBAAiB,EAAE,YAAY,CAAC,CAAC;YAEnD,MAAM,IAAI,2CAAuB,CAAC,gCAAgC,CAAC,CAAC;QACrE,CAAC;QAED,OAAO,KAAK,CAAC;IACd,CAAC;IAMD,KAAK,CAAC,mBAAmB,CAAC,aAAqB;QAC9C,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,OAAO,EAAE,CAAC;QACvC,OAAO,SAAS,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,IAAA,oCAAqB,EAAC,KAAK,CAAC,IAAI,CAAC,KAAK,aAAa,CAAC,IAAI,IAAI,CAAC;IAC/F,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,SAAyB;QACrC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC;QAExC,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,iCAAc,EAAE,SAAS,CAAC,CAAC;QAGtE,MAAM,aAAa,GAAG,IAAA,oCAAqB,EAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAC9D,MAAM,aAAa,GAAG,MAAM,IAAI,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC;QAEpE,IAAI,aAAa,EAAE,CAAC;YACnB,IAAI,CAAC,MAAM,CAAC,KAAK,CAChB,8BAA8B,aAAa,wBAAwB,aAAa,CAAC,EAAE,uBAAuB,CAC1G,CAAC;YACF,OAAO,aAAa,CAAC;QACtB,CAAC;QAED,MAAM,IAAI,GAAG,WAAW,CAAC,IAAI,CAAC;QAC9B,MAAM,QAAQ,GAAG,WAAW,CAAC,QAAQ,IAAI,IAAI,CAAC;QAG9C,IAAI,IAAI,KAAK,4BAAS,CAAC,IAAI,IAAI,QAAQ,KAAK,IAAI,EAAE,CAAC;YAClD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC;YAC/C,MAAM,IAAI,6CAAyB,CAAC,iCAAiC,CAAC,CAAC;QACxE,CAAC;QAGD,MAAM,IAAI,CAAC,wBAAwB,CAAC,IAAI,EAAE,WAAW,CAAC,SAAS,IAAI,IAAI,CAAC,CAAC;QAEzE,MAAM,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,CACnC,IAAA,4BAAU,EAAC,0BAAW,EAAE;YACvB,GAAG,WAAW;YACd,QAAQ;SACR,CAAC,CACF,CAAC;QAEF,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAGlC,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;QAEtD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,sCAAsC,UAAU,CAAC,EAAE,EAAE,CAAC,CAAC;QAEzE,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,4BAAS,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC;QAE5D,OAAO,UAAU,CAAC;IACnB,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,EAAU,EAAE,SAAyB;QACjD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,0BAA0B,EAAE,EAAE,CAAC,CAAC;QAElD,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC;QAE3C,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,iCAAc,EAAE,SAAS,CAAC,CAAC;QAGtE,MAAM,aAAa,GAAG,WAAW,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,CAAC;QAGrD,MAAM,iBAAiB,GAAG,WAAW,CAAC,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC;QAGrG,IAAI,aAAa,KAAK,4BAAS,CAAC,IAAI,IAAI,iBAAiB,KAAK,IAAI,EAAE,CAAC;YACpE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,2DAA2D,EAAE,EAAE,CAAC,CAAC;YACnF,MAAM,IAAI,6CAAyB,CAAC,iCAAiC,CAAC,CAAC;QACxE,CAAC;QAKD,IAAI,iBAAiB,KAAK,IAAI,IAAI,CAAC,IAAA,yCAAsB,EAAC,iBAAiB,EAAE,aAAa,CAAC,EAAE,CAAC;YAC7F,IAAI,CAAC,MAAM,CAAC,KAAK,CAChB,aAAa,iBAAiB,4BAA4B,aAAa,KAAK;gBAC3E,gCAAgC,EAAE,EAAE,CACrC,CAAC;YACF,MAAM,IAAI,6CAAyB,CAClC,aAAa,iBAAiB,kCAAkC,aAAa,IAAI,CACjF,CAAC;QACH,CAAC;QAGD,MAAM,iBAAiB,GAAG,WAAW,CAAC,SAAS,KAAK,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC;QACvG,MAAM,IAAI,CAAC,wBAAwB,CAAC,aAAa,EAAE,iBAAiB,IAAI,IAAI,EAAE,EAAE,CAAC,CAAC;QAGlF,MAAM,UAAU,GAAG;YAClB,GAAG,WAAW;SACd,CAAC;QAGF,MAAM,YAAY,GAAG,IAAA,uBAAM,EAAC,IAAA,4BAAU,EAAC,0BAAW,EAAE,UAAU,CAAC,EAAE,4BAAW,CAAC,CAAC;QAG9E,MAAM,mBAAmB,GACxB,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE;YACtC,MAAM,QAAQ,GAAI,YAAwC,CAAC,GAAG,CAAC,CAAC;YAChE,MAAM,aAAa,GAAI,KAA4C,CAAC,GAAG,CAAC,CAAC;YAGzE,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE,CAAC;gBAC7D,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,KAAK,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC;YACnE,CAAC;YAGD,IACC,OAAO,QAAQ,KAAK,QAAQ;gBAC5B,OAAO,aAAa,KAAK,QAAQ;gBACjC,QAAQ,KAAK,IAAI;gBACjB,aAAa,KAAK,IAAI,EACrB,CAAC;gBACF,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,KAAK,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC;YACnE,CAAC;YAGD,IAAI,QAAQ,KAAK,IAAI,IAAI,aAAa,KAAK,IAAI,EAAE,CAAC;gBACjD,OAAO,KAAK,CAAC;YACd,CAAC;YACD,IAAI,QAAQ,KAAK,IAAI,IAAI,aAAa,KAAK,IAAI,EAAE,CAAC;gBACjD,OAAO,IAAI,CAAC;YACb,CAAC;YAGD,OAAO,QAAQ,KAAK,aAAa,CAAC;QACnC,CAAC,CAAC;YACF,CAAC,WAAW,CAAC,SAAS,KAAK,SAAS,IAAI,KAAK,CAAC,QAAQ,KAAK,CAAC,WAAW,CAAC,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC;QAE7F,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;QAGnC,IAAI,WAAW,CAAC,SAAS,KAAK,IAAI,EAAE,CAAC;YACpC,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC;QACvB,CAAC;QAED,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAElC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,sCAAsC,KAAK,CAAC,EAAE,EAAE,CAAC,CAAC;QAEpE,IAAI,mBAAmB,EAAE,CAAC;YACzB,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,4BAAS,CAAC,aAAa,EAAE,KAAK,CAAC,CAAC;QACxD,CAAC;QAED,OAAO,KAAK,CAAC;IACd,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,EAAU;QACtB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,0BAA0B,EAAE,EAAE,CAAC,CAAC;QAElD,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC;QAE3C,MAAM,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,KAAK,EAAE,OAAO,EAAE,EAAE;YAEnD,MAAM,OAAO;iBACX,kBAAkB,EAAE;iBACpB,MAAM,CAAC,0BAAW,CAAC;iBACnB,GAAG,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;iBACvB,KAAK,CAAC,gBAAgB,EAAE,EAAE,EAAE,EAAE,CAAC;iBAC/B,OAAO,EAAE,CAAC;YAGZ,MAAM,OAAO;iBACX,kBAAkB,EAAE;iBACpB,MAAM,CAAC,6BAAY,CAAC;iBACpB,GAAG,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;iBACrB,KAAK,CAAC,cAAc,EAAE,EAAE,EAAE,EAAE,CAAC;iBAC7B,OAAO,EAAE,CAAC;YAGZ,MAAM,OAAO;iBACX,kBAAkB,EAAE;iBACpB,MAAM,CAAC,+BAAa,CAAC;iBACrB,GAAG,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;iBACrB,KAAK,CAAC,cAAc,EAAE,EAAE,EAAE,EAAE,CAAC;iBAC7B,OAAO,EAAE,CAAC;YAEZ,MAAM,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC7B,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,sCAAsC,EAAE,EAAE,CAAC,CAAC;QAE9D,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,4BAAS,CAAC,aAAa,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACzD,CAAC;IAED,KAAK,CAAC,kBAAkB,CAAC,OAAe;QACvC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,sCAAsC,OAAO,EAAE,CAAC,CAAC;QAGnE,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAEhD,IAAI,KAAK,CAAC,IAAI,KAAK,4BAAS,CAAC,IAAI,EAAE,CAAC;YAEnC,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC;gBAChD,KAAK,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE;gBAC1B,SAAS,EAAE,CAAC,UAAU,EAAE,qBAAqB,CAAC;gBAC9C,KAAK,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;aACtB,CAAC,CAAC;YAEH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,OAAO,CAAC,MAAM,kBAAkB,CAAC,CAAC;YAE7D,OAAO,OAAO,CAAC;QAChB,CAAC;aAAM,CAAC;YAEP,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;YAEtE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,OAAO,CAAC,MAAM,kBAAkB,CAAC,CAAC;YAE7D,OAAO,OAAO,CAAC;QAChB,CAAC;IACF,CAAC;IAMD,KAAK,CAAC,gBAAgB,CAAC,SAAmB;QACzC,IAAI,SAAS,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC5B,OAAO,EAAE,CAAC;QACX,CAAC;QAED,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,YAAY,SAAS,CAAC,MAAM,iBAAiB,CAAC,CAAC;QAEjE,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC;YAChD,KAAK,EAAE,EAAE,EAAE,EAAE,IAAA,YAAE,EAAC,SAAS,CAAC,EAAE;YAC5B,SAAS,EAAE,CAAC,UAAU,EAAE,qBAAqB,CAAC;SAC9C,CAAC,CAAC;QAEH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,OAAO,CAAC,MAAM,OAAO,SAAS,CAAC,MAAM,oBAAoB,CAAC,CAAC;QAEtF,OAAO,OAAO,CAAC;IAChB,CAAC;IAOD,KAAK,CAAC,eAAe,CAAC,OAAe,EAAE,QAAgB;QACtD,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAEhD,IAAI,KAAK,CAAC,IAAI,KAAK,4BAAS,CAAC,IAAI,EAAE,CAAC;YAEnC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC;gBAClD,KAAK,EAAE,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE;aACxC,CAAC,CAAC;YACH,OAAO,MAAM,KAAK,IAAI,CAAC;QACxB,CAAC;aAAM,CAAC;YAEP,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;YAC1E,OAAO,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,QAAQ,CAAC,CAAC;QACnD,CAAC;IACF,CAAC;IAED,KAAK,CAAC,mBAAmB,CAAC,OAAe;QACxC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,uCAAuC,OAAO,EAAE,CAAC,CAAC;QAGpE,MAAM,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAElC,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC;YAClD,KAAK,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE;YAC1B,KAAK,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;SACtB,CAAC,CAAC;QAEH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,QAAQ,CAAC,MAAM,oBAAoB,CAAC,CAAC;QAEhE,OAAO,QAAQ,CAAC;IACjB,CAAC;IAED,KAAK,CAAC,UAAU,CACf,OAAe,EACf,aAA4B;QAE5B,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,mCAAmC,OAAO,EAAE,CAAC,CAAC;QAGhE,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAEhD,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC,+BAAa,EAAE,aAAa,CAAC,CAAC;QAEzE,IAAI,eAAe,GAAG,CAAC,CAAC;QACxB,IAAI,gBAAgB,GAAG,CAAC,CAAC;QAGzB,IAAI,WAAW,CAAC,SAAS,IAAI,WAAW,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAC/D,IAAI,KAAK,CAAC,IAAI,KAAK,4BAAS,CAAC,IAAI,EAAE,CAAC;gBACnC,MAAM,IAAI,6CAAyB,CAAC,kDAAkD,CAAC,CAAC;YACzF,CAAC;YAED,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,gBAAgB;iBACxC,kBAAkB,EAAE;iBACpB,MAAM,EAAE;iBACR,GAAG,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC;iBACxB,KAAK,CAAC,iBAAiB,EAAE,EAAE,GAAG,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC;iBACxD,OAAO,EAAE,CAAC;YAEZ,eAAe,GAAG,MAAM,CAAC,QAAQ,IAAI,CAAC,CAAC;YACvC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,YAAY,eAAe,mBAAmB,CAAC,CAAC;YAKlE,IAAI,eAAe,GAAG,CAAC,EAAE,CAAC;gBACzB,MAAM,cAAc,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC;oBACvD,KAAK,EAAE,EAAE,EAAE,EAAE,IAAA,YAAE,EAAC,WAAW,CAAC,SAAS,CAAC,EAAE;iBACxC,CAAC,CAAC;gBAEH,KAAK,MAAM,MAAM,IAAI,cAAc,EAAE,CAAC;oBACrC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,6BAAgB,CAAC,cAAc,EAAE,MAAM,CAAC,CAAC;gBACjE,CAAC;YACF,CAAC;QACF,CAAC;QAGD,IAAI,WAAW,CAAC,UAAU,IAAI,WAAW,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACjE,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,iBAAiB;iBACzC,kBAAkB,EAAE;iBACpB,MAAM,EAAE;iBACR,GAAG,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC;iBACxB,KAAK,CAAC,iBAAiB,EAAE,EAAE,GAAG,EAAE,WAAW,CAAC,UAAU,EAAE,CAAC;iBACzD,OAAO,EAAE,CAAC;YAEZ,gBAAgB,GAAG,MAAM,CAAC,QAAQ,IAAI,CAAC,CAAC;YACxC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,YAAY,gBAAgB,oBAAoB,CAAC,CAAC;QACrE,CAAC;QAED,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,+CAA+C,OAAO,EAAE,CAAC,CAAC;QAE5E,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,CAAC;IAC9C,CAAC;IAED,KAAK,CAAC,eAAe,CAAC,SAAmB;QACxC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,eAAe,SAAS,CAAC,MAAM,2BAA2B,CAAC,CAAC;QAE9E,IAAI,SAAS,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC5B,OAAO,CAAC,CAAC;QACV,CAAC;QAED,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,gBAAgB;aACxC,kBAAkB,EAAE;aACpB,MAAM,EAAE;aACR,GAAG,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;aACrB,KAAK,CAAC,iBAAiB,EAAE,EAAE,GAAG,EAAE,SAAS,EAAE,CAAC;aAC5C,OAAO,EAAE,CAAC;QAEZ,MAAM,UAAU,GAAG,MAAM,CAAC,QAAQ,IAAI,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,cAAc,UAAU,UAAU,CAAC,CAAC;QAGtD,IAAI,UAAU,GAAG,CAAC,EAAE,CAAC;YACpB,MAAM,cAAc,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC;gBACvD,KAAK,EAAE,EAAE,EAAE,EAAE,IAAA,YAAE,EAAC,SAAS,CAAC,EAAE;aAC5B,CAAC,CAAC;YAEH,KAAK,MAAM,MAAM,IAAI,cAAc,EAAE,CAAC;gBACrC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,6BAAgB,CAAC,cAAc,EAAE,MAAM,CAAC,CAAC;YACjE,CAAC;QACF,CAAC;QAED,OAAO,UAAU,CAAC;IACnB,CAAC;IAED,KAAK,CAAC,gBAAgB,CAAC,UAAoB;QAC1C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,eAAe,UAAU,CAAC,MAAM,4BAA4B,CAAC,CAAC;QAEhF,IAAI,UAAU,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC7B,OAAO,CAAC,CAAC;QACV,CAAC;QAED,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,iBAAiB;aACzC,kBAAkB,EAAE;aACpB,MAAM,EAAE;aACR,GAAG,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;aACrB,KAAK,CAAC,iBAAiB,EAAE,EAAE,GAAG,EAAE,UAAU,EAAE,CAAC;aAC7C,OAAO,EAAE,CAAC;QAEZ,MAAM,UAAU,GAAG,MAAM,CAAC,QAAQ,IAAI,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,cAAc,UAAU,WAAW,CAAC,CAAC;QAEvD,OAAO,UAAU,CAAC;IACnB,CAAC;IAED,KAAK,CAAC,aAAa;QASlB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,wCAAwC,CAAC,CAAC;QAG5D,MAAM,YAAY,GAAgG;YAEjH,aAAa,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,WAAW,EAAE;YAChF,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACtE,gBAAgB,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YAC/E,eAAe,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,UAAU,EAAE;YACjF,YAAY,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,UAAU,EAAE;YAC9E,aAAa,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,UAAU,EAAE;YAC/E,cAAc,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YAC7E,kBAAkB,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACjF,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACtE,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,QAAQ,EAAE;YACxE,iBAAiB,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,QAAQ,EAAE;YACjF,gBAAgB,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,QAAQ,EAAE;YAChF,MAAM,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YACpE,EAAE,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YAChE,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YACtE,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YACtE,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACtE,IAAI,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACnE,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACvE,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,QAAQ,EAAE;YACxE,KAAK,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,QAAQ,EAAE;YACrE,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,QAAQ,EAAE;YACxE,KAAK,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,QAAQ,EAAE;YACrE,SAAS,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,QAAQ,EAAE;YACzE,MAAM,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YACpE,MAAM,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YACpE,aAAa,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YAC3E,KAAK,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YACnE,aAAa,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,WAAW,EAAE;YAChF,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACtE,cAAc,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YAC7E,cAAc,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,YAAY,EAAE;YAClF,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,YAAY,EAAE;YAC3E,aAAa,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,YAAY,EAAE;YACjF,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACtE,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,UAAU,EAAE;YAC1E,WAAW,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,UAAU,EAAE;YAC7E,YAAY,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,UAAU,EAAE;YAC9E,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,UAAU,EAAE;YACzE,GAAG,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,GAAG,EAAE;YAC9D,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,QAAQ,EAAE;YACxE,MAAM,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YACpE,gBAAgB,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YAC9E,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YACtE,MAAM,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,MAAM,EAAE;YACpE,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACtE,cAAc,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YAC7E,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,OAAO,EAAE;YACtE,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,WAAW,EAAE;YAC1E,KAAK,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,KAAK,EAAE;YAElE,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,cAAc,EAAE;YAC9E,KAAK,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,WAAW,EAAE;YACxE,KAAK,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,eAAe,EAAE;YAC5E,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,eAAe,EAAE;YAC9E,OAAO,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,eAAe,EAAE;YAC9E,MAAM,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,cAAc,EAAE;YAC5E,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,gBAAgB,EAAE;YAChF,YAAY,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,kBAAkB,EAAE;YACtF,KAAK,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,eAAe,EAAE;YAC5E,IAAI,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,gBAAgB,EAAE;YAC5E,GAAG,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,KAAK,EAAE;YAChE,QAAQ,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE,QAAQ,EAAE,oCAAiB,CAAC,gBAAgB,EAAE;SAChF,CAAC;QAEF,MAAM,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAGzC,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC;YAChD,MAAM,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC;SACtB,CAAC,CAAC;QAGH,MAAM,QAAQ,GAAG,IAAI,GAAG,EAAoB,CAAC;QAE7C,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE,CAAC;YAC9B,MAAM,eAAe,GAAG,MAAM,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC;YAGlD,IAAI,YAAY,GAAkB,IAAI,CAAC;YACvC,IAAI,WAAW,GAAG,CAAC,CAAC;YAEpB,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE,CAAC;gBAC5B,IAAI,eAAe,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,GAAG,WAAW,EAAE,CAAC;oBACnE,YAAY,GAAG,KAAK,CAAC;oBACrB,WAAW,GAAG,KAAK,CAAC,MAAM,CAAC;gBAC5B,CAAC;YACF,CAAC;YAED,IAAI,YAAY,EAAE,CAAC;gBAClB,MAAM,eAAe,GAAG,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,IAAI,EAAE,CAAC;gBACzD,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;gBAChC,QAAQ,CAAC,GAAG,CAAC,YAAY,EAAE,eAAe,CAAC,CAAC;YAC7C,CAAC;QACF,CAAC;QAGD,MAAM,SAAS,GAAG,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC;aAC9C,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,SAAS,CAAC,EAAE,EAAE;YAC3B,MAAM,OAAO,GAAG,YAAY,CAAC,KAAK,CAAC,CAAC;YAEpC,MAAM,IAAI,GAAG,KAAK;iBAChB,KAAK,CAAC,GAAG,CAAC;iBACV,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;iBAC3D,IAAI,CAAC,GAAG,CAAC,CAAC;YAEZ,OAAO;gBACN,IAAI;gBACJ,IAAI,EAAE,OAAO,CAAC,IAAI;gBAClB,QAAQ,EAAE,OAAO,CAAC,QAAQ;gBAC1B,SAAS;gBACT,WAAW,EAAE,SAAS,CAAC,MAAM;aAC7B,CAAC;QACH,CAAC,CAAC;aACD,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,GAAG,CAAC,CAAC,WAAW,CAAC,CAAC;QAEhD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,YAAY,SAAS,CAAC,MAAM,2BAA2B,CAAC,CAAC;QAE3E,OAAO,SAAS,CAAC;IAClB,CAAC;IAKD,KAAK,CAAC,aAAa,CAAC,MAAc;QACjC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,oCAAoC,MAAM,EAAE,CAAC,CAAC;QAEhE,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;QAE9C,IAAI,IAAI,CAAC,IAAI,KAAK,4BAAS,CAAC,IAAI,EAAE,CAAC;YAClC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,MAAM,sCAAsC,CAAC,CAAC;YACxE,OAAO,EAAE,CAAC;QACX,CAAC;QAED,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;YAC3C,KAAK,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE;YACjD,KAAK,EAAE,EAAE,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE;SAC3C,CAAC,CAAC;QAEH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,QAAQ,CAAC,MAAM,uBAAuB,CAAC,CAAC;QAEnE,OAAO,QAAQ,CAAC;IACjB,CAAC;IAKD,KAAK,CAAC,aAAa,CAAC,MAAc;QACjC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,oCAAoC,MAAM,EAAE,CAAC,CAAC;QAEhE,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;QAE9C,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;YACpB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,QAAQ,MAAM,qBAAqB,CAAC,CAAC;YACvD,OAAO,IAAI,CAAC;QACb,CAAC;QAED,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAEjD,OAAO,MAAM,CAAC;IACf,CAAC;IAKD,KAAK,CAAC,YAAY;QACjB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC;QAExC,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;YACxC,KAAK,EAAE,EAAE,IAAI,EAAE,4BAAS,CAAC,IAAI,EAAE;YAC/B,KAAK,EAAE,EAAE,YAAY,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE;SAC3C,CAAC,CAAC;QAEH,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,SAAS,KAAK,CAAC,MAAM,QAAQ,CAAC,CAAC;QAEjD,OAAO,KAAK,CAAC;IACd,CAAC;IAQO,KAAK,CAAC,wBAAwB,CACrC,SAAoB,EACpB,QAAuB,EACvB,cAAuB;QAEvB,IAAI,QAAQ,KAAK,IAAI,EAAE,CAAC;YACvB,OAAO;QACR,CAAC;QAGD,IAAI,SAAS,KAAK,4BAAS,CAAC,IAAI,EAAE,CAAC;YAClC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC;YAChD,MAAM,IAAI,6CAAyB,CAAC,8DAA8D,CAAC,CAAC;QACrG,CAAC;QAGD,IAAI,cAAc,IAAI,QAAQ,KAAK,cAAc,EAAE,CAAC;YACnD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,uCAAuC,CAAC,CAAC;YAC3D,MAAM,IAAI,6CAAyB,CAAC,mCAAmC,CAAC,CAAC;QAC1E,CAAC;QAGD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;QAE5C,IAAI,CAAC,MAAM,EAAE,CAAC;YACb,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,wBAAwB,QAAQ,YAAY,CAAC,CAAC;YAChE,MAAM,IAAI,2CAAuB,CAAC,8BAA8B,CAAC,CAAC;QACnE,CAAC;QAED,IAAI,MAAM,CAAC,IAAI,KAAK,4BAAS,CAAC,IAAI,EAAE,CAAC;YACpC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,gBAAgB,QAAQ,gBAAgB,CAAC,CAAC;YAC5D,MAAM,IAAI,6CAAyB,CAAC,wDAAwD,CAAC,CAAC;QAC/F,CAAC;IACF,CAAC;IAEO,KAAK,CAAC,WAAW,CAAmB,QAAqB,EAAE,GAAQ;QAC1E,MAAM,WAAW,GAAG,IAAA,4BAAU,EAAC,QAAQ,EAAE,GAAG,EAAE;YAC7C,uBAAuB,EAAE,KAAK;SAC9B,CAAC,CAAC;QAEH,MAAM,MAAM,GAAG,MAAM,IAAA,0BAAQ,EAAC,WAAW,EAAE;YAC1C,SAAS,EAAE,IAAI;YACf,oBAAoB,EAAE,IAAI;YAC1B,gBAAgB,EAAE,KAAK;SACvB,CAAC,CAAC;QAEH,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACvB,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,sBAAsB,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;YAElE,MAAM,IAAI,6CAAyB,CAAC,iCAAiC,CAAC,CAAC;QACxE,CAAC;QAED,OAAO,WAAW,CAAC;IACpB,CAAC;CACD,CAAA;AAvrBY,sCAAa;wBAAb,aAAa;IADzB,IAAA,mBAAU,GAAE;IAKV,WAAA,IAAA,0BAAgB,EAAC,0BAAW,CAAC,CAAA;IAE7B,WAAA,IAAA,0BAAgB,EAAC,6BAAY,CAAC,CAAA;IAE9B,WAAA,IAAA,0BAAgB,EAAC,+BAAa,CAAC,CAAA;qCAHH,oBAAU;QAEJ,oBAAU;QAET,oBAAU;QACT,yCAAkB;QAC1B,oBAAU;QACR,6BAAa;GAZjC,aAAa,CAurBzB"}
|