taon 0.0.0 → 18.0.15
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/README.md +115 -0
- package/assets/shared/shared_folder_info.txt +7 -0
- package/bin/start.js +279 -0
- package/bin/taon +6 -5
- package/bin/taon-debug +5 -5
- package/bin/taon-debug-brk +5 -4
- package/browser/README.md +24 -0
- package/browser/esm2022/lib/base-classes/base-abstract-entity.mjs +18 -0
- package/browser/esm2022/lib/base-classes/base-class.mjs +17 -0
- package/browser/esm2022/lib/base-classes/base-context.mjs +14 -0
- package/browser/esm2022/lib/base-classes/base-controller.mjs +18 -0
- package/browser/esm2022/lib/base-classes/base-crud-controller.mjs +279 -0
- package/browser/esm2022/lib/base-classes/base-entity.mjs +18 -0
- package/browser/esm2022/lib/base-classes/base-injector.mjs +160 -0
- package/browser/esm2022/lib/base-classes/base-provider.mjs +6 -0
- package/browser/esm2022/lib/base-classes/base-repository.mjs +514 -0
- package/browser/esm2022/lib/base-classes/base-subscriber-for-entity.mjs +137 -0
- package/browser/esm2022/lib/base-classes/base-subscriber.mjs +27 -0
- package/browser/esm2022/lib/base-classes/base.mjs +26 -0
- package/browser/esm2022/lib/constants.mjs +4 -0
- package/browser/esm2022/lib/create-context.mjs +87 -0
- package/browser/esm2022/lib/decorators/classes/controller-decorator.mjs +15 -0
- package/browser/esm2022/lib/decorators/classes/entity-decorator.mjs +27 -0
- package/browser/esm2022/lib/decorators/classes/provider-decorator.mjs +15 -0
- package/browser/esm2022/lib/decorators/classes/repository-decorator.mjs +15 -0
- package/browser/esm2022/lib/decorators/classes/subscriber-decorator.mjs +41 -0
- package/browser/esm2022/lib/decorators/http/http-decorators.mjs +22 -0
- package/browser/esm2022/lib/decorators/http/http-methods-decorators.mjs +78 -0
- package/browser/esm2022/lib/decorators/http/http-params-decorators.mjs +47 -0
- package/browser/esm2022/lib/dependency-injection/di-container.mjs +32 -0
- package/browser/esm2022/lib/endpoint-context.mjs +1746 -0
- package/browser/esm2022/lib/entity-process.mjs +207 -0
- package/browser/esm2022/lib/env.mjs +6 -0
- package/browser/esm2022/lib/get-response-value.mjs +41 -0
- package/browser/esm2022/lib/helpers/class-helpers.mjs +183 -0
- package/browser/esm2022/lib/helpers/taon-helpers.mjs +120 -0
- package/browser/esm2022/lib/index.mjs +79 -0
- package/browser/esm2022/lib/inject.mjs +70 -0
- package/browser/esm2022/lib/models.mjs +77 -0
- package/browser/esm2022/lib/orm.mjs +6 -0
- package/browser/esm2022/lib/realtime/realtime-client.mjs +129 -0
- package/browser/esm2022/lib/realtime/realtime-core.mjs +54 -0
- package/browser/esm2022/lib/realtime/realtime-server.mjs +274 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/index.mjs +7 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.mjs +98 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.mjs +45 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.mjs +40 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.mjs +25 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.mjs +4 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc.mjs +49 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.mjs +5 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.mjs +50 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.mjs +48 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.mjs +35 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.mjs +43 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.mjs +4 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock.mjs +28 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy-socket-io.mjs +33 -0
- package/browser/esm2022/lib/realtime/realtime-strategy/realtime-strategy.mjs +10 -0
- package/browser/esm2022/lib/realtime/realtime-subs-manager.mjs +79 -0
- package/browser/esm2022/lib/realtime/realtime.models.mjs +4 -0
- package/browser/esm2022/lib/storage.mjs +5 -0
- package/browser/esm2022/lib/symbols.mjs +89 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.mjs +4 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-control.service.mjs +32 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.mjs +167 -0
- package/browser/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin.service.mjs +64 -0
- package/browser/esm2022/lib/validators.mjs +76 -0
- package/browser/esm2022/public-api.mjs +2 -0
- package/browser/esm2022/taon.mjs +5 -0
- package/browser/fesm2022/taon.mjs +4901 -0
- package/browser/fesm2022/taon.mjs.map +1 -0
- package/browser/index.d.ts +6 -0
- package/browser/lib/base-classes/base-abstract-entity.d.ts +7 -0
- package/browser/lib/base-classes/base-class.d.ts +9 -0
- package/browser/lib/base-classes/base-context.d.ts +17 -0
- package/browser/lib/base-classes/base-controller.d.ts +8 -0
- package/browser/lib/base-classes/base-crud-controller.d.ts +28 -0
- package/browser/lib/base-classes/base-entity.d.ts +8 -0
- package/browser/lib/base-classes/base-injector.d.ts +60 -0
- package/browser/lib/base-classes/base-provider.d.ts +4 -0
- package/browser/lib/base-classes/base-repository.d.ts +249 -0
- package/browser/lib/base-classes/base-subscriber-for-entity.d.ts +82 -0
- package/browser/lib/base-classes/base-subscriber.d.ts +5 -0
- package/browser/lib/base-classes/base.d.ts +36 -0
- package/browser/lib/constants.d.ts +2 -0
- package/browser/lib/create-context.d.ts +25 -0
- package/browser/lib/decorators/classes/controller-decorator.d.ts +13 -0
- package/browser/lib/decorators/classes/entity-decorator.d.ts +17 -0
- package/browser/lib/decorators/classes/provider-decorator.d.ts +5 -0
- package/browser/lib/decorators/classes/repository-decorator.d.ts +5 -0
- package/browser/lib/decorators/classes/subscriber-decorator.d.ts +6 -0
- package/browser/lib/decorators/http/http-decorators.d.ts +18 -0
- package/browser/lib/decorators/http/http-methods-decorators.d.ts +15 -0
- package/browser/lib/decorators/http/http-params-decorators.d.ts +6 -0
- package/browser/lib/dependency-injection/di-container.d.ts +6 -0
- package/browser/lib/endpoint-context.d.ts +117 -0
- package/browser/lib/entity-process.d.ts +40 -0
- package/browser/lib/env.d.ts +3 -0
- package/browser/lib/get-response-value.d.ts +7 -0
- package/browser/lib/helpers/class-helpers.d.ts +19 -0
- package/browser/lib/helpers/taon-helpers.d.ts +17 -0
- package/browser/lib/index.d.ts +113 -0
- package/browser/lib/inject.d.ts +9 -0
- package/browser/lib/models.d.ts +175 -0
- package/browser/lib/orm.d.ts +3 -0
- package/browser/lib/realtime/realtime-client.d.ts +32 -0
- package/browser/lib/realtime/realtime-core.d.ts +41 -0
- package/browser/lib/realtime/realtime-server.d.ts +14 -0
- package/browser/lib/realtime/realtime-strategy/index.d.ts +5 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.d.ts +22 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.d.ts +17 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.d.ts +11 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.d.ts +11 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.d.ts +14 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-ipc.d.ts +23 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.d.ts +3 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.d.ts +17 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.d.ts +18 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.d.ts +12 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.d.ts +14 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.d.ts +12 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-mock.d.ts +15 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy-socket-io.d.ts +17 -0
- package/browser/lib/realtime/realtime-strategy/realtime-strategy.d.ts +13 -0
- package/browser/lib/realtime/realtime-subs-manager.d.ts +15 -0
- package/browser/lib/realtime/realtime.models.d.ts +14 -0
- package/browser/lib/storage.d.ts +2 -0
- package/browser/lib/symbols.d.ts +73 -0
- package/browser/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.d.ts +6 -0
- package/browser/lib/ui/taon-admin-mode-configuration/taon-admin-control.service.d.ts +18 -0
- package/browser/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.d.ts +51 -0
- package/browser/lib/ui/taon-admin-mode-configuration/taon-admin.service.d.ts +25 -0
- package/browser/lib/validators.d.ts +8 -0
- package/browser/package.json +25 -0
- package/browser/public-api.d.ts +2 -0
- package/cli.d.ts +1 -0
- package/cli.js +24 -0
- package/cli.js.map +1 -0
- package/client/README.md +24 -0
- package/client/esm2022/lib/base-classes/base-abstract-entity.mjs +18 -0
- package/client/esm2022/lib/base-classes/base-class.mjs +17 -0
- package/client/esm2022/lib/base-classes/base-context.mjs +14 -0
- package/client/esm2022/lib/base-classes/base-controller.mjs +18 -0
- package/client/esm2022/lib/base-classes/base-crud-controller.mjs +279 -0
- package/client/esm2022/lib/base-classes/base-entity.mjs +18 -0
- package/client/esm2022/lib/base-classes/base-injector.mjs +160 -0
- package/client/esm2022/lib/base-classes/base-provider.mjs +6 -0
- package/client/esm2022/lib/base-classes/base-repository.mjs +514 -0
- package/client/esm2022/lib/base-classes/base-subscriber-for-entity.mjs +137 -0
- package/client/esm2022/lib/base-classes/base-subscriber.mjs +27 -0
- package/client/esm2022/lib/base-classes/base.mjs +26 -0
- package/client/esm2022/lib/constants.mjs +4 -0
- package/client/esm2022/lib/create-context.mjs +87 -0
- package/client/esm2022/lib/decorators/classes/controller-decorator.mjs +15 -0
- package/client/esm2022/lib/decorators/classes/entity-decorator.mjs +27 -0
- package/client/esm2022/lib/decorators/classes/provider-decorator.mjs +15 -0
- package/client/esm2022/lib/decorators/classes/repository-decorator.mjs +15 -0
- package/client/esm2022/lib/decorators/classes/subscriber-decorator.mjs +41 -0
- package/client/esm2022/lib/decorators/http/http-decorators.mjs +22 -0
- package/client/esm2022/lib/decorators/http/http-methods-decorators.mjs +78 -0
- package/client/esm2022/lib/decorators/http/http-params-decorators.mjs +47 -0
- package/client/esm2022/lib/dependency-injection/di-container.mjs +32 -0
- package/client/esm2022/lib/endpoint-context.mjs +1746 -0
- package/client/esm2022/lib/entity-process.mjs +207 -0
- package/client/esm2022/lib/env.mjs +6 -0
- package/client/esm2022/lib/get-response-value.mjs +41 -0
- package/client/esm2022/lib/helpers/class-helpers.mjs +183 -0
- package/client/esm2022/lib/helpers/taon-helpers.mjs +120 -0
- package/client/esm2022/lib/index.mjs +79 -0
- package/client/esm2022/lib/inject.mjs +70 -0
- package/client/esm2022/lib/models.mjs +77 -0
- package/client/esm2022/lib/orm.mjs +6 -0
- package/client/esm2022/lib/realtime/realtime-client.mjs +129 -0
- package/client/esm2022/lib/realtime/realtime-core.mjs +54 -0
- package/client/esm2022/lib/realtime/realtime-server.mjs +274 -0
- package/client/esm2022/lib/realtime/realtime-strategy/index.mjs +7 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.mjs +98 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.mjs +45 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.mjs +40 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.mjs +25 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.mjs +4 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc.mjs +49 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.mjs +5 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.mjs +50 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.mjs +48 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.mjs +35 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.mjs +43 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.mjs +4 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock.mjs +28 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy-socket-io.mjs +33 -0
- package/client/esm2022/lib/realtime/realtime-strategy/realtime-strategy.mjs +10 -0
- package/client/esm2022/lib/realtime/realtime-subs-manager.mjs +79 -0
- package/client/esm2022/lib/realtime/realtime.models.mjs +4 -0
- package/client/esm2022/lib/storage.mjs +5 -0
- package/client/esm2022/lib/symbols.mjs +89 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.mjs +4 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-control.service.mjs +32 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.mjs +167 -0
- package/client/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin.service.mjs +64 -0
- package/client/esm2022/lib/validators.mjs +76 -0
- package/client/esm2022/public-api.mjs +2 -0
- package/client/esm2022/taon.mjs +5 -0
- package/client/fesm2022/taon.mjs +4901 -0
- package/client/fesm2022/taon.mjs.map +1 -0
- package/client/index.d.ts +6 -0
- package/client/lib/base-classes/base-abstract-entity.d.ts +7 -0
- package/client/lib/base-classes/base-class.d.ts +9 -0
- package/client/lib/base-classes/base-context.d.ts +17 -0
- package/client/lib/base-classes/base-controller.d.ts +8 -0
- package/client/lib/base-classes/base-crud-controller.d.ts +28 -0
- package/client/lib/base-classes/base-entity.d.ts +8 -0
- package/client/lib/base-classes/base-injector.d.ts +60 -0
- package/client/lib/base-classes/base-provider.d.ts +4 -0
- package/client/lib/base-classes/base-repository.d.ts +249 -0
- package/client/lib/base-classes/base-subscriber-for-entity.d.ts +82 -0
- package/client/lib/base-classes/base-subscriber.d.ts +5 -0
- package/client/lib/base-classes/base.d.ts +36 -0
- package/client/lib/constants.d.ts +2 -0
- package/client/lib/create-context.d.ts +25 -0
- package/client/lib/decorators/classes/controller-decorator.d.ts +13 -0
- package/client/lib/decorators/classes/entity-decorator.d.ts +17 -0
- package/client/lib/decorators/classes/provider-decorator.d.ts +5 -0
- package/client/lib/decorators/classes/repository-decorator.d.ts +5 -0
- package/client/lib/decorators/classes/subscriber-decorator.d.ts +6 -0
- package/client/lib/decorators/http/http-decorators.d.ts +18 -0
- package/client/lib/decorators/http/http-methods-decorators.d.ts +15 -0
- package/client/lib/decorators/http/http-params-decorators.d.ts +6 -0
- package/client/lib/dependency-injection/di-container.d.ts +6 -0
- package/client/lib/endpoint-context.d.ts +117 -0
- package/client/lib/entity-process.d.ts +40 -0
- package/client/lib/env.d.ts +3 -0
- package/client/lib/get-response-value.d.ts +7 -0
- package/client/lib/helpers/class-helpers.d.ts +19 -0
- package/client/lib/helpers/taon-helpers.d.ts +17 -0
- package/client/lib/index.d.ts +113 -0
- package/client/lib/inject.d.ts +9 -0
- package/client/lib/models.d.ts +175 -0
- package/client/lib/orm.d.ts +3 -0
- package/client/lib/realtime/realtime-client.d.ts +32 -0
- package/client/lib/realtime/realtime-core.d.ts +41 -0
- package/client/lib/realtime/realtime-server.d.ts +14 -0
- package/client/lib/realtime/realtime-strategy/index.d.ts +5 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.d.ts +22 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.d.ts +17 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.d.ts +11 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.d.ts +11 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.d.ts +14 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-ipc.d.ts +23 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.d.ts +3 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.d.ts +17 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.d.ts +18 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.d.ts +12 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.d.ts +14 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.d.ts +12 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-mock.d.ts +15 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy-socket-io.d.ts +17 -0
- package/client/lib/realtime/realtime-strategy/realtime-strategy.d.ts +13 -0
- package/client/lib/realtime/realtime-subs-manager.d.ts +15 -0
- package/client/lib/realtime/realtime.models.d.ts +14 -0
- package/client/lib/storage.d.ts +2 -0
- package/client/lib/symbols.d.ts +73 -0
- package/client/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.d.ts +6 -0
- package/client/lib/ui/taon-admin-mode-configuration/taon-admin-control.service.d.ts +18 -0
- package/client/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.d.ts +51 -0
- package/client/lib/ui/taon-admin-mode-configuration/taon-admin.service.d.ts +25 -0
- package/client/lib/validators.d.ts +8 -0
- package/client/public-api.d.ts +2 -0
- package/index.d.ts +1 -0
- package/index.js +5 -1
- package/index.js.map +1 -0
- package/lib/base-classes/base-abstract-entity.d.ts +6 -0
- package/lib/base-classes/base-abstract-entity.js +40 -0
- package/lib/base-classes/base-abstract-entity.js.map +1 -0
- package/lib/base-classes/base-class.d.ts +8 -0
- package/lib/base-classes/base-class.js +35 -0
- package/lib/base-classes/base-class.js.map +1 -0
- package/lib/base-classes/base-context.d.ts +16 -0
- package/lib/base-classes/base-context.js +15 -0
- package/lib/base-classes/base-context.js.map +1 -0
- package/lib/base-classes/base-controller.d.ts +7 -0
- package/lib/base-classes/base-controller.js +24 -0
- package/lib/base-classes/base-controller.js.map +1 -0
- package/lib/base-classes/base-crud-controller.d.ts +27 -0
- package/lib/base-classes/base-crud-controller.js +385 -0
- package/lib/base-classes/base-crud-controller.js.map +1 -0
- package/lib/base-classes/base-entity.d.ts +7 -0
- package/lib/base-classes/base-entity.js +25 -0
- package/lib/base-classes/base-entity.js.map +1 -0
- package/lib/base-classes/base-injector.d.ts +59 -0
- package/lib/base-classes/base-injector.js +220 -0
- package/lib/base-classes/base-injector.js.map +1 -0
- package/lib/base-classes/base-provider.d.ts +3 -0
- package/lib/base-classes/base-provider.js +14 -0
- package/lib/base-classes/base-provider.js.map +1 -0
- package/lib/base-classes/base-repository.d.ts +254 -0
- package/lib/base-classes/base-repository.js +780 -0
- package/lib/base-classes/base-repository.js.map +1 -0
- package/lib/base-classes/base-subscriber-for-entity.d.ts +81 -0
- package/lib/base-classes/base-subscriber-for-entity.js +136 -0
- package/lib/base-classes/base-subscriber-for-entity.js.map +1 -0
- package/lib/base-classes/base-subscriber.d.ts +4 -0
- package/lib/base-classes/base-subscriber.js +25 -0
- package/lib/base-classes/base-subscriber.js.map +1 -0
- package/lib/base-classes/base.d.ts +35 -0
- package/lib/base-classes/base.js +27 -0
- package/lib/base-classes/base.js.map +1 -0
- package/lib/build-info._auto-generated_.d.ts +1 -0
- package/lib/build-info._auto-generated_.js +5 -0
- package/lib/build-info._auto-generated_.js.map +1 -0
- package/lib/constants.d.ts +1 -0
- package/lib/constants.js +3 -0
- package/lib/constants.js.map +1 -0
- package/lib/create-context.d.ts +24 -0
- package/lib/create-context.js +183 -0
- package/lib/create-context.js.map +1 -0
- package/lib/decorators/classes/controller-decorator.d.ts +12 -0
- package/lib/decorators/classes/controller-decorator.js +24 -0
- package/lib/decorators/classes/controller-decorator.js.map +1 -0
- package/lib/decorators/classes/entity-decorator.d.ts +16 -0
- package/lib/decorators/classes/entity-decorator.js +39 -0
- package/lib/decorators/classes/entity-decorator.js.map +1 -0
- package/lib/decorators/classes/provider-decorator.d.ts +4 -0
- package/lib/decorators/classes/provider-decorator.js +24 -0
- package/lib/decorators/classes/provider-decorator.js.map +1 -0
- package/lib/decorators/classes/repository-decorator.d.ts +4 -0
- package/lib/decorators/classes/repository-decorator.js +24 -0
- package/lib/decorators/classes/repository-decorator.js.map +1 -0
- package/lib/decorators/classes/subscriber-decorator.d.ts +5 -0
- package/lib/decorators/classes/subscriber-decorator.js +75 -0
- package/lib/decorators/classes/subscriber-decorator.js.map +1 -0
- package/lib/decorators/http/http-decorators.d.ts +17 -0
- package/lib/decorators/http/http-decorators.js +23 -0
- package/lib/decorators/http/http-decorators.js.map +1 -0
- package/lib/decorators/http/http-methods-decorators.d.ts +14 -0
- package/lib/decorators/http/http-methods-decorators.js +91 -0
- package/lib/decorators/http/http-methods-decorators.js.map +1 -0
- package/lib/decorators/http/http-params-decorators.d.ts +5 -0
- package/lib/decorators/http/http-params-decorators.js +55 -0
- package/lib/decorators/http/http-params-decorators.js.map +1 -0
- package/lib/dependency-injection/di-container.d.ts +5 -0
- package/lib/dependency-injection/di-container.js +40 -0
- package/lib/dependency-injection/di-container.js.map +1 -0
- package/lib/endpoint-context.d.ts +117 -0
- package/lib/endpoint-context.js +2128 -0
- package/lib/endpoint-context.js.map +1 -0
- package/lib/entity-process.d.ts +39 -0
- package/lib/entity-process.js +261 -0
- package/lib/entity-process.js.map +1 -0
- package/lib/env.d.ts +2 -0
- package/lib/env.js +7 -0
- package/lib/env.js.map +1 -0
- package/lib/formly/formly-group-wrapper-component.d.ts +5 -0
- package/lib/formly/formly-group-wrapper-component.js +28 -0
- package/lib/formly/formly-group-wrapper-component.js.map +1 -0
- package/lib/formly/formly-repeat-component.d.ts +5 -0
- package/lib/formly/formly-repeat-component.js +47 -0
- package/lib/formly/formly-repeat-component.js.map +1 -0
- package/lib/formly/formly.models.d.ts +1 -0
- package/lib/formly/formly.models.js +3 -0
- package/lib/formly/formly.models.js.map +1 -0
- package/lib/formly/fromly.d.ts +16 -0
- package/lib/formly/fromly.js +213 -0
- package/lib/formly/fromly.js.map +1 -0
- package/lib/formly/type-from-entity.d.ts +20 -0
- package/lib/formly/type-from-entity.js +65 -0
- package/lib/formly/type-from-entity.js.map +1 -0
- package/lib/get-response-value.d.ts +6 -0
- package/lib/get-response-value.js +65 -0
- package/lib/get-response-value.js.map +1 -0
- package/lib/helpers/class-helpers.d.ts +18 -0
- package/lib/helpers/class-helpers.js +227 -0
- package/lib/helpers/class-helpers.js.map +1 -0
- package/lib/helpers/taon-helpers.d.ts +16 -0
- package/lib/helpers/taon-helpers.js +144 -0
- package/lib/helpers/taon-helpers.js.map +1 -0
- package/lib/index.d.ts +112 -0
- package/lib/index.js +113 -0
- package/lib/index.js.map +1 -0
- package/lib/inject.d.ts +8 -0
- package/lib/inject.js +84 -0
- package/lib/inject.js.map +1 -0
- package/lib/models.d.ts +180 -0
- package/lib/models.js +107 -0
- package/lib/models.js.map +1 -0
- package/lib/orm.d.ts +51 -0
- package/lib/orm.js +79 -0
- package/lib/orm.js.map +1 -0
- package/lib/realtime/realtime-client.d.ts +31 -0
- package/lib/realtime/realtime-client.js +158 -0
- package/lib/realtime/realtime-client.js.map +1 -0
- package/lib/realtime/realtime-core.d.ts +40 -0
- package/lib/realtime/realtime-core.js +72 -0
- package/lib/realtime/realtime-core.js.map +1 -0
- package/lib/realtime/realtime-server.d.ts +13 -0
- package/lib/realtime/realtime-server.js +193 -0
- package/lib/realtime/realtime-server.js.map +1 -0
- package/lib/realtime/realtime-strategy/index.d.ts +4 -0
- package/lib/realtime/realtime-strategy/index.js +8 -0
- package/lib/realtime/realtime-strategy/index.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/index.d.ts +0 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/index.js +5 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/index.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.d.ts +22 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.js +139 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.d.ts +16 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.js +68 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.d.ts +10 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.js +56 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.d.ts +10 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.js +50 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.d.ts +13 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.js +3 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc.d.ts +22 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc.js +68 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-ipc.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.d.ts +2 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.js +6 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.d.ts +16 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.js +54 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.d.ts +17 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.js +52 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.d.ts +11 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.js +39 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.d.ts +13 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.js +46 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.d.ts +11 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.js +3 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock.d.ts +14 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock.js +42 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-mock.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-socket-io.d.ts +17 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-socket-io.js +48 -0
- package/lib/realtime/realtime-strategy/realtime-strategy-socket-io.js.map +1 -0
- package/lib/realtime/realtime-strategy/realtime-strategy.d.ts +12 -0
- package/lib/realtime/realtime-strategy/realtime-strategy.js +14 -0
- package/lib/realtime/realtime-strategy/realtime-strategy.js.map +1 -0
- package/lib/realtime/realtime-subs-manager.d.ts +14 -0
- package/lib/realtime/realtime-subs-manager.js +102 -0
- package/lib/realtime/realtime-subs-manager.js.map +1 -0
- package/lib/realtime/realtime.models.d.ts +13 -0
- package/lib/realtime/realtime.models.js +3 -0
- package/lib/realtime/realtime.models.js.map +1 -0
- package/lib/storage.d.ts +1 -0
- package/lib/storage.js +6 -0
- package/lib/storage.js.map +1 -0
- package/lib/symbols.d.ts +72 -0
- package/lib/symbols.js +91 -0
- package/lib/symbols.js.map +1 -0
- package/lib/ui/directives/firedev-inject-html.directive.d.ts +6 -0
- package/lib/ui/directives/firedev-long-press.directive.d.ts +22 -0
- package/lib/ui/directives/index.d.ts +4 -0
- package/lib/ui/directives/index.js +5 -0
- package/lib/ui/directives/index.js.map +1 -0
- package/lib/ui/directives/safe.pipe.d.ts +7 -0
- package/lib/ui/directives/view-mode.d.ts +5 -0
- package/lib/ui/directives/view-mode.js +10 -0
- package/lib/ui/directives/view-mode.js.map +1 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.d.ts +2 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.js +5 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.js.map +1 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.component.d.ts +31 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.module.d.ts +2 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/index.d.ts +1 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/index.js +5 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/index.js.map +1 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/taon-db-admin.component.d.ts +9 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.d.ts +2 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.js +5 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.js.map +1 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.component.d.ts +14 -0
- package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.module.d.ts +2 -0
- package/lib/ui/taon-admin-mode-configuration/index.d.ts +4 -0
- package/lib/ui/taon-admin-mode-configuration/index.js +5 -0
- package/lib/ui/taon-admin-mode-configuration/index.js.map +1 -0
- package/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.d.ts +5 -0
- package/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.js +3 -0
- package/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.js.map +1 -0
- package/lib/ui/taon-admin-mode-configuration/taon-admin-control.service.d.ts +14 -0
- package/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.d.ts +47 -0
- package/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.module.d.ts +2 -0
- package/lib/ui/taon-admin-mode-configuration/taon-admin.service.d.ts +21 -0
- package/lib/ui/taon-github-fork-me-corner/index.d.ts +2 -0
- package/lib/ui/taon-github-fork-me-corner/index.js +5 -0
- package/lib/ui/taon-github-fork-me-corner/index.js.map +1 -0
- package/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.component.d.ts +3 -0
- package/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.module.d.ts +2 -0
- package/lib/ui/taon-github-fork-me-ribbon/index.d.ts +2 -0
- package/lib/ui/taon-github-fork-me-ribbon/index.js +5 -0
- package/lib/ui/taon-github-fork-me-ribbon/index.js.map +1 -0
- package/lib/ui/taon-github-fork-me-ribbon/taon-github-fork-me-ribbon.component.d.ts +3 -0
- package/lib/ui/taon-github-fork-me-ribbon/taon-github-fork-me-ribbon.module.d.ts +2 -0
- package/lib/ui/taon-notifications/index.d.ts +4 -0
- package/lib/ui/taon-notifications/index.js +11 -0
- package/lib/ui/taon-notifications/index.js.map +1 -0
- package/lib/ui/taon-notifications/taon-notifications.component.d.ts +9 -0
- package/lib/ui/taon-notifications/taon-notifications.models.d.ts +6 -0
- package/lib/ui/taon-notifications/taon-notifications.models.js +5 -0
- package/lib/ui/taon-notifications/taon-notifications.models.js.map +1 -0
- package/lib/ui/taon-notifications/taon-notifications.module.d.ts +2 -0
- package/lib/ui/taon-notifications/taon-notifications.service.d.ts +11 -0
- package/lib/ui/taon-progress-bar/index.d.ts +2 -0
- package/lib/ui/taon-progress-bar/index.js +5 -0
- package/lib/ui/taon-progress-bar/index.js.map +1 -0
- package/lib/ui/taon-progress-bar/taon-progress-bar.component.d.ts +14 -0
- package/lib/ui/taon-progress-bar/taon-progress-bar.module.d.ts +2 -0
- package/lib/ui/taon-session-passcode/index.d.ts +1 -0
- package/lib/ui/taon-session-passcode/index.js +5 -0
- package/lib/ui/taon-session-passcode/index.js.map +1 -0
- package/lib/ui/taon-session-passcode/taon-session-passcode.component.d.ts +35 -0
- package/lib/ui/taon.models.d.ts +11 -0
- package/lib/ui/taon.models.js +3 -0
- package/lib/ui/taon.models.js.map +1 -0
- package/lib/ui/toan-full-material.module.d.ts +2 -0
- package/lib/validators.d.ts +7 -0
- package/lib/validators.js +53 -0
- package/lib/validators.js.map +1 -0
- package/old-app .d.ts +0 -0
- package/old-app .js +115 -0
- package/old-app .js.map +1 -0
- package/package.json +74 -11
- package/playground.d.ts +0 -0
- package/playground.js +172 -0
- package/playground.js.map +1 -0
- package/src.d.ts +6 -0
- package/taon.jsonc +48 -0
- package/tmp-environment.json +392 -0
- package/websql/README.md +24 -0
- package/websql/esm2022/lib/base-classes/base-abstract-entity.mjs +25 -0
- package/websql/esm2022/lib/base-classes/base-class.mjs +17 -0
- package/websql/esm2022/lib/base-classes/base-context.mjs +14 -0
- package/websql/esm2022/lib/base-classes/base-controller.mjs +18 -0
- package/websql/esm2022/lib/base-classes/base-crud-controller.mjs +238 -0
- package/websql/esm2022/lib/base-classes/base-entity.mjs +16 -0
- package/websql/esm2022/lib/base-classes/base-injector.mjs +160 -0
- package/websql/esm2022/lib/base-classes/base-provider.mjs +6 -0
- package/websql/esm2022/lib/base-classes/base-repository.mjs +431 -0
- package/websql/esm2022/lib/base-classes/base-subscriber-for-entity.mjs +137 -0
- package/websql/esm2022/lib/base-classes/base-subscriber.mjs +27 -0
- package/websql/esm2022/lib/base-classes/base.mjs +26 -0
- package/websql/esm2022/lib/constants.mjs +4 -0
- package/websql/esm2022/lib/create-context.mjs +86 -0
- package/websql/esm2022/lib/decorators/classes/controller-decorator.mjs +15 -0
- package/websql/esm2022/lib/decorators/classes/entity-decorator.mjs +25 -0
- package/websql/esm2022/lib/decorators/classes/provider-decorator.mjs +15 -0
- package/websql/esm2022/lib/decorators/classes/repository-decorator.mjs +15 -0
- package/websql/esm2022/lib/decorators/classes/subscriber-decorator.mjs +41 -0
- package/websql/esm2022/lib/decorators/http/http-decorators.mjs +22 -0
- package/websql/esm2022/lib/decorators/http/http-methods-decorators.mjs +78 -0
- package/websql/esm2022/lib/decorators/http/http-params-decorators.mjs +47 -0
- package/websql/esm2022/lib/dependency-injection/di-container.mjs +32 -0
- package/websql/esm2022/lib/endpoint-context.mjs +1506 -0
- package/websql/esm2022/lib/entity-process.mjs +207 -0
- package/websql/esm2022/lib/env.mjs +6 -0
- package/websql/esm2022/lib/get-response-value.mjs +45 -0
- package/websql/esm2022/lib/helpers/class-helpers.mjs +183 -0
- package/websql/esm2022/lib/helpers/taon-helpers.mjs +120 -0
- package/websql/esm2022/lib/index.mjs +81 -0
- package/websql/esm2022/lib/inject.mjs +70 -0
- package/websql/esm2022/lib/models.mjs +70 -0
- package/websql/esm2022/lib/orm.mjs +60 -0
- package/websql/esm2022/lib/realtime/realtime-client.mjs +129 -0
- package/websql/esm2022/lib/realtime/realtime-core.mjs +54 -0
- package/websql/esm2022/lib/realtime/realtime-server.mjs +158 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/index.mjs +7 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.mjs +98 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.mjs +45 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.mjs +40 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.mjs +25 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.mjs +4 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-ipc.mjs +48 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.mjs +5 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.mjs +50 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.mjs +48 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.mjs +35 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.mjs +43 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.mjs +4 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-mock.mjs +28 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy-socket-io.mjs +33 -0
- package/websql/esm2022/lib/realtime/realtime-strategy/realtime-strategy.mjs +10 -0
- package/websql/esm2022/lib/realtime/realtime-subs-manager.mjs +79 -0
- package/websql/esm2022/lib/realtime/realtime.models.mjs +4 -0
- package/websql/esm2022/lib/storage.mjs +5 -0
- package/websql/esm2022/lib/symbols.mjs +89 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.mjs +4 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-control.service.mjs +32 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.mjs +167 -0
- package/websql/esm2022/lib/ui/taon-admin-mode-configuration/taon-admin.service.mjs +64 -0
- package/websql/esm2022/lib/validators.mjs +76 -0
- package/websql/esm2022/public-api.mjs +2 -0
- package/websql/esm2022/taon.mjs +5 -0
- package/websql/fesm2022/taon.mjs +4595 -0
- package/websql/fesm2022/taon.mjs.map +1 -0
- package/websql/index.d.ts +6 -0
- package/websql/lib/base-classes/base-abstract-entity.d.ts +7 -0
- package/websql/lib/base-classes/base-class.d.ts +9 -0
- package/websql/lib/base-classes/base-context.d.ts +17 -0
- package/websql/lib/base-classes/base-controller.d.ts +8 -0
- package/websql/lib/base-classes/base-crud-controller.d.ts +28 -0
- package/websql/lib/base-classes/base-entity.d.ts +8 -0
- package/websql/lib/base-classes/base-injector.d.ts +60 -0
- package/websql/lib/base-classes/base-provider.d.ts +4 -0
- package/websql/lib/base-classes/base-repository.d.ts +255 -0
- package/websql/lib/base-classes/base-subscriber-for-entity.d.ts +82 -0
- package/websql/lib/base-classes/base-subscriber.d.ts +5 -0
- package/websql/lib/base-classes/base.d.ts +36 -0
- package/websql/lib/constants.d.ts +2 -0
- package/websql/lib/create-context.d.ts +25 -0
- package/websql/lib/decorators/classes/controller-decorator.d.ts +13 -0
- package/websql/lib/decorators/classes/entity-decorator.d.ts +17 -0
- package/websql/lib/decorators/classes/provider-decorator.d.ts +5 -0
- package/websql/lib/decorators/classes/repository-decorator.d.ts +5 -0
- package/websql/lib/decorators/classes/subscriber-decorator.d.ts +6 -0
- package/websql/lib/decorators/http/http-decorators.d.ts +18 -0
- package/websql/lib/decorators/http/http-methods-decorators.d.ts +15 -0
- package/websql/lib/decorators/http/http-params-decorators.d.ts +6 -0
- package/websql/lib/dependency-injection/di-container.d.ts +6 -0
- package/websql/lib/endpoint-context.d.ts +117 -0
- package/websql/lib/entity-process.d.ts +40 -0
- package/websql/lib/env.d.ts +3 -0
- package/websql/lib/get-response-value.d.ts +7 -0
- package/websql/lib/helpers/class-helpers.d.ts +19 -0
- package/websql/lib/helpers/taon-helpers.d.ts +17 -0
- package/websql/lib/index.d.ts +113 -0
- package/websql/lib/inject.d.ts +9 -0
- package/websql/lib/models.d.ts +181 -0
- package/websql/lib/orm.d.ts +52 -0
- package/websql/lib/realtime/realtime-client.d.ts +32 -0
- package/websql/lib/realtime/realtime-core.d.ts +41 -0
- package/websql/lib/realtime/realtime-server.d.ts +14 -0
- package/websql/lib/realtime/realtime-strategy/index.d.ts +5 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.d.ts +22 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.d.ts +17 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.d.ts +11 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.d.ts +11 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.d.ts +14 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-ipc.d.ts +23 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.d.ts +3 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.d.ts +17 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.d.ts +18 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.d.ts +12 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.d.ts +14 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.d.ts +12 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-mock.d.ts +15 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy-socket-io.d.ts +17 -0
- package/websql/lib/realtime/realtime-strategy/realtime-strategy.d.ts +13 -0
- package/websql/lib/realtime/realtime-subs-manager.d.ts +15 -0
- package/websql/lib/realtime/realtime.models.d.ts +14 -0
- package/websql/lib/storage.d.ts +2 -0
- package/websql/lib/symbols.d.ts +73 -0
- package/websql/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.d.ts +6 -0
- package/websql/lib/ui/taon-admin-mode-configuration/taon-admin-control.service.d.ts +18 -0
- package/websql/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.d.ts +51 -0
- package/websql/lib/ui/taon-admin-mode-configuration/taon-admin.service.d.ts +25 -0
- package/websql/lib/validators.d.ts +8 -0
- package/websql/package.json +25 -0
- package/websql/public-api.d.ts +2 -0
package/playground.js
ADDED
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
// class Pilot {
|
|
2
|
+
// id: string;
|
|
3
|
+
// name: string;
|
|
4
|
+
// airplane: Airplane;
|
|
5
|
+
// }
|
|
6
|
+
// class Airplane {
|
|
7
|
+
// serial_number: string;
|
|
8
|
+
// pilot: Pilot;
|
|
9
|
+
// secondPilot: Pilot;
|
|
10
|
+
// }
|
|
11
|
+
// const pilot: Pilot = void 0;
|
|
12
|
+
// pilot.airplane
|
|
13
|
+
// /* */
|
|
14
|
+
// .secondPilot
|
|
15
|
+
// .name
|
|
16
|
+
// import { QueryBuilder, SelectQueryBuilder } from 'taon-typeorm'
|
|
17
|
+
// type BaseQueryBuilder<T> = Pick<QueryBuilder<T>, 'select'>
|
|
18
|
+
// type BaseSelectQueryBuilder<T> = Pick<SelectQueryBuilder<T>, 'getMany' | 'delete' | 'getManyAndCount'>
|
|
19
|
+
// export class BrowserQueryBuilder<T> implements BaseQueryBuilder<T> {
|
|
20
|
+
// // @ts-ignore
|
|
21
|
+
// select(): BaseSelectQueryBuilder<T>
|
|
22
|
+
// // @ts-ignore
|
|
23
|
+
// select(selection: string, selectionAliasName?: string): BaseSelectQueryBuilder<T>
|
|
24
|
+
// // @ts-ignore
|
|
25
|
+
// select(selection: string[]): BaseSelectQueryBuilder<T>
|
|
26
|
+
// // @ts-ignore
|
|
27
|
+
// select(selection?: any, selectionAliasName?: any): BaseSelectQueryBuilder<T> {
|
|
28
|
+
// return
|
|
29
|
+
// }
|
|
30
|
+
// }
|
|
31
|
+
// const c: BrowserQueryBuilder<Pilot>;
|
|
32
|
+
// c.select('').delete('')
|
|
33
|
+
// import { of, delay, map, delayWhen, Observable, from } from 'rxjs';
|
|
34
|
+
// class Pilot {
|
|
35
|
+
// id: string;
|
|
36
|
+
// name: string;
|
|
37
|
+
// }
|
|
38
|
+
// class Airplane {
|
|
39
|
+
// serial_number: string;
|
|
40
|
+
// pilot: Pilot;
|
|
41
|
+
// secondPilot: Pilot;
|
|
42
|
+
// }
|
|
43
|
+
// type Operator = '<=' | '>=' | '=';
|
|
44
|
+
// class QueryBuilder<T> {
|
|
45
|
+
// static from<T>() {
|
|
46
|
+
// return new QueryBuilder<T>();
|
|
47
|
+
// }
|
|
48
|
+
// select(props: keyof T) {
|
|
49
|
+
// return new QueryBuilderSelect<T>()
|
|
50
|
+
// }
|
|
51
|
+
// }
|
|
52
|
+
// export type OnlyGql = {
|
|
53
|
+
// graphql: string;
|
|
54
|
+
// }
|
|
55
|
+
// export type Rest = {
|
|
56
|
+
// queryParams: string;
|
|
57
|
+
// }
|
|
58
|
+
// function RestQuery<T = any, KEY = keyof T>(queryParams?: any) {
|
|
59
|
+
// const self = this;
|
|
60
|
+
// const res = {
|
|
61
|
+
// select(property: KEY) {
|
|
62
|
+
// return self as typeof res;
|
|
63
|
+
// }, // @ts-ignore
|
|
64
|
+
// where(property: `${KEY} ${Operator} ${KEY}`) {
|
|
65
|
+
// return self as typeof res;
|
|
66
|
+
// },
|
|
67
|
+
// join<ANOTHER_ENTITY>() {
|
|
68
|
+
// return self as typeof res;
|
|
69
|
+
// },
|
|
70
|
+
// like() {
|
|
71
|
+
// return self as typeof res;
|
|
72
|
+
// }
|
|
73
|
+
// };
|
|
74
|
+
// return res;
|
|
75
|
+
// }
|
|
76
|
+
// RestQuery<Airplane>().select('pilot').where('secondPilot <= secondPilot')
|
|
77
|
+
// // const asd = gql`
|
|
78
|
+
// // `;
|
|
79
|
+
// class QueryBuilderSelect<T> {
|
|
80
|
+
// graphql: string;
|
|
81
|
+
// }
|
|
82
|
+
// const AirplaneEntity = {};
|
|
83
|
+
// QueryBuilder.from<Airplane>()
|
|
84
|
+
// .select('pilot').where('pilot')
|
|
85
|
+
// type Info = {
|
|
86
|
+
// }
|
|
87
|
+
// // function joinWith(entity) {
|
|
88
|
+
// // return function <T>(fn: (entity: T) => Info) {
|
|
89
|
+
// // }
|
|
90
|
+
// // }
|
|
91
|
+
// // export interface UnaryFunction<T, R> {
|
|
92
|
+
// // (source: T): R;
|
|
93
|
+
// // }
|
|
94
|
+
// // export function identity<T>(x: T): T {
|
|
95
|
+
// // return x;
|
|
96
|
+
// // }
|
|
97
|
+
// // function queryBuilder<D = any>() {
|
|
98
|
+
// // return {
|
|
99
|
+
// // pipe: pipe<D>()
|
|
100
|
+
// // };
|
|
101
|
+
// // }
|
|
102
|
+
// // queryBuilder<Pilot>().pipe(
|
|
103
|
+
// // map(a => a. )
|
|
104
|
+
// // )
|
|
105
|
+
// // export function pipe(): typeof identity;
|
|
106
|
+
// // export function pipe<T, A>(fn1: UnaryFunction<T, A>): UnaryFunction<T, A>;
|
|
107
|
+
// // export function pipe<T, A, B>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>): UnaryFunction<T, B>;
|
|
108
|
+
// // export function pipe<T, A, B, C>(fn1: UnaryFunction<T, A>, fn2: UnaryFunction<A, B>, fn3: UnaryFunction<B, C>): UnaryFunction<T, C>;
|
|
109
|
+
// // export function pipe<T, A, B, C, D>(
|
|
110
|
+
// // fn1: UnaryFunction<T, A>,
|
|
111
|
+
// // fn2: UnaryFunction<A, B>,
|
|
112
|
+
// // fn3: UnaryFunction<B, C>,
|
|
113
|
+
// // fn4: UnaryFunction<C, D>
|
|
114
|
+
// // ): UnaryFunction<T, D>;
|
|
115
|
+
// // export function pipe<T, A, B, C, D, E>(
|
|
116
|
+
// // fn1: UnaryFunction<T, A>,
|
|
117
|
+
// // fn2: UnaryFunction<A, B>,
|
|
118
|
+
// // fn3: UnaryFunction<B, C>,
|
|
119
|
+
// // fn4: UnaryFunction<C, D>,
|
|
120
|
+
// // fn5: UnaryFunction<D, E>
|
|
121
|
+
// // ): UnaryFunction<T, E>;
|
|
122
|
+
// // export function pipe<T, A, B, C, D, E, F>(
|
|
123
|
+
// // fn1: UnaryFunction<T, A>,
|
|
124
|
+
// // fn2: UnaryFunction<A, B>,
|
|
125
|
+
// // fn3: UnaryFunction<B, C>,
|
|
126
|
+
// // fn4: UnaryFunction<C, D>,
|
|
127
|
+
// // fn5: UnaryFunction<D, E>,
|
|
128
|
+
// // fn6: UnaryFunction<E, F>
|
|
129
|
+
// // ): UnaryFunction<T, F>;
|
|
130
|
+
// // export function pipe<T, A, B, C, D, E, F, G>(
|
|
131
|
+
// // fn1: UnaryFunction<T, A>,
|
|
132
|
+
// // fn2: UnaryFunction<A, B>,
|
|
133
|
+
// // fn3: UnaryFunction<B, C>,
|
|
134
|
+
// // fn4: UnaryFunction<C, D>,
|
|
135
|
+
// // fn5: UnaryFunction<D, E>,
|
|
136
|
+
// // fn6: UnaryFunction<E, F>,
|
|
137
|
+
// // fn7: UnaryFunction<F, G>
|
|
138
|
+
// // ): UnaryFunction<T, G>;
|
|
139
|
+
// // export function pipe<T, A, B, C, D, E, F, G, H>(
|
|
140
|
+
// // fn1: UnaryFunction<T, A>,
|
|
141
|
+
// // fn2: UnaryFunction<A, B>,
|
|
142
|
+
// // fn3: UnaryFunction<B, C>,
|
|
143
|
+
// // fn4: UnaryFunction<C, D>,
|
|
144
|
+
// // fn5: UnaryFunction<D, E>,
|
|
145
|
+
// // fn6: UnaryFunction<E, F>,
|
|
146
|
+
// // fn7: UnaryFunction<F, G>,
|
|
147
|
+
// // fn8: UnaryFunction<G, H>
|
|
148
|
+
// // ): UnaryFunction<T, H>;
|
|
149
|
+
// // export function pipe<T, A, B, C, D, E, F, G, H, I>(
|
|
150
|
+
// // fn1: UnaryFunction<T, A>,
|
|
151
|
+
// // fn2: UnaryFunction<A, B>,
|
|
152
|
+
// // fn3: UnaryFunction<B, C>,
|
|
153
|
+
// // fn4: UnaryFunction<C, D>,
|
|
154
|
+
// // fn5: UnaryFunction<D, E>,
|
|
155
|
+
// // fn6: UnaryFunction<E, F>,
|
|
156
|
+
// // fn7: UnaryFunction<F, G>,
|
|
157
|
+
// // fn8: UnaryFunction<G, H>,
|
|
158
|
+
// // fn9: UnaryFunction<H, I>
|
|
159
|
+
// // ): UnaryFunction<T, I>;
|
|
160
|
+
// // export function pipe<T, A, B, C, D, E, F, G, H, I>(
|
|
161
|
+
// // fn1: UnaryFunction<T, A>,
|
|
162
|
+
// // fn2: UnaryFunction<A, B>,
|
|
163
|
+
// // fn3: UnaryFunction<B, C>,
|
|
164
|
+
// // fn4: UnaryFunction<C, D>,
|
|
165
|
+
// // fn5: UnaryFunction<D, E>,
|
|
166
|
+
// // fn6: UnaryFunction<E, F>,
|
|
167
|
+
// // fn7: UnaryFunction<F, G>,
|
|
168
|
+
// // fn8: UnaryFunction<G, H>,
|
|
169
|
+
// // fn9: UnaryFunction<H, I>,
|
|
170
|
+
// // ...fns: UnaryFunction<any, any>[]
|
|
171
|
+
// // ): UnaryFunction<T, unknown>;
|
|
172
|
+
//# sourceMappingURL=playground.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"playground.js","sourceRoot":"","sources":[""],"names":[],"mappings":"AAAA,gBAAgB;AAEhB,gBAAgB;AAChB,kBAAkB;AAClB,wBAAwB;AACxB,IAAI;AAEJ,mBAAmB;AACnB,2BAA2B;AAC3B,kBAAkB;AAClB,wBAAwB;AACxB,IAAI;AAEJ,+BAA+B;AAC/B,iBAAiB;AACjB,UAAU;AACV,iBAAiB;AACjB,UAAU;AAEV,kEAAkE;AAElE,6DAA6D;AAC7D,yGAAyG;AAEzG,uEAAuE;AAEvE,kBAAkB;AAClB,wCAAwC;AACxC,kBAAkB;AAClB,sFAAsF;AACtF,kBAAkB;AAClB,2DAA2D;AAC3D,kBAAkB;AAClB,mFAAmF;AACnF,aAAa;AACb,MAAM;AAEN,IAAI;AAEJ,uCAAuC;AACvC,0BAA0B;AAE1B,sEAAsE;AAEtE,gBAAgB;AAEhB,gBAAgB;AAChB,kBAAkB;AAClB,IAAI;AAEJ,mBAAmB;AACnB,2BAA2B;AAC3B,kBAAkB;AAClB,wBAAwB;AACxB,IAAI;AAEJ,qCAAqC;AAErC,0BAA0B;AAE1B,uBAAuB;AACvB,oCAAoC;AACpC,MAAM;AAEN,6BAA6B;AAC7B,yCAAyC;AACzC,MAAM;AAEN,IAAI;AAEJ,0BAA0B;AAC1B,qBAAqB;AACrB,IAAI;AAEJ,uBAAuB;AACvB,yBAAyB;AACzB,IAAI;AAEJ,kEAAkE;AAClE,uBAAuB;AACvB,kBAAkB;AAClB,8BAA8B;AAC9B,mCAAmC;AACnC,uBAAuB;AACvB,qDAAqD;AACrD,mCAAmC;AACnC,SAAS;AACT,+BAA+B;AAC/B,mCAAmC;AACnC,SAAS;AACT,eAAe;AACf,mCAAmC;AACnC,QAAQ;AACR,OAAO;AACP,gBAAgB;AAChB,IAAI;AAEJ,4EAA4E;AAE5E,sBAAsB;AAEtB,QAAQ;AAER,gCAAgC;AAEhC,qBAAqB;AAErB,IAAI;AAEJ,6BAA6B;AAE7B,gCAAgC;AAChC,oCAAoC;AAEpC,gBAAgB;AAEhB,IAAI;AAEJ,iCAAiC;AACjC,sDAAsD;AAEtD,SAAS;AACT,OAAO;AAEP,4CAA4C;AAC5C,uBAAuB;AACvB,OAAO;AAEP,4CAA4C;AAC5C,iBAAiB;AACjB,OAAO;AAEP,wCAAwC;AACxC,gBAAgB;AAChB,yBAAyB;AACzB,UAAU;AACV,OAAO;AAEP,iCAAiC;AACjC,qBAAqB;AACrB,OAAO;AAEP,8CAA8C;AAC9C,gFAAgF;AAChF,6GAA6G;AAC7G,0IAA0I;AAC1I,0CAA0C;AAC1C,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,gCAAgC;AAChC,6BAA6B;AAC7B,6CAA6C;AAC7C,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,gCAAgC;AAChC,6BAA6B;AAC7B,gDAAgD;AAChD,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,gCAAgC;AAChC,6BAA6B;AAC7B,mDAAmD;AACnD,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,gCAAgC;AAChC,6BAA6B;AAC7B,sDAAsD;AACtD,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,gCAAgC;AAChC,6BAA6B;AAC7B,yDAAyD;AACzD,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,gCAAgC;AAChC,6BAA6B;AAC7B,yDAAyD;AACzD,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,iCAAiC;AACjC,yCAAyC;AACzC,mCAAmC"}
|
package/src.d.ts
ADDED
package/taon.jsonc
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resources": ["README.md", "bin"],
|
|
3
|
+
|
|
4
|
+
"overrided": {
|
|
5
|
+
"linkedFolders": [],
|
|
6
|
+
"includeAsDev": [],
|
|
7
|
+
|
|
8
|
+
"includeOnly": [
|
|
9
|
+
"tnp",
|
|
10
|
+
"tslib",
|
|
11
|
+
"ora",
|
|
12
|
+
"ng2-rest",
|
|
13
|
+
"json10",
|
|
14
|
+
"lodash-walk-object",
|
|
15
|
+
"taon-type-sql",
|
|
16
|
+
"socket.io"
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"ignoreDepsPattern": [],
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"npmFixes": []
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
"smartContainerBuildTarget": "",
|
|
25
|
+
"linkedRepos": [],
|
|
26
|
+
|
|
27
|
+
"libReleaseOptions": {
|
|
28
|
+
"nodts": false,
|
|
29
|
+
"obscure": false,
|
|
30
|
+
"ugly": false,
|
|
31
|
+
"includeNodeModules": false,
|
|
32
|
+
"cliBuildNoDts": false,
|
|
33
|
+
"cliBuildObscure": false,
|
|
34
|
+
"cliBuildIncludeNodeModules": false,
|
|
35
|
+
"cliBuildUglify": false
|
|
36
|
+
},
|
|
37
|
+
|
|
38
|
+
"smartContainerTarget": "",
|
|
39
|
+
"type": "isomorphic-lib",
|
|
40
|
+
"version": "v18",
|
|
41
|
+
"additionalNpmNames": [],
|
|
42
|
+
"scripts": {},
|
|
43
|
+
"description": "Isomorphic solution for backend and frontend",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"private": false,
|
|
46
|
+
"author": "Dariusz Filipiak",
|
|
47
|
+
"homepage": "https://github.com/darekf77/taon#readme"
|
|
48
|
+
}
|
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
{
|
|
2
|
+
"domain": "firedev.io",
|
|
3
|
+
"useDomain": true,
|
|
4
|
+
"title": "Firedev",
|
|
5
|
+
"isCoreProject": false,
|
|
6
|
+
"ip": "localhost",
|
|
7
|
+
"packageJSON": {
|
|
8
|
+
"tnp": {
|
|
9
|
+
"resources": [
|
|
10
|
+
"README.md",
|
|
11
|
+
"bin"
|
|
12
|
+
],
|
|
13
|
+
"overrided": {
|
|
14
|
+
"linkedFolders": [],
|
|
15
|
+
"includeAsDev": [],
|
|
16
|
+
"includeOnly": [
|
|
17
|
+
"tnp",
|
|
18
|
+
"tslib",
|
|
19
|
+
"ora",
|
|
20
|
+
"ng2-rest",
|
|
21
|
+
"json10",
|
|
22
|
+
"lodash-walk-object",
|
|
23
|
+
"taon-type-sql",
|
|
24
|
+
"socket.io"
|
|
25
|
+
],
|
|
26
|
+
"ignoreDepsPattern": [],
|
|
27
|
+
"dependencies": {},
|
|
28
|
+
"npmFixes": []
|
|
29
|
+
},
|
|
30
|
+
"smartContainerBuildTarget": "",
|
|
31
|
+
"linkedRepos": [],
|
|
32
|
+
"libReleaseOptions": {
|
|
33
|
+
"nodts": false,
|
|
34
|
+
"obscure": false,
|
|
35
|
+
"ugly": false,
|
|
36
|
+
"includeNodeModules": false,
|
|
37
|
+
"cliBuildNoDts": false,
|
|
38
|
+
"cliBuildObscure": false,
|
|
39
|
+
"cliBuildIncludeNodeModules": false,
|
|
40
|
+
"cliBuildUglify": false
|
|
41
|
+
},
|
|
42
|
+
"smartContainerTarget": "",
|
|
43
|
+
"type": "isomorphic-lib",
|
|
44
|
+
"version": "v18",
|
|
45
|
+
"additionalNpmNames": [],
|
|
46
|
+
"scripts": {},
|
|
47
|
+
"description": "Isomorphic solution for backend and frontend",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"private": false,
|
|
50
|
+
"author": "Dariusz Filipiak",
|
|
51
|
+
"homepage": "https://github.com/darekf77/taon#readme"
|
|
52
|
+
},
|
|
53
|
+
"name": "taon",
|
|
54
|
+
"version": "18.0.15",
|
|
55
|
+
"description": "Isomorphic solution for backend and frontend",
|
|
56
|
+
"scripts": {},
|
|
57
|
+
"repository": {
|
|
58
|
+
"type": "git",
|
|
59
|
+
"url": "git+https://github.com/darekf77/taon.git"
|
|
60
|
+
},
|
|
61
|
+
"author": "Dariusz Filipiak",
|
|
62
|
+
"bugs": {
|
|
63
|
+
"url": "https://github.com/darekf77/taon/issues"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/darekf77/taon#readme",
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"json10": "~18.0.10",
|
|
68
|
+
"lodash-walk-object": "~18.0.10",
|
|
69
|
+
"ng2-rest": "~18.0.10",
|
|
70
|
+
"ora": "3.4.0",
|
|
71
|
+
"socket.io": "4.7.5",
|
|
72
|
+
"taon-type-sql": "18.0.10",
|
|
73
|
+
"tnp": "~18.0.10",
|
|
74
|
+
"tslib": "~2.6.3"
|
|
75
|
+
},
|
|
76
|
+
"license": "MIT",
|
|
77
|
+
"private": false,
|
|
78
|
+
"lastBuildTagHash": "0d85a0a70405c75f8db76094fcf5b0746c05db08",
|
|
79
|
+
"devDependencies": {
|
|
80
|
+
"@angular-builders/custom-webpack": "~18.0.0",
|
|
81
|
+
"@angular-devkit/build-angular": "~18.1.4",
|
|
82
|
+
"@angular-devkit/core": "~18.1.4",
|
|
83
|
+
"@angular-eslint/builder": "~18.2.0",
|
|
84
|
+
"@angular-eslint/eslint-plugin": "~18.2.0",
|
|
85
|
+
"@angular-eslint/eslint-plugin-template": "~18.2.0",
|
|
86
|
+
"@angular-eslint/schematics": "~18.2.0",
|
|
87
|
+
"@angular-eslint/template-parser": "~18.2.0",
|
|
88
|
+
"@angular-material-extensions/password-strength": "~16.0.0",
|
|
89
|
+
"@angular/animations": "~18.1.4",
|
|
90
|
+
"@angular/cdk": "~18.1.4",
|
|
91
|
+
"@angular/cli": "~18.1.4",
|
|
92
|
+
"@angular/common": "~18.1.4",
|
|
93
|
+
"@angular/compiler": "~18.1.4",
|
|
94
|
+
"@angular/compiler-cli": "~18.1.4",
|
|
95
|
+
"@angular/core": "~18.1.4",
|
|
96
|
+
"@angular/elements": "~18.1.4",
|
|
97
|
+
"@angular/forms": "~18.1.4",
|
|
98
|
+
"@angular/material": "~18.1.4",
|
|
99
|
+
"@angular/platform-browser": "~18.1.4",
|
|
100
|
+
"@angular/platform-browser-dynamic": "~18.1.4",
|
|
101
|
+
"@angular/pwa": "~18.1.4",
|
|
102
|
+
"@angular/router": "~18.1.4",
|
|
103
|
+
"@angular/service-worker": "~18.1.4",
|
|
104
|
+
"@babel/cli": "7.24.8",
|
|
105
|
+
"@compodoc/compodoc": "1.1.25",
|
|
106
|
+
"@iconify/icons-fa-solid": "1.2.4",
|
|
107
|
+
"@iconify/icons-mdi": "1.2.48",
|
|
108
|
+
"@inquirer/prompts": "5.3.8",
|
|
109
|
+
"@mdi/js": "7.4.47",
|
|
110
|
+
"@ng-matero/extensions": "18.1.2",
|
|
111
|
+
"@ngneat/falso": "7.2.0",
|
|
112
|
+
"@ngneat/hot-toast": "7.0.0",
|
|
113
|
+
"@ngneat/overview": "6.1.1",
|
|
114
|
+
"@ngneat/spectator": "19.0.0",
|
|
115
|
+
"@ngrx/component-store": "~18.0.2",
|
|
116
|
+
"@ngrx/data": "~18.0.2",
|
|
117
|
+
"@ngrx/effects": "~18.0.2",
|
|
118
|
+
"@ngrx/entity": "~18.0.2",
|
|
119
|
+
"@ngrx/router-store": "~18.0.2",
|
|
120
|
+
"@ngrx/schematics": "~18.0.2",
|
|
121
|
+
"@ngrx/store": "~18.0.2",
|
|
122
|
+
"@ngrx/store-devtools": "~18.0.2",
|
|
123
|
+
"@ngx-formly/core": "6.3.6",
|
|
124
|
+
"@ngx-formly/material": "6.3.6",
|
|
125
|
+
"@ngx-translate/core": "15.0.0",
|
|
126
|
+
"@ngx-translate/http-loader": "8.0.0",
|
|
127
|
+
"@sqltools/formatter": "1.2.5",
|
|
128
|
+
"@sweetalert2/ngx-sweetalert2": "12.4.0",
|
|
129
|
+
"@testdeck/jest": "0.3.3",
|
|
130
|
+
"@testdeck/mocha": "0.3.3",
|
|
131
|
+
"@types/chai": "4.3.17",
|
|
132
|
+
"@types/chokidar": "2.1.3",
|
|
133
|
+
"@types/dateformat": "1.0.1",
|
|
134
|
+
"@types/diff": "5.2.1",
|
|
135
|
+
"@types/express": "4.17.21",
|
|
136
|
+
"@types/express-fileupload": "1.5.0",
|
|
137
|
+
"@types/fs-extra": "7.0.0",
|
|
138
|
+
"@types/glob": "5.0.35",
|
|
139
|
+
"@types/http-proxy": "1.17.15",
|
|
140
|
+
"@types/http-proxy-middleware": "1.0.0",
|
|
141
|
+
"@types/jest": "29.5.12",
|
|
142
|
+
"@types/json-stringify-safe": "5.0.3",
|
|
143
|
+
"@types/json5": "0.0.29",
|
|
144
|
+
"@types/lockfile": "1.0.4",
|
|
145
|
+
"@types/lodash": "4.14.92",
|
|
146
|
+
"@types/mocha": "10.0.7",
|
|
147
|
+
"@types/node": "16.18.21",
|
|
148
|
+
"@types/node-notifier": "8.0.5",
|
|
149
|
+
"@types/oauth2orize": "1.11.5",
|
|
150
|
+
"@types/password-hash": "1.2.24",
|
|
151
|
+
"@types/progress": "2.0.7",
|
|
152
|
+
"@types/q": "1.5.8",
|
|
153
|
+
"@types/rimraf": "2.0.2",
|
|
154
|
+
"@types/semver": "7.5.8",
|
|
155
|
+
"@types/systeminformation": "3.54.1",
|
|
156
|
+
"@types/vinyl": "2.0.12",
|
|
157
|
+
"@types/watch": "1.0.6",
|
|
158
|
+
"@typescript-eslint/eslint-plugin": "8.0.1",
|
|
159
|
+
"@typescript-eslint/parser": "8.0.1",
|
|
160
|
+
"@vercel/ncc": "0.38.1",
|
|
161
|
+
"accepts": "1.3.8",
|
|
162
|
+
"ajv": "8.17.1",
|
|
163
|
+
"angular-material-css-vars": "7.0.0",
|
|
164
|
+
"angular-resize-event": "3.2.0",
|
|
165
|
+
"animate.css": "4.1.1",
|
|
166
|
+
"app-root-path": "3.1.0",
|
|
167
|
+
"axios": "1.7.3",
|
|
168
|
+
"base32": "0.0.7",
|
|
169
|
+
"bcryptjs": "2.4.3",
|
|
170
|
+
"body-parser": "1.20.2",
|
|
171
|
+
"bootstrap": "5.3.3",
|
|
172
|
+
"buffer-shims": "1.0.0",
|
|
173
|
+
"bun": "1.1.22",
|
|
174
|
+
"callsite-record": "4.1.5",
|
|
175
|
+
"chai": "4.5.0",
|
|
176
|
+
"chalk": "2.3.2",
|
|
177
|
+
"check-node-version": "3.2.0",
|
|
178
|
+
"cheerio": "1.0.0",
|
|
179
|
+
"chokidar": "3.5.3",
|
|
180
|
+
"circular-json": "0.5.1",
|
|
181
|
+
"class-transformer": "0.5.1",
|
|
182
|
+
"class-validator": "0.14.1",
|
|
183
|
+
"cli-highlight": "2.1.11",
|
|
184
|
+
"command-exists": "1.2.2",
|
|
185
|
+
"compression": "1.7.4",
|
|
186
|
+
"concurrently": "8.2.2",
|
|
187
|
+
"content-type": "1.0.5",
|
|
188
|
+
"conventional-changelog-cli": "5.0.0",
|
|
189
|
+
"cookie-parser": "1.4.6",
|
|
190
|
+
"copy-paste": "1.5.3",
|
|
191
|
+
"cors": "2.8.5",
|
|
192
|
+
"cpr": "3.0.1",
|
|
193
|
+
"cross-env": "7.0.2",
|
|
194
|
+
"cross-spawn": "7.0.3",
|
|
195
|
+
"dateformat": "3.0.3",
|
|
196
|
+
"detect-mocha": "0.1.0",
|
|
197
|
+
"diff": "4.0.2",
|
|
198
|
+
"electron": "25.2.0",
|
|
199
|
+
"electron-builder": "24.4.0",
|
|
200
|
+
"electron-debug": "3.2.0",
|
|
201
|
+
"electron-reloader": "1.2.3",
|
|
202
|
+
"element-resize-detector": "1.2.4",
|
|
203
|
+
"enquirer": "2.4.1",
|
|
204
|
+
"enum-values": "1.2.1",
|
|
205
|
+
"errorhandler": "1.5.1",
|
|
206
|
+
"eslint": "9.9.0",
|
|
207
|
+
"eslint-config-prettier": "9.1.0",
|
|
208
|
+
"eslint-plugin-import": "latest",
|
|
209
|
+
"eslint-plugin-jsdoc": "latest",
|
|
210
|
+
"eslint-plugin-prefer-arrow": "latest",
|
|
211
|
+
"eslint-plugin-prettier": "5.2.1",
|
|
212
|
+
"eslint-plugin-react": "latest",
|
|
213
|
+
"express": "4.19.2",
|
|
214
|
+
"express-fileupload": "1.4.0",
|
|
215
|
+
"express-session": "1.18.0",
|
|
216
|
+
"file-loader": "1.1.11",
|
|
217
|
+
"file-saver": "2.0.5",
|
|
218
|
+
"file-type": "19.1.1",
|
|
219
|
+
"fkill": "6.1.0",
|
|
220
|
+
"font-awesome": "4.7.0",
|
|
221
|
+
"form-data": "4.0.0",
|
|
222
|
+
"fs-extra": "8.1.0",
|
|
223
|
+
"fuzzy": "0.1.3",
|
|
224
|
+
"glob": "7.1.2",
|
|
225
|
+
"google-libphonenumber": "3.2.38",
|
|
226
|
+
"gulp": "3.9.1",
|
|
227
|
+
"helmet": "7.1.0",
|
|
228
|
+
"hostile": "1.3.3",
|
|
229
|
+
"howler": "2.2.4",
|
|
230
|
+
"http-proxy": "1.18.1",
|
|
231
|
+
"http-proxy-middleware": "0.22.0-alpha",
|
|
232
|
+
"http-server": "0.13.0",
|
|
233
|
+
"image-focus": "1.2.1",
|
|
234
|
+
"immer": "10.0.2",
|
|
235
|
+
"immutable": "4.3.7",
|
|
236
|
+
"incremental-compiler": "~18.0.10",
|
|
237
|
+
"inquirer": "7.3.3",
|
|
238
|
+
"inquirer-autocomplete-prompt": "1.4.0",
|
|
239
|
+
"inquirer-autocomplete-standalone": "0.8.1",
|
|
240
|
+
"inquirer-select-pro": "1.0.0-alpha.7",
|
|
241
|
+
"is-elevated": "3.0.0",
|
|
242
|
+
"isomorphic-region-loader": "~18.0.10",
|
|
243
|
+
"istanbul-instrumenter-loader": "3.0.1",
|
|
244
|
+
"jest": "29.7.0",
|
|
245
|
+
"jest-date-mock": "1.0.10",
|
|
246
|
+
"jest-junit": "16.0.0",
|
|
247
|
+
"jest-marbles": "latest",
|
|
248
|
+
"jest-preset-angular": "14.2.2",
|
|
249
|
+
"jimp": "0.22.12",
|
|
250
|
+
"joi": "17.13.3",
|
|
251
|
+
"jscodeshift": "0.6.3",
|
|
252
|
+
"json-stringify-safe": "5.0.1",
|
|
253
|
+
"json10-writer": "~18.0.10",
|
|
254
|
+
"json5": "2.2.3",
|
|
255
|
+
"json5-writer": "0.2.0",
|
|
256
|
+
"jszip": "3.10.1",
|
|
257
|
+
"karma-cli": "1.0.1",
|
|
258
|
+
"lnk": "1.0.1",
|
|
259
|
+
"localforage": "1.10.0",
|
|
260
|
+
"lockfile": "1.0.4",
|
|
261
|
+
"lodash": "4.17.21",
|
|
262
|
+
"lowdb": "7.0.1",
|
|
263
|
+
"magic-renamer": "~18.0.10",
|
|
264
|
+
"material-design-icons": "3.0.1",
|
|
265
|
+
"method-override": "2.3.10",
|
|
266
|
+
"minimist": "1.2.8",
|
|
267
|
+
"mkdirp": "0.5.1",
|
|
268
|
+
"mocha": "10.7.3",
|
|
269
|
+
"moment": "2.30.1",
|
|
270
|
+
"ng-for-track-by-property": "18.0.1",
|
|
271
|
+
"ng-in-viewport": "16.1.0",
|
|
272
|
+
"ng-lock": "18.0.1",
|
|
273
|
+
"ng-packagr": "18.1.0",
|
|
274
|
+
"ng-talkback": "~18.0.9",
|
|
275
|
+
"ng2-logger": "~18.0.12",
|
|
276
|
+
"ng2-pdfjs-viewer": "18.0.0",
|
|
277
|
+
"ng2-rest-swagger-generator": "18.0.7",
|
|
278
|
+
"ngx-ace-wrapper": "17.0.0",
|
|
279
|
+
"ngx-editor": "17.5.4",
|
|
280
|
+
"ngx-highlightjs": "12.0.0",
|
|
281
|
+
"ngx-moment": "6.0.2",
|
|
282
|
+
"ngx-monaco-editor": "12.0.0",
|
|
283
|
+
"ngx-photo-editor": "0.4.4",
|
|
284
|
+
"ngx-pipes": "3.2.2",
|
|
285
|
+
"ngx-progressbar": "11.1.0",
|
|
286
|
+
"ngx-scrollbar": "15.1.2",
|
|
287
|
+
"ngx-scrolltop": "18.0.0",
|
|
288
|
+
"ngx-store": "3.1.1",
|
|
289
|
+
"ngx-typed-js": "2.1.1",
|
|
290
|
+
"node-cli-tester": "~18.0.9",
|
|
291
|
+
"node-localstorage": "2.1.6",
|
|
292
|
+
"node-notifier": "10.0.1",
|
|
293
|
+
"node-polyfill-webpack-plugin": "2.0.1",
|
|
294
|
+
"nodemon": "2.0.22",
|
|
295
|
+
"npm-get-dependents": "1.0.1",
|
|
296
|
+
"npm-run": "4.1.2",
|
|
297
|
+
"omelette": "0.4.17",
|
|
298
|
+
"open": "7.2.1",
|
|
299
|
+
"passport": "0.7.0",
|
|
300
|
+
"passport-http-bearer": "1.0.1",
|
|
301
|
+
"password-hash": "1.2.2",
|
|
302
|
+
"path-to-regexp": "6.2.2",
|
|
303
|
+
"pica": "9.0.1",
|
|
304
|
+
"playwright": "1.43.1",
|
|
305
|
+
"portfinder": "1.0.21",
|
|
306
|
+
"prettier": "3.3.3",
|
|
307
|
+
"prettier-eslint": "16.3.0",
|
|
308
|
+
"pretty-error": "4.0.0",
|
|
309
|
+
"primeflex": "3.3.1",
|
|
310
|
+
"primeicons": "7.0.0",
|
|
311
|
+
"primeng": "17.18.8",
|
|
312
|
+
"progress": "2.0.3",
|
|
313
|
+
"prompts": "2.4.2",
|
|
314
|
+
"ps-list": "6.1.0",
|
|
315
|
+
"ps-node": "0.1.6",
|
|
316
|
+
"q": "1.5.1",
|
|
317
|
+
"rallax.js": "2.0.4",
|
|
318
|
+
"randomcolor": "0.5.3",
|
|
319
|
+
"record-replay-req-res-scenario": "~18.0.9",
|
|
320
|
+
"reflect-metadata": "0.2.2",
|
|
321
|
+
"rimraf": "2.6.2",
|
|
322
|
+
"rxjs": "~7.8.1",
|
|
323
|
+
"semver": "7.6.3",
|
|
324
|
+
"simple-git": "3.25.0",
|
|
325
|
+
"sinon": "18.0.0",
|
|
326
|
+
"sloc": "0.2.0",
|
|
327
|
+
"socket.io-client": "4.7.5",
|
|
328
|
+
"sort-package-json": "1.11.0",
|
|
329
|
+
"sql.js": "1.8.0",
|
|
330
|
+
"static-columns": "~18.0.11",
|
|
331
|
+
"string-similarity": "4.0.4",
|
|
332
|
+
"sudo-block": "3.0.0",
|
|
333
|
+
"supertest": "7.0.0",
|
|
334
|
+
"sweetalert2": "11.7.32",
|
|
335
|
+
"systeminformation": "3.45.7",
|
|
336
|
+
"taon": "^18",
|
|
337
|
+
"taon-storage": "18.0.8",
|
|
338
|
+
"taon-typeorm": "18.0.8",
|
|
339
|
+
"task.js": "0.1.5",
|
|
340
|
+
"threads": "1.7.0",
|
|
341
|
+
"tnp-config": "~18.0.12",
|
|
342
|
+
"tnp-core": "~18.0.34",
|
|
343
|
+
"tnp-helpers": "~18.0.10",
|
|
344
|
+
"tnp-models": "~18.0.11",
|
|
345
|
+
"ts-debug": "1.3.0",
|
|
346
|
+
"ts-json-schema-generator": "2.3.0-next.5",
|
|
347
|
+
"ts-loader": "2.3.1",
|
|
348
|
+
"ts-node": "10.9.1",
|
|
349
|
+
"tslint": "6.1.3",
|
|
350
|
+
"turndown": "7.2.0",
|
|
351
|
+
"type-fest": "4.25.0",
|
|
352
|
+
"typedoc": "0.26.5",
|
|
353
|
+
"typedoc-plugin-markdown": "4.2.3",
|
|
354
|
+
"typescript": "~5.5.4",
|
|
355
|
+
"typescript-class-helpers": "~18.0.11",
|
|
356
|
+
"typescript-formatter": "~7.2.2",
|
|
357
|
+
"underscore": "1.13.7",
|
|
358
|
+
"uuid": "10.0.0",
|
|
359
|
+
"validator": "13.5.2",
|
|
360
|
+
"video.js": "8.3.0",
|
|
361
|
+
"vpn-split": "~18.0.8",
|
|
362
|
+
"vscode": "1.1.37",
|
|
363
|
+
"wait-on": "7.0.1",
|
|
364
|
+
"watch": "1.0.2",
|
|
365
|
+
"webpack": "~5.80",
|
|
366
|
+
"webpack-dev-middleware": "~6.1.3",
|
|
367
|
+
"webpack-dev-server": "~5.0.4",
|
|
368
|
+
"yup": "1.3.3",
|
|
369
|
+
"zone.js": "~0.13.0"
|
|
370
|
+
},
|
|
371
|
+
"main": "dist/app.electron.js",
|
|
372
|
+
"bin": {
|
|
373
|
+
"taon": "bin/taon",
|
|
374
|
+
"taon-debug": "bin/taon-debug",
|
|
375
|
+
"taon-debug-brk": "bin/taon-debug-brk"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"build": {
|
|
379
|
+
"number": 1726,
|
|
380
|
+
"date": "2024-08-29T07:19:13.000Z",
|
|
381
|
+
"hash": "8e8273e36852282f371ca2495da057bd6ca37bcb"
|
|
382
|
+
},
|
|
383
|
+
"currentProjectName": "taon",
|
|
384
|
+
"currentProjectGenericName": "taon",
|
|
385
|
+
"currentProjectType": "isomorphic-lib",
|
|
386
|
+
"currentFrameworkVersion": "18.0.10",
|
|
387
|
+
"isStandaloneProject": true,
|
|
388
|
+
"isSmartContainer": false,
|
|
389
|
+
"pathesTsconfig": "\"paths\": {\"taon\":[\"./src/lib\"],\"taon/*\":[\"./src/lib/*\"]},",
|
|
390
|
+
"customRootDir": "\"rootDir\": \"./src\",",
|
|
391
|
+
"currentLibProjectSourceFolder": "src"
|
|
392
|
+
}
|
package/websql/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|