repoburg 1.3.87 → 1.3.88
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/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/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/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 +94 -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/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 +0 -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.js +112 -0
- package/backend/dist/src/sessions/sessions.controller.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 +1 -3
- 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
|
@@ -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,75 +77,143 @@ __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);
|
|
@@ -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;
|
|
@@ -11,21 +11,31 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.Session = 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 project_entity_1 = require("./project.entity");
|
|
16
17
|
const context_template_entity_1 = require("./context-template.entity");
|
|
17
18
|
const session_input_entity_1 = require("./session-input.entity");
|
|
18
19
|
const system_prompt_entity_1 = require("./system-prompt.entity");
|
|
19
|
-
const llm_provider_interface_1 = require("../llm-provider/llm-provider.interface");
|
|
20
20
|
const sub_agent_entity_1 = require("../sub-agents/sub-agent.entity");
|
|
21
|
+
const enums_1 = require("./enums");
|
|
21
22
|
let Session = class Session extends base_entity_1.BaseEntity {
|
|
22
23
|
};
|
|
23
24
|
exports.Session = Session;
|
|
24
25
|
__decorate([
|
|
26
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
27
|
+
description: 'UUID of the associated project',
|
|
28
|
+
format: 'uuid',
|
|
29
|
+
example: '550e8400-e29b-41d4-a716-446655440001',
|
|
30
|
+
}),
|
|
25
31
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
26
32
|
__metadata("design:type", String)
|
|
27
33
|
], Session.prototype, "project_id", void 0);
|
|
28
34
|
__decorate([
|
|
35
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
36
|
+
description: 'The project this session belongs to',
|
|
37
|
+
type: () => project_entity_1.Project,
|
|
38
|
+
}),
|
|
29
39
|
(0, typeorm_1.ManyToOne)(() => project_entity_1.Project, (project) => project.sessions, {
|
|
30
40
|
nullable: true,
|
|
31
41
|
onDelete: 'SET NULL',
|
|
@@ -34,22 +44,46 @@ __decorate([
|
|
|
34
44
|
__metadata("design:type", project_entity_1.Project)
|
|
35
45
|
], Session.prototype, "project", void 0);
|
|
36
46
|
__decorate([
|
|
47
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
48
|
+
description: 'Human-readable title for the session',
|
|
49
|
+
example: 'Refactor authentication module',
|
|
50
|
+
maxLength: 255,
|
|
51
|
+
}),
|
|
37
52
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
38
53
|
__metadata("design:type", String)
|
|
39
54
|
], Session.prototype, "session_title", void 0);
|
|
40
55
|
__decorate([
|
|
56
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
57
|
+
description: 'Timestamp when the session ended',
|
|
58
|
+
type: 'string',
|
|
59
|
+
format: 'date-time',
|
|
60
|
+
}),
|
|
41
61
|
(0, typeorm_1.Column)({ type: 'datetime', nullable: true }),
|
|
42
62
|
__metadata("design:type", Date)
|
|
43
63
|
], Session.prototype, "end_time", void 0);
|
|
44
64
|
__decorate([
|
|
65
|
+
(0, swagger_1.ApiProperty)({
|
|
66
|
+
description: 'Current status of the session',
|
|
67
|
+
enum: enums_1.SessionStatus,
|
|
68
|
+
example: enums_1.SessionStatus.ACTIVE,
|
|
69
|
+
enumName: 'SessionStatus',
|
|
70
|
+
}),
|
|
45
71
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
46
72
|
__metadata("design:type", String)
|
|
47
73
|
], Session.prototype, "status", void 0);
|
|
48
74
|
__decorate([
|
|
75
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
76
|
+
description: 'UUID of the system prompt configuration used',
|
|
77
|
+
format: 'uuid',
|
|
78
|
+
}),
|
|
49
79
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
50
80
|
__metadata("design:type", String)
|
|
51
81
|
], Session.prototype, "system_prompt_id", void 0);
|
|
52
82
|
__decorate([
|
|
83
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
84
|
+
description: 'The system prompt entity used for this session',
|
|
85
|
+
type: () => system_prompt_entity_1.SystemPrompt,
|
|
86
|
+
}),
|
|
53
87
|
(0, typeorm_1.ManyToOne)(() => system_prompt_entity_1.SystemPrompt, (sp) => sp.sessions, {
|
|
54
88
|
nullable: true,
|
|
55
89
|
onDelete: 'SET NULL',
|
|
@@ -58,10 +92,18 @@ __decorate([
|
|
|
58
92
|
__metadata("design:type", system_prompt_entity_1.SystemPrompt)
|
|
59
93
|
], Session.prototype, "systemPrompt", void 0);
|
|
60
94
|
__decorate([
|
|
95
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
96
|
+
description: 'UUID of default context template for initial prompts',
|
|
97
|
+
format: 'uuid',
|
|
98
|
+
}),
|
|
61
99
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
62
100
|
__metadata("design:type", String)
|
|
63
101
|
], Session.prototype, "default_initial_context_template_id", void 0);
|
|
64
102
|
__decorate([
|
|
103
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
104
|
+
description: 'Default context template for initial prompts in this session',
|
|
105
|
+
type: () => context_template_entity_1.ContextTemplate,
|
|
106
|
+
}),
|
|
65
107
|
(0, typeorm_1.ManyToOne)(() => context_template_entity_1.ContextTemplate, (ct) => ct.sessionsAsInitialDefault, {
|
|
66
108
|
nullable: true,
|
|
67
109
|
onDelete: 'SET NULL',
|
|
@@ -70,10 +112,18 @@ __decorate([
|
|
|
70
112
|
__metadata("design:type", context_template_entity_1.ContextTemplate)
|
|
71
113
|
], Session.prototype, "defaultInitialContextTemplate", void 0);
|
|
72
114
|
__decorate([
|
|
115
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
116
|
+
description: 'UUID of default context template for follow-up prompts',
|
|
117
|
+
format: 'uuid',
|
|
118
|
+
}),
|
|
73
119
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
74
120
|
__metadata("design:type", String)
|
|
75
121
|
], Session.prototype, "default_followup_context_template_id", void 0);
|
|
76
122
|
__decorate([
|
|
123
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
124
|
+
description: 'Default context template for follow-up prompts in this session',
|
|
125
|
+
type: () => context_template_entity_1.ContextTemplate,
|
|
126
|
+
}),
|
|
77
127
|
(0, typeorm_1.ManyToOne)(() => context_template_entity_1.ContextTemplate, (ct) => ct.sessionsAsFollowupDefault, {
|
|
78
128
|
nullable: true,
|
|
79
129
|
onDelete: 'SET NULL',
|
|
@@ -82,22 +132,44 @@ __decorate([
|
|
|
82
132
|
__metadata("design:type", context_template_entity_1.ContextTemplate)
|
|
83
133
|
], Session.prototype, "defaultFollowupContextTemplate", void 0);
|
|
84
134
|
__decorate([
|
|
135
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
136
|
+
description: 'External URL link (e.g., AI Studio or Claude chat URL)',
|
|
137
|
+
example: 'https://aistudio.google.com/chat/abc123',
|
|
138
|
+
}),
|
|
85
139
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
86
140
|
__metadata("design:type", String)
|
|
87
141
|
], Session.prototype, "url", void 0);
|
|
88
142
|
__decorate([
|
|
143
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
144
|
+
description: 'Model identifier used for this session',
|
|
145
|
+
example: 'gemini-2.0-flash',
|
|
146
|
+
}),
|
|
89
147
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
90
148
|
__metadata("design:type", String)
|
|
91
149
|
], Session.prototype, "model_id", void 0);
|
|
92
150
|
__decorate([
|
|
151
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
152
|
+
description: 'Reasoning effort level for the model',
|
|
153
|
+
enum: enums_1.ReasoningEffort,
|
|
154
|
+
enumName: 'ReasoningEffort',
|
|
155
|
+
example: enums_1.ReasoningEffort.MEDIUM,
|
|
156
|
+
}),
|
|
93
157
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
94
158
|
__metadata("design:type", String)
|
|
95
159
|
], Session.prototype, "reasoning_effort", void 0);
|
|
96
160
|
__decorate([
|
|
161
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
162
|
+
description: 'UUID of the sub-agent assigned to this session',
|
|
163
|
+
format: 'uuid',
|
|
164
|
+
}),
|
|
97
165
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
98
166
|
__metadata("design:type", String)
|
|
99
167
|
], Session.prototype, "sub_agent_id", void 0);
|
|
100
168
|
__decorate([
|
|
169
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
170
|
+
description: 'The sub-agent entity assigned to this session',
|
|
171
|
+
type: () => sub_agent_entity_1.SubAgent,
|
|
172
|
+
}),
|
|
101
173
|
(0, typeorm_1.ManyToOne)(() => sub_agent_entity_1.SubAgent, {
|
|
102
174
|
nullable: true,
|
|
103
175
|
onDelete: 'SET NULL',
|
|
@@ -106,10 +178,18 @@ __decorate([
|
|
|
106
178
|
__metadata("design:type", sub_agent_entity_1.SubAgent)
|
|
107
179
|
], Session.prototype, "subAgent", void 0);
|
|
108
180
|
__decorate([
|
|
181
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
182
|
+
description: 'UUID of parent session (for follow-up/spawned sessions)',
|
|
183
|
+
format: 'uuid',
|
|
184
|
+
}),
|
|
109
185
|
(0, typeorm_1.Column)({ type: 'uuid', nullable: true }),
|
|
110
186
|
__metadata("design:type", String)
|
|
111
187
|
], Session.prototype, "parent_session_id", void 0);
|
|
112
188
|
__decorate([
|
|
189
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
190
|
+
description: 'The parent session this was spawned from',
|
|
191
|
+
type: () => Session,
|
|
192
|
+
}),
|
|
113
193
|
(0, typeorm_1.ManyToOne)(() => Session, {
|
|
114
194
|
nullable: true,
|
|
115
195
|
onDelete: 'SET NULL',
|
|
@@ -118,13 +198,28 @@ __decorate([
|
|
|
118
198
|
__metadata("design:type", Session)
|
|
119
199
|
], Session.prototype, "parentSession", void 0);
|
|
120
200
|
__decorate([
|
|
201
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
202
|
+
description: 'All input prompts in this session',
|
|
203
|
+
type: () => [session_input_entity_1.SessionInput],
|
|
204
|
+
}),
|
|
121
205
|
(0, typeorm_1.OneToMany)(() => session_input_entity_1.SessionInput, (sessionInput) => sessionInput.session),
|
|
122
206
|
__metadata("design:type", Array)
|
|
123
207
|
], Session.prototype, "sessionInputs", void 0);
|
|
124
208
|
__decorate([
|
|
209
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
210
|
+
description: 'Child sessions spawned from this session',
|
|
211
|
+
type: () => [Session],
|
|
212
|
+
}),
|
|
125
213
|
(0, typeorm_1.OneToMany)(() => Session, 'parent_session_id'),
|
|
126
214
|
__metadata("design:type", Array)
|
|
127
215
|
], Session.prototype, "childSessions", void 0);
|
|
216
|
+
__decorate([
|
|
217
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
218
|
+
description: 'Count of inputs in this session (computed field)',
|
|
219
|
+
example: 5,
|
|
220
|
+
}),
|
|
221
|
+
__metadata("design:type", Number)
|
|
222
|
+
], Session.prototype, "sessionInputCount", void 0);
|
|
128
223
|
exports.Session = Session = __decorate([
|
|
129
224
|
(0, typeorm_1.Entity)('sessions')
|
|
130
225
|
], Session);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"session.entity.js","sourceRoot":"","sources":["../../../src/core-entities/session.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAA2E;AAC3E,+CAA2C;AAC3C,qDAA2C;AAC3C,uEAA4D;AAC5D,iEAAsD;AACtD,iEAAsD;AACtD,
|
|
1
|
+
{"version":3,"file":"session.entity.js","sourceRoot":"","sources":["../../../src/core-entities/session.entity.ts"],"names":[],"mappings":"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"}
|
|
@@ -11,36 +11,65 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.SystemPrompt = 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 SystemPrompt = class SystemPrompt extends base_entity_1.BaseEntity {
|
|
17
18
|
};
|
|
18
19
|
exports.SystemPrompt = SystemPrompt;
|
|
19
20
|
__decorate([
|
|
21
|
+
(0, swagger_1.ApiProperty)({
|
|
22
|
+
description: 'Human-readable name for this system prompt',
|
|
23
|
+
example: 'Default Assistant',
|
|
24
|
+
}),
|
|
20
25
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
21
26
|
__metadata("design:type", String)
|
|
22
27
|
], SystemPrompt.prototype, "prompt_name", void 0);
|
|
23
28
|
__decorate([
|
|
29
|
+
(0, swagger_1.ApiProperty)({
|
|
30
|
+
description: 'Prompt content (Eta template syntax supported). Tool definitions are injected when rendered.',
|
|
31
|
+
}),
|
|
24
32
|
(0, typeorm_1.Column)({ type: 'text' }),
|
|
25
33
|
__metadata("design:type", String)
|
|
26
34
|
], SystemPrompt.prototype, "prompt_content", void 0);
|
|
27
35
|
__decorate([
|
|
36
|
+
(0, swagger_1.ApiProperty)({
|
|
37
|
+
description: 'Whether this is the default system prompt for new sessions',
|
|
38
|
+
example: true,
|
|
39
|
+
default: false,
|
|
40
|
+
}),
|
|
28
41
|
(0, typeorm_1.Column)({ type: 'boolean', default: false }),
|
|
29
42
|
__metadata("design:type", Boolean)
|
|
30
43
|
], SystemPrompt.prototype, "is_default", void 0);
|
|
31
44
|
__decorate([
|
|
45
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
46
|
+
description: 'URL link to external AI interface (e.g., AI Studio)',
|
|
47
|
+
example: 'https://aistudio.google.com',
|
|
48
|
+
}),
|
|
32
49
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
33
50
|
__metadata("design:type", String)
|
|
34
51
|
], SystemPrompt.prototype, "url", void 0);
|
|
35
52
|
__decorate([
|
|
53
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
54
|
+
description: 'Enabled tools: "all" or JSON array of tool names',
|
|
55
|
+
example: 'all',
|
|
56
|
+
}),
|
|
36
57
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
37
58
|
__metadata("design:type", String)
|
|
38
59
|
], SystemPrompt.prototype, "enabledTools", void 0);
|
|
39
60
|
__decorate([
|
|
61
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
62
|
+
description: 'Token limit for follow-up context generation',
|
|
63
|
+
example: 8000,
|
|
64
|
+
}),
|
|
40
65
|
(0, typeorm_1.Column)({ type: 'integer', nullable: true }),
|
|
41
66
|
__metadata("design:type", Number)
|
|
42
67
|
], SystemPrompt.prototype, "followup_token_limit", void 0);
|
|
43
68
|
__decorate([
|
|
69
|
+
(0, swagger_1.ApiPropertyOptional)({
|
|
70
|
+
description: 'Sessions using this system prompt',
|
|
71
|
+
type: () => [session_entity_1.Session],
|
|
72
|
+
}),
|
|
44
73
|
(0, typeorm_1.OneToMany)(() => session_entity_1.Session, (session) => session.systemPrompt),
|
|
45
74
|
__metadata("design:type", Array)
|
|
46
75
|
], SystemPrompt.prototype, "sessions", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"system-prompt.entity.js","sourceRoot":"","sources":["../../../src/core-entities/system-prompt.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAoD;AACpD,+CAA2C;AAC3C,qDAA2C;
|
|
1
|
+
{"version":3,"file":"system-prompt.entity.js","sourceRoot":"","sources":["../../../src/core-entities/system-prompt.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAoD;AACpD,6CAAmE;AACnE,+CAA2C;AAC3C,qDAA2C;AAWpC,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,wBAAU;CAkD3C,CAAA;AAlDY,oCAAY;AAMvB;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,4CAA4C;QACzD,OAAO,EAAE,mBAAmB;KAC7B,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;iDACL;AAOpB;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EACT,8FAA8F;KACjG,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;oDACF;AAQvB;IANC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,4DAA4D;QACzE,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,KAAK;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;gDACxB;AAOpB;IALC,IAAA,6BAAmB,EAAC;QACnB,WAAW,EAAE,qDAAqD;QAClE,OAAO,EAAE,6BAA6B;KACvC,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yCAC7B;AAOZ;IALC,IAAA,6BAAmB,EAAC;QACnB,WAAW,EAAE,kDAAkD;QAC/D,OAAO,EAAE,KAAK;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDACb;AAO5B;IALC,IAAA,6BAAmB,EAAC;QACnB,WAAW,EAAE,8CAA8C;QAC3D,OAAO,EAAE,IAAI;KACd,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACR;AAOpC;IALC,IAAA,6BAAmB,EAAC;QACnB,WAAW,EAAE,mCAAmC;QAChD,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,YAAY,CAAC;;8CACxC;uBAjDT,YAAY;IADxB,IAAA,gBAAM,EAAC,gBAAgB,CAAC;GACZ,YAAY,CAkDxB"}
|
|
@@ -11,23 +11,44 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.ToolHook = 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");
|
|
16
|
+
const enums_1 = require("./enums");
|
|
15
17
|
let ToolHook = class ToolHook extends base_entity_1.BaseEntity {
|
|
16
18
|
};
|
|
17
19
|
exports.ToolHook = ToolHook;
|
|
18
20
|
__decorate([
|
|
21
|
+
(0, swagger_1.ApiProperty)({
|
|
22
|
+
description: 'Name of the tool this hook attaches to',
|
|
23
|
+
example: 'create_file',
|
|
24
|
+
}),
|
|
19
25
|
(0, typeorm_1.Column)(),
|
|
20
26
|
__metadata("design:type", String)
|
|
21
27
|
], ToolHook.prototype, "tool_name", void 0);
|
|
22
28
|
__decorate([
|
|
29
|
+
(0, swagger_1.ApiProperty)({
|
|
30
|
+
description: 'When to execute this hook (before or after tool execution)',
|
|
31
|
+
enum: enums_1.ToolHookTiming,
|
|
32
|
+
enumName: 'ToolHookTiming',
|
|
33
|
+
example: enums_1.ToolHookTiming.BEFORE,
|
|
34
|
+
}),
|
|
23
35
|
(0, typeorm_1.Column)(),
|
|
24
36
|
__metadata("design:type", String)
|
|
25
37
|
], ToolHook.prototype, "timing", void 0);
|
|
26
38
|
__decorate([
|
|
39
|
+
(0, swagger_1.ApiProperty)({
|
|
40
|
+
description: 'Filename of the hook script (stored in .repoburg/hooks/)',
|
|
41
|
+
example: 'create_file_validator.ts',
|
|
42
|
+
}),
|
|
27
43
|
(0, typeorm_1.Column)(),
|
|
28
44
|
__metadata("design:type", String)
|
|
29
45
|
], ToolHook.prototype, "script_filename", void 0);
|
|
30
46
|
__decorate([
|
|
47
|
+
(0, swagger_1.ApiProperty)({
|
|
48
|
+
description: 'Whether this hook is active/enabled',
|
|
49
|
+
example: true,
|
|
50
|
+
default: true,
|
|
51
|
+
}),
|
|
31
52
|
(0, typeorm_1.Column)({ default: true }),
|
|
32
53
|
__metadata("design:type", Boolean)
|
|
33
54
|
], ToolHook.prototype, "is_active", void 0);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool-hook.entity.js","sourceRoot":"","sources":["../../../src/core-entities/tool-hook.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,+CAA2C;
|
|
1
|
+
{"version":3,"file":"tool-hook.entity.js","sourceRoot":"","sources":["../../../src/core-entities/tool-hook.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6CAA8C;AAC9C,+CAA2C;AAC3C,mCAAyC;AAelC,IAAM,QAAQ,GAAd,MAAM,QAAS,SAAQ,wBAAU;CA+BvC,CAAA;AA/BY,4BAAQ;AAMnB;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,wCAAwC;QACrD,OAAO,EAAE,aAAa;KACvB,CAAC;IACD,IAAA,gBAAM,GAAE;;2CACS;AASlB;IAPC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,4DAA4D;QACzE,IAAI,EAAE,sBAAc;QACpB,QAAQ,EAAE,gBAAgB;QAC1B,OAAO,EAAE,sBAAc,CAAC,MAAM;KAC/B,CAAC;IACD,IAAA,gBAAM,GAAE;;wCACkB;AAO3B;IALC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,0DAA0D;QACvE,OAAO,EAAE,0BAA0B;KACpC,CAAC;IACD,IAAA,gBAAM,GAAE;;iDACe;AAQxB;IANC,IAAA,qBAAW,EAAC;QACX,WAAW,EAAE,qCAAqC;QAClD,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;2CACP;mBA9BR,QAAQ;IADpB,IAAA,gBAAM,EAAC,YAAY,CAAC;GACR,QAAQ,CA+BpB"}
|