@rockster/core 0.0.2 → 0.1.0
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/access/access.module.d.ts +11 -0
- package/access/access.module.js +56 -0
- package/access/access.module.js.map +1 -0
- package/access/constants.d.ts +2 -0
- package/access/constants.js +6 -0
- package/access/constants.js.map +1 -0
- package/access/controllers/controllers.d.ts +7 -0
- package/access/controllers/controllers.js +18 -0
- package/access/controllers/controllers.js.map +1 -0
- package/access/controllers/scope-access-profile.controller.d.ts +17 -0
- package/access/controllers/scope-access-profile.controller.js +111 -0
- package/access/controllers/scope-access-profile.controller.js.map +1 -0
- package/access/controllers/scope-group-user.controller.d.ts +20 -0
- package/access/controllers/scope-group-user.controller.js +132 -0
- package/access/controllers/scope-group-user.controller.js.map +1 -0
- package/access/controllers/scope-group.controller.d.ts +22 -0
- package/access/controllers/scope-group.controller.js +177 -0
- package/access/controllers/scope-group.controller.js.map +1 -0
- package/access/controllers/scope-key.controller.d.ts +7 -0
- package/access/controllers/scope-key.controller.js +45 -0
- package/access/controllers/scope-key.controller.js.map +1 -0
- package/access/controllers/scope-owner.controller.d.ts +9 -0
- package/access/controllers/scope-owner.controller.js +80 -0
- package/access/controllers/scope-owner.controller.js.map +1 -0
- package/access/controllers/scope-user.controller.d.ts +14 -0
- package/access/controllers/scope-user.controller.js +109 -0
- package/access/controllers/scope-user.controller.js.map +1 -0
- package/access/decorators/context-params.decorator.d.ts +2 -0
- package/access/decorators/context-params.decorator.js +13 -0
- package/access/decorators/context-params.decorator.js.map +1 -0
- package/access/decorators/index.d.ts +2 -0
- package/access/decorators/index.js +19 -0
- package/access/decorators/index.js.map +1 -0
- package/access/decorators/scope-context-id-resolver.decorator.d.ts +10 -0
- package/access/decorators/scope-context-id-resolver.decorator.js +22 -0
- package/access/decorators/scope-context-id-resolver.decorator.js.map +1 -0
- package/access/entities/entities.d.ts +8 -0
- package/access/entities/entities.js +22 -0
- package/access/entities/entities.js.map +1 -0
- package/access/entities/index.d.ts +7 -0
- package/access/entities/index.js +24 -0
- package/access/entities/index.js.map +1 -0
- package/access/entities/scope-access-profile-key.d.ts +6 -0
- package/access/entities/scope-access-profile-key.js +40 -0
- package/access/entities/scope-access-profile-key.js.map +1 -0
- package/access/entities/scope-access-profile.d.ts +6 -0
- package/access/entities/scope-access-profile.js +37 -0
- package/access/entities/scope-access-profile.js.map +1 -0
- package/access/entities/scope-access.d.ts +9 -0
- package/access/entities/scope-access.js +58 -0
- package/access/entities/scope-access.js.map +1 -0
- package/access/entities/scope-group-user.d.ts +7 -0
- package/access/entities/scope-group-user.js +47 -0
- package/access/entities/scope-group-user.js.map +1 -0
- package/access/entities/scope-group.d.ts +12 -0
- package/access/entities/scope-group.js +72 -0
- package/access/entities/scope-group.js.map +1 -0
- package/access/entities/scope-key.d.ts +5 -0
- package/access/entities/scope-key.js +35 -0
- package/access/entities/scope-key.js.map +1 -0
- package/access/entities/scope-owner.d.ts +7 -0
- package/access/entities/scope-owner.js +45 -0
- package/access/entities/scope-owner.js.map +1 -0
- package/access/env.d.ts +10 -0
- package/access/env.js +10 -0
- package/access/env.js.map +1 -0
- package/access/functions/assert-context-admin-access.d.ts +15 -0
- package/access/functions/assert-context-admin-access.js +62 -0
- package/access/functions/assert-context-admin-access.js.map +1 -0
- package/access/functions/assert-master-or-owner.d.ts +9 -0
- package/access/functions/assert-master-or-owner.js +40 -0
- package/access/functions/assert-master-or-owner.js.map +1 -0
- package/access/functions/assert-scope-action-access.d.ts +32 -0
- package/access/functions/assert-scope-action-access.js +189 -0
- package/access/functions/assert-scope-action-access.js.map +1 -0
- package/access/functions/build-scope-resolver-initial-data.d.ts +4 -0
- package/access/functions/build-scope-resolver-initial-data.js +17 -0
- package/access/functions/build-scope-resolver-initial-data.js.map +1 -0
- package/access/functions/describe-action-scope.d.ts +9 -0
- package/access/functions/describe-action-scope.js +27 -0
- package/access/functions/describe-action-scope.js.map +1 -0
- package/access/functions/get-context-id-service.d.ts +1 -0
- package/access/functions/get-context-id-service.js +8 -0
- package/access/functions/get-context-id-service.js.map +1 -0
- package/access/functions/get-is-owner.d.ts +1 -0
- package/access/functions/get-is-owner.js +8 -0
- package/access/functions/get-is-owner.js.map +1 -0
- package/access/functions/get-user-keys.d.ts +2 -0
- package/access/functions/get-user-keys.js +10 -0
- package/access/functions/get-user-keys.js.map +1 -0
- package/access/functions/index.d.ts +8 -0
- package/access/functions/index.js +25 -0
- package/access/functions/index.js.map +1 -0
- package/access/functions/init-scope-service-executors.d.ts +3 -0
- package/access/functions/init-scope-service-executors.js +38 -0
- package/access/functions/init-scope-service-executors.js.map +1 -0
- package/access/functions/normalize-scope-keys.d.ts +4 -0
- package/access/functions/normalize-scope-keys.js +17 -0
- package/access/functions/normalize-scope-keys.js.map +1 -0
- package/access/functions/register-scope.d.ts +19 -0
- package/access/functions/register-scope.js +94 -0
- package/access/functions/register-scope.js.map +1 -0
- package/access/functions/resolve-scope-context-id.d.ts +9 -0
- package/access/functions/resolve-scope-context-id.js +71 -0
- package/access/functions/resolve-scope-context-id.js.map +1 -0
- package/access/functions/warn-if-public.d.ts +12 -0
- package/access/functions/warn-if-public.js +20 -0
- package/access/functions/warn-if-public.js.map +1 -0
- package/access/index.d.ts +7 -0
- package/access/index.js +24 -0
- package/access/index.js.map +1 -0
- package/access/interfaces/index.d.ts +3 -0
- package/access/interfaces/index.js +20 -0
- package/access/interfaces/index.js.map +1 -0
- package/access/interfaces/resolve-scope-context-id.d.ts +21 -0
- package/access/interfaces/resolve-scope-context-id.js +3 -0
- package/access/interfaces/resolve-scope-context-id.js.map +1 -0
- package/access/interfaces/scope-service-registry.d.ts +21 -0
- package/access/interfaces/scope-service-registry.js +3 -0
- package/access/interfaces/scope-service-registry.js.map +1 -0
- package/access/interfaces/scope-service.d.ts +11 -0
- package/{database/interfaces/protector.js → access/interfaces/scope-service.js} +1 -1
- package/access/interfaces/scope-service.js.map +1 -0
- package/access/models/scope-access-profile-keys-update.d.ts +5 -0
- package/access/models/scope-access-profile-keys-update.js +27 -0
- package/access/models/scope-access-profile-keys-update.js.map +1 -0
- package/access/models/scope-context.d.ts +4 -0
- package/access/models/scope-context.js +27 -0
- package/access/models/scope-context.js.map +1 -0
- package/access/models/scope-group-apply-access-profile.d.ts +6 -0
- package/access/models/scope-group-apply-access-profile.js +32 -0
- package/access/models/scope-group-apply-access-profile.js.map +1 -0
- package/access/models/scope-keys-update.d.ts +7 -0
- package/access/models/scope-keys-update.js +38 -0
- package/access/models/scope-keys-update.js.map +1 -0
- package/access/models/scope-owner.d.ts +5 -0
- package/access/models/scope-owner.js +32 -0
- package/access/models/scope-owner.js.map +1 -0
- package/access/models/scope-user-mapped.d.ts +9 -0
- package/access/models/scope-user-mapped.js +48 -0
- package/access/models/scope-user-mapped.js.map +1 -0
- package/access/models/scope-user.d.ts +9 -0
- package/access/models/scope-user.js +51 -0
- package/access/models/scope-user.js.map +1 -0
- package/access/queries/scope-access-profile.query.d.ts +1 -0
- package/access/queries/scope-access-profile.query.js +10 -0
- package/access/queries/scope-access-profile.query.js.map +1 -0
- package/access/queries/scope-group-user.query.d.ts +1 -0
- package/access/queries/scope-group-user.query.js +26 -0
- package/access/queries/scope-group-user.query.js.map +1 -0
- package/access/queries/scope-group.query.d.ts +1 -0
- package/access/queries/scope-group.query.js +19 -0
- package/access/queries/scope-group.query.js.map +1 -0
- package/access/services/index.d.ts +7 -0
- package/access/services/index.js +24 -0
- package/access/services/index.js.map +1 -0
- package/access/services/scope-access-profile.service.d.ts +13 -0
- package/access/services/scope-access-profile.service.js +75 -0
- package/access/services/scope-access-profile.service.js.map +1 -0
- package/access/services/scope-access.service.d.ts +11 -0
- package/access/services/scope-access.service.js +89 -0
- package/access/services/scope-access.service.js.map +1 -0
- package/access/services/scope-group-user.service.d.ts +8 -0
- package/access/services/scope-group-user.service.js +49 -0
- package/access/services/scope-group-user.service.js.map +1 -0
- package/access/services/scope-group.service.d.ts +17 -0
- package/access/services/scope-group.service.js +75 -0
- package/access/services/scope-group.service.js.map +1 -0
- package/access/services/scope-key.service.d.ts +9 -0
- package/access/services/scope-key.service.js +52 -0
- package/access/services/scope-key.service.js.map +1 -0
- package/access/services/scope-owner.service.d.ts +10 -0
- package/access/services/scope-owner.service.js +60 -0
- package/access/services/scope-owner.service.js.map +1 -0
- package/access/services/scope-service.d.ts +10 -0
- package/access/services/scope-service.js +52 -0
- package/access/services/scope-service.js.map +1 -0
- package/command/functions/execute-post.js +5 -7
- package/command/functions/execute-post.js.map +1 -1
- package/command/services/post-action-builder.js +21 -17
- package/command/services/post-action-builder.js.map +1 -1
- package/command/services/remove-action-builder.js +32 -22
- package/command/services/remove-action-builder.js.map +1 -1
- package/common/entities/base-entity.js +2 -0
- package/common/entities/base-entity.js.map +1 -1
- package/common/interfaces/enum/object-type.d.ts +2 -1
- package/common/interfaces/enum/object-type.js +1 -0
- package/common/interfaces/enum/object-type.js.map +1 -1
- package/controllers/constants/controller-transaction.d.ts +2 -0
- package/controllers/constants/controller-transaction.js +6 -0
- package/controllers/constants/controller-transaction.js.map +1 -0
- package/controllers/controller.controller.d.ts +1 -1
- package/controllers/controller.controller.js +4 -4
- package/controllers/controller.controller.js.map +1 -1
- package/controllers/decorators/controller.decorator.js +8 -0
- package/controllers/decorators/controller.decorator.js.map +1 -1
- package/controllers/decorators/index.d.ts +1 -0
- package/controllers/decorators/index.js +1 -0
- package/controllers/decorators/index.js.map +1 -1
- package/controllers/decorators/transaction.decorator.d.ts +7 -0
- package/controllers/decorators/transaction.decorator.js +23 -0
- package/controllers/decorators/transaction.decorator.js.map +1 -0
- package/controllers/interfaces/controller-object.d.ts +1 -0
- package/controllers/interfaces/controller-options.d.ts +1 -0
- package/controllers/interfaces/controller-property.d.ts +9 -0
- package/controllers/services/default-action-builder.js +14 -0
- package/controllers/services/default-action-builder.js.map +1 -1
- package/controllers/services/restful-action-builder.js +25 -1
- package/controllers/services/restful-action-builder.js.map +1 -1
- package/core/contexts/request-context.d.ts +5 -0
- package/core/contexts/request-context.js +6 -0
- package/core/contexts/request-context.js.map +1 -0
- package/core/core.controller.d.ts +1 -0
- package/core/core.controller.js +15 -2
- package/core/core.controller.js.map +1 -1
- package/core/functions/create-interceptor.js +2 -2
- package/core/functions/create-interceptor.js.map +1 -1
- package/core/functions/resolve-action-transactional.d.ts +3 -0
- package/core/functions/resolve-action-transactional.js +10 -0
- package/core/functions/resolve-action-transactional.js.map +1 -0
- package/core/interfaces/action-def.d.ts +2 -5
- package/core/interfaces/action-docs.d.ts +15 -0
- package/core/interfaces/action-handle.d.ts +5 -0
- package/core/interfaces/action-handle.js +3 -0
- package/core/interfaces/action-handle.js.map +1 -0
- package/core/interfaces/core-options.d.ts +1 -0
- package/core/interfaces/interceptor.d.ts +1 -1
- package/core/interfaces/object.d.ts +3 -2
- package/core/interfaces/request-context.d.ts +7 -2
- package/core/services/request-executor.d.ts +8 -0
- package/core/services/request-executor.js +88 -0
- package/core/services/request-executor.js.map +1 -1
- package/core/services/request-router.js +5 -4
- package/core/services/request-router.js.map +1 -1
- package/database/database.controller.d.ts +1 -3
- package/database/database.controller.js +1 -5
- package/database/database.controller.js.map +1 -1
- package/database/decorators/entity.decorator.d.ts +3 -1
- package/database/decorators/entity.decorator.js +14 -5
- package/database/decorators/entity.decorator.js.map +1 -1
- package/database/decorators/external-column.decorator.d.ts +17 -0
- package/database/decorators/external-column.decorator.js +30 -0
- package/database/decorators/external-column.decorator.js.map +1 -0
- package/database/decorators/index.d.ts +1 -0
- package/database/decorators/index.js +1 -0
- package/database/decorators/index.js.map +1 -1
- package/database/decorators/protect-entity.decorator.d.ts +1 -0
- package/database/decorators/protect-entity.decorator.js +2 -3
- package/database/decorators/protect-entity.decorator.js.map +1 -1
- package/database/decorators/protected-entity.decorator.d.ts +1 -0
- package/database/decorators/protected-entity.decorator.js +2 -16
- package/database/decorators/protected-entity.decorator.js.map +1 -1
- package/database/decorators/relation.decorator.d.ts +2 -2
- package/database/decorators/relation.decorator.js.map +1 -1
- package/database/extensions/select-query-builder.d.ts +1 -5
- package/database/extensions/select-query-builder.js.map +1 -1
- package/database/functions/find-relation.d.ts +2 -1
- package/database/functions/find-relation.js +3 -3
- package/database/functions/find-relation.js.map +1 -1
- package/database/functions/generate-entity-id.d.ts +2 -0
- package/database/functions/{generate-id.js → generate-entity-id.js} +3 -3
- package/database/functions/generate-entity-id.js.map +1 -0
- package/database/functions/get-relations.d.ts +1 -1
- package/database/functions/inject-repository-handle.js +4 -3
- package/database/functions/inject-repository-handle.js.map +1 -1
- package/database/functions/use-transaction.d.ts +1 -0
- package/database/functions/use-transaction.js +2 -6
- package/database/functions/use-transaction.js.map +1 -1
- package/database/interfaces/entity-dto-object.d.ts +7 -0
- package/database/interfaces/entity-dto-object.js +3 -0
- package/database/interfaces/entity-dto-object.js.map +1 -0
- package/database/interfaces/entity-object.d.ts +0 -6
- package/database/interfaces/entity-property.d.ts +12 -0
- package/database/interfaces/index.d.ts +0 -1
- package/database/interfaces/index.js +0 -1
- package/database/interfaces/index.js.map +1 -1
- package/database/interfaces/path.d.ts +6 -2
- package/database/interfaces/repository.d.ts +8 -8
- package/database/interfaces/virtual-select.d.ts +4 -0
- package/database/interfaces/virtual-select.js +3 -0
- package/database/interfaces/virtual-select.js.map +1 -0
- package/database/services/repository.service.d.ts +1 -1
- package/database/services/repository.service.js +3 -6
- package/database/services/repository.service.js.map +1 -1
- package/docs/docs.module.js +3 -1
- package/docs/docs.module.js.map +1 -1
- package/docs/migrations/1747584000000-CreateDocsTables.d.ts +5 -0
- package/docs/migrations/1747584000000-CreateDocsTables.js +90 -0
- package/docs/migrations/1747584000000-CreateDocsTables.js.map +1 -0
- package/docs/migrations/migrations.d.ts +2 -0
- package/docs/migrations/migrations.js +8 -0
- package/docs/migrations/migrations.js.map +1 -0
- package/docs/queries/docs-controller-action.query.d.ts +1 -1
- package/docs/queries/docs-controller.query.d.ts +1 -1
- package/docs/queries/docs-model.query.d.ts +1 -1
- package/docs/queries/docs-model.query.js +1 -1
- package/docs/queries/docs-model.query.js.map +1 -1
- package/docs/queries/docs-version.query.d.ts +1 -1
- package/docs/services/docs-version.service.js +6 -3
- package/docs/services/docs-version.service.js.map +1 -1
- package/forms/queries/form.query.d.ts +1 -1
- package/forms/queries/property.query.d.ts +1 -1
- package/global.d.ts +2 -0
- package/global.js +2 -1
- package/global.js.map +1 -1
- package/http/http.controller.d.ts +2 -0
- package/http/http.controller.js +3 -2
- package/http/http.controller.js.map +1 -1
- package/index.d.ts +5 -2
- package/index.js +4 -7
- package/index.js.map +1 -1
- package/jobs/jobs.controller.d.ts +2 -0
- package/jobs/jobs.controller.js +22 -16
- package/jobs/jobs.controller.js.map +1 -1
- package/package.json +70 -69
- package/query/functions/add-join.js +8 -16
- package/query/functions/add-join.js.map +1 -1
- package/query/functions/collect-external-column-owners.d.ts +10 -0
- package/query/functions/collect-external-column-owners.js +100 -0
- package/query/functions/collect-external-column-owners.js.map +1 -0
- package/query/functions/create-query-builder.js +47 -28
- package/query/functions/create-query-builder.js.map +1 -1
- package/query/functions/create-query-cache-hash.d.ts +16 -0
- package/query/functions/create-query-cache-hash.js +70 -0
- package/query/functions/create-query-cache-hash.js.map +1 -0
- package/query/functions/create-query.d.ts +8 -3
- package/query/functions/create-query.js +12 -9
- package/query/functions/create-query.js.map +1 -1
- package/query/functions/describe-query-filter.js +3 -2
- package/query/functions/describe-query-filter.js.map +1 -1
- package/query/functions/execute-query.js +89 -9
- package/query/functions/execute-query.js.map +1 -1
- package/query/functions/expand-select-with-external-dependencies.d.ts +9 -0
- package/query/functions/expand-select-with-external-dependencies.js +34 -0
- package/query/functions/expand-select-with-external-dependencies.js.map +1 -0
- package/query/functions/external-column-owner-path.d.ts +5 -0
- package/query/functions/external-column-owner-path.js +18 -0
- package/query/functions/external-column-owner-path.js.map +1 -0
- package/query/functions/get-entity-object-class.d.ts +2 -0
- package/query/functions/get-entity-object-class.js +12 -0
- package/query/functions/get-entity-object-class.js.map +1 -0
- package/query/functions/get-native-select.js +3 -0
- package/query/functions/get-native-select.js.map +1 -1
- package/query/functions/load-properties.d.ts +20 -2
- package/query/functions/load-properties.js +190 -40
- package/query/functions/load-properties.js.map +1 -1
- package/query/functions/map-query-property-to-column-name.js +1 -1
- package/query/functions/map-query-property-to-column-name.js.map +1 -1
- package/query/functions/query-structure-cache.d.ts +24 -0
- package/query/functions/query-structure-cache.js +66 -0
- package/query/functions/query-structure-cache.js.map +1 -0
- package/query/interfaces/query.d.ts +44 -1
- package/query/services/query-action-builder.d.ts +4 -1
- package/query/services/query-action-builder.js +26 -12
- package/query/services/query-action-builder.js.map +1 -1
- package/remote-logs/dtos/index.d.ts +2 -0
- package/remote-logs/dtos/index.js +19 -0
- package/remote-logs/dtos/index.js.map +1 -0
- package/remote-logs/dtos/remote-log-hooks.dto.d.ts +72 -0
- package/remote-logs/dtos/remote-log-hooks.dto.js +280 -0
- package/remote-logs/dtos/remote-log-hooks.dto.js.map +1 -0
- package/remote-logs/dtos/remote-log-search.dto.d.ts +34 -0
- package/remote-logs/dtos/remote-log-search.dto.js +146 -0
- package/remote-logs/dtos/remote-log-search.dto.js.map +1 -0
- package/remote-logs/environment.d.ts +4 -0
- package/remote-logs/environment.js +5 -0
- package/remote-logs/environment.js.map +1 -0
- package/remote-logs/index.d.ts +3 -0
- package/remote-logs/index.js +20 -0
- package/remote-logs/index.js.map +1 -0
- package/remote-logs/interfaces/index.d.ts +1 -0
- package/remote-logs/interfaces/index.js +18 -0
- package/remote-logs/interfaces/index.js.map +1 -0
- package/remote-logs/interfaces/remote-logs-module-options.d.ts +8 -0
- package/remote-logs/interfaces/remote-logs-module-options.js +3 -0
- package/remote-logs/interfaces/remote-logs-module-options.js.map +1 -0
- package/remote-logs/remote-logs-hooks.controller.d.ts +60 -0
- package/remote-logs/remote-logs-hooks.controller.js +331 -0
- package/remote-logs/remote-logs-hooks.controller.js.map +1 -0
- package/remote-logs/remote-logs.controller.d.ts +8 -0
- package/remote-logs/remote-logs.controller.js +41 -0
- package/remote-logs/remote-logs.controller.js.map +1 -0
- package/remote-logs/remote-logs.module.d.ts +12 -0
- package/remote-logs/remote-logs.module.js +107 -0
- package/remote-logs/remote-logs.module.js.map +1 -0
- package/remote-logs/services/opensearch.service.d.ts +13 -0
- package/remote-logs/services/opensearch.service.js +167 -0
- package/remote-logs/services/opensearch.service.js.map +1 -0
- package/security/auth.controller.js +4 -4
- package/security/auth.controller.js.map +1 -1
- package/security/env.js.map +1 -1
- package/security/functions/add-protected.d.ts +2 -2
- package/security/functions/add-protected.js +8 -5
- package/security/functions/add-protected.js.map +1 -1
- package/security/functions/create-authentication-interceptor.d.ts +44 -0
- package/security/functions/create-authentication-interceptor.js +114 -0
- package/security/functions/create-authentication-interceptor.js.map +1 -0
- package/security/functions/find-auth-context.d.ts +1 -2
- package/security/functions/find-auth-context.js +6 -11
- package/security/functions/find-auth-context.js.map +1 -1
- package/security/index.d.ts +1 -0
- package/security/index.js +1 -0
- package/security/index.js.map +1 -1
- package/security/interfaces/authorization-schema.d.ts +3 -1
- package/security/requests/security.request.js +1 -1
- package/security/requests/security.request.js.map +1 -1
- package/security/services/authorization.service.d.ts +5 -3
- package/security/services/authorization.service.js +56 -37
- package/security/services/authorization.service.js.map +1 -1
- package/storage/services/routes.service.js +1 -1
- package/storage/services/routes.service.js.map +1 -1
- package/tasks/constants.d.ts +3 -0
- package/tasks/constants.js +2 -1
- package/tasks/constants.js.map +1 -1
- package/tasks/controllers/task.controller.d.ts +3 -2
- package/tasks/controllers/task.controller.js +11 -40
- package/tasks/controllers/task.controller.js.map +1 -1
- package/tasks/decorators/index.d.ts +1 -0
- package/tasks/decorators/index.js +1 -0
- package/tasks/decorators/index.js.map +1 -1
- package/tasks/decorators/task-payload.decorator.d.ts +1 -0
- package/tasks/decorators/task-payload.decorator.js +12 -0
- package/tasks/decorators/task-payload.decorator.js.map +1 -0
- package/tasks/decorators/task.decorator.js +6 -2
- package/tasks/decorators/task.decorator.js.map +1 -1
- package/tasks/functions/compile-all-task-post-hooks.d.ts +1 -0
- package/tasks/functions/compile-all-task-post-hooks.js +27 -0
- package/tasks/functions/compile-all-task-post-hooks.js.map +1 -0
- package/tasks/functions/compile-task-hook-handle.d.ts +6 -0
- package/tasks/functions/compile-task-hook-handle.js +67 -0
- package/tasks/functions/compile-task-hook-handle.js.map +1 -0
- package/tasks/functions/create-task-hook.d.ts +9 -0
- package/tasks/functions/create-task-hook.js +13 -0
- package/tasks/functions/create-task-hook.js.map +1 -0
- package/tasks/functions/{create-task-message-receptor.d.ts → create-task-message-post.d.ts} +1 -1
- package/tasks/functions/{create-task-message-receptor.js → create-task-message-post.js} +10 -3
- package/tasks/functions/create-task-message-post.js.map +1 -0
- package/tasks/functions/register-task-post-hook-interceptors.d.ts +3 -0
- package/tasks/functions/register-task-post-hook-interceptors.js +86 -0
- package/tasks/functions/register-task-post-hook-interceptors.js.map +1 -0
- package/tasks/functions/run-task-post-hooks.d.ts +11 -0
- package/tasks/functions/run-task-post-hooks.js +18 -0
- package/tasks/functions/run-task-post-hooks.js.map +1 -0
- package/tasks/functions/task-message-operations.d.ts +18 -0
- package/tasks/functions/task-message-operations.js +100 -0
- package/tasks/functions/task-message-operations.js.map +1 -0
- package/tasks/functions/validate-task-payload.d.ts +2 -0
- package/tasks/functions/validate-task-payload.js +19 -0
- package/tasks/functions/validate-task-payload.js.map +1 -0
- package/tasks/hook-constants.d.ts +2 -0
- package/tasks/hook-constants.js +6 -0
- package/tasks/hook-constants.js.map +1 -0
- package/tasks/index.d.ts +3 -0
- package/tasks/index.js +3 -0
- package/tasks/index.js.map +1 -1
- package/tasks/interfaces/compiled-task-post-hooks.d.ts +17 -0
- package/tasks/interfaces/compiled-task-post-hooks.js +3 -0
- package/tasks/interfaces/compiled-task-post-hooks.js.map +1 -0
- package/tasks/interfaces/index.d.ts +3 -0
- package/tasks/interfaces/index.js +3 -0
- package/tasks/interfaces/index.js.map +1 -1
- package/tasks/interfaces/task-hook.d.ts +16 -0
- package/tasks/interfaces/task-hook.js +8 -0
- package/tasks/interfaces/task-hook.js.map +1 -0
- package/tasks/interfaces/task-object.d.ts +6 -2
- package/tasks/interfaces/task-post-hook.d.ts +2 -0
- package/tasks/interfaces/task-post-hook.js +3 -0
- package/tasks/interfaces/task-post-hook.js.map +1 -0
- package/tasks/interfaces/task-post-intercept.d.ts +1 -8
- package/tasks/interfaces/task-runner.d.ts +2 -1
- package/tasks/interfaces/task-settings.d.ts +7 -0
- package/tasks/services/task-runner.service.d.ts +24 -3
- package/tasks/services/task-runner.service.js +68 -28
- package/tasks/services/task-runner.service.js.map +1 -1
- package/translations/controllers/translation.controller.js +12 -9
- package/translations/controllers/translation.controller.js.map +1 -1
- package/translations/functions/create-translation-values.js +2 -5
- package/translations/functions/create-translation-values.js.map +1 -1
- package/translations/migrations/1723760669185-CreateTranslationTables.js +3 -3
- package/translations/migrations/1723760669185-CreateTranslationTables.js.map +1 -1
- package/translations/queries/translation-config.query.d.ts +1 -1
- package/translations/queries/translation-values.query.d.ts +1 -1
- package/translations/queries/translation-values.query.js +1 -1
- package/translations/queries/translation-values.query.js.map +1 -1
- package/translations/translations.controller.d.ts +1 -1
- package/translations/translations.controller.js +4 -4
- package/translations/translations.controller.js.map +1 -1
- package/database/functions/generate-id.d.ts +0 -2
- package/database/functions/generate-id.js.map +0 -1
- package/database/functions/use-protector.d.ts +0 -2
- package/database/functions/use-protector.js +0 -11
- package/database/functions/use-protector.js.map +0 -1
- package/database/interfaces/protector.d.ts +0 -51
- package/database/interfaces/protector.js.map +0 -1
- package/database/services/protect-builder.d.ts +0 -59
- package/database/services/protect-builder.js +0 -524
- package/database/services/protect-builder.js.map +0 -1
- package/security/functions/add-protect.d.ts +0 -2
- package/security/functions/add-protect.js +0 -11
- package/security/functions/add-protect.js.map +0 -1
- package/tasks/functions/create-task-message-receptor.js.map +0 -1
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getCachedNativeSelect = getCachedNativeSelect;
|
|
4
|
+
exports.setCachedNativeSelect = setCachedNativeSelect;
|
|
5
|
+
exports.getCachedJoinPlan = getCachedJoinPlan;
|
|
6
|
+
exports.setCachedJoinPlan = setCachedJoinPlan;
|
|
7
|
+
const MAX_ENTRIES = 500;
|
|
8
|
+
const cache = new Map();
|
|
9
|
+
const keyOrder = [];
|
|
10
|
+
const joinPlanCache = new Map();
|
|
11
|
+
const joinPlanKeyOrder = [];
|
|
12
|
+
function evictOne() {
|
|
13
|
+
const oldest = keyOrder.shift();
|
|
14
|
+
if (oldest != null)
|
|
15
|
+
cache.delete(oldest);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Returns cached native select (asArry, asMap) for the given structure hash, or undefined.
|
|
19
|
+
* Caller receives copies so cache entries are never mutated.
|
|
20
|
+
*/
|
|
21
|
+
function getCachedNativeSelect(structureHash) {
|
|
22
|
+
const entry = cache.get(structureHash);
|
|
23
|
+
if (!entry)
|
|
24
|
+
return undefined;
|
|
25
|
+
return {
|
|
26
|
+
asArry: [...entry.asArry],
|
|
27
|
+
asMap: new Map(entry.asMap),
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Stores native select result for the given structure hash.
|
|
32
|
+
* Evicts oldest entry when at MAX_ENTRIES (LRU).
|
|
33
|
+
*/
|
|
34
|
+
function setCachedNativeSelect(structureHash, asArry, asMap) {
|
|
35
|
+
if (cache.has(structureHash))
|
|
36
|
+
return;
|
|
37
|
+
if (keyOrder.length >= MAX_ENTRIES)
|
|
38
|
+
evictOne();
|
|
39
|
+
keyOrder.push(structureHash);
|
|
40
|
+
cache.set(structureHash, { asArry, asMap });
|
|
41
|
+
}
|
|
42
|
+
function evictOneJoinPlan() {
|
|
43
|
+
const oldest = joinPlanKeyOrder.shift();
|
|
44
|
+
if (oldest != null)
|
|
45
|
+
joinPlanCache.delete(oldest);
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Returns cached join plan (array of QueryPath) for the given join structure hash.
|
|
49
|
+
* Paths are applied to a fresh QB each request – we never cache the QB or EntityManager.
|
|
50
|
+
*/
|
|
51
|
+
function getCachedJoinPlan(joinStructureHash) {
|
|
52
|
+
return joinPlanCache.get(joinStructureHash);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Stores join plan (order of paths to apply) for the given join structure hash.
|
|
56
|
+
* Evicts oldest entry when at MAX_ENTRIES (LRU).
|
|
57
|
+
*/
|
|
58
|
+
function setCachedJoinPlan(joinStructureHash, paths) {
|
|
59
|
+
if (joinPlanCache.has(joinStructureHash))
|
|
60
|
+
return;
|
|
61
|
+
if (joinPlanKeyOrder.length >= MAX_ENTRIES)
|
|
62
|
+
evictOneJoinPlan();
|
|
63
|
+
joinPlanKeyOrder.push(joinStructureHash);
|
|
64
|
+
joinPlanCache.set(joinStructureHash, paths);
|
|
65
|
+
}
|
|
66
|
+
//# sourceMappingURL=query-structure-cache.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"query-structure-cache.js","sourceRoot":"./","sources":["query/functions/query-structure-cache.ts"],"names":[],"mappings":";;AAwBA,sDASC;AAMD,sDASC;AAWD,8CAEC;AAMD,8CAKC;AAtED,MAAM,WAAW,GAAG,GAAG,CAAC;AAOxB,MAAM,KAAK,GAAG,IAAI,GAAG,EAA6B,CAAC;AACnD,MAAM,QAAQ,GAAa,EAAE,CAAC;AAE9B,MAAM,aAAa,GAAG,IAAI,GAAG,EAAuB,CAAC;AACrD,MAAM,gBAAgB,GAAa,EAAE,CAAC;AAEtC,SAAS,QAAQ;IACd,MAAM,MAAM,GAAG,QAAQ,CAAC,KAAK,EAAE,CAAC;IAChC,IAAI,MAAM,IAAI,IAAI;QAAE,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;AAC5C,CAAC;AAED;;;GAGG;AACH,SAAgB,qBAAqB,CAClC,aAAqB;IAErB,MAAM,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,aAAa,CAAC,CAAC;IACvC,IAAI,CAAC,KAAK;QAAE,OAAO,SAAS,CAAC;IAC7B,OAAO;QACJ,MAAM,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC;QACzB,KAAK,EAAE,IAAI,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC;KAC7B,CAAC;AACL,CAAC;AAED;;;GAGG;AACH,SAAgB,qBAAqB,CAClC,aAAqB,EACrB,MAAgB,EAChB,KAA0B;IAE1B,IAAI,KAAK,CAAC,GAAG,CAAC,aAAa,CAAC;QAAE,OAAO;IACrC,IAAI,QAAQ,CAAC,MAAM,IAAI,WAAW;QAAE,QAAQ,EAAE,CAAC;IAC/C,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;IAC7B,KAAK,CAAC,GAAG,CAAC,aAAa,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,CAAC;AAC/C,CAAC;AAED,SAAS,gBAAgB;IACtB,MAAM,MAAM,GAAG,gBAAgB,CAAC,KAAK,EAAE,CAAC;IACxC,IAAI,MAAM,IAAI,IAAI;QAAE,aAAa,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;AACpD,CAAC;AAED;;;GAGG;AACH,SAAgB,iBAAiB,CAAC,iBAAyB;IACxD,OAAO,aAAa,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;AAC/C,CAAC;AAED;;;GAGG;AACH,SAAgB,iBAAiB,CAAC,iBAAyB,EAAE,KAAkB;IAC5E,IAAI,aAAa,CAAC,GAAG,CAAC,iBAAiB,CAAC;QAAE,OAAO;IACjD,IAAI,gBAAgB,CAAC,MAAM,IAAI,WAAW;QAAE,gBAAgB,EAAE,CAAC;IAC/D,gBAAgB,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;IACzC,aAAa,CAAC,GAAG,CAAC,iBAAiB,EAAE,KAAK,CAAC,CAAC;AAC/C,CAAC"}
|
|
@@ -16,6 +16,33 @@ export type Query<Entity> = {
|
|
|
16
16
|
data?: Entity[];
|
|
17
17
|
page?: boolean;
|
|
18
18
|
};
|
|
19
|
+
/**
|
|
20
|
+
* One object graph node that owns ≥1 selected external property (same reference TypeORM returned;
|
|
21
|
+
* mutate in place so `transform` sees the values).
|
|
22
|
+
*/
|
|
23
|
+
export type ExternalColumnOwner = {
|
|
24
|
+
object: Record<string, unknown>;
|
|
25
|
+
/**
|
|
26
|
+
* Declared external column names on `object` (e.g. `person` when select is `user.person.id`).
|
|
27
|
+
* Not the nested leaf (`id`); the anchor property marked with ExternalColumn.
|
|
28
|
+
*/
|
|
29
|
+
properties: string[];
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Passed to {@link ExternalColumnBatchResolver} after `getMany()`, before `transform`.
|
|
33
|
+
* `owners` is deduped by object identity — batch-load once per unique node (e.g. all `InfraClient` rows).
|
|
34
|
+
*/
|
|
35
|
+
export type ExternalColumnResolvePayload<Entity = any> = {
|
|
36
|
+
roots: Entity[];
|
|
37
|
+
externalSelectPaths: string[];
|
|
38
|
+
owners: ExternalColumnOwner[];
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Called only when at least one external column is in the query select.
|
|
42
|
+
* Receives raw root rows from TypeORM and a flat list of owner objects that need those columns filled.
|
|
43
|
+
* Mutate `owners[].object` in place (or return new `roots`); then `transform` runs on `roots`.
|
|
44
|
+
*/
|
|
45
|
+
export type ExternalColumnBatchResolver<Entity = any, ContextData = any> = (payload: ExternalColumnResolvePayload<Entity>, context: IQueryContent<Entity, ContextData>) => Promise<Entity[]>;
|
|
19
46
|
export type IQueryContent<Entity, ContextData = any> = {
|
|
20
47
|
userId?: string;
|
|
21
48
|
nativeSelectAsArry?: string[];
|
|
@@ -41,13 +68,29 @@ export type QueryPath = {
|
|
|
41
68
|
parent?: QueryPath;
|
|
42
69
|
secure?: boolean;
|
|
43
70
|
entityAlias: string;
|
|
44
|
-
|
|
71
|
+
rootOrRelationPath?: string;
|
|
45
72
|
};
|
|
46
73
|
export type QueryProperty = {
|
|
47
74
|
path: QueryPath;
|
|
48
75
|
isUUID?: boolean;
|
|
49
76
|
isArray?: boolean;
|
|
50
77
|
isJson?: boolean;
|
|
78
|
+
/** When true, value is provided by external service; not selected from DB. */
|
|
79
|
+
isExternal?: boolean;
|
|
80
|
+
/** Resolved Injectable class from ExternalColumn(() => Resolver); used by executeQuery. */
|
|
81
|
+
externalResolver?: Instantiable;
|
|
82
|
+
/**
|
|
83
|
+
* Walk from each root row through these relation/embed keys to reach the owner of {@link externalColumnKey}.
|
|
84
|
+
* Empty when the owner is the root row.
|
|
85
|
+
*/
|
|
86
|
+
externalOwnerWalkSegments?: string[];
|
|
87
|
+
/** External property on that owner (object or scalar). */
|
|
88
|
+
externalColumnKey?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Full query paths (e.g. `infraServer.client.clientId`) that must be added to the SQL select when this
|
|
91
|
+
* external path is selected — same entity row, declared via ExternalColumnOptions.selectDependencies.
|
|
92
|
+
*/
|
|
93
|
+
externalDependencyQueryPaths?: string[];
|
|
51
94
|
name: string;
|
|
52
95
|
type: PropertyType;
|
|
53
96
|
fullPath: string;
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { ObjectNote, PropertyNote } from "@rockster/class-memory";
|
|
2
2
|
import { IControllerObject, IControllerProperty } from "../../controllers/interfaces";
|
|
3
|
-
import { ExecuteInterceptorHandle, IActionDocs, PendingAction, IRequestContext } from "../../core";
|
|
4
3
|
import { ExecutorData } from "@rockster/class-injector/interfaces";
|
|
5
4
|
import { Dictionary } from "@rockster/common";
|
|
5
|
+
import { ExecuteInterceptorHandle } from "../../core/interfaces/interceptor";
|
|
6
|
+
import { IActionDocs } from "../../core/interfaces/action-docs";
|
|
7
|
+
import { PendingAction } from "../../core/interfaces/pending-action";
|
|
8
|
+
import { IRequestContext } from "../../core/interfaces/request-context";
|
|
6
9
|
export declare class QueryActionBuilder {
|
|
7
10
|
protected beforeInterceptors: Dictionary<ExecuteInterceptorHandle>;
|
|
8
11
|
protected afterInterceptors: Dictionary<ExecuteInterceptorHandle>;
|
|
@@ -9,13 +9,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
9
9
|
exports.QueryActionBuilder = void 0;
|
|
10
10
|
const class_injector_1 = require("@rockster/class-injector");
|
|
11
11
|
const interfaces_1 = require("../../controllers/interfaces");
|
|
12
|
-
const core_1 = require("../../core");
|
|
13
12
|
const class_pipe_1 = require("@rockster/class-pipe");
|
|
14
13
|
const constants_1 = require("../constants");
|
|
14
|
+
const interceptor_1 = require("../../core/interfaces/interceptor");
|
|
15
15
|
const constants_2 = require("../../controllers/constants");
|
|
16
16
|
const describe_query_filter_1 = require("../functions/describe-query-filter");
|
|
17
17
|
const web_socket_1 = require("../../web-socket");
|
|
18
18
|
const docs_1 = require("@rockster/common/docs");
|
|
19
|
+
const get_action_path_1 = require("../../core/functions/get-action-path");
|
|
20
|
+
const create_interceptor_1 = require("../../core/functions/create-interceptor");
|
|
21
|
+
const create_action_1 = require("../../core/functions/create-action");
|
|
22
|
+
const assert_scope_action_access_1 = require("../../access/functions/assert-scope-action-access");
|
|
23
|
+
const warn_if_public_1 = require("../../access/functions/warn-if-public");
|
|
24
|
+
const describe_action_scope_1 = require("../../access/functions/describe-action-scope");
|
|
25
|
+
const resolve_action_transactional_1 = require("../../core/functions/resolve-action-transactional");
|
|
19
26
|
let QueryActionBuilder = class QueryActionBuilder {
|
|
20
27
|
constructor() {
|
|
21
28
|
this.beforeInterceptors = {};
|
|
@@ -33,28 +40,27 @@ let QueryActionBuilder = class QueryActionBuilder {
|
|
|
33
40
|
for (const property of properties) {
|
|
34
41
|
const isSecure = !property.public;
|
|
35
42
|
const name = property.name || property.propertyKey;
|
|
36
|
-
const path = (0,
|
|
43
|
+
const path = (0, get_action_path_1.getActionPath)(object.alias, name);
|
|
44
|
+
(0, warn_if_public_1.warnIfPublic)(path, property);
|
|
37
45
|
this.beforeInterceptors[path] =
|
|
38
|
-
(0,
|
|
46
|
+
(0, create_interceptor_1.createExecuteInterceptors)([interceptor_1.commonInterceptor.onBeforeExecute], object, property);
|
|
39
47
|
this.afterInterceptors[path] =
|
|
40
|
-
(0,
|
|
48
|
+
(0, create_interceptor_1.createExecuteInterceptors)([interceptor_1.commonInterceptor.onAfterExecute], object, property);
|
|
41
49
|
this.beforeValidationInterceptors[path] =
|
|
42
|
-
(0,
|
|
43
|
-
(0,
|
|
50
|
+
(0, create_interceptor_1.createExecuteInterceptors)([interfaces_1.requestInterceptor.onBeforeValidation], object, property);
|
|
51
|
+
(0, create_action_1.createAction)({
|
|
44
52
|
objectClass: object.objectClass,
|
|
45
53
|
path: path,
|
|
46
54
|
name: name,
|
|
47
55
|
secure: isSecure,
|
|
56
|
+
transactional: (0, resolve_action_transactional_1.resolveActionTransactional)(object, property),
|
|
48
57
|
execute: async (action, context) => {
|
|
49
|
-
return this
|
|
50
|
-
.execute(action, context, data.executors[name], property);
|
|
58
|
+
return this.execute(action, context, data.executors[name], property);
|
|
51
59
|
},
|
|
52
60
|
onBefore: async (action, context) => {
|
|
53
|
-
return this
|
|
54
|
-
.onBefore(action, context, property);
|
|
61
|
+
return this.onBefore(action, context, property);
|
|
55
62
|
},
|
|
56
|
-
docs: this
|
|
57
|
-
.createDocs(object, property, name, path, isSecure)
|
|
63
|
+
docs: this.createDocs(object, property, name, path, isSecure)
|
|
58
64
|
});
|
|
59
65
|
}
|
|
60
66
|
}
|
|
@@ -72,6 +78,8 @@ let QueryActionBuilder = class QueryActionBuilder {
|
|
|
72
78
|
path: path,
|
|
73
79
|
description: property.description,
|
|
74
80
|
isSecure: isSecure,
|
|
81
|
+
authenticated: property.authenticated,
|
|
82
|
+
keys: (0, describe_action_scope_1.describeActionScopeKeys)(property),
|
|
75
83
|
payload: Payload,
|
|
76
84
|
response: Response,
|
|
77
85
|
exposeGroups: property.exposeGroups,
|
|
@@ -81,6 +89,12 @@ let QueryActionBuilder = class QueryActionBuilder {
|
|
|
81
89
|
};
|
|
82
90
|
}
|
|
83
91
|
async onBefore(pending, context, property) {
|
|
92
|
+
await (0, assert_scope_action_access_1.assertScopeActionAccess)({
|
|
93
|
+
property,
|
|
94
|
+
slot: "query",
|
|
95
|
+
pending,
|
|
96
|
+
context,
|
|
97
|
+
});
|
|
84
98
|
if (property.data) {
|
|
85
99
|
const payload = context.request[pending.requestRef];
|
|
86
100
|
await this.beforeValidationInterceptors[pending.path]({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-action-builder.js","sourceRoot":"./","sources":["query/services/query-action-builder.ts"],"names":[],"mappings":";;;;;;;;;AAAA,6DAGkC;AAKlC,6DAIsC;
|
|
1
|
+
{"version":3,"file":"query-action-builder.js","sourceRoot":"./","sources":["query/services/query-action-builder.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./remote-log-search.dto"), exports);
|
|
18
|
+
__exportStar(require("./remote-log-hooks.dto"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"./","sources":["remote-logs/dtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC;AACxC,yDAAuC"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { ILogSettings, LogClearInterval, LogHookConditionMode, LogLevel } from '@rockster/common/logs';
|
|
2
|
+
import { RemoteLogSearchResponseDto } from './remote-log-search.dto';
|
|
3
|
+
export declare class RemoteLogHookQueryDto {
|
|
4
|
+
appId?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare class RemoteLogHookPostDto {
|
|
7
|
+
id?: string;
|
|
8
|
+
appId: string;
|
|
9
|
+
url: string;
|
|
10
|
+
name?: string;
|
|
11
|
+
displayName?: string;
|
|
12
|
+
enabled: boolean;
|
|
13
|
+
conditionMode: LogHookConditionMode;
|
|
14
|
+
logTypes?: string[];
|
|
15
|
+
conditionQuery?: Record<string, unknown>;
|
|
16
|
+
aggregatorQuery?: Record<string, unknown>;
|
|
17
|
+
groupByField?: string;
|
|
18
|
+
}
|
|
19
|
+
export declare class RemoteLogHookRemoveDto {
|
|
20
|
+
appId: string;
|
|
21
|
+
id: string;
|
|
22
|
+
}
|
|
23
|
+
export declare class RemoteLogHookOkDto {
|
|
24
|
+
ok: boolean;
|
|
25
|
+
id?: string;
|
|
26
|
+
}
|
|
27
|
+
export declare class RemoteLogSettingsQueryDto {
|
|
28
|
+
}
|
|
29
|
+
export declare class RemoteLogSettingsPostDto implements ILogSettings {
|
|
30
|
+
id?: string;
|
|
31
|
+
appId?: string | null;
|
|
32
|
+
clearInterval: LogClearInterval;
|
|
33
|
+
logLevel: LogLevel;
|
|
34
|
+
}
|
|
35
|
+
export declare class RemoteLogSettingsRemoveDto {
|
|
36
|
+
id: string;
|
|
37
|
+
}
|
|
38
|
+
export declare class RemoteLogSettingsResponseDto implements ILogSettings {
|
|
39
|
+
id?: string;
|
|
40
|
+
appId?: string | null;
|
|
41
|
+
clearInterval: LogClearInterval;
|
|
42
|
+
logLevel: LogLevel;
|
|
43
|
+
date?: string;
|
|
44
|
+
}
|
|
45
|
+
export declare class RemoteLogSettingsListResponseDto {
|
|
46
|
+
settings: RemoteLogSettingsResponseDto[];
|
|
47
|
+
}
|
|
48
|
+
export declare class RemoteLogAppsQueryDto {
|
|
49
|
+
search?: string;
|
|
50
|
+
size?: number;
|
|
51
|
+
}
|
|
52
|
+
export declare class RemoteLogAppResponseDto {
|
|
53
|
+
appId: string;
|
|
54
|
+
date?: string;
|
|
55
|
+
}
|
|
56
|
+
export declare class RemoteLogAppsListResponseDto {
|
|
57
|
+
apps: RemoteLogAppResponseDto[];
|
|
58
|
+
}
|
|
59
|
+
export declare class RemoteLogEventsQueryDto {
|
|
60
|
+
appId: string;
|
|
61
|
+
hookId?: string;
|
|
62
|
+
fromDate?: string;
|
|
63
|
+
toDate?: string;
|
|
64
|
+
size?: number;
|
|
65
|
+
includeAggregations?: boolean;
|
|
66
|
+
}
|
|
67
|
+
export declare class RemoteLogEventReadDto {
|
|
68
|
+
appId: string;
|
|
69
|
+
id: string;
|
|
70
|
+
}
|
|
71
|
+
export declare class RemoteLogEventsQueryResponseDto extends RemoteLogSearchResponseDto {
|
|
72
|
+
}
|
|
@@ -0,0 +1,280 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.RemoteLogEventsQueryResponseDto = exports.RemoteLogEventReadDto = exports.RemoteLogEventsQueryDto = exports.RemoteLogAppsListResponseDto = exports.RemoteLogAppResponseDto = exports.RemoteLogAppsQueryDto = exports.RemoteLogSettingsListResponseDto = exports.RemoteLogSettingsResponseDto = exports.RemoteLogSettingsRemoveDto = exports.RemoteLogSettingsPostDto = exports.RemoteLogSettingsQueryDto = exports.RemoteLogHookOkDto = exports.RemoteLogHookRemoveDto = exports.RemoteLogHookPostDto = exports.RemoteLogHookQueryDto = void 0;
|
|
13
|
+
const class_pipe_1 = require("@rockster/class-pipe");
|
|
14
|
+
const logs_1 = require("@rockster/common/logs");
|
|
15
|
+
const remote_log_search_dto_1 = require("./remote-log-search.dto");
|
|
16
|
+
class RemoteLogHookQueryDto {
|
|
17
|
+
}
|
|
18
|
+
exports.RemoteLogHookQueryDto = RemoteLogHookQueryDto;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_pipe_1.Expose)(),
|
|
21
|
+
(0, class_pipe_1.IsOptional)(),
|
|
22
|
+
(0, class_pipe_1.IsString)({ empty: true }),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], RemoteLogHookQueryDto.prototype, "appId", void 0);
|
|
25
|
+
class RemoteLogHookPostDto {
|
|
26
|
+
}
|
|
27
|
+
exports.RemoteLogHookPostDto = RemoteLogHookPostDto;
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, class_pipe_1.Expose)(),
|
|
30
|
+
(0, class_pipe_1.IsOptional)(),
|
|
31
|
+
(0, class_pipe_1.IsString)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], RemoteLogHookPostDto.prototype, "id", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, class_pipe_1.Expose)(),
|
|
36
|
+
(0, class_pipe_1.IsString)(),
|
|
37
|
+
__metadata("design:type", String)
|
|
38
|
+
], RemoteLogHookPostDto.prototype, "appId", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, class_pipe_1.Expose)(),
|
|
41
|
+
(0, class_pipe_1.IsString)(),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], RemoteLogHookPostDto.prototype, "url", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, class_pipe_1.Expose)(),
|
|
46
|
+
(0, class_pipe_1.IsOptional)(),
|
|
47
|
+
(0, class_pipe_1.IsString)(),
|
|
48
|
+
__metadata("design:type", String)
|
|
49
|
+
], RemoteLogHookPostDto.prototype, "name", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, class_pipe_1.Expose)(),
|
|
52
|
+
(0, class_pipe_1.IsOptional)(),
|
|
53
|
+
(0, class_pipe_1.IsString)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], RemoteLogHookPostDto.prototype, "displayName", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, class_pipe_1.Expose)(),
|
|
58
|
+
(0, class_pipe_1.IsBoolean)(),
|
|
59
|
+
__metadata("design:type", Boolean)
|
|
60
|
+
], RemoteLogHookPostDto.prototype, "enabled", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, class_pipe_1.Expose)(),
|
|
63
|
+
(0, class_pipe_1.IsIn)(Object.values(logs_1.LogHookConditionMode)),
|
|
64
|
+
__metadata("design:type", String)
|
|
65
|
+
], RemoteLogHookPostDto.prototype, "conditionMode", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, class_pipe_1.Expose)(),
|
|
68
|
+
(0, class_pipe_1.IsOptional)(),
|
|
69
|
+
(0, class_pipe_1.IsArray)(),
|
|
70
|
+
__metadata("design:type", Array)
|
|
71
|
+
], RemoteLogHookPostDto.prototype, "logTypes", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, class_pipe_1.Expose)(),
|
|
74
|
+
(0, class_pipe_1.IsOptional)(),
|
|
75
|
+
(0, class_pipe_1.IsObject)(),
|
|
76
|
+
__metadata("design:type", Object)
|
|
77
|
+
], RemoteLogHookPostDto.prototype, "conditionQuery", void 0);
|
|
78
|
+
__decorate([
|
|
79
|
+
(0, class_pipe_1.Expose)(),
|
|
80
|
+
(0, class_pipe_1.IsOptional)(),
|
|
81
|
+
(0, class_pipe_1.IsObject)(),
|
|
82
|
+
__metadata("design:type", Object)
|
|
83
|
+
], RemoteLogHookPostDto.prototype, "aggregatorQuery", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, class_pipe_1.Expose)(),
|
|
86
|
+
(0, class_pipe_1.IsOptional)(),
|
|
87
|
+
(0, class_pipe_1.IsString)(),
|
|
88
|
+
__metadata("design:type", String)
|
|
89
|
+
], RemoteLogHookPostDto.prototype, "groupByField", void 0);
|
|
90
|
+
class RemoteLogHookRemoveDto {
|
|
91
|
+
}
|
|
92
|
+
exports.RemoteLogHookRemoveDto = RemoteLogHookRemoveDto;
|
|
93
|
+
__decorate([
|
|
94
|
+
(0, class_pipe_1.Expose)(),
|
|
95
|
+
(0, class_pipe_1.IsString)(),
|
|
96
|
+
__metadata("design:type", String)
|
|
97
|
+
], RemoteLogHookRemoveDto.prototype, "appId", void 0);
|
|
98
|
+
__decorate([
|
|
99
|
+
(0, class_pipe_1.Expose)(),
|
|
100
|
+
(0, class_pipe_1.IsString)(),
|
|
101
|
+
__metadata("design:type", String)
|
|
102
|
+
], RemoteLogHookRemoveDto.prototype, "id", void 0);
|
|
103
|
+
class RemoteLogHookOkDto {
|
|
104
|
+
}
|
|
105
|
+
exports.RemoteLogHookOkDto = RemoteLogHookOkDto;
|
|
106
|
+
__decorate([
|
|
107
|
+
(0, class_pipe_1.Expose)(),
|
|
108
|
+
(0, class_pipe_1.IsBoolean)(),
|
|
109
|
+
__metadata("design:type", Boolean)
|
|
110
|
+
], RemoteLogHookOkDto.prototype, "ok", void 0);
|
|
111
|
+
__decorate([
|
|
112
|
+
(0, class_pipe_1.Expose)(),
|
|
113
|
+
(0, class_pipe_1.IsOptional)(),
|
|
114
|
+
(0, class_pipe_1.IsString)(),
|
|
115
|
+
__metadata("design:type", String)
|
|
116
|
+
], RemoteLogHookOkDto.prototype, "id", void 0);
|
|
117
|
+
class RemoteLogSettingsQueryDto {
|
|
118
|
+
}
|
|
119
|
+
exports.RemoteLogSettingsQueryDto = RemoteLogSettingsQueryDto;
|
|
120
|
+
class RemoteLogSettingsPostDto {
|
|
121
|
+
}
|
|
122
|
+
exports.RemoteLogSettingsPostDto = RemoteLogSettingsPostDto;
|
|
123
|
+
__decorate([
|
|
124
|
+
(0, class_pipe_1.Expose)(),
|
|
125
|
+
(0, class_pipe_1.IsOptional)(),
|
|
126
|
+
(0, class_pipe_1.IsString)(),
|
|
127
|
+
__metadata("design:type", String)
|
|
128
|
+
], RemoteLogSettingsPostDto.prototype, "id", void 0);
|
|
129
|
+
__decorate([
|
|
130
|
+
(0, class_pipe_1.Expose)(),
|
|
131
|
+
(0, class_pipe_1.IsOptional)(),
|
|
132
|
+
__metadata("design:type", String)
|
|
133
|
+
], RemoteLogSettingsPostDto.prototype, "appId", void 0);
|
|
134
|
+
__decorate([
|
|
135
|
+
(0, class_pipe_1.Expose)(),
|
|
136
|
+
(0, class_pipe_1.IsIn)(Object.values(logs_1.LogClearInterval)),
|
|
137
|
+
__metadata("design:type", String)
|
|
138
|
+
], RemoteLogSettingsPostDto.prototype, "clearInterval", void 0);
|
|
139
|
+
__decorate([
|
|
140
|
+
(0, class_pipe_1.Expose)(),
|
|
141
|
+
(0, class_pipe_1.IsIn)(Object.values(logs_1.LogLevel)),
|
|
142
|
+
__metadata("design:type", String)
|
|
143
|
+
], RemoteLogSettingsPostDto.prototype, "logLevel", void 0);
|
|
144
|
+
class RemoteLogSettingsRemoveDto {
|
|
145
|
+
}
|
|
146
|
+
exports.RemoteLogSettingsRemoveDto = RemoteLogSettingsRemoveDto;
|
|
147
|
+
__decorate([
|
|
148
|
+
(0, class_pipe_1.Expose)(),
|
|
149
|
+
(0, class_pipe_1.IsString)(),
|
|
150
|
+
__metadata("design:type", String)
|
|
151
|
+
], RemoteLogSettingsRemoveDto.prototype, "id", void 0);
|
|
152
|
+
class RemoteLogSettingsResponseDto {
|
|
153
|
+
}
|
|
154
|
+
exports.RemoteLogSettingsResponseDto = RemoteLogSettingsResponseDto;
|
|
155
|
+
__decorate([
|
|
156
|
+
(0, class_pipe_1.Expose)(),
|
|
157
|
+
(0, class_pipe_1.IsOptional)(),
|
|
158
|
+
(0, class_pipe_1.IsString)(),
|
|
159
|
+
__metadata("design:type", String)
|
|
160
|
+
], RemoteLogSettingsResponseDto.prototype, "id", void 0);
|
|
161
|
+
__decorate([
|
|
162
|
+
(0, class_pipe_1.Expose)(),
|
|
163
|
+
(0, class_pipe_1.IsOptional)(),
|
|
164
|
+
__metadata("design:type", String)
|
|
165
|
+
], RemoteLogSettingsResponseDto.prototype, "appId", void 0);
|
|
166
|
+
__decorate([
|
|
167
|
+
(0, class_pipe_1.Expose)(),
|
|
168
|
+
(0, class_pipe_1.IsIn)(Object.values(logs_1.LogClearInterval)),
|
|
169
|
+
__metadata("design:type", String)
|
|
170
|
+
], RemoteLogSettingsResponseDto.prototype, "clearInterval", void 0);
|
|
171
|
+
__decorate([
|
|
172
|
+
(0, class_pipe_1.Expose)(),
|
|
173
|
+
(0, class_pipe_1.IsIn)(Object.values(logs_1.LogLevel)),
|
|
174
|
+
__metadata("design:type", String)
|
|
175
|
+
], RemoteLogSettingsResponseDto.prototype, "logLevel", void 0);
|
|
176
|
+
__decorate([
|
|
177
|
+
(0, class_pipe_1.Expose)(),
|
|
178
|
+
(0, class_pipe_1.IsOptional)(),
|
|
179
|
+
(0, class_pipe_1.IsString)(),
|
|
180
|
+
__metadata("design:type", String)
|
|
181
|
+
], RemoteLogSettingsResponseDto.prototype, "date", void 0);
|
|
182
|
+
class RemoteLogSettingsListResponseDto {
|
|
183
|
+
}
|
|
184
|
+
exports.RemoteLogSettingsListResponseDto = RemoteLogSettingsListResponseDto;
|
|
185
|
+
__decorate([
|
|
186
|
+
(0, class_pipe_1.Expose)(),
|
|
187
|
+
(0, class_pipe_1.IsArray)(),
|
|
188
|
+
(0, class_pipe_1.IsType)(() => RemoteLogSettingsResponseDto),
|
|
189
|
+
__metadata("design:type", Array)
|
|
190
|
+
], RemoteLogSettingsListResponseDto.prototype, "settings", void 0);
|
|
191
|
+
class RemoteLogAppsQueryDto {
|
|
192
|
+
}
|
|
193
|
+
exports.RemoteLogAppsQueryDto = RemoteLogAppsQueryDto;
|
|
194
|
+
__decorate([
|
|
195
|
+
(0, class_pipe_1.Expose)(),
|
|
196
|
+
(0, class_pipe_1.IsOptional)(),
|
|
197
|
+
(0, class_pipe_1.IsString)({ empty: true }),
|
|
198
|
+
__metadata("design:type", String)
|
|
199
|
+
], RemoteLogAppsQueryDto.prototype, "search", void 0);
|
|
200
|
+
__decorate([
|
|
201
|
+
(0, class_pipe_1.Expose)(),
|
|
202
|
+
(0, class_pipe_1.IsOptional)(),
|
|
203
|
+
__metadata("design:type", Number)
|
|
204
|
+
], RemoteLogAppsQueryDto.prototype, "size", void 0);
|
|
205
|
+
class RemoteLogAppResponseDto {
|
|
206
|
+
}
|
|
207
|
+
exports.RemoteLogAppResponseDto = RemoteLogAppResponseDto;
|
|
208
|
+
__decorate([
|
|
209
|
+
(0, class_pipe_1.Expose)(),
|
|
210
|
+
(0, class_pipe_1.IsString)(),
|
|
211
|
+
__metadata("design:type", String)
|
|
212
|
+
], RemoteLogAppResponseDto.prototype, "appId", void 0);
|
|
213
|
+
__decorate([
|
|
214
|
+
(0, class_pipe_1.Expose)(),
|
|
215
|
+
(0, class_pipe_1.IsOptional)(),
|
|
216
|
+
(0, class_pipe_1.IsString)(),
|
|
217
|
+
__metadata("design:type", String)
|
|
218
|
+
], RemoteLogAppResponseDto.prototype, "date", void 0);
|
|
219
|
+
class RemoteLogAppsListResponseDto {
|
|
220
|
+
}
|
|
221
|
+
exports.RemoteLogAppsListResponseDto = RemoteLogAppsListResponseDto;
|
|
222
|
+
__decorate([
|
|
223
|
+
(0, class_pipe_1.Expose)(),
|
|
224
|
+
(0, class_pipe_1.IsArray)(),
|
|
225
|
+
(0, class_pipe_1.IsType)(() => RemoteLogAppResponseDto),
|
|
226
|
+
__metadata("design:type", Array)
|
|
227
|
+
], RemoteLogAppsListResponseDto.prototype, "apps", void 0);
|
|
228
|
+
class RemoteLogEventsQueryDto {
|
|
229
|
+
}
|
|
230
|
+
exports.RemoteLogEventsQueryDto = RemoteLogEventsQueryDto;
|
|
231
|
+
__decorate([
|
|
232
|
+
(0, class_pipe_1.Expose)(),
|
|
233
|
+
(0, class_pipe_1.IsString)(),
|
|
234
|
+
__metadata("design:type", String)
|
|
235
|
+
], RemoteLogEventsQueryDto.prototype, "appId", void 0);
|
|
236
|
+
__decorate([
|
|
237
|
+
(0, class_pipe_1.Expose)(),
|
|
238
|
+
(0, class_pipe_1.IsOptional)(),
|
|
239
|
+
(0, class_pipe_1.IsString)(),
|
|
240
|
+
__metadata("design:type", String)
|
|
241
|
+
], RemoteLogEventsQueryDto.prototype, "hookId", void 0);
|
|
242
|
+
__decorate([
|
|
243
|
+
(0, class_pipe_1.Expose)(),
|
|
244
|
+
(0, class_pipe_1.IsOptional)(),
|
|
245
|
+
(0, class_pipe_1.IsString)(),
|
|
246
|
+
__metadata("design:type", String)
|
|
247
|
+
], RemoteLogEventsQueryDto.prototype, "fromDate", void 0);
|
|
248
|
+
__decorate([
|
|
249
|
+
(0, class_pipe_1.Expose)(),
|
|
250
|
+
(0, class_pipe_1.IsOptional)(),
|
|
251
|
+
(0, class_pipe_1.IsString)(),
|
|
252
|
+
__metadata("design:type", String)
|
|
253
|
+
], RemoteLogEventsQueryDto.prototype, "toDate", void 0);
|
|
254
|
+
__decorate([
|
|
255
|
+
(0, class_pipe_1.Expose)(),
|
|
256
|
+
(0, class_pipe_1.IsOptional)(),
|
|
257
|
+
__metadata("design:type", Number)
|
|
258
|
+
], RemoteLogEventsQueryDto.prototype, "size", void 0);
|
|
259
|
+
__decorate([
|
|
260
|
+
(0, class_pipe_1.Expose)(),
|
|
261
|
+
(0, class_pipe_1.IsOptional)(),
|
|
262
|
+
__metadata("design:type", Boolean)
|
|
263
|
+
], RemoteLogEventsQueryDto.prototype, "includeAggregations", void 0);
|
|
264
|
+
class RemoteLogEventReadDto {
|
|
265
|
+
}
|
|
266
|
+
exports.RemoteLogEventReadDto = RemoteLogEventReadDto;
|
|
267
|
+
__decorate([
|
|
268
|
+
(0, class_pipe_1.Expose)(),
|
|
269
|
+
(0, class_pipe_1.IsString)(),
|
|
270
|
+
__metadata("design:type", String)
|
|
271
|
+
], RemoteLogEventReadDto.prototype, "appId", void 0);
|
|
272
|
+
__decorate([
|
|
273
|
+
(0, class_pipe_1.Expose)(),
|
|
274
|
+
(0, class_pipe_1.IsString)(),
|
|
275
|
+
__metadata("design:type", String)
|
|
276
|
+
], RemoteLogEventReadDto.prototype, "id", void 0);
|
|
277
|
+
class RemoteLogEventsQueryResponseDto extends remote_log_search_dto_1.RemoteLogSearchResponseDto {
|
|
278
|
+
}
|
|
279
|
+
exports.RemoteLogEventsQueryResponseDto = RemoteLogEventsQueryResponseDto;
|
|
280
|
+
//# sourceMappingURL=remote-log-hooks.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remote-log-hooks.dto.js","sourceRoot":"./","sources":["remote-logs/dtos/remote-log-hooks.dto.ts"],"names":[],"mappings":"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"}
|