repoburg 1.3.87 → 1.3.91
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/backend/.env +20 -0
- package/backend/.repoburg/hooks/README.md +53 -0
- package/backend/.repoburg/hooks/eslint-hook.ts +46 -0
- package/backend/.repoburg/hooks/example-hook.ts +62 -0
- package/backend/dist/src/ai-actions/ai-actions.controller.js +67 -0
- package/backend/dist/src/ai-actions/ai-actions.controller.js.map +1 -1
- package/backend/dist/src/app.module.d.ts +3 -1
- package/backend/dist/src/app.module.js +17 -1
- package/backend/dist/src/app.module.js.map +1 -1
- package/backend/dist/src/application-state/application-state.controller.js +123 -0
- package/backend/dist/src/application-state/application-state.controller.js.map +1 -1
- package/backend/dist/src/application-state/application-state.service.d.ts +3 -0
- package/backend/dist/src/application-state/application-state.service.js +18 -1
- package/backend/dist/src/application-state/application-state.service.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js +6 -0
- package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js +6 -0
- package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js +5 -0
- package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js +6 -0
- package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-theme.dto.js +6 -0
- package/backend/dist/src/application-state/dto/set-theme.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js +5 -0
- package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js +4 -0
- package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-zai-config.dto.js +2 -0
- package/backend/dist/src/application-state/dto/set-zai-config.dto.js.map +1 -1
- package/backend/dist/src/common/cache/etag-cache.service.d.ts +18 -0
- package/backend/dist/src/common/cache/etag-cache.service.js +98 -0
- package/backend/dist/src/common/cache/etag-cache.service.js.map +1 -0
- package/backend/dist/src/common/common.module.d.ts +2 -0
- package/backend/dist/src/common/common.module.js +22 -0
- package/backend/dist/src/common/common.module.js.map +1 -0
- package/backend/dist/src/common/interceptors/etag-cache.interceptor.d.ts +14 -0
- package/backend/dist/src/common/interceptors/etag-cache.interceptor.js +69 -0
- package/backend/dist/src/common/interceptors/etag-cache.interceptor.js.map +1 -0
- package/backend/dist/src/common/middleware/cache.middleware.d.ts +8 -0
- package/backend/dist/src/common/middleware/cache.middleware.js +44 -0
- package/backend/dist/src/common/middleware/cache.middleware.js.map +1 -0
- package/backend/dist/src/context-snippets/context-snippets.controller.js +38 -0
- package/backend/dist/src/context-snippets/context-snippets.controller.js.map +1 -1
- package/backend/dist/src/context-templates/context-templates.controller.js +104 -0
- package/backend/dist/src/context-templates/context-templates.controller.js.map +1 -1
- package/backend/dist/src/context-templates/dto/context-template.dto.d.ts +1 -1
- package/backend/dist/src/context-templates/dto/context-template.dto.js +44 -1
- package/backend/dist/src/context-templates/dto/context-template.dto.js.map +1 -1
- package/backend/dist/src/core-entities/ai-action.entity.js +73 -0
- package/backend/dist/src/core-entities/ai-action.entity.js.map +1 -1
- package/backend/dist/src/core-entities/base.entity.js +18 -0
- package/backend/dist/src/core-entities/base.entity.js.map +1 -1
- package/backend/dist/src/core-entities/context-snippet.entity.js +12 -0
- package/backend/dist/src/core-entities/context-snippet.entity.js.map +1 -1
- package/backend/dist/src/core-entities/context-template.entity.d.ts +2 -4
- package/backend/dist/src/core-entities/context-template.entity.js +50 -7
- package/backend/dist/src/core-entities/context-template.entity.js.map +1 -1
- package/backend/dist/src/core-entities/custom-snippet.entity.js +16 -0
- package/backend/dist/src/core-entities/custom-snippet.entity.js.map +1 -1
- package/backend/dist/src/core-entities/custom-variable.entity.js +24 -0
- package/backend/dist/src/core-entities/custom-variable.entity.js.map +1 -1
- package/backend/dist/src/core-entities/enums.d.ts +64 -0
- package/backend/dist/src/core-entities/enums.js +77 -0
- package/backend/dist/src/core-entities/enums.js.map +1 -0
- package/backend/dist/src/core-entities/execution-log.entity.js +15 -0
- package/backend/dist/src/core-entities/execution-log.entity.js.map +1 -1
- package/backend/dist/src/core-entities/index.d.ts +1 -2
- package/backend/dist/src/core-entities/index.js +1 -2
- package/backend/dist/src/core-entities/index.js.map +1 -1
- package/backend/dist/src/core-entities/llm-call-log.entity.js +43 -0
- package/backend/dist/src/core-entities/llm-call-log.entity.js.map +1 -1
- package/backend/dist/src/core-entities/mcp-config.entity.js +27 -0
- package/backend/dist/src/core-entities/mcp-config.entity.js.map +1 -1
- package/backend/dist/src/core-entities/mcp-tool.entity.js +26 -0
- package/backend/dist/src/core-entities/mcp-tool.entity.js.map +1 -1
- package/backend/dist/src/core-entities/project.entity.js +13 -0
- package/backend/dist/src/core-entities/project.entity.js.map +1 -1
- package/backend/dist/src/core-entities/session-input.entity.js +95 -0
- package/backend/dist/src/core-entities/session-input.entity.js.map +1 -1
- package/backend/dist/src/core-entities/session.entity.d.ts +1 -1
- package/backend/dist/src/core-entities/session.entity.js +96 -1
- package/backend/dist/src/core-entities/session.entity.js.map +1 -1
- package/backend/dist/src/core-entities/system-prompt.entity.js +29 -0
- package/backend/dist/src/core-entities/system-prompt.entity.js.map +1 -1
- package/backend/dist/src/core-entities/tool-hook.entity.js +21 -0
- package/backend/dist/src/core-entities/tool-hook.entity.js.map +1 -1
- package/backend/dist/src/custom-snippets/custom-snippets.controller.js +48 -0
- package/backend/dist/src/custom-snippets/custom-snippets.controller.js.map +1 -1
- package/backend/dist/src/custom-variables/custom-variables.controller.js +46 -0
- package/backend/dist/src/custom-variables/custom-variables.controller.js.map +1 -1
- package/backend/dist/src/global-config/global-config.controller.js +12 -0
- package/backend/dist/src/global-config/global-config.controller.js.map +1 -1
- package/backend/dist/src/global-config/global-config.service.d.ts +1 -0
- package/backend/dist/src/global-config/global-config.service.js.map +1 -1
- package/backend/dist/src/interactive-chat/streaming.controller.js +38 -0
- package/backend/dist/src/interactive-chat/streaming.controller.js.map +1 -1
- package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js +96 -0
- package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js.map +1 -1
- package/backend/dist/src/llm-provider/llm-provider.controller.js +18 -0
- package/backend/dist/src/llm-provider/llm-provider.controller.js.map +1 -1
- package/backend/dist/src/llm-provider/zai-llm.provider.js +1 -1
- package/backend/dist/src/llm-provider/zai-llm.provider.js.map +1 -1
- package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js +45 -0
- package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js.map +1 -1
- package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js +24 -0
- package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js.map +1 -1
- package/backend/dist/src/llm-responses/llm-responses.controller.js +32 -0
- package/backend/dist/src/llm-responses/llm-responses.controller.js.map +1 -1
- package/backend/dist/src/main.js +9 -0
- package/backend/dist/src/main.js.map +1 -1
- package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js +8 -0
- package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js.map +1 -1
- package/backend/dist/src/mcp/dto/create-mcp-config.dto.js +5 -0
- package/backend/dist/src/mcp/dto/create-mcp-config.dto.js.map +1 -1
- package/backend/dist/src/mcp/dto/update-mcp-config.dto.js +2 -0
- package/backend/dist/src/mcp/dto/update-mcp-config.dto.js.map +1 -1
- package/backend/dist/src/mcp/mcp.controller.js +21 -0
- package/backend/dist/src/mcp/mcp.controller.js.map +1 -1
- package/backend/dist/src/projects/dto/project.dto.js +14 -0
- package/backend/dist/src/projects/dto/project.dto.js.map +1 -1
- package/backend/dist/src/projects/projects.controller.js +31 -0
- package/backend/dist/src/projects/projects.controller.js.map +1 -1
- package/backend/dist/src/session-inputs/dto/session-input.dto.d.ts +12 -1
- package/backend/dist/src/session-inputs/dto/session-input.dto.js +103 -1
- package/backend/dist/src/session-inputs/dto/session-input.dto.js.map +1 -1
- package/backend/dist/src/session-inputs/session-input.subscriber.js.map +1 -1
- package/backend/dist/src/session-inputs/session-inputs.controller.d.ts +2 -1
- package/backend/dist/src/session-inputs/session-inputs.controller.js +84 -0
- package/backend/dist/src/session-inputs/session-inputs.controller.js.map +1 -1
- package/backend/dist/src/session-inputs/session-inputs.module.js +1 -0
- package/backend/dist/src/session-inputs/session-inputs.module.js.map +1 -1
- package/backend/dist/src/session-inputs/session-inputs.service.d.ts +7 -3
- package/backend/dist/src/session-inputs/session-inputs.service.js +51 -4
- package/backend/dist/src/session-inputs/session-inputs.service.js.map +1 -1
- package/backend/dist/src/sessions/dto/session.dto.js +91 -0
- package/backend/dist/src/sessions/dto/session.dto.js.map +1 -1
- package/backend/dist/src/sessions/sessions.controller.d.ts +1 -1
- package/backend/dist/src/sessions/sessions.controller.js +123 -3
- package/backend/dist/src/sessions/sessions.controller.js.map +1 -1
- package/backend/dist/src/sessions/sessions.service.d.ts +2 -1
- package/backend/dist/src/sessions/sessions.service.js +47 -18
- package/backend/dist/src/sessions/sessions.service.js.map +1 -1
- package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js +26 -0
- package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js.map +1 -1
- package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js +22 -0
- package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js.map +1 -1
- package/backend/dist/src/sub-agents/sub-agent-run.entity.d.ts +2 -7
- package/backend/dist/src/sub-agents/sub-agent-run.entity.js +63 -9
- package/backend/dist/src/sub-agents/sub-agent-run.entity.js.map +1 -1
- package/backend/dist/src/sub-agents/sub-agent-runs.controller.js +63 -0
- package/backend/dist/src/sub-agents/sub-agent-runs.controller.js.map +1 -1
- package/backend/dist/src/sub-agents/sub-agent.entity.js +47 -0
- package/backend/dist/src/sub-agents/sub-agent.entity.js.map +1 -1
- package/backend/dist/src/sub-agents/sub-agents.controller.js +25 -0
- package/backend/dist/src/sub-agents/sub-agents.controller.js.map +1 -1
- package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js +9 -0
- package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js.map +1 -1
- package/backend/dist/src/system-prompts/dto/system-prompt.dto.js +43 -0
- package/backend/dist/src/system-prompts/dto/system-prompt.dto.js.map +1 -1
- package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js +5 -0
- package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js.map +1 -1
- package/backend/dist/src/system-prompts/system-prompts.controller.js +80 -0
- package/backend/dist/src/system-prompts/system-prompts.controller.js.map +1 -1
- package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js +14 -0
- package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js.map +1 -1
- package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js +11 -0
- package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js.map +1 -1
- package/backend/dist/src/tool-hooks/tool-hooks.controller.js +52 -0
- package/backend/dist/src/tool-hooks/tool-hooks.controller.js.map +1 -1
- package/backend/dist/src/visual-editor/visual-editor.controller.js +15 -0
- package/backend/dist/src/visual-editor/visual-editor.controller.js.map +1 -1
- package/backend/dist/src/workspace/workspace.controller.js +41 -0
- package/backend/dist/src/workspace/workspace.controller.js.map +1 -1
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/{daemon/node_modules/undici-types → backend/node_modules/@eslint/eslintrc}/LICENSE +5 -7
- package/backend/node_modules/@eslint/eslintrc/README.md +115 -0
- package/backend/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
- package/backend/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1104 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4344 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
- package/backend/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +532 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +523 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +238 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +225 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1151 -0
- package/backend/node_modules/@eslint/eslintrc/lib/flat-compat.js +318 -0
- package/backend/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
- package/backend/node_modules/@eslint/eslintrc/lib/index.js +56 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +325 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +42 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
- package/backend/node_modules/@eslint/eslintrc/package.json +82 -0
- package/backend/node_modules/@eslint/eslintrc/universal.js +9 -0
- package/backend/package.json +2 -4
- package/daemon/dist/api/system.js +25 -0
- package/daemon/dist/daemon.blob +0 -0
- package/daemon/dist/index.js +0 -0
- package/package.json +3 -1
- package/visual-editor-proxy/.repoburg/data.sqlite +0 -0
- package/visual-editor-proxy/dist/tsconfig.tsbuildinfo +1 -1
- package/backend/node_modules/@types/node/LICENSE +0 -21
- package/backend/node_modules/@types/node/README.md +0 -15
- package/backend/node_modules/@types/node/assert/strict.d.ts +0 -8
- package/backend/node_modules/@types/node/assert.d.ts +0 -1044
- package/backend/node_modules/@types/node/async_hooks.d.ts +0 -605
- package/backend/node_modules/@types/node/buffer.buffer.d.ts +0 -462
- package/backend/node_modules/@types/node/buffer.d.ts +0 -1932
- package/backend/node_modules/@types/node/child_process.d.ts +0 -1452
- package/backend/node_modules/@types/node/cluster.d.ts +0 -578
- package/backend/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
- package/backend/node_modules/@types/node/compatibility/index.d.ts +0 -9
- package/backend/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
- package/backend/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
- package/backend/node_modules/@types/node/console.d.ts +0 -452
- package/backend/node_modules/@types/node/constants.d.ts +0 -21
- package/backend/node_modules/@types/node/crypto.d.ts +0 -4570
- package/backend/node_modules/@types/node/dgram.d.ts +0 -596
- package/backend/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
- package/backend/node_modules/@types/node/dns/promises.d.ts +0 -479
- package/backend/node_modules/@types/node/dns.d.ts +0 -871
- package/backend/node_modules/@types/node/domain.d.ts +0 -170
- package/backend/node_modules/@types/node/events.d.ts +0 -931
- package/backend/node_modules/@types/node/fs/promises.d.ts +0 -1248
- package/backend/node_modules/@types/node/fs.d.ts +0 -4362
- package/backend/node_modules/@types/node/globals.d.ts +0 -170
- package/backend/node_modules/@types/node/globals.typedarray.d.ts +0 -21
- package/backend/node_modules/@types/node/http.d.ts +0 -2031
- package/backend/node_modules/@types/node/http2.d.ts +0 -2623
- package/backend/node_modules/@types/node/https.d.ts +0 -549
- package/backend/node_modules/@types/node/index.d.ts +0 -93
- package/backend/node_modules/@types/node/inspector.generated.d.ts +0 -3966
- package/backend/node_modules/@types/node/module.d.ts +0 -539
- package/backend/node_modules/@types/node/net.d.ts +0 -1011
- package/backend/node_modules/@types/node/os.d.ts +0 -495
- package/backend/node_modules/@types/node/package.json +0 -140
- package/backend/node_modules/@types/node/path.d.ts +0 -200
- package/backend/node_modules/@types/node/perf_hooks.d.ts +0 -963
- package/backend/node_modules/@types/node/process.d.ts +0 -1956
- package/backend/node_modules/@types/node/punycode.d.ts +0 -117
- package/backend/node_modules/@types/node/querystring.d.ts +0 -152
- package/backend/node_modules/@types/node/readline/promises.d.ts +0 -162
- package/backend/node_modules/@types/node/readline.d.ts +0 -589
- package/backend/node_modules/@types/node/repl.d.ts +0 -430
- package/backend/node_modules/@types/node/sea.d.ts +0 -153
- package/backend/node_modules/@types/node/stream/consumers.d.ts +0 -38
- package/backend/node_modules/@types/node/stream/promises.d.ts +0 -90
- package/backend/node_modules/@types/node/stream/web.d.ts +0 -533
- package/backend/node_modules/@types/node/stream.d.ts +0 -1668
- package/backend/node_modules/@types/node/string_decoder.d.ts +0 -67
- package/backend/node_modules/@types/node/test.d.ts +0 -1807
- package/backend/node_modules/@types/node/timers/promises.d.ts +0 -108
- package/backend/node_modules/@types/node/timers.d.ts +0 -286
- package/backend/node_modules/@types/node/tls.d.ts +0 -1231
- package/backend/node_modules/@types/node/trace_events.d.ts +0 -197
- package/backend/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
- package/backend/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
- package/backend/node_modules/@types/node/ts5.6/index.d.ts +0 -93
- package/backend/node_modules/@types/node/tty.d.ts +0 -208
- package/backend/node_modules/@types/node/url.d.ts +0 -964
- package/backend/node_modules/@types/node/util.d.ts +0 -2331
- package/backend/node_modules/@types/node/v8.d.ts +0 -808
- package/backend/node_modules/@types/node/vm.d.ts +0 -1030
- package/backend/node_modules/@types/node/wasi.d.ts +0 -181
- package/backend/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
- package/backend/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
- package/backend/node_modules/@types/node/web-globals/events.d.ts +0 -94
- package/backend/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
- package/backend/node_modules/@types/node/worker_threads.d.ts +0 -743
- package/backend/node_modules/@types/node/zlib.d.ts +0 -539
- package/backend/node_modules/debug/LICENSE +0 -20
- package/backend/node_modules/debug/README.md +0 -481
- package/backend/node_modules/debug/package.json +0 -64
- package/backend/node_modules/debug/src/browser.js +0 -272
- package/backend/node_modules/debug/src/common.js +0 -292
- package/backend/node_modules/debug/src/index.js +0 -10
- package/backend/node_modules/debug/src/node.js +0 -263
- package/backend/node_modules/undici-types/LICENSE +0 -21
- package/backend/node_modules/undici-types/README.md +0 -6
- package/backend/node_modules/undici-types/agent.d.ts +0 -31
- package/backend/node_modules/undici-types/api.d.ts +0 -43
- package/backend/node_modules/undici-types/balanced-pool.d.ts +0 -29
- package/backend/node_modules/undici-types/cache.d.ts +0 -36
- package/backend/node_modules/undici-types/client.d.ts +0 -108
- package/backend/node_modules/undici-types/connector.d.ts +0 -34
- package/backend/node_modules/undici-types/content-type.d.ts +0 -21
- package/backend/node_modules/undici-types/cookies.d.ts +0 -28
- package/backend/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
- package/backend/node_modules/undici-types/dispatcher.d.ts +0 -256
- package/backend/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
- package/backend/node_modules/undici-types/errors.d.ts +0 -149
- package/backend/node_modules/undici-types/eventsource.d.ts +0 -61
- package/backend/node_modules/undici-types/fetch.d.ts +0 -209
- package/backend/node_modules/undici-types/file.d.ts +0 -39
- package/backend/node_modules/undici-types/filereader.d.ts +0 -54
- package/backend/node_modules/undici-types/formdata.d.ts +0 -108
- package/backend/node_modules/undici-types/global-dispatcher.d.ts +0 -9
- package/backend/node_modules/undici-types/global-origin.d.ts +0 -7
- package/backend/node_modules/undici-types/handlers.d.ts +0 -15
- package/backend/node_modules/undici-types/header.d.ts +0 -4
- package/backend/node_modules/undici-types/index.d.ts +0 -71
- package/backend/node_modules/undici-types/interceptors.d.ts +0 -17
- package/backend/node_modules/undici-types/mock-agent.d.ts +0 -50
- package/backend/node_modules/undici-types/mock-client.d.ts +0 -25
- package/backend/node_modules/undici-types/mock-errors.d.ts +0 -12
- package/backend/node_modules/undici-types/mock-interceptor.d.ts +0 -93
- package/backend/node_modules/undici-types/mock-pool.d.ts +0 -25
- package/backend/node_modules/undici-types/package.json +0 -55
- package/backend/node_modules/undici-types/patch.d.ts +0 -33
- package/backend/node_modules/undici-types/pool-stats.d.ts +0 -19
- package/backend/node_modules/undici-types/pool.d.ts +0 -39
- package/backend/node_modules/undici-types/proxy-agent.d.ts +0 -28
- package/backend/node_modules/undici-types/readable.d.ts +0 -65
- package/backend/node_modules/undici-types/retry-agent.d.ts +0 -8
- package/backend/node_modules/undici-types/retry-handler.d.ts +0 -116
- package/backend/node_modules/undici-types/util.d.ts +0 -18
- package/backend/node_modules/undici-types/webidl.d.ts +0 -228
- package/backend/node_modules/undici-types/websocket.d.ts +0 -150
- package/daemon/node_modules/@types/node/LICENSE +0 -21
- package/daemon/node_modules/@types/node/README.md +0 -15
- package/daemon/node_modules/@types/node/assert/strict.d.ts +0 -8
- package/daemon/node_modules/@types/node/assert.d.ts +0 -1044
- package/daemon/node_modules/@types/node/async_hooks.d.ts +0 -605
- package/daemon/node_modules/@types/node/buffer.buffer.d.ts +0 -462
- package/daemon/node_modules/@types/node/buffer.d.ts +0 -1932
- package/daemon/node_modules/@types/node/child_process.d.ts +0 -1452
- package/daemon/node_modules/@types/node/cluster.d.ts +0 -578
- package/daemon/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
- package/daemon/node_modules/@types/node/compatibility/index.d.ts +0 -9
- package/daemon/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
- package/daemon/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
- package/daemon/node_modules/@types/node/console.d.ts +0 -452
- package/daemon/node_modules/@types/node/constants.d.ts +0 -21
- package/daemon/node_modules/@types/node/crypto.d.ts +0 -4570
- package/daemon/node_modules/@types/node/dgram.d.ts +0 -596
- package/daemon/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
- package/daemon/node_modules/@types/node/dns/promises.d.ts +0 -479
- package/daemon/node_modules/@types/node/dns.d.ts +0 -871
- package/daemon/node_modules/@types/node/domain.d.ts +0 -170
- package/daemon/node_modules/@types/node/events.d.ts +0 -931
- package/daemon/node_modules/@types/node/fs/promises.d.ts +0 -1248
- package/daemon/node_modules/@types/node/fs.d.ts +0 -4362
- package/daemon/node_modules/@types/node/globals.d.ts +0 -170
- package/daemon/node_modules/@types/node/globals.typedarray.d.ts +0 -21
- package/daemon/node_modules/@types/node/http.d.ts +0 -2031
- package/daemon/node_modules/@types/node/http2.d.ts +0 -2623
- package/daemon/node_modules/@types/node/https.d.ts +0 -549
- package/daemon/node_modules/@types/node/index.d.ts +0 -93
- package/daemon/node_modules/@types/node/inspector.generated.d.ts +0 -3966
- package/daemon/node_modules/@types/node/module.d.ts +0 -539
- package/daemon/node_modules/@types/node/net.d.ts +0 -1011
- package/daemon/node_modules/@types/node/os.d.ts +0 -495
- package/daemon/node_modules/@types/node/package.json +0 -140
- package/daemon/node_modules/@types/node/path.d.ts +0 -200
- package/daemon/node_modules/@types/node/perf_hooks.d.ts +0 -963
- package/daemon/node_modules/@types/node/process.d.ts +0 -1956
- package/daemon/node_modules/@types/node/punycode.d.ts +0 -117
- package/daemon/node_modules/@types/node/querystring.d.ts +0 -152
- package/daemon/node_modules/@types/node/readline/promises.d.ts +0 -162
- package/daemon/node_modules/@types/node/readline.d.ts +0 -589
- package/daemon/node_modules/@types/node/repl.d.ts +0 -430
- package/daemon/node_modules/@types/node/sea.d.ts +0 -153
- package/daemon/node_modules/@types/node/stream/consumers.d.ts +0 -38
- package/daemon/node_modules/@types/node/stream/promises.d.ts +0 -90
- package/daemon/node_modules/@types/node/stream/web.d.ts +0 -533
- package/daemon/node_modules/@types/node/stream.d.ts +0 -1668
- package/daemon/node_modules/@types/node/string_decoder.d.ts +0 -67
- package/daemon/node_modules/@types/node/test.d.ts +0 -1807
- package/daemon/node_modules/@types/node/timers/promises.d.ts +0 -108
- package/daemon/node_modules/@types/node/timers.d.ts +0 -286
- package/daemon/node_modules/@types/node/tls.d.ts +0 -1231
- package/daemon/node_modules/@types/node/trace_events.d.ts +0 -197
- package/daemon/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
- package/daemon/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
- package/daemon/node_modules/@types/node/ts5.6/index.d.ts +0 -93
- package/daemon/node_modules/@types/node/tty.d.ts +0 -208
- package/daemon/node_modules/@types/node/url.d.ts +0 -964
- package/daemon/node_modules/@types/node/util.d.ts +0 -2331
- package/daemon/node_modules/@types/node/v8.d.ts +0 -808
- package/daemon/node_modules/@types/node/vm.d.ts +0 -1030
- package/daemon/node_modules/@types/node/wasi.d.ts +0 -181
- package/daemon/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
- package/daemon/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
- package/daemon/node_modules/@types/node/web-globals/events.d.ts +0 -94
- package/daemon/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
- package/daemon/node_modules/@types/node/worker_threads.d.ts +0 -743
- package/daemon/node_modules/@types/node/zlib.d.ts +0 -539
- package/daemon/node_modules/undici-types/README.md +0 -6
- package/daemon/node_modules/undici-types/agent.d.ts +0 -31
- package/daemon/node_modules/undici-types/api.d.ts +0 -43
- package/daemon/node_modules/undici-types/balanced-pool.d.ts +0 -29
- package/daemon/node_modules/undici-types/cache.d.ts +0 -36
- package/daemon/node_modules/undici-types/client.d.ts +0 -108
- package/daemon/node_modules/undici-types/connector.d.ts +0 -34
- package/daemon/node_modules/undici-types/content-type.d.ts +0 -21
- package/daemon/node_modules/undici-types/cookies.d.ts +0 -28
- package/daemon/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
- package/daemon/node_modules/undici-types/dispatcher.d.ts +0 -256
- package/daemon/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
- package/daemon/node_modules/undici-types/errors.d.ts +0 -149
- package/daemon/node_modules/undici-types/eventsource.d.ts +0 -61
- package/daemon/node_modules/undici-types/fetch.d.ts +0 -209
- package/daemon/node_modules/undici-types/file.d.ts +0 -39
- package/daemon/node_modules/undici-types/filereader.d.ts +0 -54
- package/daemon/node_modules/undici-types/formdata.d.ts +0 -108
- package/daemon/node_modules/undici-types/global-dispatcher.d.ts +0 -9
- package/daemon/node_modules/undici-types/global-origin.d.ts +0 -7
- package/daemon/node_modules/undici-types/handlers.d.ts +0 -15
- package/daemon/node_modules/undici-types/header.d.ts +0 -4
- package/daemon/node_modules/undici-types/index.d.ts +0 -71
- package/daemon/node_modules/undici-types/interceptors.d.ts +0 -17
- package/daemon/node_modules/undici-types/mock-agent.d.ts +0 -50
- package/daemon/node_modules/undici-types/mock-client.d.ts +0 -25
- package/daemon/node_modules/undici-types/mock-errors.d.ts +0 -12
- package/daemon/node_modules/undici-types/mock-interceptor.d.ts +0 -93
- package/daemon/node_modules/undici-types/mock-pool.d.ts +0 -25
- package/daemon/node_modules/undici-types/package.json +0 -55
- package/daemon/node_modules/undici-types/patch.d.ts +0 -33
- package/daemon/node_modules/undici-types/pool-stats.d.ts +0 -19
- package/daemon/node_modules/undici-types/pool.d.ts +0 -39
- package/daemon/node_modules/undici-types/proxy-agent.d.ts +0 -28
- package/daemon/node_modules/undici-types/readable.d.ts +0 -65
- package/daemon/node_modules/undici-types/retry-agent.d.ts +0 -8
- package/daemon/node_modules/undici-types/retry-handler.d.ts +0 -116
- package/daemon/node_modules/undici-types/util.d.ts +0 -18
- package/daemon/node_modules/undici-types/webidl.d.ts +0 -228
- package/daemon/node_modules/undici-types/websocket.d.ts +0 -150
- package/visual-editor-proxy/node_modules/@types/node/LICENSE +0 -21
- package/visual-editor-proxy/node_modules/@types/node/README.md +0 -15
- package/visual-editor-proxy/node_modules/@types/node/assert/strict.d.ts +0 -8
- package/visual-editor-proxy/node_modules/@types/node/assert.d.ts +0 -1062
- package/visual-editor-proxy/node_modules/@types/node/async_hooks.d.ts +0 -605
- package/visual-editor-proxy/node_modules/@types/node/buffer.buffer.d.ts +0 -462
- package/visual-editor-proxy/node_modules/@types/node/buffer.d.ts +0 -1932
- package/visual-editor-proxy/node_modules/@types/node/child_process.d.ts +0 -1458
- package/visual-editor-proxy/node_modules/@types/node/cluster.d.ts +0 -577
- package/visual-editor-proxy/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
- package/visual-editor-proxy/node_modules/@types/node/compatibility/index.d.ts +0 -9
- package/visual-editor-proxy/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
- package/visual-editor-proxy/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
- package/visual-editor-proxy/node_modules/@types/node/console.d.ts +0 -452
- package/visual-editor-proxy/node_modules/@types/node/constants.d.ts +0 -21
- package/visual-editor-proxy/node_modules/@types/node/crypto.d.ts +0 -4570
- package/visual-editor-proxy/node_modules/@types/node/dgram.d.ts +0 -596
- package/visual-editor-proxy/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
- package/visual-editor-proxy/node_modules/@types/node/dns/promises.d.ts +0 -479
- package/visual-editor-proxy/node_modules/@types/node/dns.d.ts +0 -871
- package/visual-editor-proxy/node_modules/@types/node/domain.d.ts +0 -170
- package/visual-editor-proxy/node_modules/@types/node/events.d.ts +0 -977
- package/visual-editor-proxy/node_modules/@types/node/fs/promises.d.ts +0 -1248
- package/visual-editor-proxy/node_modules/@types/node/fs.d.ts +0 -4362
- package/visual-editor-proxy/node_modules/@types/node/globals.d.ts +0 -172
- package/visual-editor-proxy/node_modules/@types/node/globals.typedarray.d.ts +0 -21
- package/visual-editor-proxy/node_modules/@types/node/http.d.ts +0 -2030
- package/visual-editor-proxy/node_modules/@types/node/http2.d.ts +0 -2624
- package/visual-editor-proxy/node_modules/@types/node/https.d.ts +0 -546
- package/visual-editor-proxy/node_modules/@types/node/index.d.ts +0 -93
- package/visual-editor-proxy/node_modules/@types/node/inspector.generated.d.ts +0 -3966
- package/visual-editor-proxy/node_modules/@types/node/module.d.ts +0 -539
- package/visual-editor-proxy/node_modules/@types/node/net.d.ts +0 -1011
- package/visual-editor-proxy/node_modules/@types/node/os.d.ts +0 -505
- package/visual-editor-proxy/node_modules/@types/node/package.json +0 -140
- package/visual-editor-proxy/node_modules/@types/node/path.d.ts +0 -200
- package/visual-editor-proxy/node_modules/@types/node/perf_hooks.d.ts +0 -961
- package/visual-editor-proxy/node_modules/@types/node/process.d.ts +0 -1944
- package/visual-editor-proxy/node_modules/@types/node/punycode.d.ts +0 -117
- package/visual-editor-proxy/node_modules/@types/node/querystring.d.ts +0 -152
- package/visual-editor-proxy/node_modules/@types/node/readline/promises.d.ts +0 -162
- package/visual-editor-proxy/node_modules/@types/node/readline.d.ts +0 -589
- package/visual-editor-proxy/node_modules/@types/node/repl.d.ts +0 -430
- package/visual-editor-proxy/node_modules/@types/node/sea.d.ts +0 -153
- package/visual-editor-proxy/node_modules/@types/node/stream/consumers.d.ts +0 -38
- package/visual-editor-proxy/node_modules/@types/node/stream/promises.d.ts +0 -90
- package/visual-editor-proxy/node_modules/@types/node/stream/web.d.ts +0 -533
- package/visual-editor-proxy/node_modules/@types/node/stream.d.ts +0 -1675
- package/visual-editor-proxy/node_modules/@types/node/string_decoder.d.ts +0 -67
- package/visual-editor-proxy/node_modules/@types/node/test.d.ts +0 -1787
- package/visual-editor-proxy/node_modules/@types/node/timers/promises.d.ts +0 -108
- package/visual-editor-proxy/node_modules/@types/node/timers.d.ts +0 -286
- package/visual-editor-proxy/node_modules/@types/node/tls.d.ts +0 -1231
- package/visual-editor-proxy/node_modules/@types/node/trace_events.d.ts +0 -197
- package/visual-editor-proxy/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
- package/visual-editor-proxy/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
- package/visual-editor-proxy/node_modules/@types/node/ts5.6/index.d.ts +0 -93
- package/visual-editor-proxy/node_modules/@types/node/tty.d.ts +0 -208
- package/visual-editor-proxy/node_modules/@types/node/url.d.ts +0 -964
- package/visual-editor-proxy/node_modules/@types/node/util.d.ts +0 -2331
- package/visual-editor-proxy/node_modules/@types/node/v8.d.ts +0 -808
- package/visual-editor-proxy/node_modules/@types/node/vm.d.ts +0 -1000
- package/visual-editor-proxy/node_modules/@types/node/wasi.d.ts +0 -181
- package/visual-editor-proxy/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
- package/visual-editor-proxy/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
- package/visual-editor-proxy/node_modules/@types/node/web-globals/events.d.ts +0 -97
- package/visual-editor-proxy/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
- package/visual-editor-proxy/node_modules/@types/node/worker_threads.d.ts +0 -715
- package/visual-editor-proxy/node_modules/@types/node/zlib.d.ts +0 -539
- package/visual-editor-proxy/node_modules/undici-types/LICENSE +0 -21
- package/visual-editor-proxy/node_modules/undici-types/README.md +0 -6
- package/visual-editor-proxy/node_modules/undici-types/agent.d.ts +0 -31
- package/visual-editor-proxy/node_modules/undici-types/api.d.ts +0 -43
- package/visual-editor-proxy/node_modules/undici-types/balanced-pool.d.ts +0 -29
- package/visual-editor-proxy/node_modules/undici-types/cache.d.ts +0 -36
- package/visual-editor-proxy/node_modules/undici-types/client.d.ts +0 -108
- package/visual-editor-proxy/node_modules/undici-types/connector.d.ts +0 -34
- package/visual-editor-proxy/node_modules/undici-types/content-type.d.ts +0 -21
- package/visual-editor-proxy/node_modules/undici-types/cookies.d.ts +0 -28
- package/visual-editor-proxy/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
- package/visual-editor-proxy/node_modules/undici-types/dispatcher.d.ts +0 -256
- package/visual-editor-proxy/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
- package/visual-editor-proxy/node_modules/undici-types/errors.d.ts +0 -149
- package/visual-editor-proxy/node_modules/undici-types/eventsource.d.ts +0 -61
- package/visual-editor-proxy/node_modules/undici-types/fetch.d.ts +0 -209
- package/visual-editor-proxy/node_modules/undici-types/file.d.ts +0 -39
- package/visual-editor-proxy/node_modules/undici-types/filereader.d.ts +0 -54
- package/visual-editor-proxy/node_modules/undici-types/formdata.d.ts +0 -108
- package/visual-editor-proxy/node_modules/undici-types/global-dispatcher.d.ts +0 -9
- package/visual-editor-proxy/node_modules/undici-types/global-origin.d.ts +0 -7
- package/visual-editor-proxy/node_modules/undici-types/handlers.d.ts +0 -15
- package/visual-editor-proxy/node_modules/undici-types/header.d.ts +0 -4
- package/visual-editor-proxy/node_modules/undici-types/index.d.ts +0 -71
- package/visual-editor-proxy/node_modules/undici-types/interceptors.d.ts +0 -17
- package/visual-editor-proxy/node_modules/undici-types/mock-agent.d.ts +0 -50
- package/visual-editor-proxy/node_modules/undici-types/mock-client.d.ts +0 -25
- package/visual-editor-proxy/node_modules/undici-types/mock-errors.d.ts +0 -12
- package/visual-editor-proxy/node_modules/undici-types/mock-interceptor.d.ts +0 -93
- package/visual-editor-proxy/node_modules/undici-types/mock-pool.d.ts +0 -25
- package/visual-editor-proxy/node_modules/undici-types/package.json +0 -55
- package/visual-editor-proxy/node_modules/undici-types/patch.d.ts +0 -33
- package/visual-editor-proxy/node_modules/undici-types/pool-stats.d.ts +0 -19
- package/visual-editor-proxy/node_modules/undici-types/pool.d.ts +0 -39
- package/visual-editor-proxy/node_modules/undici-types/proxy-agent.d.ts +0 -28
- package/visual-editor-proxy/node_modules/undici-types/readable.d.ts +0 -65
- package/visual-editor-proxy/node_modules/undici-types/retry-agent.d.ts +0 -8
- package/visual-editor-proxy/node_modules/undici-types/retry-handler.d.ts +0 -116
- package/visual-editor-proxy/node_modules/undici-types/util.d.ts +0 -18
- package/visual-editor-proxy/node_modules/undici-types/webidl.d.ts +0 -228
- package/visual-editor-proxy/node_modules/undici-types/websocket.d.ts +0 -150
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.js","sourceRoot":"","sources":["../../../src/core-entities/enums.ts"],"names":[],"mappings":";;;AAiBA,IAAY,cAqBX;AArBD,WAAY,cAAc;IAExB,uCAAqB,CAAA;IAErB,uDAAqC,CAAA;IAErC,yDAAuC,CAAA;IAEvC,2DAAyC,CAAA;IAEzC,iEAA+C,CAAA;IAE/C,mEAAiD,CAAA;IAEjD,mDAAiC,CAAA;IAEjC,2DAAyC,CAAA;IAEzC,uDAAqC,CAAA;IAErC,iDAA+B,CAAA;AACjC,CAAC,EArBW,cAAc,8BAAd,cAAc,QAqBzB;AAMD,IAAY,YA2BX;AA3BD,WAAY,YAAY;IAEtB,2CAA2B,CAAA;IAE3B,iDAAiC,CAAA;IAEjC,2CAA2B,CAAA;IAE3B,2CAA2B,CAAA;IAE3B,mDAAmC,CAAA;IAEnC,+BAAe,CAAA;IAEf,6CAA6B,CAAA;IAE7B,yCAAyB,CAAA;IAEzB,yCAAyB,CAAA;IAEzB,+BAAe,CAAA;IAEf,2CAA2B,CAAA;IAE3B,yCAAyB,CAAA;IAEzB,6CAA6B,CAAA;AAC/B,CAAC,EA3BW,YAAY,4BAAZ,YAAY,QA2BvB;AAKD,IAAY,aASX;AATD,WAAY,aAAa;IAEvB,kCAAiB,CAAA;IAEjB,wCAAuB,CAAA;IAEvB,oCAAmB,CAAA;IAEnB,kCAAiB,CAAA;AACnB,CAAC,EATW,aAAa,6BAAb,aAAa,QASxB;AAQD,IAAY,iBAKX;AALD,WAAY,iBAAiB;IAE3B,kDAA6B,CAAA;IAE7B,kDAA6B,CAAA;AAC/B,CAAC,EALW,iBAAiB,iCAAjB,iBAAiB,QAK5B;AAKD,IAAY,iBAWX;AAXD,WAAY,iBAAiB;IAE3B,wCAAmB,CAAA;IAEnB,4CAAuB,CAAA;IAEvB,sCAAiB,CAAA;IAEjB,wCAAmB,CAAA;IAEnB,4CAAuB,CAAA;AACzB,CAAC,EAXW,iBAAiB,iCAAjB,iBAAiB,QAW5B;AAOD,IAAY,YAGX;AAHD,WAAY,YAAY;IACtB,6BAAa,CAAA;IACb,mCAAmB,CAAA;AACrB,CAAC,EAHW,YAAY,4BAAZ,YAAY,QAGvB;AAMD,IAAY,eAOX;AAPD,WAAY,eAAe;IACzB,kCAAe,CAAA;IACf,gCAAa,CAAA;IACb,oCAAiB,CAAA;IACjB,8BAAW,CAAA;IACX,sCAAmB,CAAA;IACnB,gCAAa,CAAA;AACf,CAAC,EAPW,eAAe,+BAAf,eAAe,QAO1B;AAOD,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,mCAAiB,CAAA;IACjB,iCAAe,CAAA;AACjB,CAAC,EAHW,cAAc,8BAAd,cAAc,QAGzB;AAKD,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,4BAAa,CAAA;IACb,8BAAe,CAAA;AACjB,CAAC,EAHW,WAAW,2BAAX,WAAW,QAGtB"}
|
|
@@ -11,16 +11,25 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.ExecutionLog = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
15
|
const base_entity_1 = require("./base.entity");
|
|
15
16
|
const ai_action_entity_1 = require("./ai-action.entity");
|
|
16
17
|
let ExecutionLog = class ExecutionLog extends base_entity_1.BaseEntity {
|
|
17
18
|
};
|
|
18
19
|
exports.ExecutionLog = ExecutionLog;
|
|
19
20
|
__decorate([
|
|
21
|
+
(0, swagger_1.ApiProperty)({
|
|
22
|
+
description: 'UUID of the AIAction this log belongs to',
|
|
23
|
+
format: 'uuid',
|
|
24
|
+
}),
|
|
20
25
|
(0, typeorm_1.Column)({ type: 'uuid' }),
|
|
21
26
|
__metadata("design:type", String)
|
|
22
27
|
], ExecutionLog.prototype, "action_id", void 0);
|
|
23
28
|
__decorate([
|
|
29
|
+
(0, swagger_1.ApiProperty)({
|
|
30
|
+
description: 'The AIAction entity this log belongs to',
|
|
31
|
+
type: () => ai_action_entity_1.AIAction,
|
|
32
|
+
}),
|
|
24
33
|
(0, typeorm_1.ManyToOne)(() => ai_action_entity_1.AIAction, (aiAction) => aiAction.executionLogs, {
|
|
25
34
|
nullable: false,
|
|
26
35
|
onDelete: 'CASCADE',
|
|
@@ -29,10 +38,16 @@ __decorate([
|
|
|
29
38
|
__metadata("design:type", ai_action_entity_1.AIAction)
|
|
30
39
|
], ExecutionLog.prototype, "aiAction", void 0);
|
|
31
40
|
__decorate([
|
|
41
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
42
|
+
description: 'Standard output from execution',
|
|
43
|
+
}),
|
|
32
44
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
33
45
|
__metadata("design:type", String)
|
|
34
46
|
], ExecutionLog.prototype, "output", void 0);
|
|
35
47
|
__decorate([
|
|
48
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
49
|
+
description: 'Error message if execution failed',
|
|
50
|
+
}),
|
|
36
51
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
37
52
|
__metadata("design:type", String)
|
|
38
53
|
], ExecutionLog.prototype, "error_message", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execution-log.entity.js","sourceRoot":"","sources":["../../../src/core-entities/execution-log.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,+CAA2C;AAC3C,yDAA8C;
|
|
1
|
+
{"version":3,"file":"execution-log.entity.js","sourceRoot":"","sources":["../../../src/core-entities/execution-log.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,6CAAmE;AACnE,+CAA2C;AAC3C,yDAA8C;AAOvC,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,wBAAU;CA8B3C,CAAA;AA9BY,oCAAY;AAMvB;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,0CAA0C;QACvD,MAAM,EAAE,MAAM;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;+CACP;AAWlB;IATC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,yCAAyC;QACtD,IAAI,EAAE,GAAG,EAAE,CAAC,2BAAQ;KACrB,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,2BAAQ,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,EAAE;QAC/D,QAAQ,EAAE,KAAK;QACf,QAAQ,EAAE,SAAS;KACpB,CAAC;IACD,IAAA,oBAAU,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC;8BACxB,2BAAQ;8CAAC;AAMnB;IAJC,IAAA,6BAAmB,EAAC;QACnB,WAAW,EAAE,gCAAgC;KAC9C,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CAC1B;AAMf;IAJC,IAAA,6BAAmB,EAAC;QACnB,WAAW,EAAE,mCAAmC;KACjD,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDACnB;uBA7BX,YAAY;IADxB,IAAA,gBAAM,EAAC,gBAAgB,CAAC;GACZ,YAAY,CA8BxB"}
|
|
@@ -14,5 +14,4 @@ export * from './mcp-tool.entity';
|
|
|
14
14
|
export * from './custom-variable.entity';
|
|
15
15
|
export * from './tool-hook.entity';
|
|
16
16
|
export * from './llm-call-log.entity';
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './llm-call-log.entity';
|
|
17
|
+
export * from './enums';
|
|
@@ -30,6 +30,5 @@ __exportStar(require("./mcp-tool.entity"), exports);
|
|
|
30
30
|
__exportStar(require("./custom-variable.entity"), exports);
|
|
31
31
|
__exportStar(require("./tool-hook.entity"), exports);
|
|
32
32
|
__exportStar(require("./llm-call-log.entity"), exports);
|
|
33
|
-
__exportStar(require("./
|
|
34
|
-
__exportStar(require("./llm-call-log.entity"), exports);
|
|
33
|
+
__exportStar(require("./enums"), exports);
|
|
35
34
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core-entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,mDAAiC;AACjC,mDAAiC;AACjC,4DAA0C;AAC1C,yDAAuC;AACvC,qDAAmC;AACnC,yDAAuC;AACvC,yDAAuC;AACvC,0DAAwC;AACxC,6DAA2C;AAC3C,2DAAyC;AACzC,sDAAoC;AACpC,oDAAkC;AAClC,2DAAyC;AACzC,qDAAmC;AACnC,wDAAsC;AACtC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core-entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,mDAAiC;AACjC,mDAAiC;AACjC,4DAA0C;AAC1C,yDAAuC;AACvC,qDAAmC;AACnC,yDAAuC;AACvC,yDAAuC;AACvC,0DAAwC;AACxC,6DAA2C;AAC3C,2DAAyC;AACzC,sDAAoC;AACpC,oDAAkC;AAClC,2DAAyC;AACzC,qDAAmC;AACnC,wDAAsC;AACtC,0CAAwB"}
|
|
@@ -11,55 +11,98 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.LlmCallLog = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
15
|
const base_entity_1 = require("../core-entities/base.entity");
|
|
15
16
|
let LlmCallLog = class LlmCallLog extends base_entity_1.BaseEntity {
|
|
16
17
|
};
|
|
17
18
|
exports.LlmCallLog = LlmCallLog;
|
|
18
19
|
__decorate([
|
|
20
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
21
|
+
description: 'UUID of the session input that triggered this call',
|
|
22
|
+
format: 'uuid',
|
|
23
|
+
}),
|
|
19
24
|
(0, typeorm_1.Index)(),
|
|
20
25
|
(0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
|
|
21
26
|
__metadata("design:type", String)
|
|
22
27
|
], LlmCallLog.prototype, "session_input_id", void 0);
|
|
23
28
|
__decorate([
|
|
29
|
+
(0, swagger_1.ApiProperty)({
|
|
30
|
+
description: 'LLM provider used for this request',
|
|
31
|
+
enum: ['zai', 'openrouter', 'gemini', 'alibaba'],
|
|
32
|
+
example: 'gemini',
|
|
33
|
+
}),
|
|
24
34
|
(0, typeorm_1.Index)(),
|
|
25
35
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
26
36
|
__metadata("design:type", String)
|
|
27
37
|
], LlmCallLog.prototype, "provider", void 0);
|
|
28
38
|
__decorate([
|
|
39
|
+
(0, swagger_1.ApiProperty)({
|
|
40
|
+
description: 'Model identifier used for this request',
|
|
41
|
+
example: 'gemini-2.0-flash',
|
|
42
|
+
}),
|
|
29
43
|
(0, typeorm_1.Index)(),
|
|
30
44
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
31
45
|
__metadata("design:type", String)
|
|
32
46
|
], LlmCallLog.prototype, "model_id", void 0);
|
|
33
47
|
__decorate([
|
|
48
|
+
(0, swagger_1.ApiProperty)({
|
|
49
|
+
description: 'Full request body sent to the provider (JSON string)',
|
|
50
|
+
}),
|
|
34
51
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
35
52
|
__metadata("design:type", String)
|
|
36
53
|
], LlmCallLog.prototype, "request_body", void 0);
|
|
37
54
|
__decorate([
|
|
55
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
56
|
+
description: 'Full response body received from the provider',
|
|
57
|
+
}),
|
|
38
58
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
39
59
|
__metadata("design:type", String)
|
|
40
60
|
], LlmCallLog.prototype, "response_body", void 0);
|
|
41
61
|
__decorate([
|
|
62
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
63
|
+
description: 'HTTP status code of the response',
|
|
64
|
+
example: 200,
|
|
65
|
+
}),
|
|
42
66
|
(0, typeorm_1.Index)(),
|
|
43
67
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
44
68
|
__metadata("design:type", Number)
|
|
45
69
|
], LlmCallLog.prototype, "status_code", void 0);
|
|
46
70
|
__decorate([
|
|
71
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
72
|
+
description: 'Request latency in milliseconds',
|
|
73
|
+
example: 2500,
|
|
74
|
+
}),
|
|
47
75
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
48
76
|
__metadata("design:type", Number)
|
|
49
77
|
], LlmCallLog.prototype, "latency_ms", void 0);
|
|
50
78
|
__decorate([
|
|
79
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
80
|
+
description: 'Number of input tokens used',
|
|
81
|
+
example: 5000,
|
|
82
|
+
}),
|
|
51
83
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
52
84
|
__metadata("design:type", Number)
|
|
53
85
|
], LlmCallLog.prototype, "input_tokens", void 0);
|
|
54
86
|
__decorate([
|
|
87
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
88
|
+
description: 'Number of output tokens generated',
|
|
89
|
+
example: 800,
|
|
90
|
+
}),
|
|
55
91
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
56
92
|
__metadata("design:type", Number)
|
|
57
93
|
], LlmCallLog.prototype, "output_tokens", void 0);
|
|
58
94
|
__decorate([
|
|
95
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
96
|
+
description: 'Number of cached tokens used (for context caching)',
|
|
97
|
+
example: 3000,
|
|
98
|
+
}),
|
|
59
99
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
60
100
|
__metadata("design:type", Number)
|
|
61
101
|
], LlmCallLog.prototype, "cached_tokens", void 0);
|
|
62
102
|
__decorate([
|
|
103
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
104
|
+
description: 'Error message if the request failed',
|
|
105
|
+
}),
|
|
63
106
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
64
107
|
__metadata("design:type", String)
|
|
65
108
|
], LlmCallLog.prototype, "error_message", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llm-call-log.entity.js","sourceRoot":"","sources":["../../../src/core-entities/llm-call-log.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgD;AAChD,8DAA0D;
|
|
1
|
+
{"version":3,"file":"llm-call-log.entity.js","sourceRoot":"","sources":["../../../src/core-entities/llm-call-log.entity.ts"],"names":[],"mappings":"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"}
|
|
@@ -11,28 +11,55 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.McpConfig = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
15
|
const base_entity_1 = require("./base.entity");
|
|
15
16
|
let McpConfig = class McpConfig extends base_entity_1.BaseEntity {
|
|
16
17
|
};
|
|
17
18
|
exports.McpConfig = McpConfig;
|
|
18
19
|
__decorate([
|
|
20
|
+
(0, swagger_1.ApiProperty)({
|
|
21
|
+
description: 'Unique name for this MCP server',
|
|
22
|
+
example: 'filesystem',
|
|
23
|
+
}),
|
|
19
24
|
(0, typeorm_1.Column)({ type: 'text', unique: true }),
|
|
20
25
|
(0, typeorm_1.Index)(),
|
|
21
26
|
__metadata("design:type", String)
|
|
22
27
|
], McpConfig.prototype, "server_name", void 0);
|
|
23
28
|
__decorate([
|
|
29
|
+
(0, swagger_1.ApiProperty)({
|
|
30
|
+
description: 'Command to launch the MCP server',
|
|
31
|
+
example: 'npx',
|
|
32
|
+
}),
|
|
24
33
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
25
34
|
__metadata("design:type", String)
|
|
26
35
|
], McpConfig.prototype, "command", void 0);
|
|
27
36
|
__decorate([
|
|
37
|
+
(0, swagger_1.ApiProperty)({
|
|
38
|
+
description: 'Arguments for the command',
|
|
39
|
+
example: [
|
|
40
|
+
'-y',
|
|
41
|
+
'@modelcontextprotocol/server-filesystem',
|
|
42
|
+
'/path/to/project',
|
|
43
|
+
],
|
|
44
|
+
type: 'array',
|
|
45
|
+
}),
|
|
28
46
|
(0, typeorm_1.Column)({ type: 'json' }),
|
|
29
47
|
__metadata("design:type", Array)
|
|
30
48
|
], McpConfig.prototype, "args", void 0);
|
|
31
49
|
__decorate([
|
|
50
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
51
|
+
description: 'Environment variables for the server process',
|
|
52
|
+
example: { NODE_ENV: 'production' },
|
|
53
|
+
}),
|
|
32
54
|
(0, typeorm_1.Column)({ type: 'json', nullable: true }),
|
|
33
55
|
__metadata("design:type", Object)
|
|
34
56
|
], McpConfig.prototype, "env", void 0);
|
|
35
57
|
__decorate([
|
|
58
|
+
(0, swagger_1.ApiProperty)({
|
|
59
|
+
description: 'Whether this MCP server is active/enabled',
|
|
60
|
+
example: true,
|
|
61
|
+
default: true,
|
|
62
|
+
}),
|
|
36
63
|
(0, typeorm_1.Column)({ type: 'boolean', default: true }),
|
|
37
64
|
__metadata("design:type", Boolean)
|
|
38
65
|
], McpConfig.prototype, "is_active", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp-config.entity.js","sourceRoot":"","sources":["../../../src/core-entities/mcp-config.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgD;AAChD,+CAA2C;
|
|
1
|
+
{"version":3,"file":"mcp-config.entity.js","sourceRoot":"","sources":["../../../src/core-entities/mcp-config.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgD;AAChD,6CAAmE;AACnE,+CAA2C;AAUpC,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,wBAAU;CA0CxC,CAAA;AA1CY,8BAAS;AAOpB;IANC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,iCAAiC;QAC9C,OAAO,EAAE,YAAY;KACtB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;IACtC,IAAA,eAAK,GAAE;;8CACY;AAOpB;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,kCAAkC;QAC/C,OAAO,EAAE,KAAK;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;0CACT;AAYhB;IAVC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,2BAA2B;QACxC,OAAO,EAAE;YACP,IAAI;YACJ,yCAAyC;YACzC,kBAAkB;SACnB;QACD,IAAI,EAAE,OAAO;KACd,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;uCACV;AAOf;IALC,IAAA,6BAAmB,EAAC;QACnB,WAAW,EAAE,8CAA8C;QAC3D,OAAO,EAAE,EAAE,QAAQ,EAAE,YAAY,EAAE;KACpC,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sCACb;AAQ5B;IANC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,2CAA2C;QACxD,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;4CACxB;oBAzCR,SAAS;IADrB,IAAA,gBAAM,EAAC,aAAa,CAAC;GACT,SAAS,CA0CrB"}
|
|
@@ -11,29 +11,55 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.McpTool = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
15
|
const base_entity_1 = require("./base.entity");
|
|
15
16
|
let McpTool = class McpTool extends base_entity_1.BaseEntity {
|
|
16
17
|
};
|
|
17
18
|
exports.McpTool = McpTool;
|
|
18
19
|
__decorate([
|
|
20
|
+
(0, swagger_1.ApiProperty)({
|
|
21
|
+
description: 'Name of the MCP server that provides this tool',
|
|
22
|
+
example: 'filesystem',
|
|
23
|
+
}),
|
|
19
24
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
20
25
|
(0, typeorm_1.Index)(),
|
|
21
26
|
__metadata("design:type", String)
|
|
22
27
|
], McpTool.prototype, "server_name", void 0);
|
|
23
28
|
__decorate([
|
|
29
|
+
(0, swagger_1.ApiProperty)({
|
|
30
|
+
description: 'Name of the tool (unique within server)',
|
|
31
|
+
example: 'read_file',
|
|
32
|
+
}),
|
|
24
33
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
25
34
|
(0, typeorm_1.Index)(),
|
|
26
35
|
__metadata("design:type", String)
|
|
27
36
|
], McpTool.prototype, "tool_name", void 0);
|
|
28
37
|
__decorate([
|
|
38
|
+
(0, swagger_1.ApiProperty)({
|
|
39
|
+
description: 'Human-readable description of what this tool does',
|
|
40
|
+
example: 'Read the contents of a file from the filesystem',
|
|
41
|
+
}),
|
|
29
42
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
30
43
|
__metadata("design:type", String)
|
|
31
44
|
], McpTool.prototype, "description", void 0);
|
|
32
45
|
__decorate([
|
|
46
|
+
(0, swagger_1.ApiProperty)({
|
|
47
|
+
description: 'JSON Schema defining the tool input parameters',
|
|
48
|
+
example: {
|
|
49
|
+
type: 'object',
|
|
50
|
+
properties: { path: { type: 'string' } },
|
|
51
|
+
required: ['path'],
|
|
52
|
+
},
|
|
53
|
+
}),
|
|
33
54
|
(0, typeorm_1.Column)({ type: 'json' }),
|
|
34
55
|
__metadata("design:type", Object)
|
|
35
56
|
], McpTool.prototype, "input_schema", void 0);
|
|
36
57
|
__decorate([
|
|
58
|
+
(0, swagger_1.ApiProperty)({
|
|
59
|
+
description: 'Whether this tool is enabled for LLM use',
|
|
60
|
+
example: true,
|
|
61
|
+
default: true,
|
|
62
|
+
}),
|
|
37
63
|
(0, typeorm_1.Column)({ type: 'boolean', default: true }),
|
|
38
64
|
__metadata("design:type", Boolean)
|
|
39
65
|
], McpTool.prototype, "is_active", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp-tool.entity.js","sourceRoot":"","sources":["../../../src/core-entities/mcp-tool.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAwD;AACxD,+CAA2C;
|
|
1
|
+
{"version":3,"file":"mcp-tool.entity.js","sourceRoot":"","sources":["../../../src/core-entities/mcp-tool.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAwD;AACxD,6CAA8C;AAC9C,+CAA2C;AAYpC,IAAM,OAAO,GAAb,MAAM,OAAQ,SAAQ,wBAAU;CA0CtC,CAAA;AA1CY,0BAAO;AAOlB;IANC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,gDAAgD;QAC7D,OAAO,EAAE,YAAY;KACtB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;IACxB,IAAA,eAAK,GAAE;;4CACY;AAQpB;IANC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,yCAAyC;QACtD,OAAO,EAAE,WAAW;KACrB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;IACxB,IAAA,eAAK,GAAE;;0CACU;AAOlB;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,mDAAmD;QAChE,OAAO,EAAE,iDAAiD;KAC3D,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;4CACL;AAWpB;IATC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,gDAAgD;QAC7D,OAAO,EAAE;YACP,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;YACxC,QAAQ,EAAE,CAAC,MAAM,CAAC;SACnB;KACF,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;6CACS;AAQlC;IANC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,0CAA0C;QACvD,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;0CACxB;kBAzCR,OAAO;IAFnB,IAAA,gBAAM,EAAC,WAAW,CAAC;IACnB,IAAA,gBAAM,EAAC,CAAC,aAAa,EAAE,WAAW,CAAC,CAAC;GACxB,OAAO,CA0CnB"}
|
|
@@ -11,20 +11,33 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.Project = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
15
|
const base_entity_1 = require("./base.entity");
|
|
15
16
|
const session_entity_1 = require("./session.entity");
|
|
16
17
|
let Project = class Project extends base_entity_1.BaseEntity {
|
|
17
18
|
};
|
|
18
19
|
exports.Project = Project;
|
|
19
20
|
__decorate([
|
|
21
|
+
(0, swagger_1.ApiProperty)({
|
|
22
|
+
description: 'Human-readable name for the project',
|
|
23
|
+
example: 'My React App',
|
|
24
|
+
}),
|
|
20
25
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
21
26
|
__metadata("design:type", String)
|
|
22
27
|
], Project.prototype, "project_name", void 0);
|
|
23
28
|
__decorate([
|
|
29
|
+
(0, swagger_1.ApiProperty)({
|
|
30
|
+
description: 'Absolute filesystem path to the project directory',
|
|
31
|
+
example: '/Users/dev/projects/my-react-app',
|
|
32
|
+
}),
|
|
24
33
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
25
34
|
__metadata("design:type", String)
|
|
26
35
|
], Project.prototype, "project_path", void 0);
|
|
27
36
|
__decorate([
|
|
37
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
38
|
+
description: 'Sessions associated with this project',
|
|
39
|
+
type: () => [session_entity_1.Session],
|
|
40
|
+
}),
|
|
28
41
|
(0, typeorm_1.OneToMany)(() => session_entity_1.Session, (session) => session.project),
|
|
29
42
|
__metadata("design:type", Array)
|
|
30
43
|
], Project.prototype, "sessions", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project.entity.js","sourceRoot":"","sources":["../../../src/core-entities/project.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAoD;AACpD,+CAA2C;AAC3C,qDAA2C;
|
|
1
|
+
{"version":3,"file":"project.entity.js","sourceRoot":"","sources":["../../../src/core-entities/project.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAoD;AACpD,6CAAmE;AACnE,+CAA2C;AAC3C,qDAA2C;AAOpC,IAAM,OAAO,GAAb,MAAM,OAAQ,SAAQ,wBAAU;CAqBtC,CAAA;AArBY,0BAAO;AAMlB;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,qCAAqC;QAClD,OAAO,EAAE,cAAc;KACxB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;6CACJ;AAOrB;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,mDAAmD;QAChE,OAAO,EAAE,kCAAkC;KAC5C,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;6CACJ;AAOrB;IALC,IAAA,6BAAmB,EAAC;QACnB,WAAW,EAAE,uCAAuC;QACpD,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,wBAAO,CAAC;KACtB,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wBAAO,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC;;yCACnC;kBApBT,OAAO;IADnB,IAAA,gBAAM,EAAC,UAAU,CAAC;GACN,OAAO,CAqBnB"}
|
|
@@ -11,22 +11,36 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.SessionInput = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
15
|
const base_entity_1 = require("./base.entity");
|
|
15
16
|
const session_entity_1 = require("./session.entity");
|
|
16
17
|
const context_template_entity_1 = require("./context-template.entity");
|
|
17
18
|
const ai_action_entity_1 = require("./ai-action.entity");
|
|
19
|
+
const enums_1 = require("./enums");
|
|
18
20
|
let SessionInput = class SessionInput extends base_entity_1.BaseEntity {
|
|
19
21
|
};
|
|
20
22
|
exports.SessionInput = SessionInput;
|
|
21
23
|
__decorate([
|
|
24
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
25
|
+
description: 'Sequence number within session (for ordering)',
|
|
26
|
+
example: 1,
|
|
27
|
+
}),
|
|
22
28
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
23
29
|
__metadata("design:type", Number)
|
|
24
30
|
], SessionInput.prototype, "sequence_number", void 0);
|
|
25
31
|
__decorate([
|
|
32
|
+
(0, swagger_1.ApiProperty)({
|
|
33
|
+
description: 'UUID of the parent session',
|
|
34
|
+
format: 'uuid',
|
|
35
|
+
}),
|
|
26
36
|
(0, typeorm_1.Column)({ type: 'uuid' }),
|
|
27
37
|
__metadata("design:type", String)
|
|
28
38
|
], SessionInput.prototype, "session_id", void 0);
|
|
29
39
|
__decorate([
|
|
40
|
+
(0, swagger_1.ApiProperty)({
|
|
41
|
+
description: 'The parent session entity',
|
|
42
|
+
type: () => session_entity_1.Session,
|
|
43
|
+
}),
|
|
30
44
|
(0, typeorm_1.ManyToOne)(() => session_entity_1.Session, (session) => session.sessionInputs, {
|
|
31
45
|
nullable: false,
|
|
32
46
|
onDelete: 'CASCADE',
|
|
@@ -35,14 +49,26 @@ __decorate([
|
|
|
35
49
|
__metadata("design:type", session_entity_1.Session)
|
|
36
50
|
], SessionInput.prototype, "session", void 0);
|
|
37
51
|
__decorate([
|
|
52
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
53
|
+
description: 'The user prompt text sent to the LLM',
|
|
54
|
+
example: 'Create a new authentication module with JWT support',
|
|
55
|
+
}),
|
|
38
56
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
39
57
|
__metadata("design:type", String)
|
|
40
58
|
], SessionInput.prototype, "user_prompt", void 0);
|
|
41
59
|
__decorate([
|
|
60
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
61
|
+
description: 'UUID of the context template used for context generation',
|
|
62
|
+
format: 'uuid',
|
|
63
|
+
}),
|
|
42
64
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
43
65
|
__metadata("design:type", String)
|
|
44
66
|
], SessionInput.prototype, "context_template_id", void 0);
|
|
45
67
|
__decorate([
|
|
68
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
69
|
+
description: 'The context template entity used',
|
|
70
|
+
type: () => context_template_entity_1.ContextTemplate,
|
|
71
|
+
}),
|
|
46
72
|
(0, typeorm_1.ManyToOne)(() => context_template_entity_1.ContextTemplate, (ct) => ct.sessionInputs, {
|
|
47
73
|
nullable: true,
|
|
48
74
|
onDelete: 'SET NULL',
|
|
@@ -51,80 +77,149 @@ __decorate([
|
|
|
51
77
|
__metadata("design:type", context_template_entity_1.ContextTemplate)
|
|
52
78
|
], SessionInput.prototype, "contextTemplate", void 0);
|
|
53
79
|
__decorate([
|
|
80
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
81
|
+
description: 'Ad-hoc context definition (JSON or TEXT) for custom file/folder selection',
|
|
82
|
+
example: '{"files": ["src/auth.ts"], "folders": ["src/utils"]}',
|
|
83
|
+
}),
|
|
54
84
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
55
85
|
__metadata("design:type", String)
|
|
56
86
|
], SessionInput.prototype, "ad_hoc_context_definition", void 0);
|
|
57
87
|
__decorate([
|
|
88
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
89
|
+
description: 'The rendered context string sent to the LLM',
|
|
90
|
+
}),
|
|
58
91
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
59
92
|
__metadata("design:type", String)
|
|
60
93
|
], SessionInput.prototype, "generated_context_string", void 0);
|
|
61
94
|
__decorate([
|
|
95
|
+
(0, swagger_1.ApiProperty)({
|
|
96
|
+
description: 'How actions from this input should be processed',
|
|
97
|
+
enum: enums_1.ExecutionStrategy,
|
|
98
|
+
enumName: 'ExecutionStrategy',
|
|
99
|
+
example: enums_1.ExecutionStrategy.REVIEW_FIRST,
|
|
100
|
+
}),
|
|
62
101
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
63
102
|
__metadata("design:type", String)
|
|
64
103
|
], SessionInput.prototype, "execution_strategy", void 0);
|
|
65
104
|
__decorate([
|
|
105
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
106
|
+
description: 'Raw LLM response text (for debugging and history)',
|
|
107
|
+
}),
|
|
66
108
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
67
109
|
__metadata("design:type", String)
|
|
68
110
|
], SessionInput.prototype, "raw_llm_response", void 0);
|
|
69
111
|
__decorate([
|
|
112
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
113
|
+
description: 'Explanation text from the LLM response',
|
|
114
|
+
}),
|
|
70
115
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
71
116
|
__metadata("design:type", String)
|
|
72
117
|
], SessionInput.prototype, "llm_response_explanation", void 0);
|
|
73
118
|
__decorate([
|
|
119
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
120
|
+
description: 'Raw request body sent to AI Studio (for state reversion)',
|
|
121
|
+
}),
|
|
74
122
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
75
123
|
__metadata("design:type", String)
|
|
76
124
|
], SessionInput.prototype, "raw_studio_request_body", void 0);
|
|
77
125
|
__decorate([
|
|
126
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
127
|
+
description: 'Idempotency key to prevent duplicate submissions',
|
|
128
|
+
format: 'uuid',
|
|
129
|
+
}),
|
|
78
130
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
79
131
|
__metadata("design:type", String)
|
|
80
132
|
], SessionInput.prototype, "idempotency_key", void 0);
|
|
81
133
|
__decorate([
|
|
134
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
135
|
+
description: 'Whether this input carries context without a prompt (for context-only turns)',
|
|
136
|
+
example: false,
|
|
137
|
+
default: false,
|
|
138
|
+
}),
|
|
82
139
|
(0, typeorm_1.Column)({ type: 'boolean', default: false }),
|
|
83
140
|
__metadata("design:type", Boolean)
|
|
84
141
|
], SessionInput.prototype, "is_context_carrier", void 0);
|
|
85
142
|
__decorate([
|
|
143
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
144
|
+
description: 'AI actions generated from this input',
|
|
145
|
+
type: () => [ai_action_entity_1.AIAction],
|
|
146
|
+
}),
|
|
86
147
|
(0, typeorm_1.OneToMany)(() => ai_action_entity_1.AIAction, (aiAction) => aiAction.sessionInput),
|
|
87
148
|
__metadata("design:type", Array)
|
|
88
149
|
], SessionInput.prototype, "aiActions", void 0);
|
|
89
150
|
__decorate([
|
|
151
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
152
|
+
description: 'Thinking/reasoning content from the LLM (for models that support it)',
|
|
153
|
+
}),
|
|
90
154
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
91
155
|
__metadata("design:type", String)
|
|
92
156
|
], SessionInput.prototype, "thoughts", void 0);
|
|
93
157
|
__decorate([
|
|
158
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
159
|
+
description: 'Role of this message in conversation (user or model)',
|
|
160
|
+
enum: enums_1.MessageRole,
|
|
161
|
+
enumName: 'MessageRole',
|
|
162
|
+
}),
|
|
94
163
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
95
164
|
__metadata("design:type", String)
|
|
96
165
|
], SessionInput.prototype, "role", void 0);
|
|
97
166
|
__decorate([
|
|
167
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
168
|
+
description: 'External conversation ID (from synced external source like AI Studio)',
|
|
169
|
+
}),
|
|
98
170
|
(0, typeorm_1.Index)(),
|
|
99
171
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
100
172
|
__metadata("design:type", String)
|
|
101
173
|
], SessionInput.prototype, "external_conversation_id", void 0);
|
|
102
174
|
__decorate([
|
|
175
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
176
|
+
description: 'External turn ID (from synced external source)',
|
|
177
|
+
}),
|
|
103
178
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
104
179
|
__metadata("design:type", String)
|
|
105
180
|
], SessionInput.prototype, "external_turn_id", void 0);
|
|
106
181
|
__decorate([
|
|
182
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
183
|
+
description: 'Number of input tokens used in this request',
|
|
184
|
+
example: 5000,
|
|
185
|
+
}),
|
|
107
186
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
108
187
|
__metadata("design:type", Number)
|
|
109
188
|
], SessionInput.prototype, "input_token_count", void 0);
|
|
110
189
|
__decorate([
|
|
190
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
191
|
+
description: 'Number of cached tokens used (for context caching)',
|
|
192
|
+
example: 3000,
|
|
193
|
+
}),
|
|
111
194
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
112
195
|
__metadata("design:type", Number)
|
|
113
196
|
], SessionInput.prototype, "cached_token_count", void 0);
|
|
114
197
|
__decorate([
|
|
198
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
199
|
+
description: 'Number of output tokens generated',
|
|
200
|
+
example: 800,
|
|
201
|
+
}),
|
|
115
202
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
116
203
|
__metadata("design:type", Number)
|
|
117
204
|
], SessionInput.prototype, "output_token_count", void 0);
|
|
118
205
|
__decorate([
|
|
206
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
207
|
+
description: 'Error message if LLM request failed',
|
|
208
|
+
}),
|
|
119
209
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
120
210
|
__metadata("design:type", String)
|
|
121
211
|
], SessionInput.prototype, "error_message", void 0);
|
|
122
212
|
__decorate([
|
|
213
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
214
|
+
description: 'Native tool calls from LLM response (JSON string)',
|
|
215
|
+
example: '[{"name": "create_file", "arguments": {"file_path": "src/auth.ts"}}]',
|
|
216
|
+
}),
|
|
123
217
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
124
218
|
__metadata("design:type", String)
|
|
125
219
|
], SessionInput.prototype, "tool_calls", void 0);
|
|
126
220
|
exports.SessionInput = SessionInput = __decorate([
|
|
127
221
|
(0, typeorm_1.Entity)('session_inputs'),
|
|
222
|
+
(0, typeorm_1.Index)(['session_id']),
|
|
128
223
|
(0, typeorm_1.Index)(['session_id', 'idempotency_key'], {
|
|
129
224
|
unique: true,
|
|
130
225
|
where: '"idempotency_key" IS NOT NULL',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"session-input.entity.js","sourceRoot":"","sources":["../../../src/core-entities/session-input.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAOiB;AACjB,+CAA2C;AAC3C,qDAA2C;AAC3C,uEAA4D;AAC5D,yDAA8C;
|
|
1
|
+
{"version":3,"file":"session-input.entity.js","sourceRoot":"","sources":["../../../src/core-entities/session-input.entity.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,8 +3,8 @@ import { Project } from './project.entity';
|
|
|
3
3
|
import { ContextTemplate } from './context-template.entity';
|
|
4
4
|
import { SessionInput } from './session-input.entity';
|
|
5
5
|
import { SystemPrompt } from './system-prompt.entity';
|
|
6
|
-
import { ReasoningEffort } from '../llm-provider/llm-provider.interface';
|
|
7
6
|
import { SubAgent } from '../sub-agents/sub-agent.entity';
|
|
7
|
+
import { ReasoningEffort } from './enums';
|
|
8
8
|
export declare class Session extends BaseEntity {
|
|
9
9
|
project_id: string | null;
|
|
10
10
|
project: Project;
|