khabotcli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.OLD/PLAN.md +4 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Agent Orchestration Patterns for AI Runtimes.md +240 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Apply Layer & Cheaper Model Delegation.md +182 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Context Engineering for AI Agent Runtimes.md +197 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: System Prompt Architecture for AI Agent Runtimes.md +283 -0
- package/.OLD/STEP-1/RESEARCH-RESULTS/Deep Research: Testing Strategies for AI Agent Runtimes.md +240 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-agent-orchestration.md +75 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-apply-layer.md +88 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-context-engineering.md +63 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-system-prompts.md +84 -0
- package/.OLD/STEP-1/RESEARCH-TODO/deep-research-testing-ai-agents.md +74 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-agent-types.md +44 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-mcp-vs-custom-tools.md +61 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-session-storage.md +63 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-skill-auto-loading.md +56 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS/scoped-system-prompt-architecture.md +62 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-agent-types.md +290 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-mcp-vs-custom-tools.md +234 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-session-storage.md +455 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-skill-auto-loading.md +479 -0
- package/.OLD/STEP-1/SCOPED-QUESTIONS-ANSWERS/scoped-system-prompt-architecture.md +508 -0
- package/.OLD/STEP-1/step-1.md +1066 -0
- package/.OLD/STEP-2/FACTS.md +244 -0
- package/.OLD/STEP-2/RESEARCH-RESULTS/deep-research-ably-integration.md +673 -0
- package/.OLD/STEP-2/RESEARCH-RESULTS/deep-research-nodejs-agent-runtime.md +373 -0
- package/.OLD/STEP-2/RESEARCH-TODO/deep-research-ably-integration.md +68 -0
- package/.OLD/STEP-2/RESEARCH-TODO/deep-research-nodejs-agent-runtime.md +67 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-api-design.md +60 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-custom-tool-execution.md +60 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-sqlite-schema.md +53 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS/scoped-subagent-lifecycle.md +65 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-api-design.md +394 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-custom-tool-execution.md +650 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-sqlite-schema.md +658 -0
- package/.OLD/STEP-2/SCOPED-QUESTIONS-ANSWERS/scoped-subagent-lifecycle.md +400 -0
- package/.OLD/STEP-2/step-2.md +252 -0
- package/.OLD/STEP-3/FACTS.md +225 -0
- package/.OLD/STEP-4/FACTS.md +117 -0
- package/.OLD/STEP-5/AUDIT.md +242 -0
- package/.OLD/STEP-5/audit-prompt.md +114 -0
- package/.OLD/STEP-6/AUDIT.md +468 -0
- package/.OLD/STEP-7/AUDIT.md +360 -0
- package/.OLD/STEP-7/OPTIONS.md +86 -0
- package/.OLD/Trial-1/API.md +545 -0
- package/.OLD/Trial-1/CONFIG.md +446 -0
- package/.OLD/Trial-1/DEV-PHASES.md +688 -0
- package/.OLD/Trial-1/README.md +310 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/analyst/AGENT.md +44 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/analyst/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/coder/AGENT.md +44 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/coder/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/helper/AGENT.md +35 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/helper/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/reviewer/AGENT.md +37 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/reviewer/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/writer/AGENT.md +28 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/agents/writer/agent.json +24 -0
- package/.OLD/Trial-1/TEST-APP/.khabot/settings.json +53 -0
- package/.OLD/Trial-1/TEST-APP/README.md +199 -0
- package/.OLD/Trial-1/TEST-APP/api-client.js +166 -0
- package/.OLD/Trial-1/TEST-APP/results-chat.json +1 -0
- package/.OLD/Trial-1/TEST-APP/test-chat.js +162 -0
- package/.OLD/Trial-1/TEST-APP/test-runner.js +130 -0
- package/.OLD/Trial-1/TEST-APP/test-tasks.js +222 -0
- package/.OLD/Trial-1/TEST-APP/test-tools.js +175 -0
- package/.OLD/Trial-1/node_modules/.package-lock.json +1360 -0
- package/.OLD/Trial-1/node_modules/accepts/HISTORY.md +243 -0
- package/.OLD/Trial-1/node_modules/accepts/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/accepts/README.md +140 -0
- package/.OLD/Trial-1/node_modules/accepts/index.js +238 -0
- package/.OLD/Trial-1/node_modules/accepts/package.json +47 -0
- package/.OLD/Trial-1/node_modules/ajv/.runkit_example.js +23 -0
- package/.OLD/Trial-1/node_modules/ajv/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/ajv/README.md +207 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2019.d.ts +19 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2019.js +61 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2019.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2020.d.ts +19 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2020.js +55 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/2020.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/ajv.js +50 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/ajv.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/code.js +156 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/errors.js +123 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/index.js +242 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/names.js +28 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/rules.js +26 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/util.js +178 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/core.d.ts +174 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/core.js +618 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/core.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/jtd.js +72 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/jtd.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/data.json +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/index.js +90 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/index.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/.OLD/Trial-1/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/2019.ts +81 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/2020.ts +75 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/ajv.ts +70 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/index.ts +324 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/names.ts +27 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/util.ts +213 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/core.ts +892 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/jtd.ts +132 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/data.json +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/types/index.ts +244 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/.OLD/Trial-1/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/.OLD/Trial-1/node_modules/ajv/package.json +127 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/README.md +125 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/formats.d.ts +9 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/formats.js +208 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/formats.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/index.d.ts +15 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/index.js +37 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/index.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/limit.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/limit.js +69 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/dist/limit.js.map +1 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/package.json +74 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/src/formats.ts +269 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/src/index.ts +62 -0
- package/.OLD/Trial-1/node_modules/ajv-formats/src/limit.ts +99 -0
- package/.OLD/Trial-1/node_modules/array-flatten/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/array-flatten/README.md +43 -0
- package/.OLD/Trial-1/node_modules/array-flatten/array-flatten.js +64 -0
- package/.OLD/Trial-1/node_modules/array-flatten/package.json +39 -0
- package/.OLD/Trial-1/node_modules/asynckit/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/asynckit/README.md +233 -0
- package/.OLD/Trial-1/node_modules/asynckit/bench.js +76 -0
- package/.OLD/Trial-1/node_modules/asynckit/index.js +6 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/abort.js +29 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/async.js +34 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/defer.js +26 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/iterate.js +75 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/state.js +37 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/streamify.js +141 -0
- package/.OLD/Trial-1/node_modules/asynckit/lib/terminator.js +29 -0
- package/.OLD/Trial-1/node_modules/asynckit/package.json +63 -0
- package/.OLD/Trial-1/node_modules/asynckit/parallel.js +43 -0
- package/.OLD/Trial-1/node_modules/asynckit/serial.js +17 -0
- package/.OLD/Trial-1/node_modules/asynckit/serialOrdered.js +75 -0
- package/.OLD/Trial-1/node_modules/asynckit/stream.js +21 -0
- package/.OLD/Trial-1/node_modules/axios/CHANGELOG.md +906 -0
- package/.OLD/Trial-1/node_modules/axios/LICENSE +19 -0
- package/.OLD/Trial-1/node_modules/axios/README.md +909 -0
- package/.OLD/Trial-1/node_modules/axios/SECURITY.md +5 -0
- package/.OLD/Trial-1/node_modules/axios/UPGRADE_GUIDE.md +168 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.js +2293 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.map +1 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.min.js +2 -0
- package/.OLD/Trial-1/node_modules/axios/dist/axios.min.map +1 -0
- package/.OLD/Trial-1/node_modules/axios/index.d.ts +221 -0
- package/.OLD/Trial-1/node_modules/axios/index.js +1 -0
- package/.OLD/Trial-1/node_modules/axios/lib/adapters/README.md +37 -0
- package/.OLD/Trial-1/node_modules/axios/lib/adapters/http.js +404 -0
- package/.OLD/Trial-1/node_modules/axios/lib/adapters/xhr.js +212 -0
- package/.OLD/Trial-1/node_modules/axios/lib/axios.js +57 -0
- package/.OLD/Trial-1/node_modules/axios/lib/cancel/Cancel.js +19 -0
- package/.OLD/Trial-1/node_modules/axios/lib/cancel/CancelToken.js +119 -0
- package/.OLD/Trial-1/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/Axios.js +148 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/InterceptorManager.js +54 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/README.md +8 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/buildFullPath.js +20 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/createError.js +18 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/dispatchRequest.js +87 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/enhanceError.js +43 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/mergeConfig.js +99 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/settle.js +25 -0
- package/.OLD/Trial-1/node_modules/axios/lib/core/transformData.js +22 -0
- package/.OLD/Trial-1/node_modules/axios/lib/defaults/index.js +131 -0
- package/.OLD/Trial-1/node_modules/axios/lib/defaults/transitional.js +7 -0
- package/.OLD/Trial-1/node_modules/axios/lib/env/README.md +3 -0
- package/.OLD/Trial-1/node_modules/axios/lib/env/data.js +3 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/README.md +7 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/bind.js +11 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/buildURL.js +70 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/combineURLs.js +14 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/cookies.js +53 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/deprecatedMethod.js +24 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/isAbsoluteURL.js +14 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/isAxiosError.js +13 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/isURLSameOrigin.js +68 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/normalizeHeaderName.js +12 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/parseHeaders.js +53 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/spread.js +27 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/toFormData.js +55 -0
- package/.OLD/Trial-1/node_modules/axios/lib/helpers/validator.js +82 -0
- package/.OLD/Trial-1/node_modules/axios/lib/utils.js +349 -0
- package/.OLD/Trial-1/node_modules/axios/package.json +86 -0
- package/.OLD/Trial-1/node_modules/axios/tsconfig.json +14 -0
- package/.OLD/Trial-1/node_modules/axios/tslint.json +6 -0
- package/.OLD/Trial-1/node_modules/base64-js/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/base64-js/README.md +34 -0
- package/.OLD/Trial-1/node_modules/base64-js/base64js.min.js +1 -0
- package/.OLD/Trial-1/node_modules/base64-js/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/base64-js/index.js +150 -0
- package/.OLD/Trial-1/node_modules/base64-js/package.json +47 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/README.md +92 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/binding.gyp +38 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/common.gypi +68 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/copy.js +31 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/defines.gypi +40 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/download.sh +112 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3/sqlite3.c +255954 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3/sqlite3.h +13374 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3/sqlite3ext.h +719 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/sqlite3.gyp +80 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/deps/test_extension.c +21 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/database.js +90 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/index.js +3 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/transaction.js +75 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/lib/util.js +12 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/package.json +54 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/src/better_sqlite3.cpp +2165 -0
- package/.OLD/Trial-1/node_modules/better-sqlite3/src/better_sqlite3.hpp +1038 -0
- package/.OLD/Trial-1/node_modules/bindings/LICENSE.md +22 -0
- package/.OLD/Trial-1/node_modules/bindings/README.md +98 -0
- package/.OLD/Trial-1/node_modules/bindings/bindings.js +221 -0
- package/.OLD/Trial-1/node_modules/bindings/package.json +28 -0
- package/.OLD/Trial-1/node_modules/bl/.travis.yml +17 -0
- package/.OLD/Trial-1/node_modules/bl/BufferList.js +396 -0
- package/.OLD/Trial-1/node_modules/bl/LICENSE.md +13 -0
- package/.OLD/Trial-1/node_modules/bl/README.md +247 -0
- package/.OLD/Trial-1/node_modules/bl/bl.js +84 -0
- package/.OLD/Trial-1/node_modules/bl/package.json +37 -0
- package/.OLD/Trial-1/node_modules/bl/test/convert.js +21 -0
- package/.OLD/Trial-1/node_modules/bl/test/indexOf.js +492 -0
- package/.OLD/Trial-1/node_modules/bl/test/isBufferList.js +32 -0
- package/.OLD/Trial-1/node_modules/bl/test/test.js +869 -0
- package/.OLD/Trial-1/node_modules/body-parser/HISTORY.md +680 -0
- package/.OLD/Trial-1/node_modules/body-parser/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/body-parser/README.md +476 -0
- package/.OLD/Trial-1/node_modules/body-parser/index.js +156 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/read.js +205 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/json.js +247 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/raw.js +101 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/text.js +121 -0
- package/.OLD/Trial-1/node_modules/body-parser/lib/types/urlencoded.js +300 -0
- package/.OLD/Trial-1/node_modules/body-parser/package.json +55 -0
- package/.OLD/Trial-1/node_modules/buffer/AUTHORS.md +70 -0
- package/.OLD/Trial-1/node_modules/buffer/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/buffer/README.md +410 -0
- package/.OLD/Trial-1/node_modules/buffer/index.d.ts +186 -0
- package/.OLD/Trial-1/node_modules/buffer/index.js +1817 -0
- package/.OLD/Trial-1/node_modules/buffer/package.json +96 -0
- package/.OLD/Trial-1/node_modules/bytes/History.md +97 -0
- package/.OLD/Trial-1/node_modules/bytes/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/bytes/Readme.md +152 -0
- package/.OLD/Trial-1/node_modules/bytes/index.js +170 -0
- package/.OLD/Trial-1/node_modules/bytes/package.json +42 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/.OLD/Trial-1/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/call-bound/.eslintrc +13 -0
- package/.OLD/Trial-1/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/call-bound/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/call-bound/CHANGELOG.md +42 -0
- package/.OLD/Trial-1/node_modules/call-bound/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/call-bound/README.md +53 -0
- package/.OLD/Trial-1/node_modules/call-bound/index.d.ts +94 -0
- package/.OLD/Trial-1/node_modules/call-bound/index.js +19 -0
- package/.OLD/Trial-1/node_modules/call-bound/package.json +99 -0
- package/.OLD/Trial-1/node_modules/call-bound/test/index.js +61 -0
- package/.OLD/Trial-1/node_modules/call-bound/tsconfig.json +10 -0
- package/.OLD/Trial-1/node_modules/chownr/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/chownr/README.md +3 -0
- package/.OLD/Trial-1/node_modules/chownr/chownr.js +167 -0
- package/.OLD/Trial-1/node_modules/chownr/package.json +29 -0
- package/.OLD/Trial-1/node_modules/combined-stream/License +19 -0
- package/.OLD/Trial-1/node_modules/combined-stream/Readme.md +138 -0
- package/.OLD/Trial-1/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/.OLD/Trial-1/node_modules/combined-stream/package.json +25 -0
- package/.OLD/Trial-1/node_modules/combined-stream/yarn.lock +17 -0
- package/.OLD/Trial-1/node_modules/content-disposition/HISTORY.md +60 -0
- package/.OLD/Trial-1/node_modules/content-disposition/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/content-disposition/README.md +142 -0
- package/.OLD/Trial-1/node_modules/content-disposition/index.js +458 -0
- package/.OLD/Trial-1/node_modules/content-disposition/package.json +44 -0
- package/.OLD/Trial-1/node_modules/content-type/HISTORY.md +29 -0
- package/.OLD/Trial-1/node_modules/content-type/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/content-type/README.md +94 -0
- package/.OLD/Trial-1/node_modules/content-type/index.js +225 -0
- package/.OLD/Trial-1/node_modules/content-type/package.json +42 -0
- package/.OLD/Trial-1/node_modules/cookie/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/cookie/README.md +317 -0
- package/.OLD/Trial-1/node_modules/cookie/SECURITY.md +25 -0
- package/.OLD/Trial-1/node_modules/cookie/index.js +335 -0
- package/.OLD/Trial-1/node_modules/cookie/package.json +44 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/History.md +42 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/Readme.md +42 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/index.js +51 -0
- package/.OLD/Trial-1/node_modules/cookie-signature/package.json +18 -0
- package/.OLD/Trial-1/node_modules/cors/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/cors/README.md +277 -0
- package/.OLD/Trial-1/node_modules/cors/lib/index.js +238 -0
- package/.OLD/Trial-1/node_modules/cors/package.json +42 -0
- package/.OLD/Trial-1/node_modules/debug/.coveralls.yml +1 -0
- package/.OLD/Trial-1/node_modules/debug/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/debug/.travis.yml +14 -0
- package/.OLD/Trial-1/node_modules/debug/CHANGELOG.md +362 -0
- package/.OLD/Trial-1/node_modules/debug/LICENSE +19 -0
- package/.OLD/Trial-1/node_modules/debug/Makefile +50 -0
- package/.OLD/Trial-1/node_modules/debug/README.md +312 -0
- package/.OLD/Trial-1/node_modules/debug/component.json +19 -0
- package/.OLD/Trial-1/node_modules/debug/karma.conf.js +70 -0
- package/.OLD/Trial-1/node_modules/debug/node.js +1 -0
- package/.OLD/Trial-1/node_modules/debug/package.json +49 -0
- package/.OLD/Trial-1/node_modules/debug/src/browser.js +185 -0
- package/.OLD/Trial-1/node_modules/debug/src/debug.js +202 -0
- package/.OLD/Trial-1/node_modules/debug/src/index.js +10 -0
- package/.OLD/Trial-1/node_modules/debug/src/inspector-log.js +15 -0
- package/.OLD/Trial-1/node_modules/debug/src/node.js +248 -0
- package/.OLD/Trial-1/node_modules/decompress-response/index.d.ts +22 -0
- package/.OLD/Trial-1/node_modules/decompress-response/index.js +58 -0
- package/.OLD/Trial-1/node_modules/decompress-response/license +9 -0
- package/.OLD/Trial-1/node_modules/decompress-response/package.json +56 -0
- package/.OLD/Trial-1/node_modules/decompress-response/readme.md +48 -0
- package/.OLD/Trial-1/node_modules/deep-extend/CHANGELOG.md +46 -0
- package/.OLD/Trial-1/node_modules/deep-extend/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/deep-extend/README.md +91 -0
- package/.OLD/Trial-1/node_modules/deep-extend/index.js +1 -0
- package/.OLD/Trial-1/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/.OLD/Trial-1/node_modules/deep-extend/package.json +62 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/License +19 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/Makefile +7 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/Readme.md +141 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/.OLD/Trial-1/node_modules/delayed-stream/package.json +27 -0
- package/.OLD/Trial-1/node_modules/depd/History.md +103 -0
- package/.OLD/Trial-1/node_modules/depd/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/depd/Readme.md +280 -0
- package/.OLD/Trial-1/node_modules/depd/index.js +538 -0
- package/.OLD/Trial-1/node_modules/depd/lib/browser/index.js +77 -0
- package/.OLD/Trial-1/node_modules/depd/package.json +45 -0
- package/.OLD/Trial-1/node_modules/destroy/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/destroy/README.md +63 -0
- package/.OLD/Trial-1/node_modules/destroy/index.js +209 -0
- package/.OLD/Trial-1/node_modules/destroy/package.json +48 -0
- package/.OLD/Trial-1/node_modules/detect-libc/LICENSE +201 -0
- package/.OLD/Trial-1/node_modules/detect-libc/README.md +163 -0
- package/.OLD/Trial-1/node_modules/detect-libc/index.d.ts +14 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/elf.js +39 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/.OLD/Trial-1/node_modules/detect-libc/lib/process.js +24 -0
- package/.OLD/Trial-1/node_modules/detect-libc/package.json +44 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/README.md +54 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/get.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/get.js +30 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/package.json +76 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/set.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/set.js +35 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/test/get.js +34 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/test/index.js +4 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/test/set.js +50 -0
- package/.OLD/Trial-1/node_modules/dunder-proto/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/ee-first/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/ee-first/README.md +80 -0
- package/.OLD/Trial-1/node_modules/ee-first/index.js +95 -0
- package/.OLD/Trial-1/node_modules/ee-first/package.json +29 -0
- package/.OLD/Trial-1/node_modules/encodeurl/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/encodeurl/README.md +109 -0
- package/.OLD/Trial-1/node_modules/encodeurl/index.js +60 -0
- package/.OLD/Trial-1/node_modules/encodeurl/package.json +40 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/README.md +54 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/index.js +96 -0
- package/.OLD/Trial-1/node_modules/end-of-stream/package.json +37 -0
- package/.OLD/Trial-1/node_modules/es-define-property/.eslintrc +13 -0
- package/.OLD/Trial-1/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/es-define-property/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/.OLD/Trial-1/node_modules/es-define-property/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-define-property/README.md +49 -0
- package/.OLD/Trial-1/node_modules/es-define-property/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-define-property/index.js +14 -0
- package/.OLD/Trial-1/node_modules/es-define-property/package.json +81 -0
- package/.OLD/Trial-1/node_modules/es-define-property/test/index.js +56 -0
- package/.OLD/Trial-1/node_modules/es-define-property/tsconfig.json +10 -0
- package/.OLD/Trial-1/node_modules/es-errors/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/es-errors/CHANGELOG.md +40 -0
- package/.OLD/Trial-1/node_modules/es-errors/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-errors/README.md +55 -0
- package/.OLD/Trial-1/node_modules/es-errors/eval.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/eval.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/index.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/package.json +80 -0
- package/.OLD/Trial-1/node_modules/es-errors/range.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/range.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/ref.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/ref.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/syntax.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/syntax.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/test/index.js +19 -0
- package/.OLD/Trial-1/node_modules/es-errors/tsconfig.json +49 -0
- package/.OLD/Trial-1/node_modules/es-errors/type.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/type.js +4 -0
- package/.OLD/Trial-1/node_modules/es-errors/uri.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-errors/uri.js +4 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/.eslintrc +16 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/README.md +63 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/ToObject.js +10 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/index.js +4 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/isObject.js +6 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/package.json +80 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/test/index.js +38 -0
- package/.OLD/Trial-1/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/.eslintrc +13 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/README.md +53 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/index.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/index.js +35 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/package.json +78 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/test/index.js +85 -0
- package/.OLD/Trial-1/node_modules/es-set-tostringtag/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/escape-html/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/escape-html/Readme.md +43 -0
- package/.OLD/Trial-1/node_modules/escape-html/index.js +78 -0
- package/.OLD/Trial-1/node_modules/escape-html/package.json +24 -0
- package/.OLD/Trial-1/node_modules/etag/HISTORY.md +83 -0
- package/.OLD/Trial-1/node_modules/etag/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/etag/README.md +159 -0
- package/.OLD/Trial-1/node_modules/etag/index.js +131 -0
- package/.OLD/Trial-1/node_modules/etag/package.json +47 -0
- package/.OLD/Trial-1/node_modules/expand-template/.travis.yml +6 -0
- package/.OLD/Trial-1/node_modules/expand-template/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/expand-template/README.md +43 -0
- package/.OLD/Trial-1/node_modules/expand-template/index.js +26 -0
- package/.OLD/Trial-1/node_modules/expand-template/package.json +29 -0
- package/.OLD/Trial-1/node_modules/expand-template/test.js +67 -0
- package/.OLD/Trial-1/node_modules/express/History.md +3667 -0
- package/.OLD/Trial-1/node_modules/express/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/express/Readme.md +260 -0
- package/.OLD/Trial-1/node_modules/express/index.js +11 -0
- package/.OLD/Trial-1/node_modules/express/lib/application.js +661 -0
- package/.OLD/Trial-1/node_modules/express/lib/express.js +116 -0
- package/.OLD/Trial-1/node_modules/express/lib/middleware/init.js +43 -0
- package/.OLD/Trial-1/node_modules/express/lib/middleware/query.js +47 -0
- package/.OLD/Trial-1/node_modules/express/lib/request.js +525 -0
- package/.OLD/Trial-1/node_modules/express/lib/response.js +1179 -0
- package/.OLD/Trial-1/node_modules/express/lib/router/index.js +673 -0
- package/.OLD/Trial-1/node_modules/express/lib/router/layer.js +181 -0
- package/.OLD/Trial-1/node_modules/express/lib/router/route.js +230 -0
- package/.OLD/Trial-1/node_modules/express/lib/utils.js +303 -0
- package/.OLD/Trial-1/node_modules/express/lib/view.js +182 -0
- package/.OLD/Trial-1/node_modules/express/package.json +102 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/README.md +96 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/index.js +46 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/package.json +61 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/fast-deep-equal/react.js +53 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.gitattributes +2 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/.stale.yml +21 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/dependabot.yml +13 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/tests_checker.yml +8 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
- package/.OLD/Trial-1/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
- package/.OLD/Trial-1/node_modules/fast-uri/LICENSE +32 -0
- package/.OLD/Trial-1/node_modules/fast-uri/README.md +143 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/equal.mjs +51 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/package.json +17 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
- package/.OLD/Trial-1/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
- package/.OLD/Trial-1/node_modules/fast-uri/eslint.config.js +6 -0
- package/.OLD/Trial-1/node_modules/fast-uri/index.js +340 -0
- package/.OLD/Trial-1/node_modules/fast-uri/lib/schemes.js +267 -0
- package/.OLD/Trial-1/node_modules/fast-uri/lib/utils.js +336 -0
- package/.OLD/Trial-1/node_modules/fast-uri/package.json +69 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/ajv.test.js +43 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/equal.test.js +108 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/parse.test.js +318 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/resolve.test.js +78 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/serialize.test.js +151 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/uri-js.test.js +912 -0
- package/.OLD/Trial-1/node_modules/fast-uri/test/util.test.js +38 -0
- package/.OLD/Trial-1/node_modules/fast-uri/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/fast-uri/types/index.d.ts +60 -0
- package/.OLD/Trial-1/node_modules/fast-uri/types/index.test-d.ts +17 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/History.md +21 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/README.md +74 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/index.js +66 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/package.json +32 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/test/test.js +24 -0
- package/.OLD/Trial-1/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/.OLD/Trial-1/node_modules/finalhandler/HISTORY.md +216 -0
- package/.OLD/Trial-1/node_modules/finalhandler/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/finalhandler/README.md +147 -0
- package/.OLD/Trial-1/node_modules/finalhandler/SECURITY.md +25 -0
- package/.OLD/Trial-1/node_modules/finalhandler/index.js +341 -0
- package/.OLD/Trial-1/node_modules/finalhandler/package.json +47 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/LICENSE +18 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/README.md +155 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/debug.js +15 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/http.js +1 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/https.js +1 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/index.js +686 -0
- package/.OLD/Trial-1/node_modules/follow-redirects/package.json +58 -0
- package/.OLD/Trial-1/node_modules/form-data/CHANGELOG.md +659 -0
- package/.OLD/Trial-1/node_modules/form-data/License +19 -0
- package/.OLD/Trial-1/node_modules/form-data/README.md +355 -0
- package/.OLD/Trial-1/node_modules/form-data/index.d.ts +62 -0
- package/.OLD/Trial-1/node_modules/form-data/lib/browser.js +4 -0
- package/.OLD/Trial-1/node_modules/form-data/lib/form_data.js +494 -0
- package/.OLD/Trial-1/node_modules/form-data/lib/populate.js +10 -0
- package/.OLD/Trial-1/node_modules/form-data/package.json +82 -0
- package/.OLD/Trial-1/node_modules/forwarded/HISTORY.md +21 -0
- package/.OLD/Trial-1/node_modules/forwarded/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/forwarded/README.md +57 -0
- package/.OLD/Trial-1/node_modules/forwarded/index.js +90 -0
- package/.OLD/Trial-1/node_modules/forwarded/package.json +45 -0
- package/.OLD/Trial-1/node_modules/fresh/HISTORY.md +70 -0
- package/.OLD/Trial-1/node_modules/fresh/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/fresh/README.md +119 -0
- package/.OLD/Trial-1/node_modules/fresh/index.js +137 -0
- package/.OLD/Trial-1/node_modules/fresh/package.json +46 -0
- package/.OLD/Trial-1/node_modules/fs-constants/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/fs-constants/README.md +26 -0
- package/.OLD/Trial-1/node_modules/fs-constants/browser.js +1 -0
- package/.OLD/Trial-1/node_modules/fs-constants/index.js +1 -0
- package/.OLD/Trial-1/node_modules/fs-constants/package.json +19 -0
- package/.OLD/Trial-1/node_modules/function-bind/.eslintrc +21 -0
- package/.OLD/Trial-1/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/.OLD/Trial-1/node_modules/function-bind/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/function-bind/CHANGELOG.md +136 -0
- package/.OLD/Trial-1/node_modules/function-bind/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/function-bind/README.md +46 -0
- package/.OLD/Trial-1/node_modules/function-bind/implementation.js +84 -0
- package/.OLD/Trial-1/node_modules/function-bind/index.js +5 -0
- package/.OLD/Trial-1/node_modules/function-bind/package.json +87 -0
- package/.OLD/Trial-1/node_modules/function-bind/test/.eslintrc +9 -0
- package/.OLD/Trial-1/node_modules/function-bind/test/index.js +252 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/.eslintrc +42 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/README.md +71 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/index.js +378 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/package.json +97 -0
- package/.OLD/Trial-1/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/.OLD/Trial-1/node_modules/get-proto/.eslintrc +10 -0
- package/.OLD/Trial-1/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/get-proto/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/get-proto/CHANGELOG.md +21 -0
- package/.OLD/Trial-1/node_modules/get-proto/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/.OLD/Trial-1/node_modules/get-proto/README.md +50 -0
- package/.OLD/Trial-1/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/.OLD/Trial-1/node_modules/get-proto/index.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/get-proto/index.js +27 -0
- package/.OLD/Trial-1/node_modules/get-proto/package.json +81 -0
- package/.OLD/Trial-1/node_modules/get-proto/test/index.js +68 -0
- package/.OLD/Trial-1/node_modules/get-proto/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/github-from-package/.travis.yml +4 -0
- package/.OLD/Trial-1/node_modules/github-from-package/LICENSE +18 -0
- package/.OLD/Trial-1/node_modules/github-from-package/example/package.json +8 -0
- package/.OLD/Trial-1/node_modules/github-from-package/example/url.js +3 -0
- package/.OLD/Trial-1/node_modules/github-from-package/index.js +17 -0
- package/.OLD/Trial-1/node_modules/github-from-package/package.json +30 -0
- package/.OLD/Trial-1/node_modules/github-from-package/readme.markdown +53 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/a.json +8 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/b.json +5 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/c.json +5 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/d.json +7 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/e.json +5 -0
- package/.OLD/Trial-1/node_modules/github-from-package/test/url.js +19 -0
- package/.OLD/Trial-1/node_modules/gopd/.eslintrc +16 -0
- package/.OLD/Trial-1/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/gopd/CHANGELOG.md +45 -0
- package/.OLD/Trial-1/node_modules/gopd/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/gopd/README.md +40 -0
- package/.OLD/Trial-1/node_modules/gopd/gOPD.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/gopd/gOPD.js +4 -0
- package/.OLD/Trial-1/node_modules/gopd/index.d.ts +5 -0
- package/.OLD/Trial-1/node_modules/gopd/index.js +15 -0
- package/.OLD/Trial-1/node_modules/gopd/package.json +77 -0
- package/.OLD/Trial-1/node_modules/gopd/test/index.js +36 -0
- package/.OLD/Trial-1/node_modules/gopd/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/has-symbols/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/has-symbols/.nycrc +9 -0
- package/.OLD/Trial-1/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/.OLD/Trial-1/node_modules/has-symbols/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/has-symbols/README.md +46 -0
- package/.OLD/Trial-1/node_modules/has-symbols/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-symbols/index.js +14 -0
- package/.OLD/Trial-1/node_modules/has-symbols/package.json +111 -0
- package/.OLD/Trial-1/node_modules/has-symbols/shams.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-symbols/shams.js +45 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/index.js +22 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/.OLD/Trial-1/node_modules/has-symbols/test/tests.js +58 -0
- package/.OLD/Trial-1/node_modules/has-symbols/tsconfig.json +10 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/CHANGELOG.md +42 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/README.md +46 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/index.js +8 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/package.json +108 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/shams.js +8 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/index.js +21 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/test/tests.js +15 -0
- package/.OLD/Trial-1/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/.OLD/Trial-1/node_modules/hasown/.eslintrc +5 -0
- package/.OLD/Trial-1/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/hasown/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/hasown/CHANGELOG.md +40 -0
- package/.OLD/Trial-1/node_modules/hasown/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/hasown/README.md +40 -0
- package/.OLD/Trial-1/node_modules/hasown/index.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/hasown/index.js +8 -0
- package/.OLD/Trial-1/node_modules/hasown/package.json +92 -0
- package/.OLD/Trial-1/node_modules/hasown/tsconfig.json +6 -0
- package/.OLD/Trial-1/node_modules/http-errors/HISTORY.md +186 -0
- package/.OLD/Trial-1/node_modules/http-errors/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/http-errors/README.md +169 -0
- package/.OLD/Trial-1/node_modules/http-errors/index.js +290 -0
- package/.OLD/Trial-1/node_modules/http-errors/package.json +54 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/Changelog.md +162 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/README.md +156 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/index.js +22 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/index.js +153 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/lib/streams.js +121 -0
- package/.OLD/Trial-1/node_modules/iconv-lite/package.json +46 -0
- package/.OLD/Trial-1/node_modules/ieee754/LICENSE +11 -0
- package/.OLD/Trial-1/node_modules/ieee754/README.md +51 -0
- package/.OLD/Trial-1/node_modules/ieee754/index.d.ts +10 -0
- package/.OLD/Trial-1/node_modules/ieee754/index.js +85 -0
- package/.OLD/Trial-1/node_modules/ieee754/package.json +52 -0
- package/.OLD/Trial-1/node_modules/inherits/LICENSE +16 -0
- package/.OLD/Trial-1/node_modules/inherits/README.md +42 -0
- package/.OLD/Trial-1/node_modules/inherits/inherits.js +9 -0
- package/.OLD/Trial-1/node_modules/inherits/inherits_browser.js +27 -0
- package/.OLD/Trial-1/node_modules/inherits/package.json +29 -0
- package/.OLD/Trial-1/node_modules/ini/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/ini/README.md +102 -0
- package/.OLD/Trial-1/node_modules/ini/ini.js +206 -0
- package/.OLD/Trial-1/node_modules/ini/package.json +33 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/LICENSE +19 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/README.md +233 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/.OLD/Trial-1/node_modules/ipaddr.js/package.json +35 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/README.md +95 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/index.js +93 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/package.json +43 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/.OLD/Trial-1/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/.eslintrc +16 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/README.md +50 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/abs.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/floor.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isFinite.js +12 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isInteger.js +16 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNaN.js +6 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/max.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/max.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/min.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/min.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/mod.js +9 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/package.json +86 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/pow.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/round.d.ts +1 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/round.js +4 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/sign.js +11 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/test/index.js +192 -0
- package/.OLD/Trial-1/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/.OLD/Trial-1/node_modules/media-typer/HISTORY.md +22 -0
- package/.OLD/Trial-1/node_modules/media-typer/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/media-typer/README.md +81 -0
- package/.OLD/Trial-1/node_modules/media-typer/index.js +270 -0
- package/.OLD/Trial-1/node_modules/media-typer/package.json +26 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/README.md +49 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/index.js +60 -0
- package/.OLD/Trial-1/node_modules/merge-descriptors/package.json +39 -0
- package/.OLD/Trial-1/node_modules/methods/HISTORY.md +29 -0
- package/.OLD/Trial-1/node_modules/methods/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/methods/README.md +51 -0
- package/.OLD/Trial-1/node_modules/methods/index.js +69 -0
- package/.OLD/Trial-1/node_modules/methods/package.json +36 -0
- package/.OLD/Trial-1/node_modules/mime/CHANGELOG.md +164 -0
- package/.OLD/Trial-1/node_modules/mime/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/mime/README.md +90 -0
- package/.OLD/Trial-1/node_modules/mime/cli.js +8 -0
- package/.OLD/Trial-1/node_modules/mime/mime.js +108 -0
- package/.OLD/Trial-1/node_modules/mime/package.json +44 -0
- package/.OLD/Trial-1/node_modules/mime/src/build.js +53 -0
- package/.OLD/Trial-1/node_modules/mime/src/test.js +60 -0
- package/.OLD/Trial-1/node_modules/mime/types.json +1 -0
- package/.OLD/Trial-1/node_modules/mime-db/HISTORY.md +507 -0
- package/.OLD/Trial-1/node_modules/mime-db/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/mime-db/README.md +100 -0
- package/.OLD/Trial-1/node_modules/mime-db/db.json +8519 -0
- package/.OLD/Trial-1/node_modules/mime-db/index.js +12 -0
- package/.OLD/Trial-1/node_modules/mime-db/package.json +60 -0
- package/.OLD/Trial-1/node_modules/mime-types/HISTORY.md +397 -0
- package/.OLD/Trial-1/node_modules/mime-types/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/mime-types/README.md +113 -0
- package/.OLD/Trial-1/node_modules/mime-types/index.js +188 -0
- package/.OLD/Trial-1/node_modules/mime-types/package.json +44 -0
- package/.OLD/Trial-1/node_modules/mimic-response/index.d.ts +17 -0
- package/.OLD/Trial-1/node_modules/mimic-response/index.js +77 -0
- package/.OLD/Trial-1/node_modules/mimic-response/license +9 -0
- package/.OLD/Trial-1/node_modules/mimic-response/package.json +42 -0
- package/.OLD/Trial-1/node_modules/mimic-response/readme.md +78 -0
- package/.OLD/Trial-1/node_modules/minimist/.eslintrc +29 -0
- package/.OLD/Trial-1/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/minimist/.nycrc +14 -0
- package/.OLD/Trial-1/node_modules/minimist/CHANGELOG.md +298 -0
- package/.OLD/Trial-1/node_modules/minimist/LICENSE +18 -0
- package/.OLD/Trial-1/node_modules/minimist/README.md +121 -0
- package/.OLD/Trial-1/node_modules/minimist/example/parse.js +4 -0
- package/.OLD/Trial-1/node_modules/minimist/index.js +263 -0
- package/.OLD/Trial-1/node_modules/minimist/package.json +75 -0
- package/.OLD/Trial-1/node_modules/minimist/test/all_bool.js +34 -0
- package/.OLD/Trial-1/node_modules/minimist/test/bool.js +177 -0
- package/.OLD/Trial-1/node_modules/minimist/test/dash.js +43 -0
- package/.OLD/Trial-1/node_modules/minimist/test/default_bool.js +37 -0
- package/.OLD/Trial-1/node_modules/minimist/test/dotted.js +24 -0
- package/.OLD/Trial-1/node_modules/minimist/test/kv_short.js +32 -0
- package/.OLD/Trial-1/node_modules/minimist/test/long.js +33 -0
- package/.OLD/Trial-1/node_modules/minimist/test/num.js +38 -0
- package/.OLD/Trial-1/node_modules/minimist/test/parse.js +209 -0
- package/.OLD/Trial-1/node_modules/minimist/test/parse_modified.js +11 -0
- package/.OLD/Trial-1/node_modules/minimist/test/proto.js +64 -0
- package/.OLD/Trial-1/node_modules/minimist/test/short.js +69 -0
- package/.OLD/Trial-1/node_modules/minimist/test/stop_early.js +17 -0
- package/.OLD/Trial-1/node_modules/minimist/test/unknown.js +104 -0
- package/.OLD/Trial-1/node_modules/minimist/test/whitespace.js +10 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/README.md +18 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/index.js +98 -0
- package/.OLD/Trial-1/node_modules/mkdirp-classic/package.json +18 -0
- package/.OLD/Trial-1/node_modules/ms/index.js +152 -0
- package/.OLD/Trial-1/node_modules/ms/license.md +21 -0
- package/.OLD/Trial-1/node_modules/ms/package.json +37 -0
- package/.OLD/Trial-1/node_modules/ms/readme.md +51 -0
- package/.OLD/Trial-1/node_modules/nanoid/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/nanoid/README.md +39 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.browser.cjs +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.browser.js +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.cjs +35 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.d.ts +56 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.js +35 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/index.native.js +26 -0
- package/.OLD/Trial-1/node_modules/nanoid/async/package.json +12 -0
- package/.OLD/Trial-1/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.browser.cjs +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.browser.js +34 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.cjs +45 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.d.ts +91 -0
- package/.OLD/Trial-1/node_modules/nanoid/index.js +45 -0
- package/.OLD/Trial-1/node_modules/nanoid/nanoid.js +1 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/index.cjs +21 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/index.js +21 -0
- package/.OLD/Trial-1/node_modules/nanoid/non-secure/package.json +6 -0
- package/.OLD/Trial-1/node_modules/nanoid/package.json +60 -0
- package/.OLD/Trial-1/node_modules/nanoid/url-alphabet/index.cjs +3 -0
- package/.OLD/Trial-1/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/.OLD/Trial-1/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/.github/workflows/run-npm-tests.yml +31 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/README.md +52 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/index.js +214 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/index.md +0 -0
- package/.OLD/Trial-1/node_modules/napi-build-utils/package.json +42 -0
- package/.OLD/Trial-1/node_modules/negotiator/HISTORY.md +108 -0
- package/.OLD/Trial-1/node_modules/negotiator/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/negotiator/README.md +203 -0
- package/.OLD/Trial-1/node_modules/negotiator/index.js +82 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/charset.js +169 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/encoding.js +184 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/language.js +179 -0
- package/.OLD/Trial-1/node_modules/negotiator/lib/mediaType.js +294 -0
- package/.OLD/Trial-1/node_modules/negotiator/package.json +42 -0
- package/.OLD/Trial-1/node_modules/node-abi/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/node-abi/README.md +54 -0
- package/.OLD/Trial-1/node_modules/node-abi/abi_registry.json +432 -0
- package/.OLD/Trial-1/node_modules/node-abi/index.js +179 -0
- package/.OLD/Trial-1/node_modules/node-abi/package.json +45 -0
- package/.OLD/Trial-1/node_modules/node-cron/.circleci/config.yml +17 -0
- package/.OLD/Trial-1/node_modules/node-cron/.covignore +1 -0
- package/.OLD/Trial-1/node_modules/node-cron/.eslintrc.yml +20 -0
- package/.OLD/Trial-1/node_modules/node-cron/.github/stale.yml +17 -0
- package/.OLD/Trial-1/node_modules/node-cron/LICENSE.md +7 -0
- package/.OLD/Trial-1/node_modules/node-cron/README.md +247 -0
- package/.OLD/Trial-1/node_modules/node-cron/package.json +43 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/background-scheduled-task/daemon.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/background-scheduled-task/index.js +67 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/asterisk-to-range-conversion.js +21 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/index.js +66 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/month-names-conversion.js +22 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/range-conversion.js +39 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/step-values-conversion.js +30 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/convert-expression/week-day-names-conversion.js +21 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/node-cron.js +64 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/pattern-validation.js +124 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/scheduled-task.js +51 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/scheduler.js +49 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/storage.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/task.js +34 -0
- package/.OLD/Trial-1/node_modules/node-cron/src/time-matcher.js +54 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/assets/dummy-task.js +3 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/background-scheduled-task-test.js +47 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/asterisk-to-range-conversion-test.js +12 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/convert-expression-test.js +18 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/month-names-conversion-test.js +16 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/range-conversion-test.js +24 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/step-values-conversion-test.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/convert-expression/week-day-names-conversion-test.js +21 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/node-cron-test.js +138 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-day-test.js +32 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-hours-test.js +38 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-minute-test.js +32 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-month-test.js +44 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-pattern-type.js +19 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-second-test.js +32 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-test.js +24 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/pattern-validation/validate-week-day-test.js +56 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/scheduled-task-test.js +91 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/scheduler-test.js +91 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/storage-test.js +26 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/task-test.js +49 -0
- package/.OLD/Trial-1/node_modules/node-cron/test/time-matcher-test.js +244 -0
- package/.OLD/Trial-1/node_modules/object-assign/index.js +90 -0
- package/.OLD/Trial-1/node_modules/object-assign/license +21 -0
- package/.OLD/Trial-1/node_modules/object-assign/package.json +42 -0
- package/.OLD/Trial-1/node_modules/object-assign/readme.md +61 -0
- package/.OLD/Trial-1/node_modules/object-inspect/.eslintrc +53 -0
- package/.OLD/Trial-1/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/object-inspect/CHANGELOG.md +424 -0
- package/.OLD/Trial-1/node_modules/object-inspect/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/all.js +23 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/circular.js +6 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/fn.js +5 -0
- package/.OLD/Trial-1/node_modules/object-inspect/example/inspect.js +10 -0
- package/.OLD/Trial-1/node_modules/object-inspect/index.js +544 -0
- package/.OLD/Trial-1/node_modules/object-inspect/package-support.json +20 -0
- package/.OLD/Trial-1/node_modules/object-inspect/package.json +105 -0
- package/.OLD/Trial-1/node_modules/object-inspect/readme.markdown +84 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/bigint.js +58 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/circular.js +16 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/deep.js +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/element.js +53 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/err.js +48 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/fakes.js +29 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/fn.js +76 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/global.js +17 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/has.js +15 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/holes.js +15 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/indent-option.js +271 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/inspect.js +139 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/number.js +58 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/quoteStyle.js +26 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/undef.js +12 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test/values.js +261 -0
- package/.OLD/Trial-1/node_modules/object-inspect/test-core-js.js +26 -0
- package/.OLD/Trial-1/node_modules/object-inspect/util.inspect.js +1 -0
- package/.OLD/Trial-1/node_modules/on-finished/HISTORY.md +98 -0
- package/.OLD/Trial-1/node_modules/on-finished/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/on-finished/README.md +162 -0
- package/.OLD/Trial-1/node_modules/on-finished/index.js +234 -0
- package/.OLD/Trial-1/node_modules/on-finished/package.json +39 -0
- package/.OLD/Trial-1/node_modules/once/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/once/README.md +79 -0
- package/.OLD/Trial-1/node_modules/once/once.js +42 -0
- package/.OLD/Trial-1/node_modules/once/package.json +33 -0
- package/.OLD/Trial-1/node_modules/openai/.github/ISSUE_TEMPLATE/bug_report.yml +56 -0
- package/.OLD/Trial-1/node_modules/openai/.github/ISSUE_TEMPLATE/config.yml +7 -0
- package/.OLD/Trial-1/node_modules/openai/.github/ISSUE_TEMPLATE/feature_request.yml +20 -0
- package/.OLD/Trial-1/node_modules/openai/.github/workflows/test.yml +25 -0
- package/.OLD/Trial-1/node_modules/openai/.openapi-generator/FILES +6 -0
- package/.OLD/Trial-1/node_modules/openai/.openapi-generator/VERSION +1 -0
- package/.OLD/Trial-1/node_modules/openai/.openapi-generator-ignore +5 -0
- package/.OLD/Trial-1/node_modules/openai/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/openai/README.md +89 -0
- package/.OLD/Trial-1/node_modules/openai/api.ts +4131 -0
- package/.OLD/Trial-1/node_modules/openai/base.ts +72 -0
- package/.OLD/Trial-1/node_modules/openai/common.ts +150 -0
- package/.OLD/Trial-1/node_modules/openai/configuration.ts +127 -0
- package/.OLD/Trial-1/node_modules/openai/dist/api.d.ts +3003 -0
- package/.OLD/Trial-1/node_modules/openai/dist/api.js +2040 -0
- package/.OLD/Trial-1/node_modules/openai/dist/base.d.ts +54 -0
- package/.OLD/Trial-1/node_modules/openai/dist/base.js +59 -0
- package/.OLD/Trial-1/node_modules/openai/dist/common.d.ts +65 -0
- package/.OLD/Trial-1/node_modules/openai/dist/common.js +151 -0
- package/.OLD/Trial-1/node_modules/openai/dist/configuration.d.ts +91 -0
- package/.OLD/Trial-1/node_modules/openai/dist/configuration.js +54 -0
- package/.OLD/Trial-1/node_modules/openai/dist/index.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/openai/dist/index.js +27 -0
- package/.OLD/Trial-1/node_modules/openai/index.ts +18 -0
- package/.OLD/Trial-1/node_modules/openai/package.json +31 -0
- package/.OLD/Trial-1/node_modules/openai/tsconfig.json +17 -0
- package/.OLD/Trial-1/node_modules/parseurl/HISTORY.md +58 -0
- package/.OLD/Trial-1/node_modules/parseurl/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/parseurl/README.md +133 -0
- package/.OLD/Trial-1/node_modules/parseurl/index.js +158 -0
- package/.OLD/Trial-1/node_modules/parseurl/package.json +40 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/Readme.md +35 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/index.js +156 -0
- package/.OLD/Trial-1/node_modules/path-to-regexp/package.json +30 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/CHANGELOG.md +131 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/README.md +163 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/asset.js +44 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/bin.js +78 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/download.js +142 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/error.js +14 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/help.txt +16 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/index.js +1 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/log.js +33 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/package.json +67 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/proxy.js +35 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/rc.js +64 -0
- package/.OLD/Trial-1/node_modules/prebuild-install/util.js +143 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/HISTORY.md +161 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/README.md +139 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/index.js +327 -0
- package/.OLD/Trial-1/node_modules/proxy-addr/package.json +47 -0
- package/.OLD/Trial-1/node_modules/pump/.github/FUNDING.yml +2 -0
- package/.OLD/Trial-1/node_modules/pump/.travis.yml +5 -0
- package/.OLD/Trial-1/node_modules/pump/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/pump/README.md +74 -0
- package/.OLD/Trial-1/node_modules/pump/SECURITY.md +5 -0
- package/.OLD/Trial-1/node_modules/pump/empty.js +1 -0
- package/.OLD/Trial-1/node_modules/pump/index.js +86 -0
- package/.OLD/Trial-1/node_modules/pump/package.json +30 -0
- package/.OLD/Trial-1/node_modules/pump/test-browser.js +66 -0
- package/.OLD/Trial-1/node_modules/pump/test-node.js +53 -0
- package/.OLD/Trial-1/node_modules/qs/.editorconfig +46 -0
- package/.OLD/Trial-1/node_modules/qs/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/qs/.github/SECURITY.md +11 -0
- package/.OLD/Trial-1/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/.OLD/Trial-1/node_modules/qs/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/qs/CHANGELOG.md +644 -0
- package/.OLD/Trial-1/node_modules/qs/LICENSE.md +29 -0
- package/.OLD/Trial-1/node_modules/qs/README.md +740 -0
- package/.OLD/Trial-1/node_modules/qs/dist/qs.js +141 -0
- package/.OLD/Trial-1/node_modules/qs/eslint.config.mjs +56 -0
- package/.OLD/Trial-1/node_modules/qs/lib/formats.js +23 -0
- package/.OLD/Trial-1/node_modules/qs/lib/index.js +11 -0
- package/.OLD/Trial-1/node_modules/qs/lib/parse.js +371 -0
- package/.OLD/Trial-1/node_modules/qs/lib/stringify.js +356 -0
- package/.OLD/Trial-1/node_modules/qs/lib/utils.js +340 -0
- package/.OLD/Trial-1/node_modules/qs/package.json +94 -0
- package/.OLD/Trial-1/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/.OLD/Trial-1/node_modules/qs/test/parse.js +1512 -0
- package/.OLD/Trial-1/node_modules/qs/test/stringify.js +1310 -0
- package/.OLD/Trial-1/node_modules/qs/test/utils.js +397 -0
- package/.OLD/Trial-1/node_modules/range-parser/HISTORY.md +56 -0
- package/.OLD/Trial-1/node_modules/range-parser/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/range-parser/README.md +84 -0
- package/.OLD/Trial-1/node_modules/range-parser/index.js +162 -0
- package/.OLD/Trial-1/node_modules/range-parser/package.json +44 -0
- package/.OLD/Trial-1/node_modules/raw-body/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/raw-body/README.md +223 -0
- package/.OLD/Trial-1/node_modules/raw-body/index.d.ts +87 -0
- package/.OLD/Trial-1/node_modules/raw-body/index.js +336 -0
- package/.OLD/Trial-1/node_modules/raw-body/package.json +47 -0
- package/.OLD/Trial-1/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/.OLD/Trial-1/node_modules/rc/LICENSE.BSD +26 -0
- package/.OLD/Trial-1/node_modules/rc/LICENSE.MIT +24 -0
- package/.OLD/Trial-1/node_modules/rc/README.md +227 -0
- package/.OLD/Trial-1/node_modules/rc/browser.js +7 -0
- package/.OLD/Trial-1/node_modules/rc/cli.js +4 -0
- package/.OLD/Trial-1/node_modules/rc/index.js +53 -0
- package/.OLD/Trial-1/node_modules/rc/lib/utils.js +104 -0
- package/.OLD/Trial-1/node_modules/rc/package.json +29 -0
- package/.OLD/Trial-1/node_modules/rc/test/ini.js +16 -0
- package/.OLD/Trial-1/node_modules/rc/test/nested-env-vars.js +50 -0
- package/.OLD/Trial-1/node_modules/rc/test/test.js +59 -0
- package/.OLD/Trial-1/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/.OLD/Trial-1/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/.OLD/Trial-1/node_modules/readable-stream/LICENSE +47 -0
- package/.OLD/Trial-1/node_modules/readable-stream/README.md +106 -0
- package/.OLD/Trial-1/node_modules/readable-stream/errors-browser.js +127 -0
- package/.OLD/Trial-1/node_modules/readable-stream/errors.js +116 -0
- package/.OLD/Trial-1/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_transform.js +190 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/_stream_writable.js +641 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/.OLD/Trial-1/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/.OLD/Trial-1/node_modules/readable-stream/package.json +68 -0
- package/.OLD/Trial-1/node_modules/readable-stream/readable-browser.js +9 -0
- package/.OLD/Trial-1/node_modules/readable-stream/readable.js +16 -0
- package/.OLD/Trial-1/node_modules/require-from-string/index.js +34 -0
- package/.OLD/Trial-1/node_modules/require-from-string/license +21 -0
- package/.OLD/Trial-1/node_modules/require-from-string/package.json +28 -0
- package/.OLD/Trial-1/node_modules/require-from-string/readme.md +56 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/README.md +584 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/index.d.ts +187 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/index.js +65 -0
- package/.OLD/Trial-1/node_modules/safe-buffer/package.json +51 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/Readme.md +156 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/dangerous.js +58 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/package.json +34 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/safer.js +77 -0
- package/.OLD/Trial-1/node_modules/safer-buffer/tests.js +406 -0
- package/.OLD/Trial-1/node_modules/semver/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/semver/README.md +665 -0
- package/.OLD/Trial-1/node_modules/semver/bin/semver.js +191 -0
- package/.OLD/Trial-1/node_modules/semver/classes/comparator.js +143 -0
- package/.OLD/Trial-1/node_modules/semver/classes/index.js +7 -0
- package/.OLD/Trial-1/node_modules/semver/classes/range.js +557 -0
- package/.OLD/Trial-1/node_modules/semver/classes/semver.js +333 -0
- package/.OLD/Trial-1/node_modules/semver/functions/clean.js +8 -0
- package/.OLD/Trial-1/node_modules/semver/functions/cmp.js +54 -0
- package/.OLD/Trial-1/node_modules/semver/functions/coerce.js +62 -0
- package/.OLD/Trial-1/node_modules/semver/functions/compare-build.js +9 -0
- package/.OLD/Trial-1/node_modules/semver/functions/compare-loose.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/compare.js +7 -0
- package/.OLD/Trial-1/node_modules/semver/functions/diff.js +60 -0
- package/.OLD/Trial-1/node_modules/semver/functions/eq.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/gt.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/gte.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/inc.js +21 -0
- package/.OLD/Trial-1/node_modules/semver/functions/lt.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/lte.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/major.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/minor.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/neq.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/parse.js +18 -0
- package/.OLD/Trial-1/node_modules/semver/functions/patch.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/prerelease.js +8 -0
- package/.OLD/Trial-1/node_modules/semver/functions/rcompare.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/rsort.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/satisfies.js +12 -0
- package/.OLD/Trial-1/node_modules/semver/functions/sort.js +5 -0
- package/.OLD/Trial-1/node_modules/semver/functions/valid.js +8 -0
- package/.OLD/Trial-1/node_modules/semver/index.js +91 -0
- package/.OLD/Trial-1/node_modules/semver/internal/constants.js +37 -0
- package/.OLD/Trial-1/node_modules/semver/internal/debug.js +11 -0
- package/.OLD/Trial-1/node_modules/semver/internal/identifiers.js +29 -0
- package/.OLD/Trial-1/node_modules/semver/internal/lrucache.js +42 -0
- package/.OLD/Trial-1/node_modules/semver/internal/parse-options.js +17 -0
- package/.OLD/Trial-1/node_modules/semver/internal/re.js +223 -0
- package/.OLD/Trial-1/node_modules/semver/package.json +78 -0
- package/.OLD/Trial-1/node_modules/semver/preload.js +4 -0
- package/.OLD/Trial-1/node_modules/semver/range.bnf +16 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/gtr.js +6 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/intersects.js +9 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/ltr.js +6 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/min-version.js +63 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/outside.js +82 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/simplify.js +49 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/subset.js +249 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/to-comparators.js +10 -0
- package/.OLD/Trial-1/node_modules/semver/ranges/valid.js +13 -0
- package/.OLD/Trial-1/node_modules/send/HISTORY.md +538 -0
- package/.OLD/Trial-1/node_modules/send/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/send/README.md +327 -0
- package/.OLD/Trial-1/node_modules/send/SECURITY.md +24 -0
- package/.OLD/Trial-1/node_modules/send/index.js +1142 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/index.js +162 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/license.md +21 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/package.json +38 -0
- package/.OLD/Trial-1/node_modules/send/node_modules/ms/readme.md +59 -0
- package/.OLD/Trial-1/node_modules/send/package.json +62 -0
- package/.OLD/Trial-1/node_modules/serve-static/HISTORY.md +493 -0
- package/.OLD/Trial-1/node_modules/serve-static/LICENSE +25 -0
- package/.OLD/Trial-1/node_modules/serve-static/README.md +257 -0
- package/.OLD/Trial-1/node_modules/serve-static/index.js +209 -0
- package/.OLD/Trial-1/node_modules/serve-static/package.json +42 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/LICENSE +13 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/README.md +31 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/index.d.ts +2 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/index.js +17 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/package.json +38 -0
- package/.OLD/Trial-1/node_modules/setprototypeof/test/index.js +24 -0
- package/.OLD/Trial-1/node_modules/side-channel/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel/.eslintrc +12 -0
- package/.OLD/Trial-1/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel/CHANGELOG.md +110 -0
- package/.OLD/Trial-1/node_modules/side-channel/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel/README.md +61 -0
- package/.OLD/Trial-1/node_modules/side-channel/index.d.ts +14 -0
- package/.OLD/Trial-1/node_modules/side-channel/index.js +43 -0
- package/.OLD/Trial-1/node_modules/side-channel/package.json +85 -0
- package/.OLD/Trial-1/node_modules/side-channel/test/index.js +104 -0
- package/.OLD/Trial-1/node_modules/side-channel/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/CHANGELOG.md +15 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/README.md +62 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/index.d.ts +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/index.js +113 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/list.d.ts +14 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/package.json +77 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/test/index.js +104 -0
- package/.OLD/Trial-1/node_modules/side-channel-list/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.eslintrc +11 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/README.md +62 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/index.d.ts +15 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/index.js +68 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/package.json +80 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/test/index.js +114 -0
- package/.OLD/Trial-1/node_modules/side-channel-map/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.eslintrc +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/README.md +62 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/index.js +84 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/package.json +87 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/.OLD/Trial-1/node_modules/side-channel-weakmap/tsconfig.json +9 -0
- package/.OLD/Trial-1/node_modules/simple-concat/.travis.yml +3 -0
- package/.OLD/Trial-1/node_modules/simple-concat/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/simple-concat/README.md +44 -0
- package/.OLD/Trial-1/node_modules/simple-concat/index.js +15 -0
- package/.OLD/Trial-1/node_modules/simple-concat/package.json +47 -0
- package/.OLD/Trial-1/node_modules/simple-concat/test/basic.js +41 -0
- package/.OLD/Trial-1/node_modules/simple-get/.github/dependabot.yml +15 -0
- package/.OLD/Trial-1/node_modules/simple-get/.github/workflows/ci.yml +23 -0
- package/.OLD/Trial-1/node_modules/simple-get/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/simple-get/README.md +333 -0
- package/.OLD/Trial-1/node_modules/simple-get/index.js +108 -0
- package/.OLD/Trial-1/node_modules/simple-get/package.json +67 -0
- package/.OLD/Trial-1/node_modules/statuses/HISTORY.md +87 -0
- package/.OLD/Trial-1/node_modules/statuses/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/statuses/README.md +139 -0
- package/.OLD/Trial-1/node_modules/statuses/codes.json +65 -0
- package/.OLD/Trial-1/node_modules/statuses/index.js +146 -0
- package/.OLD/Trial-1/node_modules/statuses/package.json +49 -0
- package/.OLD/Trial-1/node_modules/string_decoder/LICENSE +48 -0
- package/.OLD/Trial-1/node_modules/string_decoder/README.md +47 -0
- package/.OLD/Trial-1/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/.OLD/Trial-1/node_modules/string_decoder/package.json +34 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/index.js +70 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/license +21 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/package.json +42 -0
- package/.OLD/Trial-1/node_modules/strip-json-comments/readme.md +64 -0
- package/.OLD/Trial-1/node_modules/tar-fs/.travis.yml +6 -0
- package/.OLD/Trial-1/node_modules/tar-fs/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/tar-fs/README.md +165 -0
- package/.OLD/Trial-1/node_modules/tar-fs/index.js +363 -0
- package/.OLD/Trial-1/node_modules/tar-fs/package.json +41 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/.OLD/Trial-1/node_modules/tar-fs/test/index.js +346 -0
- package/.OLD/Trial-1/node_modules/tar-stream/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/tar-stream/README.md +168 -0
- package/.OLD/Trial-1/node_modules/tar-stream/extract.js +257 -0
- package/.OLD/Trial-1/node_modules/tar-stream/headers.js +295 -0
- package/.OLD/Trial-1/node_modules/tar-stream/index.js +2 -0
- package/.OLD/Trial-1/node_modules/tar-stream/pack.js +255 -0
- package/.OLD/Trial-1/node_modules/tar-stream/package.json +58 -0
- package/.OLD/Trial-1/node_modules/tar-stream/sandbox.js +11 -0
- package/.OLD/Trial-1/node_modules/toidentifier/HISTORY.md +9 -0
- package/.OLD/Trial-1/node_modules/toidentifier/LICENSE +21 -0
- package/.OLD/Trial-1/node_modules/toidentifier/README.md +61 -0
- package/.OLD/Trial-1/node_modules/toidentifier/index.js +32 -0
- package/.OLD/Trial-1/node_modules/toidentifier/package.json +38 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/LICENSE +55 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/README.md +4 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/index.js +244 -0
- package/.OLD/Trial-1/node_modules/tunnel-agent/package.json +22 -0
- package/.OLD/Trial-1/node_modules/type-is/HISTORY.md +259 -0
- package/.OLD/Trial-1/node_modules/type-is/LICENSE +23 -0
- package/.OLD/Trial-1/node_modules/type-is/README.md +170 -0
- package/.OLD/Trial-1/node_modules/type-is/index.js +266 -0
- package/.OLD/Trial-1/node_modules/type-is/package.json +45 -0
- package/.OLD/Trial-1/node_modules/unpipe/HISTORY.md +4 -0
- package/.OLD/Trial-1/node_modules/unpipe/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/unpipe/README.md +43 -0
- package/.OLD/Trial-1/node_modules/unpipe/index.js +69 -0
- package/.OLD/Trial-1/node_modules/unpipe/package.json +27 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/History.md +16 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/LICENSE +24 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/README.md +53 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/browser.js +67 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/node.js +6 -0
- package/.OLD/Trial-1/node_modules/util-deprecate/package.json +27 -0
- package/.OLD/Trial-1/node_modules/utils-merge/LICENSE +20 -0
- package/.OLD/Trial-1/node_modules/utils-merge/README.md +34 -0
- package/.OLD/Trial-1/node_modules/utils-merge/index.js +23 -0
- package/.OLD/Trial-1/node_modules/utils-merge/package.json +40 -0
- package/.OLD/Trial-1/node_modules/uuid/CHANGELOG.md +229 -0
- package/.OLD/Trial-1/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/.OLD/Trial-1/node_modules/uuid/LICENSE.md +9 -0
- package/.OLD/Trial-1/node_modules/uuid/README.md +505 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/bin/uuid +2 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/index.js +79 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/md5-browser.js +223 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/md5.js +23 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/nil.js +8 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/parse.js +45 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/regex.js +8 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/rng-browser.js +26 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/rng.js +24 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/sha1.js +23 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/stringify.js +39 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v1.js +107 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v3.js +16 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v35.js +78 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v4.js +37 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/v5.js +16 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/validate.js +17 -0
- package/.OLD/Trial-1/node_modules/uuid/dist/version.js +21 -0
- package/.OLD/Trial-1/node_modules/uuid/package.json +135 -0
- package/.OLD/Trial-1/node_modules/uuid/wrapper.mjs +10 -0
- package/.OLD/Trial-1/node_modules/vary/HISTORY.md +39 -0
- package/.OLD/Trial-1/node_modules/vary/LICENSE +22 -0
- package/.OLD/Trial-1/node_modules/vary/README.md +101 -0
- package/.OLD/Trial-1/node_modules/vary/index.js +149 -0
- package/.OLD/Trial-1/node_modules/vary/package.json +43 -0
- package/.OLD/Trial-1/node_modules/wrappy/LICENSE +15 -0
- package/.OLD/Trial-1/node_modules/wrappy/README.md +36 -0
- package/.OLD/Trial-1/node_modules/wrappy/package.json +29 -0
- package/.OLD/Trial-1/node_modules/wrappy/wrappy.js +33 -0
- package/.OLD/Trial-1/package-lock.json +1382 -0
- package/.OLD/Trial-1/package.json +35 -0
- package/.OLD/Trial-1/src/agents/builtin/compact.js +187 -0
- package/.OLD/Trial-1/src/agents/loader.js +237 -0
- package/.OLD/Trial-1/src/agents/resolver.js +80 -0
- package/.OLD/Trial-1/src/agents/scanner.js +119 -0
- package/.OLD/Trial-1/src/agents/types.js +83 -0
- package/.OLD/Trial-1/src/agents/validator.js +96 -0
- package/.OLD/Trial-1/src/api/middleware/auth.js +49 -0
- package/.OLD/Trial-1/src/api/middleware/errors.js +38 -0
- package/.OLD/Trial-1/src/api/middleware/validate.js +96 -0
- package/.OLD/Trial-1/src/api/routes/agents.js +69 -0
- package/.OLD/Trial-1/src/api/routes/chat.js +115 -0
- package/.OLD/Trial-1/src/api/routes/sessions.js +77 -0
- package/.OLD/Trial-1/src/api/routes/system.js +61 -0
- package/.OLD/Trial-1/src/api/routes/tasks.js +140 -0
- package/.OLD/Trial-1/src/api/schemas/chat-request.json +42 -0
- package/.OLD/Trial-1/src/api/schemas/task-request.json +33 -0
- package/.OLD/Trial-1/src/api/schemas/task-respond.json +12 -0
- package/.OLD/Trial-1/src/api/server.js +108 -0
- package/.OLD/Trial-1/src/cli/auth.js +119 -0
- package/.OLD/Trial-1/src/cli/commands/auth.js +101 -0
- package/.OLD/Trial-1/src/cli/commands/config.js +104 -0
- package/.OLD/Trial-1/src/cli/commands/start.js +65 -0
- package/.OLD/Trial-1/src/cli/index.js +209 -0
- package/.OLD/Trial-1/src/config/config.json +12 -0
- package/.OLD/Trial-1/src/context/compaction.js +166 -0
- package/.OLD/Trial-1/src/context/extraction.js +202 -0
- package/.OLD/Trial-1/src/context/tokens.js +128 -0
- package/.OLD/Trial-1/src/context/trimming.js +170 -0
- package/.OLD/Trial-1/src/llm/client.js +154 -0
- package/.OLD/Trial-1/src/llm/errors.js +103 -0
- package/.OLD/Trial-1/src/llm/models.js +136 -0
- package/.OLD/Trial-1/src/llm/tokenizer.js +138 -0
- package/.OLD/Trial-1/src/permissions/checker.js +55 -0
- package/.OLD/Trial-1/src/prompt/assembler.js +130 -0
- package/.OLD/Trial-1/src/prompt/layers/agent-instructions.js +44 -0
- package/.OLD/Trial-1/src/prompt/layers/base-core.js +22 -0
- package/.OLD/Trial-1/src/prompt/layers/environment.js +57 -0
- package/.OLD/Trial-1/src/prompt/layers/heuristics.js +72 -0
- package/.OLD/Trial-1/src/prompt/layers/safety-rules.js +22 -0
- package/.OLD/Trial-1/src/prompt/layers/session-context.js +61 -0
- package/.OLD/Trial-1/src/prompt/layers/tools.js +75 -0
- package/.OLD/Trial-1/src/prompt/reminders.js +98 -0
- package/.OLD/Trial-1/src/runtime/chat.js +121 -0
- package/.OLD/Trial-1/src/runtime/events.js +80 -0
- package/.OLD/Trial-1/src/runtime/limits.js +87 -0
- package/.OLD/Trial-1/src/runtime/loop.js +280 -0
- package/.OLD/Trial-1/src/schemas/agent.json +200 -0
- package/.OLD/Trial-1/src/schemas/settings.json +254 -0
- package/.OLD/Trial-1/src/session/manager.js +164 -0
- package/.OLD/Trial-1/src/settings/loader.js +207 -0
- package/.OLD/Trial-1/src/storage/agent-messages.js +178 -0
- package/.OLD/Trial-1/src/storage/db.js +103 -0
- package/.OLD/Trial-1/src/storage/events.js +124 -0
- package/.OLD/Trial-1/src/storage/messages.js +151 -0
- package/.OLD/Trial-1/src/storage/migrations.js +102 -0
- package/.OLD/Trial-1/src/storage/schema.sql +145 -0
- package/.OLD/Trial-1/src/storage/sessions.js +260 -0
- package/.OLD/Trial-1/src/storage/tasks.js +236 -0
- package/.OLD/Trial-1/src/storage/todos.js +72 -0
- package/.OLD/Trial-1/src/system-prompts/base-core.md +27 -0
- package/.OLD/Trial-1/src/system-prompts/heuristics/no-over-engineering.md +15 -0
- package/.OLD/Trial-1/src/system-prompts/heuristics/read-before-edit.md +15 -0
- package/.OLD/Trial-1/src/system-prompts/safety-rules.md +34 -0
- package/.OLD/Trial-1/src/tasks/lifecycle.js +218 -0
- package/.OLD/Trial-1/src/tasks/limits.js +161 -0
- package/.OLD/Trial-1/src/tasks/queue.js +250 -0
- package/.OLD/Trial-1/src/tools/builtin/control/sleep.js +38 -0
- package/.OLD/Trial-1/src/tools/builtin/control/todo_read.js +27 -0
- package/.OLD/Trial-1/src/tools/builtin/control/todo_write.js +53 -0
- package/.OLD/Trial-1/src/tools/builtin/files/edit_file.js +76 -0
- package/.OLD/Trial-1/src/tools/builtin/files/glob.js +96 -0
- package/.OLD/Trial-1/src/tools/builtin/files/grep.js +112 -0
- package/.OLD/Trial-1/src/tools/builtin/files/list_dir.js +76 -0
- package/.OLD/Trial-1/src/tools/builtin/files/read_file.js +76 -0
- package/.OLD/Trial-1/src/tools/builtin/files/write_file.js +46 -0
- package/.OLD/Trial-1/src/tools/builtin/memory/memory_read.js +62 -0
- package/.OLD/Trial-1/src/tools/builtin/memory/memory_search.js +90 -0
- package/.OLD/Trial-1/src/tools/builtin/memory/memory_write.js +126 -0
- package/.OLD/Trial-1/src/tools/builtin/network/fetch.js +174 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/agent_message.js +71 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/agent_spawn.js +127 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/task_create.js +115 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/task_respond.js +67 -0
- package/.OLD/Trial-1/src/tools/builtin/orchestration/task_status.js +101 -0
- package/.OLD/Trial-1/src/tools/builtin/system/bash.js +61 -0
- package/.OLD/Trial-1/src/tools/registry.js +216 -0
- package/.OLD/Trial-1/src/tools/schemas/agent_message.json +27 -0
- package/.OLD/Trial-1/src/tools/schemas/agent_spawn.json +34 -0
- package/.OLD/Trial-1/src/tools/schemas/bash.json +20 -0
- package/.OLD/Trial-1/src/tools/schemas/edit_file.json +22 -0
- package/.OLD/Trial-1/src/tools/schemas/fetch.json +43 -0
- package/.OLD/Trial-1/src/tools/schemas/glob.json +18 -0
- package/.OLD/Trial-1/src/tools/schemas/grep.json +22 -0
- package/.OLD/Trial-1/src/tools/schemas/list_dir.json +13 -0
- package/.OLD/Trial-1/src/tools/schemas/memory_read.json +19 -0
- package/.OLD/Trial-1/src/tools/schemas/memory_search.json +20 -0
- package/.OLD/Trial-1/src/tools/schemas/memory_write.json +24 -0
- package/.OLD/Trial-1/src/tools/schemas/read_file.json +24 -0
- package/.OLD/Trial-1/src/tools/schemas/sleep.json +16 -0
- package/.OLD/Trial-1/src/tools/schemas/task_create.json +47 -0
- package/.OLD/Trial-1/src/tools/schemas/task_respond.json +18 -0
- package/.OLD/Trial-1/src/tools/schemas/task_status.json +25 -0
- package/.OLD/Trial-1/src/tools/schemas/todo_read.json +8 -0
- package/.OLD/Trial-1/src/tools/schemas/todo_write.json +24 -0
- package/.OLD/Trial-1/src/tools/schemas/write_file.json +18 -0
- package/.OLD/Trial-1/src/utils/context.js +11 -0
- package/.OLD/Trial-1/src/utils/files.js +139 -0
- package/.OLD/Trial-1/src/utils/id.js +20 -0
- package/.OLD/Trial-1/src/utils/paths.js +156 -0
- package/.OLD/Trial-1/test/storage.test.js +168 -0
- package/.OLD/Trial-1/test/tasks.test.js +133 -0
- package/.OLD/Trial-1/test/tokens.test.js +104 -0
- package/.OLD/Trial-1/test/tools.test.js +140 -0
- package/.OLD/Trial-1/test/utils.js +106 -0
- package/.khabot/agents/analyst/AGENT.md +21 -0
- package/.khabot/agents/analyst/agent.json +23 -0
- package/.khabot/agents/assistant/AGENT.md +15 -0
- package/.khabot/agents/assistant/agent.json +19 -0
- package/.khabot/agents/coder/AGENT.md +18 -0
- package/.khabot/agents/coder/agent.json +19 -0
- package/.khabot/agents/hello/AGENT.md +5 -0
- package/.khabot/agents/hello/agent.json +13 -0
- package/.khabot/agents/writer/AGENT.md +12 -0
- package/.khabot/agents/writer/agent.json +17 -0
- package/.khabot/auth.json +9 -0
- package/.khabot/memory/MEMORY.md +343 -0
- package/.khabot/memory/agents/analyst/MEMORY.md +55 -0
- package/.khabot/memory/agents/hello/MEMORY.md +12 -0
- package/.khabot/settings.json +10 -0
- package/PLAN/01-vision.md +26 -0
- package/PLAN/02-tech-stack.md +94 -0
- package/PLAN/03-agents.md +232 -0
- package/PLAN/04-runtime.md +171 -0
- package/PLAN/05-tools.md +211 -0
- package/PLAN/06-communication.md +243 -0
- package/PLAN/07-storage.md +218 -0
- package/PLAN/08-api-cli.md +153 -0
- package/PLAN/09-permissions.md +108 -0
- package/PLAN/10-ably.md +105 -0
- package/PLAN/11-file-formats.md +442 -0
- package/PLAN/12-folder-structure.md +205 -0
- package/PLAN/13-operations.md +212 -0
- package/PLAN/README.md +23 -0
- package/README.md +128 -0
- package/REPORT.md +174 -0
- package/TODO.md +46 -0
- package/ai-tests/FRONTEND_PROMPT.md +220 -0
- package/ai-tests/Research & Planning.md +814 -0
- package/ai-tests/prompt-001-basic-api.md +230 -0
- package/ai-tests/prompt-002-basic-flows.md +230 -0
- package/ai-tests/prompt-003-agent-behaviors.md +220 -0
- package/api/middleware.js +60 -0
- package/api/routes/agents.js +193 -0
- package/api/routes/chat.js +93 -0
- package/api/routes/completions.js +122 -0
- package/api/routes/daemons.js +80 -0
- package/api/routes/memory.js +169 -0
- package/api/routes/models.js +40 -0
- package/api/routes/remote-methods.js +74 -0
- package/api/routes/sessions.js +208 -0
- package/api/routes/settings.js +108 -0
- package/api/routes/system.js +50 -0
- package/api/routes/tasks.js +270 -0
- package/api/server.js +120 -0
- package/cli/formatter.js +70 -0
- package/cli/index.js +410 -0
- package/cli/parser.js +108 -0
- package/config/config.json +10 -0
- package/config/models.json +6826 -0
- package/core/agent.js +329 -0
- package/core/cancel.js +38 -0
- package/core/compaction.js +176 -0
- package/core/events.js +13 -0
- package/core/loop.js +564 -0
- package/core/memory.js +51 -0
- package/core/prompt.js +184 -0
- package/core/queue.js +96 -0
- package/core/registry.js +291 -0
- package/core/remote-methods.js +124 -0
- package/core/router.js +386 -0
- package/core/running-sessions.js +18 -0
- package/docs/api/01-system.md +84 -0
- package/docs/api/02-agents.md +374 -0
- package/docs/api/03-chat.md +269 -0
- package/docs/api/04-tasks.md +470 -0
- package/docs/api/05-sessions.md +444 -0
- package/docs/api/06-daemons.md +142 -0
- package/docs/api/07-memory.md +186 -0
- package/docs/api/08-settings.md +133 -0
- package/docs/api/09-models.md +119 -0
- package/docs/api/09-websocket.md +350 -0
- package/docs/api/10-completions.md +134 -0
- package/docs/api/README.md +116 -0
- package/docs/guide/01-quickstart.md +220 -0
- package/docs/guide/02-folder-structure.md +185 -0
- package/docs/guide/03-configuration.md +252 -0
- package/docs/guide/04-agents.md +267 -0
- package/docs/guide/05-cli.md +290 -0
- package/docs/guide/06-tools.md +643 -0
- package/docs/guide/07-permissions.md +236 -0
- package/docs/guide/08-memory.md +139 -0
- package/docs/guide/09-multi-agent.md +271 -0
- package/docs/guide/10-daemons.md +226 -0
- package/docs/guide/README.md +53 -0
- package/docs/index.html +623 -0
- package/examples/README.md +151 -0
- package/examples/agents/assistant/AGENT.md +31 -0
- package/examples/agents/assistant/SOUL.md +9 -0
- package/examples/agents/assistant/agent.json +74 -0
- package/examples/agents/hello/AGENT.md +15 -0
- package/examples/agents/hello/agent.json +14 -0
- package/examples/agents/monitor/AGENT.md +51 -0
- package/examples/agents/monitor/agent.json +33 -0
- package/examples/agents/monitor/heartbeats/monitor.md +24 -0
- package/examples/agents/orchestrator/AGENT.md +70 -0
- package/examples/agents/orchestrator/agent.json +30 -0
- package/examples/agents/researcher/AGENT.md +52 -0
- package/examples/agents/researcher/agent.json +49 -0
- package/examples/agents/researcher/skills/web-research.md +28 -0
- package/examples/skills/code-review.md +72 -0
- package/examples/skills/summarise.md +59 -0
- package/examples/skills/web-research.md +42 -0
- package/examples/tools/word-count/index.js +27 -0
- package/examples/tools/word-count/tool.json +18 -0
- package/infrastructure/database.js +563 -0
- package/infrastructure/scheduler.js +122 -0
- package/llm/client.js +206 -0
- package/migrations/001-initial.sql +121 -0
- package/migrations/002-debuggability.sql +13 -0
- package/migrations/003-drop-orphaned-columns.sql +72 -0
- package/migrations/004-session-message-token-fields.sql +78 -0
- package/migrations/005-session-thinking.sql +5 -0
- package/package.json +30 -0
- package/schemas/agent.json +143 -0
- package/schemas/settings.json +111 -0
- package/scripts/fetch-models.js +93 -0
- package/session-debug-scenario.md +248 -0
- package/settings/fields.js +52 -0
- package/system-prompts/base-core.md +23 -0
- package/system-prompts/environment.md +13 -0
- package/system-prompts/reminders/anti-drift.md +6 -0
- package/system-prompts/reminders/stall-recovery.md +10 -0
- package/system-prompts/safety-rules.md +25 -0
- package/system-prompts/task-heuristics.md +27 -0
- package/test/client.js +71 -0
- package/test/integration/01-health.test.js +25 -0
- package/test/integration/02-agents.test.js +80 -0
- package/test/integration/03-chat-hello.test.js +48 -0
- package/test/integration/04-chat-multiturn.test.js +61 -0
- package/test/integration/05-chat-writer.test.js +48 -0
- package/test/integration/06-task-basic.test.js +68 -0
- package/test/integration/07-task-tools.test.js +74 -0
- package/test/integration/08-task-code-analysis.test.js +69 -0
- package/test/integration/09-memory-analyst.test.js +63 -0
- package/test/integration/10-task-advanced.test.js +85 -0
- package/test/integration/11-sessions-advanced.test.js +84 -0
- package/test/integration/12-assistant-chat-tools.test.js +75 -0
- package/test/integration/13-edge-cases.test.js +99 -0
- package/test/integration/14-cancel.test.js +62 -0
- package/test/integration/15-debug.test.js +106 -0
- package/test/integration/16-memory-api.test.js +83 -0
- package/test/integration/17-settings-api.test.js +41 -0
- package/test/integration/18-tool-search-activation.test.js +119 -0
- package/test/results/.gitkeep +0 -0
- package/test/runner.js +206 -0
- package/test/smoke.js +216 -0
- package/tools/agent_message.js +85 -0
- package/tools/agent_send.js +80 -0
- package/tools/agent_spawn.js +44 -0
- package/tools/bash.js +49 -0
- package/tools/edit_file.js +41 -0
- package/tools/glob.js +64 -0
- package/tools/grep.js +82 -0
- package/tools/list_dir.js +63 -0
- package/tools/log_write.js +31 -0
- package/tools/memory_read.js +38 -0
- package/tools/memory_search.js +65 -0
- package/tools/memory_write.js +42 -0
- package/tools/read_file.js +48 -0
- package/tools/sleep.js +22 -0
- package/tools/task_create.js +41 -0
- package/tools/task_respond.js +37 -0
- package/tools/task_spawn.js +64 -0
- package/tools/task_status.js +39 -0
- package/tools/task_subscribe.js +37 -0
- package/tools/todo_read.js +26 -0
- package/tools/todo_write.js +38 -0
- package/tools/tool_activate.js +24 -0
- package/tools/tool_search.js +24 -0
- package/tools/web_fetch.js +50 -0
- package/tools/web_search.js +52 -0
- package/tools/write_file.js +28 -0
- package/ui/api.js +190 -0
- package/ui/app.js +245 -0
- package/ui/index.html +339 -0
- package/ui/views/agents.js +377 -0
- package/ui/views/chat.js +610 -0
- package/ui/views/connection.js +96 -0
- package/ui/views/daemons.js +129 -0
- package/ui/views/feed.js +194 -0
- package/ui/views/memory.js +263 -0
- package/ui/views/models.js +146 -0
- package/ui/views/sessions.js +314 -0
- package/ui/views/settings.js +142 -0
- package/ui/views/tasks.js +415 -0
- package/utils/context.js +49 -0
- package/utils/id.js +16 -0
- package/utils/models.js +88 -0
- package/utils/paths.js +213 -0
- package/utils/settings.js +172 -0
|
@@ -0,0 +1,909 @@
|
|
|
1
|
+
# axios
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.org/package/axios)
|
|
4
|
+
[](https://cdnjs.com/libraries/axios)
|
|
5
|
+

|
|
6
|
+
[](https://gitpod.io/#https://github.com/axios/axios)
|
|
7
|
+
[](https://coveralls.io/r/mzabriskie/axios)
|
|
8
|
+
[](https://packagephobia.now.sh/result?p=axios)
|
|
9
|
+
[](http://npm-stat.com/charts.html?package=axios)
|
|
10
|
+
[](https://gitter.im/mzabriskie/axios)
|
|
11
|
+
[](https://www.codetriage.com/axios/axios)
|
|
12
|
+
[](https://snyk.io/test/npm/axios)
|
|
13
|
+
|
|
14
|
+
Promise based HTTP client for the browser and node.js
|
|
15
|
+
|
|
16
|
+
> New axios docs website: [click here](https://axios-http.com/)
|
|
17
|
+
|
|
18
|
+
## Table of Contents
|
|
19
|
+
|
|
20
|
+
- [Features](#features)
|
|
21
|
+
- [Browser Support](#browser-support)
|
|
22
|
+
- [Installing](#installing)
|
|
23
|
+
- [Example](#example)
|
|
24
|
+
- [Axios API](#axios-api)
|
|
25
|
+
- [Request method aliases](#request-method-aliases)
|
|
26
|
+
- [Concurrency (Deprecated)](#concurrency-deprecated)
|
|
27
|
+
- [Creating an instance](#creating-an-instance)
|
|
28
|
+
- [Instance methods](#instance-methods)
|
|
29
|
+
- [Request Config](#request-config)
|
|
30
|
+
- [Response Schema](#response-schema)
|
|
31
|
+
- [Config Defaults](#config-defaults)
|
|
32
|
+
- [Global axios defaults](#global-axios-defaults)
|
|
33
|
+
- [Custom instance defaults](#custom-instance-defaults)
|
|
34
|
+
- [Config order of precedence](#config-order-of-precedence)
|
|
35
|
+
- [Interceptors](#interceptors)
|
|
36
|
+
- [Multiple Interceptors](#multiple-interceptors)
|
|
37
|
+
- [Handling Errors](#handling-errors)
|
|
38
|
+
- [Cancellation](#cancellation)
|
|
39
|
+
- [Using application/x-www-form-urlencoded format](#using-applicationx-www-form-urlencoded-format)
|
|
40
|
+
- [Browser](#browser)
|
|
41
|
+
- [Node.js](#nodejs)
|
|
42
|
+
- [Query string](#query-string)
|
|
43
|
+
- [Form data](#form-data)
|
|
44
|
+
- [Semver](#semver)
|
|
45
|
+
- [Promises](#promises)
|
|
46
|
+
- [TypeScript](#typescript)
|
|
47
|
+
- [Resources](#resources)
|
|
48
|
+
- [Credits](#credits)
|
|
49
|
+
- [License](#license)
|
|
50
|
+
|
|
51
|
+
## Features
|
|
52
|
+
|
|
53
|
+
- Make [XMLHttpRequests](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) from the browser
|
|
54
|
+
- Make [http](http://nodejs.org/api/http.html) requests from node.js
|
|
55
|
+
- Supports the [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) API
|
|
56
|
+
- Intercept request and response
|
|
57
|
+
- Transform request and response data
|
|
58
|
+
- Cancel requests
|
|
59
|
+
- Automatic transforms for JSON data
|
|
60
|
+
- Client side support for protecting against [XSRF](http://en.wikipedia.org/wiki/Cross-site_request_forgery)
|
|
61
|
+
|
|
62
|
+
## Browser Support
|
|
63
|
+
|
|
64
|
+
 |  |  |  |  |  |
|
|
65
|
+
--- | --- | --- | --- | --- | --- |
|
|
66
|
+
Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | 11 ✔ |
|
|
67
|
+
|
|
68
|
+
[](https://saucelabs.com/u/axios)
|
|
69
|
+
|
|
70
|
+
## Installing
|
|
71
|
+
|
|
72
|
+
Using npm:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
$ npm install axios
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Using bower:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
$ bower install axios
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Using yarn:
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
$ yarn add axios
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Using jsDelivr CDN:
|
|
91
|
+
|
|
92
|
+
```html
|
|
93
|
+
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Using unpkg CDN:
|
|
97
|
+
|
|
98
|
+
```html
|
|
99
|
+
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Example
|
|
103
|
+
|
|
104
|
+
### note: CommonJS usage
|
|
105
|
+
In order to gain the TypeScript typings (for intellisense / autocomplete) while using CommonJS imports with `require()` use the following approach:
|
|
106
|
+
|
|
107
|
+
```js
|
|
108
|
+
const axios = require('axios').default;
|
|
109
|
+
|
|
110
|
+
// axios.<method> will now provide autocomplete and parameter typings
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Performing a `GET` request
|
|
114
|
+
|
|
115
|
+
```js
|
|
116
|
+
const axios = require('axios');
|
|
117
|
+
|
|
118
|
+
// Make a request for a user with a given ID
|
|
119
|
+
axios.get('/user?ID=12345')
|
|
120
|
+
.then(function (response) {
|
|
121
|
+
// handle success
|
|
122
|
+
console.log(response);
|
|
123
|
+
})
|
|
124
|
+
.catch(function (error) {
|
|
125
|
+
// handle error
|
|
126
|
+
console.log(error);
|
|
127
|
+
})
|
|
128
|
+
.then(function () {
|
|
129
|
+
// always executed
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
// Optionally the request above could also be done as
|
|
133
|
+
axios.get('/user', {
|
|
134
|
+
params: {
|
|
135
|
+
ID: 12345
|
|
136
|
+
}
|
|
137
|
+
})
|
|
138
|
+
.then(function (response) {
|
|
139
|
+
console.log(response);
|
|
140
|
+
})
|
|
141
|
+
.catch(function (error) {
|
|
142
|
+
console.log(error);
|
|
143
|
+
})
|
|
144
|
+
.then(function () {
|
|
145
|
+
// always executed
|
|
146
|
+
});
|
|
147
|
+
|
|
148
|
+
// Want to use async/await? Add the `async` keyword to your outer function/method.
|
|
149
|
+
async function getUser() {
|
|
150
|
+
try {
|
|
151
|
+
const response = await axios.get('/user?ID=12345');
|
|
152
|
+
console.log(response);
|
|
153
|
+
} catch (error) {
|
|
154
|
+
console.error(error);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
> **NOTE:** `async/await` is part of ECMAScript 2017 and is not supported in Internet
|
|
160
|
+
> Explorer and older browsers, so use with caution.
|
|
161
|
+
|
|
162
|
+
Performing a `POST` request
|
|
163
|
+
|
|
164
|
+
```js
|
|
165
|
+
axios.post('/user', {
|
|
166
|
+
firstName: 'Fred',
|
|
167
|
+
lastName: 'Flintstone'
|
|
168
|
+
})
|
|
169
|
+
.then(function (response) {
|
|
170
|
+
console.log(response);
|
|
171
|
+
})
|
|
172
|
+
.catch(function (error) {
|
|
173
|
+
console.log(error);
|
|
174
|
+
});
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
Performing multiple concurrent requests
|
|
178
|
+
|
|
179
|
+
```js
|
|
180
|
+
function getUserAccount() {
|
|
181
|
+
return axios.get('/user/12345');
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
function getUserPermissions() {
|
|
185
|
+
return axios.get('/user/12345/permissions');
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
Promise.all([getUserAccount(), getUserPermissions()])
|
|
189
|
+
.then(function (results) {
|
|
190
|
+
const acct = results[0];
|
|
191
|
+
const perm = results[1];
|
|
192
|
+
});
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
## axios API
|
|
196
|
+
|
|
197
|
+
Requests can be made by passing the relevant config to `axios`.
|
|
198
|
+
|
|
199
|
+
##### axios(config)
|
|
200
|
+
|
|
201
|
+
```js
|
|
202
|
+
// Send a POST request
|
|
203
|
+
axios({
|
|
204
|
+
method: 'post',
|
|
205
|
+
url: '/user/12345',
|
|
206
|
+
data: {
|
|
207
|
+
firstName: 'Fred',
|
|
208
|
+
lastName: 'Flintstone'
|
|
209
|
+
}
|
|
210
|
+
});
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
```js
|
|
214
|
+
// GET request for remote image in node.js
|
|
215
|
+
axios({
|
|
216
|
+
method: 'get',
|
|
217
|
+
url: 'http://bit.ly/2mTM3nY',
|
|
218
|
+
responseType: 'stream'
|
|
219
|
+
})
|
|
220
|
+
.then(function (response) {
|
|
221
|
+
response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
|
|
222
|
+
});
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
##### axios(url[, config])
|
|
226
|
+
|
|
227
|
+
```js
|
|
228
|
+
// Send a GET request (default method)
|
|
229
|
+
axios('/user/12345');
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
### Request method aliases
|
|
233
|
+
|
|
234
|
+
For convenience aliases have been provided for all supported request methods.
|
|
235
|
+
|
|
236
|
+
##### axios.request(config)
|
|
237
|
+
##### axios.get(url[, config])
|
|
238
|
+
##### axios.delete(url[, config])
|
|
239
|
+
##### axios.head(url[, config])
|
|
240
|
+
##### axios.options(url[, config])
|
|
241
|
+
##### axios.post(url[, data[, config]])
|
|
242
|
+
##### axios.put(url[, data[, config]])
|
|
243
|
+
##### axios.patch(url[, data[, config]])
|
|
244
|
+
|
|
245
|
+
###### NOTE
|
|
246
|
+
When using the alias methods `url`, `method`, and `data` properties don't need to be specified in config.
|
|
247
|
+
|
|
248
|
+
### Concurrency (Deprecated)
|
|
249
|
+
Please use `Promise.all` to replace the below functions.
|
|
250
|
+
|
|
251
|
+
Helper functions for dealing with concurrent requests.
|
|
252
|
+
|
|
253
|
+
axios.all(iterable)
|
|
254
|
+
axios.spread(callback)
|
|
255
|
+
|
|
256
|
+
### Creating an instance
|
|
257
|
+
|
|
258
|
+
You can create a new instance of axios with a custom config.
|
|
259
|
+
|
|
260
|
+
##### axios.create([config])
|
|
261
|
+
|
|
262
|
+
```js
|
|
263
|
+
const instance = axios.create({
|
|
264
|
+
baseURL: 'https://some-domain.com/api/',
|
|
265
|
+
timeout: 1000,
|
|
266
|
+
headers: {'X-Custom-Header': 'foobar'}
|
|
267
|
+
});
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
### Instance methods
|
|
271
|
+
|
|
272
|
+
The available instance methods are listed below. The specified config will be merged with the instance config.
|
|
273
|
+
|
|
274
|
+
##### axios#request(config)
|
|
275
|
+
##### axios#get(url[, config])
|
|
276
|
+
##### axios#delete(url[, config])
|
|
277
|
+
##### axios#head(url[, config])
|
|
278
|
+
##### axios#options(url[, config])
|
|
279
|
+
##### axios#post(url[, data[, config]])
|
|
280
|
+
##### axios#put(url[, data[, config]])
|
|
281
|
+
##### axios#patch(url[, data[, config]])
|
|
282
|
+
##### axios#getUri([config])
|
|
283
|
+
|
|
284
|
+
## Request Config
|
|
285
|
+
|
|
286
|
+
These are the available config options for making requests. Only the `url` is required. Requests will default to `GET` if `method` is not specified.
|
|
287
|
+
|
|
288
|
+
```js
|
|
289
|
+
{
|
|
290
|
+
// `url` is the server URL that will be used for the request
|
|
291
|
+
url: '/user',
|
|
292
|
+
|
|
293
|
+
// `method` is the request method to be used when making the request
|
|
294
|
+
method: 'get', // default
|
|
295
|
+
|
|
296
|
+
// `baseURL` will be prepended to `url` unless `url` is absolute.
|
|
297
|
+
// It can be convenient to set `baseURL` for an instance of axios to pass relative URLs
|
|
298
|
+
// to methods of that instance.
|
|
299
|
+
baseURL: 'https://some-domain.com/api/',
|
|
300
|
+
|
|
301
|
+
// `transformRequest` allows changes to the request data before it is sent to the server
|
|
302
|
+
// This is only applicable for request methods 'PUT', 'POST', 'PATCH' and 'DELETE'
|
|
303
|
+
// The last function in the array must return a string or an instance of Buffer, ArrayBuffer,
|
|
304
|
+
// FormData or Stream
|
|
305
|
+
// You may modify the headers object.
|
|
306
|
+
transformRequest: [function (data, headers) {
|
|
307
|
+
// Do whatever you want to transform the data
|
|
308
|
+
|
|
309
|
+
return data;
|
|
310
|
+
}],
|
|
311
|
+
|
|
312
|
+
// `transformResponse` allows changes to the response data to be made before
|
|
313
|
+
// it is passed to then/catch
|
|
314
|
+
transformResponse: [function (data) {
|
|
315
|
+
// Do whatever you want to transform the data
|
|
316
|
+
|
|
317
|
+
return data;
|
|
318
|
+
}],
|
|
319
|
+
|
|
320
|
+
// `headers` are custom headers to be sent
|
|
321
|
+
headers: {'X-Requested-With': 'XMLHttpRequest'},
|
|
322
|
+
|
|
323
|
+
// `params` are the URL parameters to be sent with the request
|
|
324
|
+
// Must be a plain object or a URLSearchParams object
|
|
325
|
+
params: {
|
|
326
|
+
ID: 12345
|
|
327
|
+
},
|
|
328
|
+
|
|
329
|
+
// `paramsSerializer` is an optional function in charge of serializing `params`
|
|
330
|
+
// (e.g. https://www.npmjs.com/package/qs, http://api.jquery.com/jquery.param/)
|
|
331
|
+
paramsSerializer: function (params) {
|
|
332
|
+
return Qs.stringify(params, {arrayFormat: 'brackets'})
|
|
333
|
+
},
|
|
334
|
+
|
|
335
|
+
// `data` is the data to be sent as the request body
|
|
336
|
+
// Only applicable for request methods 'PUT', 'POST', 'DELETE , and 'PATCH'
|
|
337
|
+
// When no `transformRequest` is set, must be of one of the following types:
|
|
338
|
+
// - string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams
|
|
339
|
+
// - Browser only: FormData, File, Blob
|
|
340
|
+
// - Node only: Stream, Buffer
|
|
341
|
+
data: {
|
|
342
|
+
firstName: 'Fred'
|
|
343
|
+
},
|
|
344
|
+
|
|
345
|
+
// syntax alternative to send data into the body
|
|
346
|
+
// method post
|
|
347
|
+
// only the value is sent, not the key
|
|
348
|
+
data: 'Country=Brasil&City=Belo Horizonte',
|
|
349
|
+
|
|
350
|
+
// `timeout` specifies the number of milliseconds before the request times out.
|
|
351
|
+
// If the request takes longer than `timeout`, the request will be aborted.
|
|
352
|
+
timeout: 1000, // default is `0` (no timeout)
|
|
353
|
+
|
|
354
|
+
// `withCredentials` indicates whether or not cross-site Access-Control requests
|
|
355
|
+
// should be made using credentials
|
|
356
|
+
withCredentials: false, // default
|
|
357
|
+
|
|
358
|
+
// `adapter` allows custom handling of requests which makes testing easier.
|
|
359
|
+
// Return a promise and supply a valid response (see lib/adapters/README.md).
|
|
360
|
+
adapter: function (config) {
|
|
361
|
+
/* ... */
|
|
362
|
+
},
|
|
363
|
+
|
|
364
|
+
// `auth` indicates that HTTP Basic auth should be used, and supplies credentials.
|
|
365
|
+
// This will set an `Authorization` header, overwriting any existing
|
|
366
|
+
// `Authorization` custom headers you have set using `headers`.
|
|
367
|
+
// Please note that only HTTP Basic auth is configurable through this parameter.
|
|
368
|
+
// For Bearer tokens and such, use `Authorization` custom headers instead.
|
|
369
|
+
auth: {
|
|
370
|
+
username: 'janedoe',
|
|
371
|
+
password: 's00pers3cret'
|
|
372
|
+
},
|
|
373
|
+
|
|
374
|
+
// `responseType` indicates the type of data that the server will respond with
|
|
375
|
+
// options are: 'arraybuffer', 'document', 'json', 'text', 'stream'
|
|
376
|
+
// browser only: 'blob'
|
|
377
|
+
responseType: 'json', // default
|
|
378
|
+
|
|
379
|
+
// `responseEncoding` indicates encoding to use for decoding responses (Node.js only)
|
|
380
|
+
// Note: Ignored for `responseType` of 'stream' or client-side requests
|
|
381
|
+
responseEncoding: 'utf8', // default
|
|
382
|
+
|
|
383
|
+
// `xsrfCookieName` is the name of the cookie to use as a value for xsrf token
|
|
384
|
+
xsrfCookieName: 'XSRF-TOKEN', // default
|
|
385
|
+
|
|
386
|
+
// `xsrfHeaderName` is the name of the http header that carries the xsrf token value
|
|
387
|
+
xsrfHeaderName: 'X-XSRF-TOKEN', // default
|
|
388
|
+
|
|
389
|
+
// `onUploadProgress` allows handling of progress events for uploads
|
|
390
|
+
// browser only
|
|
391
|
+
onUploadProgress: function (progressEvent) {
|
|
392
|
+
// Do whatever you want with the native progress event
|
|
393
|
+
},
|
|
394
|
+
|
|
395
|
+
// `onDownloadProgress` allows handling of progress events for downloads
|
|
396
|
+
// browser only
|
|
397
|
+
onDownloadProgress: function (progressEvent) {
|
|
398
|
+
// Do whatever you want with the native progress event
|
|
399
|
+
},
|
|
400
|
+
|
|
401
|
+
// `maxContentLength` defines the max size of the http response content in bytes allowed in node.js
|
|
402
|
+
maxContentLength: 2000,
|
|
403
|
+
|
|
404
|
+
// `maxBodyLength` (Node only option) defines the max size of the http request content in bytes allowed
|
|
405
|
+
maxBodyLength: 2000,
|
|
406
|
+
|
|
407
|
+
// `validateStatus` defines whether to resolve or reject the promise for a given
|
|
408
|
+
// HTTP response status code. If `validateStatus` returns `true` (or is set to `null`
|
|
409
|
+
// or `undefined`), the promise will be resolved; otherwise, the promise will be
|
|
410
|
+
// rejected.
|
|
411
|
+
validateStatus: function (status) {
|
|
412
|
+
return status >= 200 && status < 300; // default
|
|
413
|
+
},
|
|
414
|
+
|
|
415
|
+
// `maxRedirects` defines the maximum number of redirects to follow in node.js.
|
|
416
|
+
// If set to 0, no redirects will be followed.
|
|
417
|
+
maxRedirects: 5, // default
|
|
418
|
+
|
|
419
|
+
// `socketPath` defines a UNIX Socket to be used in node.js.
|
|
420
|
+
// e.g. '/var/run/docker.sock' to send requests to the docker daemon.
|
|
421
|
+
// Only either `socketPath` or `proxy` can be specified.
|
|
422
|
+
// If both are specified, `socketPath` is used.
|
|
423
|
+
socketPath: null, // default
|
|
424
|
+
|
|
425
|
+
// `httpAgent` and `httpsAgent` define a custom agent to be used when performing http
|
|
426
|
+
// and https requests, respectively, in node.js. This allows options to be added like
|
|
427
|
+
// `keepAlive` that are not enabled by default.
|
|
428
|
+
httpAgent: new http.Agent({ keepAlive: true }),
|
|
429
|
+
httpsAgent: new https.Agent({ keepAlive: true }),
|
|
430
|
+
|
|
431
|
+
// `proxy` defines the hostname, port, and protocol of the proxy server.
|
|
432
|
+
// You can also define your proxy using the conventional `http_proxy` and
|
|
433
|
+
// `https_proxy` environment variables. If you are using environment variables
|
|
434
|
+
// for your proxy configuration, you can also define a `no_proxy` environment
|
|
435
|
+
// variable as a comma-separated list of domains that should not be proxied.
|
|
436
|
+
// Use `false` to disable proxies, ignoring environment variables.
|
|
437
|
+
// `auth` indicates that HTTP Basic auth should be used to connect to the proxy, and
|
|
438
|
+
// supplies credentials.
|
|
439
|
+
// This will set an `Proxy-Authorization` header, overwriting any existing
|
|
440
|
+
// `Proxy-Authorization` custom headers you have set using `headers`.
|
|
441
|
+
// If the proxy server uses HTTPS, then you must set the protocol to `https`.
|
|
442
|
+
proxy: {
|
|
443
|
+
protocol: 'https',
|
|
444
|
+
host: '127.0.0.1',
|
|
445
|
+
port: 9000,
|
|
446
|
+
auth: {
|
|
447
|
+
username: 'mikeymike',
|
|
448
|
+
password: 'rapunz3l'
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
|
|
452
|
+
// `cancelToken` specifies a cancel token that can be used to cancel the request
|
|
453
|
+
// (see Cancellation section below for details)
|
|
454
|
+
cancelToken: new CancelToken(function (cancel) {
|
|
455
|
+
}),
|
|
456
|
+
|
|
457
|
+
// an alternative way to cancel Axios requests using AbortController
|
|
458
|
+
signal: new AbortController().signal,
|
|
459
|
+
|
|
460
|
+
// `decompress` indicates whether or not the response body should be decompressed
|
|
461
|
+
// automatically. If set to `true` will also remove the 'content-encoding' header
|
|
462
|
+
// from the responses objects of all decompressed responses
|
|
463
|
+
// - Node only (XHR cannot turn off decompression)
|
|
464
|
+
decompress: true // default
|
|
465
|
+
|
|
466
|
+
// `insecureHTTPParser` boolean.
|
|
467
|
+
// Indicates where to use an insecure HTTP parser that accepts invalid HTTP headers.
|
|
468
|
+
// This may allow interoperability with non-conformant HTTP implementations.
|
|
469
|
+
// Using the insecure parser should be avoided.
|
|
470
|
+
// see options https://nodejs.org/dist/latest-v12.x/docs/api/http.html#http_http_request_url_options_callback
|
|
471
|
+
// see also https://nodejs.org/en/blog/vulnerability/february-2020-security-releases/#strict-http-header-parsing-none
|
|
472
|
+
insecureHTTPParser: undefined // default
|
|
473
|
+
|
|
474
|
+
// transitional options for backward compatibility that may be removed in the newer versions
|
|
475
|
+
transitional: {
|
|
476
|
+
// silent JSON parsing mode
|
|
477
|
+
// `true` - ignore JSON parsing errors and set response.data to null if parsing failed (old behaviour)
|
|
478
|
+
// `false` - throw SyntaxError if JSON parsing failed (Note: responseType must be set to 'json')
|
|
479
|
+
silentJSONParsing: true, // default value for the current Axios version
|
|
480
|
+
|
|
481
|
+
// try to parse the response string as JSON even if `responseType` is not 'json'
|
|
482
|
+
forcedJSONParsing: true,
|
|
483
|
+
|
|
484
|
+
// throw ETIMEDOUT error instead of generic ECONNABORTED on request timeouts
|
|
485
|
+
clarifyTimeoutError: false,
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
```
|
|
489
|
+
|
|
490
|
+
## Response Schema
|
|
491
|
+
|
|
492
|
+
The response for a request contains the following information.
|
|
493
|
+
|
|
494
|
+
```js
|
|
495
|
+
{
|
|
496
|
+
// `data` is the response that was provided by the server
|
|
497
|
+
data: {},
|
|
498
|
+
|
|
499
|
+
// `status` is the HTTP status code from the server response
|
|
500
|
+
status: 200,
|
|
501
|
+
|
|
502
|
+
// `statusText` is the HTTP status message from the server response
|
|
503
|
+
statusText: 'OK',
|
|
504
|
+
|
|
505
|
+
// `headers` the HTTP headers that the server responded with
|
|
506
|
+
// All header names are lower cased and can be accessed using the bracket notation.
|
|
507
|
+
// Example: `response.headers['content-type']`
|
|
508
|
+
headers: {},
|
|
509
|
+
|
|
510
|
+
// `config` is the config that was provided to `axios` for the request
|
|
511
|
+
config: {},
|
|
512
|
+
|
|
513
|
+
// `request` is the request that generated this response
|
|
514
|
+
// It is the last ClientRequest instance in node.js (in redirects)
|
|
515
|
+
// and an XMLHttpRequest instance in the browser
|
|
516
|
+
request: {}
|
|
517
|
+
}
|
|
518
|
+
```
|
|
519
|
+
|
|
520
|
+
When using `then`, you will receive the response as follows:
|
|
521
|
+
|
|
522
|
+
```js
|
|
523
|
+
axios.get('/user/12345')
|
|
524
|
+
.then(function (response) {
|
|
525
|
+
console.log(response.data);
|
|
526
|
+
console.log(response.status);
|
|
527
|
+
console.log(response.statusText);
|
|
528
|
+
console.log(response.headers);
|
|
529
|
+
console.log(response.config);
|
|
530
|
+
});
|
|
531
|
+
```
|
|
532
|
+
|
|
533
|
+
When using `catch`, or passing a [rejection callback](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/then) as second parameter of `then`, the response will be available through the `error` object as explained in the [Handling Errors](#handling-errors) section.
|
|
534
|
+
|
|
535
|
+
## Config Defaults
|
|
536
|
+
|
|
537
|
+
You can specify config defaults that will be applied to every request.
|
|
538
|
+
|
|
539
|
+
### Global axios defaults
|
|
540
|
+
|
|
541
|
+
```js
|
|
542
|
+
axios.defaults.baseURL = 'https://api.example.com';
|
|
543
|
+
|
|
544
|
+
// Important: If axios is used with multiple domains, the AUTH_TOKEN will be sent to all of them.
|
|
545
|
+
// See below for an example using Custom instance defaults instead.
|
|
546
|
+
axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;
|
|
547
|
+
|
|
548
|
+
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
|
|
549
|
+
```
|
|
550
|
+
|
|
551
|
+
### Custom instance defaults
|
|
552
|
+
|
|
553
|
+
```js
|
|
554
|
+
// Set config defaults when creating the instance
|
|
555
|
+
const instance = axios.create({
|
|
556
|
+
baseURL: 'https://api.example.com'
|
|
557
|
+
});
|
|
558
|
+
|
|
559
|
+
// Alter defaults after instance has been created
|
|
560
|
+
instance.defaults.headers.common['Authorization'] = AUTH_TOKEN;
|
|
561
|
+
```
|
|
562
|
+
|
|
563
|
+
### Config order of precedence
|
|
564
|
+
|
|
565
|
+
Config will be merged with an order of precedence. The order is library defaults found in [lib/defaults.js](https://github.com/axios/axios/blob/master/lib/defaults.js#L28), then `defaults` property of the instance, and finally `config` argument for the request. The latter will take precedence over the former. Here's an example.
|
|
566
|
+
|
|
567
|
+
```js
|
|
568
|
+
// Create an instance using the config defaults provided by the library
|
|
569
|
+
// At this point the timeout config value is `0` as is the default for the library
|
|
570
|
+
const instance = axios.create();
|
|
571
|
+
|
|
572
|
+
// Override timeout default for the library
|
|
573
|
+
// Now all requests using this instance will wait 2.5 seconds before timing out
|
|
574
|
+
instance.defaults.timeout = 2500;
|
|
575
|
+
|
|
576
|
+
// Override timeout for this request as it's known to take a long time
|
|
577
|
+
instance.get('/longRequest', {
|
|
578
|
+
timeout: 5000
|
|
579
|
+
});
|
|
580
|
+
```
|
|
581
|
+
|
|
582
|
+
## Interceptors
|
|
583
|
+
|
|
584
|
+
You can intercept requests or responses before they are handled by `then` or `catch`.
|
|
585
|
+
|
|
586
|
+
```js
|
|
587
|
+
// Add a request interceptor
|
|
588
|
+
axios.interceptors.request.use(function (config) {
|
|
589
|
+
// Do something before request is sent
|
|
590
|
+
return config;
|
|
591
|
+
}, function (error) {
|
|
592
|
+
// Do something with request error
|
|
593
|
+
return Promise.reject(error);
|
|
594
|
+
});
|
|
595
|
+
|
|
596
|
+
// Add a response interceptor
|
|
597
|
+
axios.interceptors.response.use(function (response) {
|
|
598
|
+
// Any status code that lie within the range of 2xx cause this function to trigger
|
|
599
|
+
// Do something with response data
|
|
600
|
+
return response;
|
|
601
|
+
}, function (error) {
|
|
602
|
+
// Any status codes that falls outside the range of 2xx cause this function to trigger
|
|
603
|
+
// Do something with response error
|
|
604
|
+
return Promise.reject(error);
|
|
605
|
+
});
|
|
606
|
+
```
|
|
607
|
+
|
|
608
|
+
If you need to remove an interceptor later you can.
|
|
609
|
+
|
|
610
|
+
```js
|
|
611
|
+
const myInterceptor = axios.interceptors.request.use(function () {/*...*/});
|
|
612
|
+
axios.interceptors.request.eject(myInterceptor);
|
|
613
|
+
```
|
|
614
|
+
|
|
615
|
+
You can add interceptors to a custom instance of axios.
|
|
616
|
+
|
|
617
|
+
```js
|
|
618
|
+
const instance = axios.create();
|
|
619
|
+
instance.interceptors.request.use(function () {/*...*/});
|
|
620
|
+
```
|
|
621
|
+
|
|
622
|
+
When you add request interceptors, they are presumed to be asynchronous by default. This can cause a delay
|
|
623
|
+
in the execution of your axios request when the main thread is blocked (a promise is created under the hood for
|
|
624
|
+
the interceptor and your request gets put on the bottom of the call stack). If your request interceptors are synchronous you can add a flag
|
|
625
|
+
to the options object that will tell axios to run the code synchronously and avoid any delays in request execution.
|
|
626
|
+
|
|
627
|
+
```js
|
|
628
|
+
axios.interceptors.request.use(function (config) {
|
|
629
|
+
config.headers.test = 'I am only a header!';
|
|
630
|
+
return config;
|
|
631
|
+
}, null, { synchronous: true });
|
|
632
|
+
```
|
|
633
|
+
|
|
634
|
+
If you want to execute a particular interceptor based on a runtime check,
|
|
635
|
+
you can add a `runWhen` function to the options object. The interceptor will not be executed **if and only if** the return
|
|
636
|
+
of `runWhen` is `false`. The function will be called with the config
|
|
637
|
+
object (don't forget that you can bind your own arguments to it as well.) This can be handy when you have an
|
|
638
|
+
asynchronous request interceptor that only needs to run at certain times.
|
|
639
|
+
|
|
640
|
+
```js
|
|
641
|
+
function onGetCall(config) {
|
|
642
|
+
return config.method === 'get';
|
|
643
|
+
}
|
|
644
|
+
axios.interceptors.request.use(function (config) {
|
|
645
|
+
config.headers.test = 'special get headers';
|
|
646
|
+
return config;
|
|
647
|
+
}, null, { runWhen: onGetCall });
|
|
648
|
+
```
|
|
649
|
+
|
|
650
|
+
### Multiple Interceptors
|
|
651
|
+
|
|
652
|
+
Given you add multiple response interceptors
|
|
653
|
+
and when the response was fulfilled
|
|
654
|
+
- then each interceptor is executed
|
|
655
|
+
- then they are executed in the order they were added
|
|
656
|
+
- then only the last interceptor's result is returned
|
|
657
|
+
- then every interceptor receives the result of it's predecessor
|
|
658
|
+
- and when the fulfillment-interceptor throws
|
|
659
|
+
- then the following fulfillment-interceptor is not called
|
|
660
|
+
- then the following rejection-interceptor is called
|
|
661
|
+
- once caught, another following fulfill-interceptor is called again (just like in a promise chain).
|
|
662
|
+
|
|
663
|
+
Read [the interceptor tests](./test/specs/interceptors.spec.js) for seeing all this in code.
|
|
664
|
+
|
|
665
|
+
## Handling Errors
|
|
666
|
+
|
|
667
|
+
```js
|
|
668
|
+
axios.get('/user/12345')
|
|
669
|
+
.catch(function (error) {
|
|
670
|
+
if (error.response) {
|
|
671
|
+
// The request was made and the server responded with a status code
|
|
672
|
+
// that falls out of the range of 2xx
|
|
673
|
+
console.log(error.response.data);
|
|
674
|
+
console.log(error.response.status);
|
|
675
|
+
console.log(error.response.headers);
|
|
676
|
+
} else if (error.request) {
|
|
677
|
+
// The request was made but no response was received
|
|
678
|
+
// `error.request` is an instance of XMLHttpRequest in the browser and an instance of
|
|
679
|
+
// http.ClientRequest in node.js
|
|
680
|
+
console.log(error.request);
|
|
681
|
+
} else {
|
|
682
|
+
// Something happened in setting up the request that triggered an Error
|
|
683
|
+
console.log('Error', error.message);
|
|
684
|
+
}
|
|
685
|
+
console.log(error.config);
|
|
686
|
+
});
|
|
687
|
+
```
|
|
688
|
+
|
|
689
|
+
Using the `validateStatus` config option, you can define HTTP code(s) that should throw an error.
|
|
690
|
+
|
|
691
|
+
```js
|
|
692
|
+
axios.get('/user/12345', {
|
|
693
|
+
validateStatus: function (status) {
|
|
694
|
+
return status < 500; // Resolve only if the status code is less than 500
|
|
695
|
+
}
|
|
696
|
+
})
|
|
697
|
+
```
|
|
698
|
+
|
|
699
|
+
Using `toJSON` you get an object with more information about the HTTP error.
|
|
700
|
+
|
|
701
|
+
```js
|
|
702
|
+
axios.get('/user/12345')
|
|
703
|
+
.catch(function (error) {
|
|
704
|
+
console.log(error.toJSON());
|
|
705
|
+
});
|
|
706
|
+
```
|
|
707
|
+
|
|
708
|
+
## Cancellation
|
|
709
|
+
|
|
710
|
+
You can cancel a request using a *cancel token*.
|
|
711
|
+
|
|
712
|
+
> The axios cancel token API is based on the withdrawn [cancelable promises proposal](https://github.com/tc39/proposal-cancelable-promises).
|
|
713
|
+
|
|
714
|
+
You can create a cancel token using the `CancelToken.source` factory as shown below:
|
|
715
|
+
|
|
716
|
+
```js
|
|
717
|
+
const CancelToken = axios.CancelToken;
|
|
718
|
+
const source = CancelToken.source();
|
|
719
|
+
|
|
720
|
+
axios.get('/user/12345', {
|
|
721
|
+
cancelToken: source.token
|
|
722
|
+
}).catch(function (thrown) {
|
|
723
|
+
if (axios.isCancel(thrown)) {
|
|
724
|
+
console.log('Request canceled', thrown.message);
|
|
725
|
+
} else {
|
|
726
|
+
// handle error
|
|
727
|
+
}
|
|
728
|
+
});
|
|
729
|
+
|
|
730
|
+
axios.post('/user/12345', {
|
|
731
|
+
name: 'new name'
|
|
732
|
+
}, {
|
|
733
|
+
cancelToken: source.token
|
|
734
|
+
})
|
|
735
|
+
|
|
736
|
+
// cancel the request (the message parameter is optional)
|
|
737
|
+
source.cancel('Operation canceled by the user.');
|
|
738
|
+
```
|
|
739
|
+
|
|
740
|
+
You can also create a cancel token by passing an executor function to the `CancelToken` constructor:
|
|
741
|
+
|
|
742
|
+
```js
|
|
743
|
+
const CancelToken = axios.CancelToken;
|
|
744
|
+
let cancel;
|
|
745
|
+
|
|
746
|
+
axios.get('/user/12345', {
|
|
747
|
+
cancelToken: new CancelToken(function executor(c) {
|
|
748
|
+
// An executor function receives a cancel function as a parameter
|
|
749
|
+
cancel = c;
|
|
750
|
+
})
|
|
751
|
+
});
|
|
752
|
+
|
|
753
|
+
// cancel the request
|
|
754
|
+
cancel();
|
|
755
|
+
```
|
|
756
|
+
|
|
757
|
+
Axios supports AbortController to abort requests in [`fetch API`](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API#aborting_a_fetch) way:
|
|
758
|
+
```js
|
|
759
|
+
const controller = new AbortController();
|
|
760
|
+
|
|
761
|
+
axios.get('/foo/bar', {
|
|
762
|
+
signal: controller.signal
|
|
763
|
+
}).then(function(response) {
|
|
764
|
+
//...
|
|
765
|
+
});
|
|
766
|
+
// cancel the request
|
|
767
|
+
controller.abort()
|
|
768
|
+
```
|
|
769
|
+
|
|
770
|
+
> Note: you can cancel several requests with the same cancel token/abort controller.
|
|
771
|
+
> If a cancellation token is already cancelled at the moment of starting an Axios request, then the request is cancelled immediately, without any attempts to make real request.
|
|
772
|
+
|
|
773
|
+
## Using application/x-www-form-urlencoded format
|
|
774
|
+
|
|
775
|
+
By default, axios serializes JavaScript objects to `JSON`. To send data in the `application/x-www-form-urlencoded` format instead, you can use one of the following options.
|
|
776
|
+
|
|
777
|
+
### Browser
|
|
778
|
+
|
|
779
|
+
In a browser, you can use the [`URLSearchParams`](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams) API as follows:
|
|
780
|
+
|
|
781
|
+
```js
|
|
782
|
+
const params = new URLSearchParams();
|
|
783
|
+
params.append('param1', 'value1');
|
|
784
|
+
params.append('param2', 'value2');
|
|
785
|
+
axios.post('/foo', params);
|
|
786
|
+
```
|
|
787
|
+
|
|
788
|
+
> Note that `URLSearchParams` is not supported by all browsers (see [caniuse.com](http://www.caniuse.com/#feat=urlsearchparams)), but there is a [polyfill](https://github.com/WebReflection/url-search-params) available (make sure to polyfill the global environment).
|
|
789
|
+
|
|
790
|
+
Alternatively, you can encode data using the [`qs`](https://github.com/ljharb/qs) library:
|
|
791
|
+
|
|
792
|
+
```js
|
|
793
|
+
const qs = require('qs');
|
|
794
|
+
axios.post('/foo', qs.stringify({ 'bar': 123 }));
|
|
795
|
+
```
|
|
796
|
+
|
|
797
|
+
Or in another way (ES6),
|
|
798
|
+
|
|
799
|
+
```js
|
|
800
|
+
import qs from 'qs';
|
|
801
|
+
const data = { 'bar': 123 };
|
|
802
|
+
const options = {
|
|
803
|
+
method: 'POST',
|
|
804
|
+
headers: { 'content-type': 'application/x-www-form-urlencoded' },
|
|
805
|
+
data: qs.stringify(data),
|
|
806
|
+
url,
|
|
807
|
+
};
|
|
808
|
+
axios(options);
|
|
809
|
+
```
|
|
810
|
+
|
|
811
|
+
### Node.js
|
|
812
|
+
|
|
813
|
+
#### Query string
|
|
814
|
+
|
|
815
|
+
In node.js, you can use the [`querystring`](https://nodejs.org/api/querystring.html) module as follows:
|
|
816
|
+
|
|
817
|
+
```js
|
|
818
|
+
const querystring = require('querystring');
|
|
819
|
+
axios.post('http://something.com/', querystring.stringify({ foo: 'bar' }));
|
|
820
|
+
```
|
|
821
|
+
|
|
822
|
+
or ['URLSearchParams'](https://nodejs.org/api/url.html#url_class_urlsearchparams) from ['url module'](https://nodejs.org/api/url.html) as follows:
|
|
823
|
+
|
|
824
|
+
```js
|
|
825
|
+
const url = require('url');
|
|
826
|
+
const params = new url.URLSearchParams({ foo: 'bar' });
|
|
827
|
+
axios.post('http://something.com/', params.toString());
|
|
828
|
+
```
|
|
829
|
+
|
|
830
|
+
You can also use the [`qs`](https://github.com/ljharb/qs) library.
|
|
831
|
+
|
|
832
|
+
###### NOTE
|
|
833
|
+
The `qs` library is preferable if you need to stringify nested objects, as the `querystring` method has known issues with that use case (https://github.com/nodejs/node-v0.x-archive/issues/1665).
|
|
834
|
+
|
|
835
|
+
#### Form data
|
|
836
|
+
|
|
837
|
+
In node.js, you can use the [`form-data`](https://github.com/form-data/form-data) library as follows:
|
|
838
|
+
|
|
839
|
+
```js
|
|
840
|
+
const FormData = require('form-data');
|
|
841
|
+
|
|
842
|
+
const form = new FormData();
|
|
843
|
+
form.append('my_field', 'my value');
|
|
844
|
+
form.append('my_buffer', new Buffer(10));
|
|
845
|
+
form.append('my_file', fs.createReadStream('/foo/bar.jpg'));
|
|
846
|
+
|
|
847
|
+
axios.post('https://example.com', form, { headers: form.getHeaders() })
|
|
848
|
+
```
|
|
849
|
+
|
|
850
|
+
Alternatively, use an interceptor:
|
|
851
|
+
|
|
852
|
+
```js
|
|
853
|
+
axios.interceptors.request.use(config => {
|
|
854
|
+
if (config.data instanceof FormData) {
|
|
855
|
+
Object.assign(config.headers, config.data.getHeaders());
|
|
856
|
+
}
|
|
857
|
+
return config;
|
|
858
|
+
});
|
|
859
|
+
```
|
|
860
|
+
|
|
861
|
+
## Semver
|
|
862
|
+
|
|
863
|
+
Until axios reaches a `1.0` release, breaking changes will be released with a new minor version. For example `0.5.1`, and `0.5.4` will have the same API, but `0.6.0` will have breaking changes.
|
|
864
|
+
|
|
865
|
+
## Promises
|
|
866
|
+
|
|
867
|
+
axios depends on a native ES6 Promise implementation to be [supported](http://caniuse.com/promises).
|
|
868
|
+
If your environment doesn't support ES6 Promises, you can [polyfill](https://github.com/jakearchibald/es6-promise).
|
|
869
|
+
|
|
870
|
+
## TypeScript
|
|
871
|
+
|
|
872
|
+
axios includes [TypeScript](http://typescriptlang.org) definitions and a type guard for axios errors.
|
|
873
|
+
|
|
874
|
+
```typescript
|
|
875
|
+
let user: User = null;
|
|
876
|
+
try {
|
|
877
|
+
const { data } = await axios.get('/user?ID=12345');
|
|
878
|
+
user = data.userDetails;
|
|
879
|
+
} catch (error) {
|
|
880
|
+
if (axios.isAxiosError(error)) {
|
|
881
|
+
handleAxiosError(error);
|
|
882
|
+
} else {
|
|
883
|
+
handleUnexpectedError(error);
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
```
|
|
887
|
+
|
|
888
|
+
## Online one-click setup
|
|
889
|
+
|
|
890
|
+
You can use Gitpod an online IDE(which is free for Open Source) for contributing or running the examples online.
|
|
891
|
+
|
|
892
|
+
[](https://gitpod.io/#https://github.com/axios/axios/blob/master/examples/server.js)
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
## Resources
|
|
896
|
+
|
|
897
|
+
* [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
|
|
898
|
+
* [Upgrade Guide](https://github.com/axios/axios/blob/master/UPGRADE_GUIDE.md)
|
|
899
|
+
* [Ecosystem](https://github.com/axios/axios/blob/master/ECOSYSTEM.md)
|
|
900
|
+
* [Contributing Guide](https://github.com/axios/axios/blob/master/CONTRIBUTING.md)
|
|
901
|
+
* [Code of Conduct](https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md)
|
|
902
|
+
|
|
903
|
+
## Credits
|
|
904
|
+
|
|
905
|
+
axios is heavily inspired by the [$http service](https://docs.angularjs.org/api/ng/service/$http) provided in [AngularJS](https://angularjs.org/). Ultimately axios is an effort to provide a standalone `$http`-like service for use outside of AngularJS.
|
|
906
|
+
|
|
907
|
+
## License
|
|
908
|
+
|
|
909
|
+
[MIT](LICENSE)
|