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
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
import { IncomingHttpHeaders } from './header'
|
|
2
|
-
import Dispatcher from './dispatcher';
|
|
3
|
-
import { BodyInit, Headers } from './fetch'
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
Interceptable,
|
|
7
|
-
MockInterceptor,
|
|
8
|
-
MockScope
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
/** The scope associated with a mock dispatch. */
|
|
12
|
-
declare class MockScope<TData extends object = object> {
|
|
13
|
-
constructor(mockDispatch: MockInterceptor.MockDispatch<TData>);
|
|
14
|
-
/** Delay a reply by a set amount of time in ms. */
|
|
15
|
-
delay(waitInMs: number): MockScope<TData>;
|
|
16
|
-
/** Persist the defined mock data for the associated reply. It will return the defined mock data indefinitely. */
|
|
17
|
-
persist(): MockScope<TData>;
|
|
18
|
-
/** Define a reply for a set amount of matching requests. */
|
|
19
|
-
times(repeatTimes: number): MockScope<TData>;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/** The interceptor for a Mock. */
|
|
23
|
-
declare class MockInterceptor {
|
|
24
|
-
constructor(options: MockInterceptor.Options, mockDispatches: MockInterceptor.MockDispatch[]);
|
|
25
|
-
/** Mock an undici request with the defined reply. */
|
|
26
|
-
reply<TData extends object = object>(replyOptionsCallback: MockInterceptor.MockReplyOptionsCallback<TData>): MockScope<TData>;
|
|
27
|
-
reply<TData extends object = object>(
|
|
28
|
-
statusCode: number,
|
|
29
|
-
data?: TData | Buffer | string | MockInterceptor.MockResponseDataHandler<TData>,
|
|
30
|
-
responseOptions?: MockInterceptor.MockResponseOptions
|
|
31
|
-
): MockScope<TData>;
|
|
32
|
-
/** Mock an undici request by throwing the defined reply error. */
|
|
33
|
-
replyWithError<TError extends Error = Error>(error: TError): MockScope;
|
|
34
|
-
/** Set default reply headers on the interceptor for subsequent mocked replies. */
|
|
35
|
-
defaultReplyHeaders(headers: IncomingHttpHeaders): MockInterceptor;
|
|
36
|
-
/** Set default reply trailers on the interceptor for subsequent mocked replies. */
|
|
37
|
-
defaultReplyTrailers(trailers: Record<string, string>): MockInterceptor;
|
|
38
|
-
/** Set automatically calculated content-length header on subsequent mocked replies. */
|
|
39
|
-
replyContentLength(): MockInterceptor;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
declare namespace MockInterceptor {
|
|
43
|
-
/** MockInterceptor options. */
|
|
44
|
-
export interface Options {
|
|
45
|
-
/** Path to intercept on. */
|
|
46
|
-
path: string | RegExp | ((path: string) => boolean);
|
|
47
|
-
/** Method to intercept on. Defaults to GET. */
|
|
48
|
-
method?: string | RegExp | ((method: string) => boolean);
|
|
49
|
-
/** Body to intercept on. */
|
|
50
|
-
body?: string | RegExp | ((body: string) => boolean);
|
|
51
|
-
/** Headers to intercept on. */
|
|
52
|
-
headers?: Record<string, string | RegExp | ((body: string) => boolean)> | ((headers: Record<string, string>) => boolean);
|
|
53
|
-
/** Query params to intercept on */
|
|
54
|
-
query?: Record<string, any>;
|
|
55
|
-
}
|
|
56
|
-
export interface MockDispatch<TData extends object = object, TError extends Error = Error> extends Options {
|
|
57
|
-
times: number | null;
|
|
58
|
-
persist: boolean;
|
|
59
|
-
consumed: boolean;
|
|
60
|
-
data: MockDispatchData<TData, TError>;
|
|
61
|
-
}
|
|
62
|
-
export interface MockDispatchData<TData extends object = object, TError extends Error = Error> extends MockResponseOptions {
|
|
63
|
-
error: TError | null;
|
|
64
|
-
statusCode?: number;
|
|
65
|
-
data?: TData | string;
|
|
66
|
-
}
|
|
67
|
-
export interface MockResponseOptions {
|
|
68
|
-
headers?: IncomingHttpHeaders;
|
|
69
|
-
trailers?: Record<string, string>;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export interface MockResponseCallbackOptions {
|
|
73
|
-
path: string;
|
|
74
|
-
method: string;
|
|
75
|
-
headers?: Headers | Record<string, string>;
|
|
76
|
-
origin?: string;
|
|
77
|
-
body?: BodyInit | Dispatcher.DispatchOptions['body'] | null;
|
|
78
|
-
maxRedirections?: number;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export type MockResponseDataHandler<TData extends object = object> = (
|
|
82
|
-
opts: MockResponseCallbackOptions
|
|
83
|
-
) => TData | Buffer | string;
|
|
84
|
-
|
|
85
|
-
export type MockReplyOptionsCallback<TData extends object = object> = (
|
|
86
|
-
opts: MockResponseCallbackOptions
|
|
87
|
-
) => { statusCode: number, data?: TData | Buffer | string, responseOptions?: MockResponseOptions }
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
interface Interceptable extends Dispatcher {
|
|
91
|
-
/** Intercepts any matching requests that use the same origin as this mock client. */
|
|
92
|
-
intercept(options: MockInterceptor.Options): MockInterceptor;
|
|
93
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import Pool from './pool'
|
|
2
|
-
import MockAgent from './mock-agent'
|
|
3
|
-
import { Interceptable, MockInterceptor } from './mock-interceptor'
|
|
4
|
-
import Dispatcher from './dispatcher'
|
|
5
|
-
|
|
6
|
-
export default MockPool
|
|
7
|
-
|
|
8
|
-
/** MockPool extends the Pool API and allows one to mock requests. */
|
|
9
|
-
declare class MockPool extends Pool implements Interceptable {
|
|
10
|
-
constructor(origin: string, options: MockPool.Options);
|
|
11
|
-
/** Intercepts any matching requests that use the same origin as this mock pool. */
|
|
12
|
-
intercept(options: MockInterceptor.Options): MockInterceptor;
|
|
13
|
-
/** Dispatches a mocked request. */
|
|
14
|
-
dispatch(options: Dispatcher.DispatchOptions, handlers: Dispatcher.DispatchHandlers): boolean;
|
|
15
|
-
/** Closes the mock pool and gracefully waits for enqueued requests to complete. */
|
|
16
|
-
close(): Promise<void>;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
declare namespace MockPool {
|
|
20
|
-
/** MockPool options. */
|
|
21
|
-
export interface Options extends Pool.Options {
|
|
22
|
-
/** The agent to associate this MockPool with. */
|
|
23
|
-
agent: MockAgent;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "undici-types",
|
|
3
|
-
"version": "6.21.0",
|
|
4
|
-
"description": "A stand-alone types package for Undici",
|
|
5
|
-
"homepage": "https://undici.nodejs.org",
|
|
6
|
-
"bugs": {
|
|
7
|
-
"url": "https://github.com/nodejs/undici/issues"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/nodejs/undici.git"
|
|
12
|
-
},
|
|
13
|
-
"license": "MIT",
|
|
14
|
-
"types": "index.d.ts",
|
|
15
|
-
"files": [
|
|
16
|
-
"*.d.ts"
|
|
17
|
-
],
|
|
18
|
-
"contributors": [
|
|
19
|
-
{
|
|
20
|
-
"name": "Daniele Belardi",
|
|
21
|
-
"url": "https://github.com/dnlup",
|
|
22
|
-
"author": true
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "Ethan Arrowood",
|
|
26
|
-
"url": "https://github.com/ethan-arrowood",
|
|
27
|
-
"author": true
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "Matteo Collina",
|
|
31
|
-
"url": "https://github.com/mcollina",
|
|
32
|
-
"author": true
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"name": "Matthew Aitken",
|
|
36
|
-
"url": "https://github.com/KhafraDev",
|
|
37
|
-
"author": true
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"name": "Robert Nagy",
|
|
41
|
-
"url": "https://github.com/ronag",
|
|
42
|
-
"author": true
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"name": "Szymon Marczak",
|
|
46
|
-
"url": "https://github.com/szmarczak",
|
|
47
|
-
"author": true
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"name": "Tomas Della Vedova",
|
|
51
|
-
"url": "https://github.com/delvedor",
|
|
52
|
-
"author": true
|
|
53
|
-
}
|
|
54
|
-
]
|
|
55
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
|
|
3
|
-
// See https://github.com/nodejs/undici/issues/1740
|
|
4
|
-
|
|
5
|
-
export type DOMException = typeof globalThis extends { DOMException: infer T }
|
|
6
|
-
? T
|
|
7
|
-
: any
|
|
8
|
-
|
|
9
|
-
export interface EventInit {
|
|
10
|
-
bubbles?: boolean
|
|
11
|
-
cancelable?: boolean
|
|
12
|
-
composed?: boolean
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface EventListenerOptions {
|
|
16
|
-
capture?: boolean
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export interface AddEventListenerOptions extends EventListenerOptions {
|
|
20
|
-
once?: boolean
|
|
21
|
-
passive?: boolean
|
|
22
|
-
signal?: AbortSignal
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export type EventListenerOrEventListenerObject = EventListener | EventListenerObject
|
|
26
|
-
|
|
27
|
-
export interface EventListenerObject {
|
|
28
|
-
handleEvent (object: Event): void
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export interface EventListener {
|
|
32
|
-
(evt: Event): void
|
|
33
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import Pool from "./pool"
|
|
2
|
-
|
|
3
|
-
export default PoolStats
|
|
4
|
-
|
|
5
|
-
declare class PoolStats {
|
|
6
|
-
constructor(pool: Pool);
|
|
7
|
-
/** Number of open socket connections in this pool. */
|
|
8
|
-
connected: number;
|
|
9
|
-
/** Number of open socket connections in this pool that do not have an active request. */
|
|
10
|
-
free: number;
|
|
11
|
-
/** Number of pending requests across all clients in this pool. */
|
|
12
|
-
pending: number;
|
|
13
|
-
/** Number of queued requests across all clients in this pool. */
|
|
14
|
-
queued: number;
|
|
15
|
-
/** Number of currently active requests across all clients in this pool. */
|
|
16
|
-
running: number;
|
|
17
|
-
/** Number of active, pending, or queued requests across all clients in this pool. */
|
|
18
|
-
size: number;
|
|
19
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import Client from './client'
|
|
2
|
-
import TPoolStats from './pool-stats'
|
|
3
|
-
import { URL } from 'url'
|
|
4
|
-
import Dispatcher from "./dispatcher";
|
|
5
|
-
|
|
6
|
-
export default Pool
|
|
7
|
-
|
|
8
|
-
type PoolConnectOptions = Omit<Dispatcher.ConnectOptions, "origin">;
|
|
9
|
-
|
|
10
|
-
declare class Pool extends Dispatcher {
|
|
11
|
-
constructor(url: string | URL, options?: Pool.Options)
|
|
12
|
-
/** `true` after `pool.close()` has been called. */
|
|
13
|
-
closed: boolean;
|
|
14
|
-
/** `true` after `pool.destroyed()` has been called or `pool.close()` has been called and the pool shutdown has completed. */
|
|
15
|
-
destroyed: boolean;
|
|
16
|
-
/** Aggregate stats for a Pool. */
|
|
17
|
-
readonly stats: TPoolStats;
|
|
18
|
-
|
|
19
|
-
// Override dispatcher APIs.
|
|
20
|
-
override connect(
|
|
21
|
-
options: PoolConnectOptions
|
|
22
|
-
): Promise<Dispatcher.ConnectData>;
|
|
23
|
-
override connect(
|
|
24
|
-
options: PoolConnectOptions,
|
|
25
|
-
callback: (err: Error | null, data: Dispatcher.ConnectData) => void
|
|
26
|
-
): void;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
declare namespace Pool {
|
|
30
|
-
export type PoolStats = TPoolStats;
|
|
31
|
-
export interface Options extends Client.Options {
|
|
32
|
-
/** Default: `(origin, opts) => new Client(origin, opts)`. */
|
|
33
|
-
factory?(origin: URL, opts: object): Dispatcher;
|
|
34
|
-
/** The max number of clients to create. `null` if no limit. Default `null`. */
|
|
35
|
-
connections?: number | null;
|
|
36
|
-
|
|
37
|
-
interceptors?: { Pool?: readonly Dispatcher.DispatchInterceptor[] } & Client.Options["interceptors"]
|
|
38
|
-
}
|
|
39
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import Agent from './agent'
|
|
2
|
-
import buildConnector from './connector';
|
|
3
|
-
import Dispatcher from './dispatcher'
|
|
4
|
-
import { IncomingHttpHeaders } from './header'
|
|
5
|
-
|
|
6
|
-
export default ProxyAgent
|
|
7
|
-
|
|
8
|
-
declare class ProxyAgent extends Dispatcher {
|
|
9
|
-
constructor(options: ProxyAgent.Options | string)
|
|
10
|
-
|
|
11
|
-
dispatch(options: Agent.DispatchOptions, handler: Dispatcher.DispatchHandlers): boolean;
|
|
12
|
-
close(): Promise<void>;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
declare namespace ProxyAgent {
|
|
16
|
-
export interface Options extends Agent.Options {
|
|
17
|
-
uri: string;
|
|
18
|
-
/**
|
|
19
|
-
* @deprecated use opts.token
|
|
20
|
-
*/
|
|
21
|
-
auth?: string;
|
|
22
|
-
token?: string;
|
|
23
|
-
headers?: IncomingHttpHeaders;
|
|
24
|
-
requestTls?: buildConnector.BuildOptions;
|
|
25
|
-
proxyTls?: buildConnector.BuildOptions;
|
|
26
|
-
clientFactory?(origin: URL, opts: object): Dispatcher;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { Readable } from "stream";
|
|
2
|
-
import { Blob } from 'buffer'
|
|
3
|
-
|
|
4
|
-
export default BodyReadable
|
|
5
|
-
|
|
6
|
-
declare class BodyReadable extends Readable {
|
|
7
|
-
constructor(
|
|
8
|
-
resume?: (this: Readable, size: number) => void | null,
|
|
9
|
-
abort?: () => void | null,
|
|
10
|
-
contentType?: string
|
|
11
|
-
)
|
|
12
|
-
|
|
13
|
-
/** Consumes and returns the body as a string
|
|
14
|
-
* https://fetch.spec.whatwg.org/#dom-body-text
|
|
15
|
-
*/
|
|
16
|
-
text(): Promise<string>
|
|
17
|
-
|
|
18
|
-
/** Consumes and returns the body as a JavaScript Object
|
|
19
|
-
* https://fetch.spec.whatwg.org/#dom-body-json
|
|
20
|
-
*/
|
|
21
|
-
json(): Promise<unknown>
|
|
22
|
-
|
|
23
|
-
/** Consumes and returns the body as a Blob
|
|
24
|
-
* https://fetch.spec.whatwg.org/#dom-body-blob
|
|
25
|
-
*/
|
|
26
|
-
blob(): Promise<Blob>
|
|
27
|
-
|
|
28
|
-
/** Consumes and returns the body as an Uint8Array
|
|
29
|
-
* https://fetch.spec.whatwg.org/#dom-body-bytes
|
|
30
|
-
*/
|
|
31
|
-
bytes(): Promise<Uint8Array>
|
|
32
|
-
|
|
33
|
-
/** Consumes and returns the body as an ArrayBuffer
|
|
34
|
-
* https://fetch.spec.whatwg.org/#dom-body-arraybuffer
|
|
35
|
-
*/
|
|
36
|
-
arrayBuffer(): Promise<ArrayBuffer>
|
|
37
|
-
|
|
38
|
-
/** Not implemented
|
|
39
|
-
*
|
|
40
|
-
* https://fetch.spec.whatwg.org/#dom-body-formdata
|
|
41
|
-
*/
|
|
42
|
-
formData(): Promise<never>
|
|
43
|
-
|
|
44
|
-
/** Returns true if the body is not null and the body has been consumed
|
|
45
|
-
*
|
|
46
|
-
* Otherwise, returns false
|
|
47
|
-
*
|
|
48
|
-
* https://fetch.spec.whatwg.org/#dom-body-bodyused
|
|
49
|
-
*/
|
|
50
|
-
readonly bodyUsed: boolean
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* If body is null, it should return null as the body
|
|
54
|
-
*
|
|
55
|
-
* If body is not null, should return the body as a ReadableStream
|
|
56
|
-
*
|
|
57
|
-
* https://fetch.spec.whatwg.org/#dom-body-body
|
|
58
|
-
*/
|
|
59
|
-
readonly body: never | undefined
|
|
60
|
-
|
|
61
|
-
/** Dumps the response body by reading `limit` number of bytes.
|
|
62
|
-
* @param opts.limit Number of bytes to read (optional) - Default: 262144
|
|
63
|
-
*/
|
|
64
|
-
dump(opts?: { limit: number }): Promise<void>
|
|
65
|
-
}
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
import Dispatcher from "./dispatcher";
|
|
2
|
-
|
|
3
|
-
export default RetryHandler;
|
|
4
|
-
|
|
5
|
-
declare class RetryHandler implements Dispatcher.DispatchHandlers {
|
|
6
|
-
constructor(
|
|
7
|
-
options: Dispatcher.DispatchOptions & {
|
|
8
|
-
retryOptions?: RetryHandler.RetryOptions;
|
|
9
|
-
},
|
|
10
|
-
retryHandlers: RetryHandler.RetryHandlers
|
|
11
|
-
);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
declare namespace RetryHandler {
|
|
15
|
-
export type RetryState = { counter: number; };
|
|
16
|
-
|
|
17
|
-
export type RetryContext = {
|
|
18
|
-
state: RetryState;
|
|
19
|
-
opts: Dispatcher.DispatchOptions & {
|
|
20
|
-
retryOptions?: RetryHandler.RetryOptions;
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export type OnRetryCallback = (result?: Error | null) => void;
|
|
25
|
-
|
|
26
|
-
export type RetryCallback = (
|
|
27
|
-
err: Error,
|
|
28
|
-
context: {
|
|
29
|
-
state: RetryState;
|
|
30
|
-
opts: Dispatcher.DispatchOptions & {
|
|
31
|
-
retryOptions?: RetryHandler.RetryOptions;
|
|
32
|
-
};
|
|
33
|
-
},
|
|
34
|
-
callback: OnRetryCallback
|
|
35
|
-
) => number | null;
|
|
36
|
-
|
|
37
|
-
export interface RetryOptions {
|
|
38
|
-
/**
|
|
39
|
-
* Callback to be invoked on every retry iteration.
|
|
40
|
-
* It receives the error, current state of the retry object and the options object
|
|
41
|
-
* passed when instantiating the retry handler.
|
|
42
|
-
*
|
|
43
|
-
* @type {RetryCallback}
|
|
44
|
-
* @memberof RetryOptions
|
|
45
|
-
*/
|
|
46
|
-
retry?: RetryCallback;
|
|
47
|
-
/**
|
|
48
|
-
* Maximum number of retries to allow.
|
|
49
|
-
*
|
|
50
|
-
* @type {number}
|
|
51
|
-
* @memberof RetryOptions
|
|
52
|
-
* @default 5
|
|
53
|
-
*/
|
|
54
|
-
maxRetries?: number;
|
|
55
|
-
/**
|
|
56
|
-
* Max number of milliseconds allow between retries
|
|
57
|
-
*
|
|
58
|
-
* @type {number}
|
|
59
|
-
* @memberof RetryOptions
|
|
60
|
-
* @default 30000
|
|
61
|
-
*/
|
|
62
|
-
maxTimeout?: number;
|
|
63
|
-
/**
|
|
64
|
-
* Initial number of milliseconds to wait before retrying for the first time.
|
|
65
|
-
*
|
|
66
|
-
* @type {number}
|
|
67
|
-
* @memberof RetryOptions
|
|
68
|
-
* @default 500
|
|
69
|
-
*/
|
|
70
|
-
minTimeout?: number;
|
|
71
|
-
/**
|
|
72
|
-
* Factior to multiply the timeout factor between retries.
|
|
73
|
-
*
|
|
74
|
-
* @type {number}
|
|
75
|
-
* @memberof RetryOptions
|
|
76
|
-
* @default 2
|
|
77
|
-
*/
|
|
78
|
-
timeoutFactor?: number;
|
|
79
|
-
/**
|
|
80
|
-
* It enables to automatically infer timeout between retries based on the `Retry-After` header.
|
|
81
|
-
*
|
|
82
|
-
* @type {boolean}
|
|
83
|
-
* @memberof RetryOptions
|
|
84
|
-
* @default true
|
|
85
|
-
*/
|
|
86
|
-
retryAfter?: boolean;
|
|
87
|
-
/**
|
|
88
|
-
* HTTP methods to retry.
|
|
89
|
-
*
|
|
90
|
-
* @type {Dispatcher.HttpMethod[]}
|
|
91
|
-
* @memberof RetryOptions
|
|
92
|
-
* @default ['GET', 'HEAD', 'OPTIONS', 'PUT', 'DELETE', 'TRACE'],
|
|
93
|
-
*/
|
|
94
|
-
methods?: Dispatcher.HttpMethod[];
|
|
95
|
-
/**
|
|
96
|
-
* Error codes to be retried. e.g. `ECONNRESET`, `ENOTFOUND`, `ETIMEDOUT`, `ECONNREFUSED`, etc.
|
|
97
|
-
*
|
|
98
|
-
* @type {string[]}
|
|
99
|
-
* @default ['ECONNRESET','ECONNREFUSED','ENOTFOUND','ENETDOWN','ENETUNREACH','EHOSTDOWN','EHOSTUNREACH','EPIPE']
|
|
100
|
-
*/
|
|
101
|
-
errorCodes?: string[];
|
|
102
|
-
/**
|
|
103
|
-
* HTTP status codes to be retried.
|
|
104
|
-
*
|
|
105
|
-
* @type {number[]}
|
|
106
|
-
* @memberof RetryOptions
|
|
107
|
-
* @default [500, 502, 503, 504, 429],
|
|
108
|
-
*/
|
|
109
|
-
statusCodes?: number[];
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
export interface RetryHandlers {
|
|
113
|
-
dispatch: Dispatcher["dispatch"];
|
|
114
|
-
handler: Dispatcher.DispatchHandlers;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export namespace util {
|
|
2
|
-
/**
|
|
3
|
-
* Retrieves a header name and returns its lowercase value.
|
|
4
|
-
* @param value Header name
|
|
5
|
-
*/
|
|
6
|
-
export function headerNameToString(value: string | Buffer): string;
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* Receives a header object and returns the parsed value.
|
|
10
|
-
* @param headers Header object
|
|
11
|
-
* @param obj Object to specify a proxy object. Used to assign parsed values.
|
|
12
|
-
* @returns If `obj` is specified, it is equivalent to `obj`.
|
|
13
|
-
*/
|
|
14
|
-
export function parseHeaders(
|
|
15
|
-
headers: (Buffer | string | (Buffer | string)[])[],
|
|
16
|
-
obj?: Record<string, string | string[]>
|
|
17
|
-
): Record<string, string | string[]>;
|
|
18
|
-
}
|