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,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = rng;
|
|
7
|
+
// Unique ID creation requires a high quality random # generator. In the browser we therefore
|
|
8
|
+
// require the crypto API and do not support built-in fallback to lower quality random number
|
|
9
|
+
// generators (like Math.random()).
|
|
10
|
+
let getRandomValues;
|
|
11
|
+
const rnds8 = new Uint8Array(16);
|
|
12
|
+
|
|
13
|
+
function rng() {
|
|
14
|
+
// lazy load so that environments that need to polyfill have a chance to do so
|
|
15
|
+
if (!getRandomValues) {
|
|
16
|
+
// getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. Also,
|
|
17
|
+
// find the complete implementation of crypto (msCrypto) on IE11.
|
|
18
|
+
getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto);
|
|
19
|
+
|
|
20
|
+
if (!getRandomValues) {
|
|
21
|
+
throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return getRandomValues(rnds8);
|
|
26
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = rng;
|
|
7
|
+
|
|
8
|
+
var _crypto = _interopRequireDefault(require("crypto"));
|
|
9
|
+
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
|
|
12
|
+
const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate
|
|
13
|
+
|
|
14
|
+
let poolPtr = rnds8Pool.length;
|
|
15
|
+
|
|
16
|
+
function rng() {
|
|
17
|
+
if (poolPtr > rnds8Pool.length - 16) {
|
|
18
|
+
_crypto.default.randomFillSync(rnds8Pool);
|
|
19
|
+
|
|
20
|
+
poolPtr = 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
return rnds8Pool.slice(poolPtr, poolPtr += 16);
|
|
24
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
// Adapted from Chris Veness' SHA1 code at
|
|
9
|
+
// http://www.movable-type.co.uk/scripts/sha1.html
|
|
10
|
+
function f(s, x, y, z) {
|
|
11
|
+
switch (s) {
|
|
12
|
+
case 0:
|
|
13
|
+
return x & y ^ ~x & z;
|
|
14
|
+
|
|
15
|
+
case 1:
|
|
16
|
+
return x ^ y ^ z;
|
|
17
|
+
|
|
18
|
+
case 2:
|
|
19
|
+
return x & y ^ x & z ^ y & z;
|
|
20
|
+
|
|
21
|
+
case 3:
|
|
22
|
+
return x ^ y ^ z;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function ROTL(x, n) {
|
|
27
|
+
return x << n | x >>> 32 - n;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function sha1(bytes) {
|
|
31
|
+
const K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];
|
|
32
|
+
const H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0];
|
|
33
|
+
|
|
34
|
+
if (typeof bytes === 'string') {
|
|
35
|
+
const msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
|
|
36
|
+
|
|
37
|
+
bytes = [];
|
|
38
|
+
|
|
39
|
+
for (let i = 0; i < msg.length; ++i) {
|
|
40
|
+
bytes.push(msg.charCodeAt(i));
|
|
41
|
+
}
|
|
42
|
+
} else if (!Array.isArray(bytes)) {
|
|
43
|
+
// Convert Array-like to Array
|
|
44
|
+
bytes = Array.prototype.slice.call(bytes);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
bytes.push(0x80);
|
|
48
|
+
const l = bytes.length / 4 + 2;
|
|
49
|
+
const N = Math.ceil(l / 16);
|
|
50
|
+
const M = new Array(N);
|
|
51
|
+
|
|
52
|
+
for (let i = 0; i < N; ++i) {
|
|
53
|
+
const arr = new Uint32Array(16);
|
|
54
|
+
|
|
55
|
+
for (let j = 0; j < 16; ++j) {
|
|
56
|
+
arr[j] = bytes[i * 64 + j * 4] << 24 | bytes[i * 64 + j * 4 + 1] << 16 | bytes[i * 64 + j * 4 + 2] << 8 | bytes[i * 64 + j * 4 + 3];
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
M[i] = arr;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32);
|
|
63
|
+
M[N - 1][14] = Math.floor(M[N - 1][14]);
|
|
64
|
+
M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff;
|
|
65
|
+
|
|
66
|
+
for (let i = 0; i < N; ++i) {
|
|
67
|
+
const W = new Uint32Array(80);
|
|
68
|
+
|
|
69
|
+
for (let t = 0; t < 16; ++t) {
|
|
70
|
+
W[t] = M[i][t];
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
for (let t = 16; t < 80; ++t) {
|
|
74
|
+
W[t] = ROTL(W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16], 1);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
let a = H[0];
|
|
78
|
+
let b = H[1];
|
|
79
|
+
let c = H[2];
|
|
80
|
+
let d = H[3];
|
|
81
|
+
let e = H[4];
|
|
82
|
+
|
|
83
|
+
for (let t = 0; t < 80; ++t) {
|
|
84
|
+
const s = Math.floor(t / 20);
|
|
85
|
+
const T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[t] >>> 0;
|
|
86
|
+
e = d;
|
|
87
|
+
d = c;
|
|
88
|
+
c = ROTL(b, 30) >>> 0;
|
|
89
|
+
b = a;
|
|
90
|
+
a = T;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
H[0] = H[0] + a >>> 0;
|
|
94
|
+
H[1] = H[1] + b >>> 0;
|
|
95
|
+
H[2] = H[2] + c >>> 0;
|
|
96
|
+
H[3] = H[3] + d >>> 0;
|
|
97
|
+
H[4] = H[4] + e >>> 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff];
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
var _default = sha1;
|
|
104
|
+
exports.default = _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _crypto = _interopRequireDefault(require("crypto"));
|
|
9
|
+
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
|
|
12
|
+
function sha1(bytes) {
|
|
13
|
+
if (Array.isArray(bytes)) {
|
|
14
|
+
bytes = Buffer.from(bytes);
|
|
15
|
+
} else if (typeof bytes === 'string') {
|
|
16
|
+
bytes = Buffer.from(bytes, 'utf8');
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
return _crypto.default.createHash('sha1').update(bytes).digest();
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
var _default = sha1;
|
|
23
|
+
exports.default = _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _validate = _interopRequireDefault(require("./validate.js"));
|
|
9
|
+
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Convert array of 16 byte values to UUID string format of the form:
|
|
14
|
+
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
15
|
+
*/
|
|
16
|
+
const byteToHex = [];
|
|
17
|
+
|
|
18
|
+
for (let i = 0; i < 256; ++i) {
|
|
19
|
+
byteToHex.push((i + 0x100).toString(16).substr(1));
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function stringify(arr, offset = 0) {
|
|
23
|
+
// Note: Be careful editing this code! It's been tuned for performance
|
|
24
|
+
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
|
|
25
|
+
const uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one
|
|
26
|
+
// of the following:
|
|
27
|
+
// - One or more input array values don't map to a hex octet (leading to
|
|
28
|
+
// "undefined" in the uuid)
|
|
29
|
+
// - Invalid input values for the RFC `version` or `variant` fields
|
|
30
|
+
|
|
31
|
+
if (!(0, _validate.default)(uuid)) {
|
|
32
|
+
throw TypeError('Stringified UUID is invalid');
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return uuid;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
var _default = stringify;
|
|
39
|
+
exports.default = _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(r,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((r="undefined"!=typeof globalThis?globalThis:r||self).uuid={})}(this,(function(r){"use strict";var e,n=new Uint8Array(16);function t(){if(!e&&!(e="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto)))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return e(n)}var o=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function a(r){return"string"==typeof r&&o.test(r)}for(var i,u,f=[],s=0;s<256;++s)f.push((s+256).toString(16).substr(1));function c(r){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=(f[r[e+0]]+f[r[e+1]]+f[r[e+2]]+f[r[e+3]]+"-"+f[r[e+4]]+f[r[e+5]]+"-"+f[r[e+6]]+f[r[e+7]]+"-"+f[r[e+8]]+f[r[e+9]]+"-"+f[r[e+10]]+f[r[e+11]]+f[r[e+12]]+f[r[e+13]]+f[r[e+14]]+f[r[e+15]]).toLowerCase();if(!a(n))throw TypeError("Stringified UUID is invalid");return n}var l=0,d=0;function v(r){if(!a(r))throw TypeError("Invalid UUID");var e,n=new Uint8Array(16);return n[0]=(e=parseInt(r.slice(0,8),16))>>>24,n[1]=e>>>16&255,n[2]=e>>>8&255,n[3]=255&e,n[4]=(e=parseInt(r.slice(9,13),16))>>>8,n[5]=255&e,n[6]=(e=parseInt(r.slice(14,18),16))>>>8,n[7]=255&e,n[8]=(e=parseInt(r.slice(19,23),16))>>>8,n[9]=255&e,n[10]=(e=parseInt(r.slice(24,36),16))/1099511627776&255,n[11]=e/4294967296&255,n[12]=e>>>24&255,n[13]=e>>>16&255,n[14]=e>>>8&255,n[15]=255&e,n}function p(r,e,n){function t(r,t,o,a){if("string"==typeof r&&(r=function(r){r=unescape(encodeURIComponent(r));for(var e=[],n=0;n<r.length;++n)e.push(r.charCodeAt(n));return e}(r)),"string"==typeof t&&(t=v(t)),16!==t.length)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");var i=new Uint8Array(16+r.length);if(i.set(t),i.set(r,t.length),(i=n(i))[6]=15&i[6]|e,i[8]=63&i[8]|128,o){a=a||0;for(var u=0;u<16;++u)o[a+u]=i[u];return o}return c(i)}try{t.name=r}catch(r){}return t.DNS="6ba7b810-9dad-11d1-80b4-00c04fd430c8",t.URL="6ba7b811-9dad-11d1-80b4-00c04fd430c8",t}function h(r){return 14+(r+64>>>9<<4)+1}function y(r,e){var n=(65535&r)+(65535&e);return(r>>16)+(e>>16)+(n>>16)<<16|65535&n}function g(r,e,n,t,o,a){return y((i=y(y(e,r),y(t,a)))<<(u=o)|i>>>32-u,n);var i,u}function m(r,e,n,t,o,a,i){return g(e&n|~e&t,r,e,o,a,i)}function w(r,e,n,t,o,a,i){return g(e&t|n&~t,r,e,o,a,i)}function b(r,e,n,t,o,a,i){return g(e^n^t,r,e,o,a,i)}function A(r,e,n,t,o,a,i){return g(n^(e|~t),r,e,o,a,i)}var U=p("v3",48,(function(r){if("string"==typeof r){var e=unescape(encodeURIComponent(r));r=new Uint8Array(e.length);for(var n=0;n<e.length;++n)r[n]=e.charCodeAt(n)}return function(r){for(var e=[],n=32*r.length,t="0123456789abcdef",o=0;o<n;o+=8){var a=r[o>>5]>>>o%32&255,i=parseInt(t.charAt(a>>>4&15)+t.charAt(15&a),16);e.push(i)}return e}(function(r,e){r[e>>5]|=128<<e%32,r[h(e)-1]=e;for(var n=1732584193,t=-271733879,o=-1732584194,a=271733878,i=0;i<r.length;i+=16){var u=n,f=t,s=o,c=a;n=m(n,t,o,a,r[i],7,-680876936),a=m(a,n,t,o,r[i+1],12,-389564586),o=m(o,a,n,t,r[i+2],17,606105819),t=m(t,o,a,n,r[i+3],22,-1044525330),n=m(n,t,o,a,r[i+4],7,-176418897),a=m(a,n,t,o,r[i+5],12,1200080426),o=m(o,a,n,t,r[i+6],17,-1473231341),t=m(t,o,a,n,r[i+7],22,-45705983),n=m(n,t,o,a,r[i+8],7,1770035416),a=m(a,n,t,o,r[i+9],12,-1958414417),o=m(o,a,n,t,r[i+10],17,-42063),t=m(t,o,a,n,r[i+11],22,-1990404162),n=m(n,t,o,a,r[i+12],7,1804603682),a=m(a,n,t,o,r[i+13],12,-40341101),o=m(o,a,n,t,r[i+14],17,-1502002290),n=w(n,t=m(t,o,a,n,r[i+15],22,1236535329),o,a,r[i+1],5,-165796510),a=w(a,n,t,o,r[i+6],9,-1069501632),o=w(o,a,n,t,r[i+11],14,643717713),t=w(t,o,a,n,r[i],20,-373897302),n=w(n,t,o,a,r[i+5],5,-701558691),a=w(a,n,t,o,r[i+10],9,38016083),o=w(o,a,n,t,r[i+15],14,-660478335),t=w(t,o,a,n,r[i+4],20,-405537848),n=w(n,t,o,a,r[i+9],5,568446438),a=w(a,n,t,o,r[i+14],9,-1019803690),o=w(o,a,n,t,r[i+3],14,-187363961),t=w(t,o,a,n,r[i+8],20,1163531501),n=w(n,t,o,a,r[i+13],5,-1444681467),a=w(a,n,t,o,r[i+2],9,-51403784),o=w(o,a,n,t,r[i+7],14,1735328473),n=b(n,t=w(t,o,a,n,r[i+12],20,-1926607734),o,a,r[i+5],4,-378558),a=b(a,n,t,o,r[i+8],11,-2022574463),o=b(o,a,n,t,r[i+11],16,1839030562),t=b(t,o,a,n,r[i+14],23,-35309556),n=b(n,t,o,a,r[i+1],4,-1530992060),a=b(a,n,t,o,r[i+4],11,1272893353),o=b(o,a,n,t,r[i+7],16,-155497632),t=b(t,o,a,n,r[i+10],23,-1094730640),n=b(n,t,o,a,r[i+13],4,681279174),a=b(a,n,t,o,r[i],11,-358537222),o=b(o,a,n,t,r[i+3],16,-722521979),t=b(t,o,a,n,r[i+6],23,76029189),n=b(n,t,o,a,r[i+9],4,-640364487),a=b(a,n,t,o,r[i+12],11,-421815835),o=b(o,a,n,t,r[i+15],16,530742520),n=A(n,t=b(t,o,a,n,r[i+2],23,-995338651),o,a,r[i],6,-198630844),a=A(a,n,t,o,r[i+7],10,1126891415),o=A(o,a,n,t,r[i+14],15,-1416354905),t=A(t,o,a,n,r[i+5],21,-57434055),n=A(n,t,o,a,r[i+12],6,1700485571),a=A(a,n,t,o,r[i+3],10,-1894986606),o=A(o,a,n,t,r[i+10],15,-1051523),t=A(t,o,a,n,r[i+1],21,-2054922799),n=A(n,t,o,a,r[i+8],6,1873313359),a=A(a,n,t,o,r[i+15],10,-30611744),o=A(o,a,n,t,r[i+6],15,-1560198380),t=A(t,o,a,n,r[i+13],21,1309151649),n=A(n,t,o,a,r[i+4],6,-145523070),a=A(a,n,t,o,r[i+11],10,-1120210379),o=A(o,a,n,t,r[i+2],15,718787259),t=A(t,o,a,n,r[i+9],21,-343485551),n=y(n,u),t=y(t,f),o=y(o,s),a=y(a,c)}return[n,t,o,a]}(function(r){if(0===r.length)return[];for(var e=8*r.length,n=new Uint32Array(h(e)),t=0;t<e;t+=8)n[t>>5]|=(255&r[t/8])<<t%32;return n}(r),8*r.length))}));function I(r,e,n,t){switch(r){case 0:return e&n^~e&t;case 1:return e^n^t;case 2:return e&n^e&t^n&t;case 3:return e^n^t}}function C(r,e){return r<<e|r>>>32-e}var R=p("v5",80,(function(r){var e=[1518500249,1859775393,2400959708,3395469782],n=[1732584193,4023233417,2562383102,271733878,3285377520];if("string"==typeof r){var t=unescape(encodeURIComponent(r));r=[];for(var o=0;o<t.length;++o)r.push(t.charCodeAt(o))}else Array.isArray(r)||(r=Array.prototype.slice.call(r));r.push(128);for(var a=r.length/4+2,i=Math.ceil(a/16),u=new Array(i),f=0;f<i;++f){for(var s=new Uint32Array(16),c=0;c<16;++c)s[c]=r[64*f+4*c]<<24|r[64*f+4*c+1]<<16|r[64*f+4*c+2]<<8|r[64*f+4*c+3];u[f]=s}u[i-1][14]=8*(r.length-1)/Math.pow(2,32),u[i-1][14]=Math.floor(u[i-1][14]),u[i-1][15]=8*(r.length-1)&4294967295;for(var l=0;l<i;++l){for(var d=new Uint32Array(80),v=0;v<16;++v)d[v]=u[l][v];for(var p=16;p<80;++p)d[p]=C(d[p-3]^d[p-8]^d[p-14]^d[p-16],1);for(var h=n[0],y=n[1],g=n[2],m=n[3],w=n[4],b=0;b<80;++b){var A=Math.floor(b/20),U=C(h,5)+I(A,y,g,m)+w+e[A]+d[b]>>>0;w=m,m=g,g=C(y,30)>>>0,y=h,h=U}n[0]=n[0]+h>>>0,n[1]=n[1]+y>>>0,n[2]=n[2]+g>>>0,n[3]=n[3]+m>>>0,n[4]=n[4]+w>>>0}return[n[0]>>24&255,n[0]>>16&255,n[0]>>8&255,255&n[0],n[1]>>24&255,n[1]>>16&255,n[1]>>8&255,255&n[1],n[2]>>24&255,n[2]>>16&255,n[2]>>8&255,255&n[2],n[3]>>24&255,n[3]>>16&255,n[3]>>8&255,255&n[3],n[4]>>24&255,n[4]>>16&255,n[4]>>8&255,255&n[4]]}));r.NIL="00000000-0000-0000-0000-000000000000",r.parse=v,r.stringify=c,r.v1=function(r,e,n){var o=e&&n||0,a=e||new Array(16),f=(r=r||{}).node||i,s=void 0!==r.clockseq?r.clockseq:u;if(null==f||null==s){var v=r.random||(r.rng||t)();null==f&&(f=i=[1|v[0],v[1],v[2],v[3],v[4],v[5]]),null==s&&(s=u=16383&(v[6]<<8|v[7]))}var p=void 0!==r.msecs?r.msecs:Date.now(),h=void 0!==r.nsecs?r.nsecs:d+1,y=p-l+(h-d)/1e4;if(y<0&&void 0===r.clockseq&&(s=s+1&16383),(y<0||p>l)&&void 0===r.nsecs&&(h=0),h>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");l=p,d=h,u=s;var g=(1e4*(268435455&(p+=122192928e5))+h)%4294967296;a[o++]=g>>>24&255,a[o++]=g>>>16&255,a[o++]=g>>>8&255,a[o++]=255&g;var m=p/4294967296*1e4&268435455;a[o++]=m>>>8&255,a[o++]=255&m,a[o++]=m>>>24&15|16,a[o++]=m>>>16&255,a[o++]=s>>>8|128,a[o++]=255&s;for(var w=0;w<6;++w)a[o+w]=f[w];return e||c(a)},r.v3=U,r.v4=function(r,e,n){var o=(r=r||{}).random||(r.rng||t)();if(o[6]=15&o[6]|64,o[8]=63&o[8]|128,e){n=n||0;for(var a=0;a<16;++a)e[n+a]=o[a];return e}return c(o)},r.v5=R,r.validate=a,r.version=function(r){if(!a(r))throw TypeError("Invalid UUID");return parseInt(r.substr(14,1),16)},Object.defineProperty(r,"__esModule",{value:!0})}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e="undefined"!=typeof globalThis?globalThis:e||self).uuidNIL=n()}(this,(function(){"use strict";return"00000000-0000-0000-0000-000000000000"}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e="undefined"!=typeof globalThis?globalThis:e||self).uuidParse=n()}(this,(function(){"use strict";var e=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;return function(n){if(!function(n){return"string"==typeof n&&e.test(n)}(n))throw TypeError("Invalid UUID");var t,i=new Uint8Array(16);return i[0]=(t=parseInt(n.slice(0,8),16))>>>24,i[1]=t>>>16&255,i[2]=t>>>8&255,i[3]=255&t,i[4]=(t=parseInt(n.slice(9,13),16))>>>8,i[5]=255&t,i[6]=(t=parseInt(n.slice(14,18),16))>>>8,i[7]=255&t,i[8]=(t=parseInt(n.slice(19,23),16))>>>8,i[9]=255&t,i[10]=(t=parseInt(n.slice(24,36),16))/1099511627776&255,i[11]=t/4294967296&255,i[12]=t>>>24&255,i[13]=t>>>16&255,i[14]=t>>>8&255,i[15]=255&t,i}}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).uuidStringify=t()}(this,(function(){"use strict";var e=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function t(t){return"string"==typeof t&&e.test(t)}for(var i=[],n=0;n<256;++n)i.push((n+256).toString(16).substr(1));return function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,f=(i[e[n+0]]+i[e[n+1]]+i[e[n+2]]+i[e[n+3]]+"-"+i[e[n+4]]+i[e[n+5]]+"-"+i[e[n+6]]+i[e[n+7]]+"-"+i[e[n+8]]+i[e[n+9]]+"-"+i[e[n+10]]+i[e[n+11]]+i[e[n+12]]+i[e[n+13]]+i[e[n+14]]+i[e[n+15]]).toLowerCase();if(!t(f))throw TypeError("Stringified UUID is invalid");return f}}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).uuidValidate=t()}(this,(function(){"use strict";var e=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;return function(t){return"string"==typeof t&&e.test(t)}}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).uuidVersion=t()}(this,(function(){"use strict";var e=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;return function(t){if(!function(t){return"string"==typeof t&&e.test(t)}(t))throw TypeError("Invalid UUID");return parseInt(t.substr(14,1),16)}}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e,o){"object"==typeof exports&&"undefined"!=typeof module?module.exports=o():"function"==typeof define&&define.amd?define(o):(e="undefined"!=typeof globalThis?globalThis:e||self).uuidv1=o()}(this,(function(){"use strict";var e,o=new Uint8Array(16);function t(){if(!e&&!(e="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto)))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return e(o)}var n=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function r(e){return"string"==typeof e&&n.test(e)}for(var i,u,s=[],a=0;a<256;++a)s.push((a+256).toString(16).substr(1));var d=0,f=0;return function(e,o,n){var a=o&&n||0,c=o||new Array(16),l=(e=e||{}).node||i,p=void 0!==e.clockseq?e.clockseq:u;if(null==l||null==p){var v=e.random||(e.rng||t)();null==l&&(l=i=[1|v[0],v[1],v[2],v[3],v[4],v[5]]),null==p&&(p=u=16383&(v[6]<<8|v[7]))}var y=void 0!==e.msecs?e.msecs:Date.now(),m=void 0!==e.nsecs?e.nsecs:f+1,g=y-d+(m-f)/1e4;if(g<0&&void 0===e.clockseq&&(p=p+1&16383),(g<0||y>d)&&void 0===e.nsecs&&(m=0),m>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");d=y,f=m,u=p;var h=(1e4*(268435455&(y+=122192928e5))+m)%4294967296;c[a++]=h>>>24&255,c[a++]=h>>>16&255,c[a++]=h>>>8&255,c[a++]=255&h;var w=y/4294967296*1e4&268435455;c[a++]=w>>>8&255,c[a++]=255&w,c[a++]=w>>>24&15|16,c[a++]=w>>>16&255,c[a++]=p>>>8|128,c[a++]=255&p;for(var b=0;b<6;++b)c[a+b]=l[b];return o||function(e){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,t=(s[e[o+0]]+s[e[o+1]]+s[e[o+2]]+s[e[o+3]]+"-"+s[e[o+4]]+s[e[o+5]]+"-"+s[e[o+6]]+s[e[o+7]]+"-"+s[e[o+8]]+s[e[o+9]]+"-"+s[e[o+10]]+s[e[o+11]]+s[e[o+12]]+s[e[o+13]]+s[e[o+14]]+s[e[o+15]]).toLowerCase();if(!r(t))throw TypeError("Stringified UUID is invalid");return t}(c)}}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(n,r){"object"==typeof exports&&"undefined"!=typeof module?module.exports=r():"function"==typeof define&&define.amd?define(r):(n="undefined"!=typeof globalThis?globalThis:n||self).uuidv3=r()}(this,(function(){"use strict";var n=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function r(r){return"string"==typeof r&&n.test(r)}for(var e=[],t=0;t<256;++t)e.push((t+256).toString(16).substr(1));function i(n){return 14+(n+64>>>9<<4)+1}function o(n,r){var e=(65535&n)+(65535&r);return(n>>16)+(r>>16)+(e>>16)<<16|65535&e}function a(n,r,e,t,i,a){return o((f=o(o(r,n),o(t,a)))<<(u=i)|f>>>32-u,e);var f,u}function f(n,r,e,t,i,o,f){return a(r&e|~r&t,n,r,i,o,f)}function u(n,r,e,t,i,o,f){return a(r&t|e&~t,n,r,i,o,f)}function c(n,r,e,t,i,o,f){return a(r^e^t,n,r,i,o,f)}function s(n,r,e,t,i,o,f){return a(e^(r|~t),n,r,i,o,f)}return function(n,t,i){function o(n,o,a,f){if("string"==typeof n&&(n=function(n){n=unescape(encodeURIComponent(n));for(var r=[],e=0;e<n.length;++e)r.push(n.charCodeAt(e));return r}(n)),"string"==typeof o&&(o=function(n){if(!r(n))throw TypeError("Invalid UUID");var e,t=new Uint8Array(16);return t[0]=(e=parseInt(n.slice(0,8),16))>>>24,t[1]=e>>>16&255,t[2]=e>>>8&255,t[3]=255&e,t[4]=(e=parseInt(n.slice(9,13),16))>>>8,t[5]=255&e,t[6]=(e=parseInt(n.slice(14,18),16))>>>8,t[7]=255&e,t[8]=(e=parseInt(n.slice(19,23),16))>>>8,t[9]=255&e,t[10]=(e=parseInt(n.slice(24,36),16))/1099511627776&255,t[11]=e/4294967296&255,t[12]=e>>>24&255,t[13]=e>>>16&255,t[14]=e>>>8&255,t[15]=255&e,t}(o)),16!==o.length)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");var u=new Uint8Array(16+n.length);if(u.set(o),u.set(n,o.length),(u=i(u))[6]=15&u[6]|t,u[8]=63&u[8]|128,a){f=f||0;for(var c=0;c<16;++c)a[f+c]=u[c];return a}return function(n){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,i=(e[n[t+0]]+e[n[t+1]]+e[n[t+2]]+e[n[t+3]]+"-"+e[n[t+4]]+e[n[t+5]]+"-"+e[n[t+6]]+e[n[t+7]]+"-"+e[n[t+8]]+e[n[t+9]]+"-"+e[n[t+10]]+e[n[t+11]]+e[n[t+12]]+e[n[t+13]]+e[n[t+14]]+e[n[t+15]]).toLowerCase();if(!r(i))throw TypeError("Stringified UUID is invalid");return i}(u)}try{o.name=n}catch(n){}return o.DNS="6ba7b810-9dad-11d1-80b4-00c04fd430c8",o.URL="6ba7b811-9dad-11d1-80b4-00c04fd430c8",o}("v3",48,(function(n){if("string"==typeof n){var r=unescape(encodeURIComponent(n));n=new Uint8Array(r.length);for(var e=0;e<r.length;++e)n[e]=r.charCodeAt(e)}return function(n){for(var r=[],e=32*n.length,t="0123456789abcdef",i=0;i<e;i+=8){var o=n[i>>5]>>>i%32&255,a=parseInt(t.charAt(o>>>4&15)+t.charAt(15&o),16);r.push(a)}return r}(function(n,r){n[r>>5]|=128<<r%32,n[i(r)-1]=r;for(var e=1732584193,t=-271733879,a=-1732584194,l=271733878,d=0;d<n.length;d+=16){var p=e,h=t,v=a,g=l;e=f(e,t,a,l,n[d],7,-680876936),l=f(l,e,t,a,n[d+1],12,-389564586),a=f(a,l,e,t,n[d+2],17,606105819),t=f(t,a,l,e,n[d+3],22,-1044525330),e=f(e,t,a,l,n[d+4],7,-176418897),l=f(l,e,t,a,n[d+5],12,1200080426),a=f(a,l,e,t,n[d+6],17,-1473231341),t=f(t,a,l,e,n[d+7],22,-45705983),e=f(e,t,a,l,n[d+8],7,1770035416),l=f(l,e,t,a,n[d+9],12,-1958414417),a=f(a,l,e,t,n[d+10],17,-42063),t=f(t,a,l,e,n[d+11],22,-1990404162),e=f(e,t,a,l,n[d+12],7,1804603682),l=f(l,e,t,a,n[d+13],12,-40341101),a=f(a,l,e,t,n[d+14],17,-1502002290),e=u(e,t=f(t,a,l,e,n[d+15],22,1236535329),a,l,n[d+1],5,-165796510),l=u(l,e,t,a,n[d+6],9,-1069501632),a=u(a,l,e,t,n[d+11],14,643717713),t=u(t,a,l,e,n[d],20,-373897302),e=u(e,t,a,l,n[d+5],5,-701558691),l=u(l,e,t,a,n[d+10],9,38016083),a=u(a,l,e,t,n[d+15],14,-660478335),t=u(t,a,l,e,n[d+4],20,-405537848),e=u(e,t,a,l,n[d+9],5,568446438),l=u(l,e,t,a,n[d+14],9,-1019803690),a=u(a,l,e,t,n[d+3],14,-187363961),t=u(t,a,l,e,n[d+8],20,1163531501),e=u(e,t,a,l,n[d+13],5,-1444681467),l=u(l,e,t,a,n[d+2],9,-51403784),a=u(a,l,e,t,n[d+7],14,1735328473),e=c(e,t=u(t,a,l,e,n[d+12],20,-1926607734),a,l,n[d+5],4,-378558),l=c(l,e,t,a,n[d+8],11,-2022574463),a=c(a,l,e,t,n[d+11],16,1839030562),t=c(t,a,l,e,n[d+14],23,-35309556),e=c(e,t,a,l,n[d+1],4,-1530992060),l=c(l,e,t,a,n[d+4],11,1272893353),a=c(a,l,e,t,n[d+7],16,-155497632),t=c(t,a,l,e,n[d+10],23,-1094730640),e=c(e,t,a,l,n[d+13],4,681279174),l=c(l,e,t,a,n[d],11,-358537222),a=c(a,l,e,t,n[d+3],16,-722521979),t=c(t,a,l,e,n[d+6],23,76029189),e=c(e,t,a,l,n[d+9],4,-640364487),l=c(l,e,t,a,n[d+12],11,-421815835),a=c(a,l,e,t,n[d+15],16,530742520),e=s(e,t=c(t,a,l,e,n[d+2],23,-995338651),a,l,n[d],6,-198630844),l=s(l,e,t,a,n[d+7],10,1126891415),a=s(a,l,e,t,n[d+14],15,-1416354905),t=s(t,a,l,e,n[d+5],21,-57434055),e=s(e,t,a,l,n[d+12],6,1700485571),l=s(l,e,t,a,n[d+3],10,-1894986606),a=s(a,l,e,t,n[d+10],15,-1051523),t=s(t,a,l,e,n[d+1],21,-2054922799),e=s(e,t,a,l,n[d+8],6,1873313359),l=s(l,e,t,a,n[d+15],10,-30611744),a=s(a,l,e,t,n[d+6],15,-1560198380),t=s(t,a,l,e,n[d+13],21,1309151649),e=s(e,t,a,l,n[d+4],6,-145523070),l=s(l,e,t,a,n[d+11],10,-1120210379),a=s(a,l,e,t,n[d+2],15,718787259),t=s(t,a,l,e,n[d+9],21,-343485551),e=o(e,p),t=o(t,h),a=o(a,v),l=o(l,g)}return[e,t,a,l]}(function(n){if(0===n.length)return[];for(var r=8*n.length,e=new Uint32Array(i(r)),t=0;t<r;t+=8)e[t>>5]|=(255&n[t/8])<<t%32;return e}(n),8*n.length))}))}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).uuidv4=e()}(this,(function(){"use strict";var t,e=new Uint8Array(16);function o(){if(!t&&!(t="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto)))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return t(e)}var n=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function r(t){return"string"==typeof t&&n.test(t)}for(var i=[],u=0;u<256;++u)i.push((u+256).toString(16).substr(1));return function(t,e,n){var u=(t=t||{}).random||(t.rng||o)();if(u[6]=15&u[6]|64,u[8]=63&u[8]|128,e){n=n||0;for(var f=0;f<16;++f)e[n+f]=u[f];return e}return function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,o=(i[t[e+0]]+i[t[e+1]]+i[t[e+2]]+i[t[e+3]]+"-"+i[t[e+4]]+i[t[e+5]]+"-"+i[t[e+6]]+i[t[e+7]]+"-"+i[t[e+8]]+i[t[e+9]]+"-"+i[t[e+10]]+i[t[e+11]]+i[t[e+12]]+i[t[e+13]]+i[t[e+14]]+i[t[e+15]]).toLowerCase();if(!r(o))throw TypeError("Stringified UUID is invalid");return o}(u)}}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(r,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(r="undefined"!=typeof globalThis?globalThis:r||self).uuidv5=e()}(this,(function(){"use strict";var r=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;function e(e){return"string"==typeof e&&r.test(e)}for(var t=[],n=0;n<256;++n)t.push((n+256).toString(16).substr(1));function a(r,e,t,n){switch(r){case 0:return e&t^~e&n;case 1:return e^t^n;case 2:return e&t^e&n^t&n;case 3:return e^t^n}}function o(r,e){return r<<e|r>>>32-e}return function(r,n,a){function o(r,o,i,f){if("string"==typeof r&&(r=function(r){r=unescape(encodeURIComponent(r));for(var e=[],t=0;t<r.length;++t)e.push(r.charCodeAt(t));return e}(r)),"string"==typeof o&&(o=function(r){if(!e(r))throw TypeError("Invalid UUID");var t,n=new Uint8Array(16);return n[0]=(t=parseInt(r.slice(0,8),16))>>>24,n[1]=t>>>16&255,n[2]=t>>>8&255,n[3]=255&t,n[4]=(t=parseInt(r.slice(9,13),16))>>>8,n[5]=255&t,n[6]=(t=parseInt(r.slice(14,18),16))>>>8,n[7]=255&t,n[8]=(t=parseInt(r.slice(19,23),16))>>>8,n[9]=255&t,n[10]=(t=parseInt(r.slice(24,36),16))/1099511627776&255,n[11]=t/4294967296&255,n[12]=t>>>24&255,n[13]=t>>>16&255,n[14]=t>>>8&255,n[15]=255&t,n}(o)),16!==o.length)throw TypeError("Namespace must be array-like (16 iterable integer values, 0-255)");var s=new Uint8Array(16+r.length);if(s.set(o),s.set(r,o.length),(s=a(s))[6]=15&s[6]|n,s[8]=63&s[8]|128,i){f=f||0;for(var u=0;u<16;++u)i[f+u]=s[u];return i}return function(r){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,a=(t[r[n+0]]+t[r[n+1]]+t[r[n+2]]+t[r[n+3]]+"-"+t[r[n+4]]+t[r[n+5]]+"-"+t[r[n+6]]+t[r[n+7]]+"-"+t[r[n+8]]+t[r[n+9]]+"-"+t[r[n+10]]+t[r[n+11]]+t[r[n+12]]+t[r[n+13]]+t[r[n+14]]+t[r[n+15]]).toLowerCase();if(!e(a))throw TypeError("Stringified UUID is invalid");return a}(s)}try{o.name=r}catch(r){}return o.DNS="6ba7b810-9dad-11d1-80b4-00c04fd430c8",o.URL="6ba7b811-9dad-11d1-80b4-00c04fd430c8",o}("v5",80,(function(r){var e=[1518500249,1859775393,2400959708,3395469782],t=[1732584193,4023233417,2562383102,271733878,3285377520];if("string"==typeof r){var n=unescape(encodeURIComponent(r));r=[];for(var i=0;i<n.length;++i)r.push(n.charCodeAt(i))}else Array.isArray(r)||(r=Array.prototype.slice.call(r));r.push(128);for(var f=r.length/4+2,s=Math.ceil(f/16),u=new Array(s),c=0;c<s;++c){for(var l=new Uint32Array(16),p=0;p<16;++p)l[p]=r[64*c+4*p]<<24|r[64*c+4*p+1]<<16|r[64*c+4*p+2]<<8|r[64*c+4*p+3];u[c]=l}u[s-1][14]=8*(r.length-1)/Math.pow(2,32),u[s-1][14]=Math.floor(u[s-1][14]),u[s-1][15]=8*(r.length-1)&4294967295;for(var d=0;d<s;++d){for(var h=new Uint32Array(80),v=0;v<16;++v)h[v]=u[d][v];for(var y=16;y<80;++y)h[y]=o(h[y-3]^h[y-8]^h[y-14]^h[y-16],1);for(var g=t[0],b=t[1],w=t[2],U=t[3],A=t[4],I=0;I<80;++I){var m=Math.floor(I/20),C=o(g,5)+a(m,b,w,U)+A+e[m]+h[I]>>>0;A=U,U=w,w=o(b,30)>>>0,b=g,g=C}t[0]=t[0]+g>>>0,t[1]=t[1]+b>>>0,t[2]=t[2]+w>>>0,t[3]=t[3]+U>>>0,t[4]=t[4]+A>>>0}return[t[0]>>24&255,t[0]>>16&255,t[0]>>8&255,255&t[0],t[1]>>24&255,t[1]>>16&255,t[1]>>8&255,255&t[1],t[2]>>24&255,t[2]>>16&255,t[2]>>8&255,255&t[2],t[3]>>24&255,t[3]>>16&255,t[3]>>8&255,255&t[3],t[4]>>24&255,t[4]>>16&255,t[4]>>8&255,255&t[4]]}))}));
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _assert = _interopRequireDefault(require("assert"));
|
|
4
|
+
|
|
5
|
+
var _v = _interopRequireDefault(require("./v1.js"));
|
|
6
|
+
|
|
7
|
+
var _v2 = _interopRequireDefault(require("./v3.js"));
|
|
8
|
+
|
|
9
|
+
var _v3 = _interopRequireDefault(require("./v4.js"));
|
|
10
|
+
|
|
11
|
+
var _v4 = _interopRequireDefault(require("./v5.js"));
|
|
12
|
+
|
|
13
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
|
+
|
|
15
|
+
function usage() {
|
|
16
|
+
console.log('Usage:');
|
|
17
|
+
console.log(' uuid');
|
|
18
|
+
console.log(' uuid v1');
|
|
19
|
+
console.log(' uuid v3 <name> <namespace uuid>');
|
|
20
|
+
console.log(' uuid v4');
|
|
21
|
+
console.log(' uuid v5 <name> <namespace uuid>');
|
|
22
|
+
console.log(' uuid --help');
|
|
23
|
+
console.log('\nNote: <namespace uuid> may be "URL" or "DNS" to use the corresponding UUIDs defined by RFC4122');
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const args = process.argv.slice(2);
|
|
27
|
+
|
|
28
|
+
if (args.indexOf('--help') >= 0) {
|
|
29
|
+
usage();
|
|
30
|
+
process.exit(0);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const version = args.shift() || 'v4';
|
|
34
|
+
|
|
35
|
+
switch (version) {
|
|
36
|
+
case 'v1':
|
|
37
|
+
console.log((0, _v.default)());
|
|
38
|
+
break;
|
|
39
|
+
|
|
40
|
+
case 'v3':
|
|
41
|
+
{
|
|
42
|
+
const name = args.shift();
|
|
43
|
+
let namespace = args.shift();
|
|
44
|
+
(0, _assert.default)(name != null, 'v3 name not specified');
|
|
45
|
+
(0, _assert.default)(namespace != null, 'v3 namespace not specified');
|
|
46
|
+
|
|
47
|
+
if (namespace === 'URL') {
|
|
48
|
+
namespace = _v2.default.URL;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (namespace === 'DNS') {
|
|
52
|
+
namespace = _v2.default.DNS;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
console.log((0, _v2.default)(name, namespace));
|
|
56
|
+
break;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
case 'v4':
|
|
60
|
+
console.log((0, _v3.default)());
|
|
61
|
+
break;
|
|
62
|
+
|
|
63
|
+
case 'v5':
|
|
64
|
+
{
|
|
65
|
+
const name = args.shift();
|
|
66
|
+
let namespace = args.shift();
|
|
67
|
+
(0, _assert.default)(name != null, 'v5 name not specified');
|
|
68
|
+
(0, _assert.default)(namespace != null, 'v5 namespace not specified');
|
|
69
|
+
|
|
70
|
+
if (namespace === 'URL') {
|
|
71
|
+
namespace = _v4.default.URL;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (namespace === 'DNS') {
|
|
75
|
+
namespace = _v4.default.DNS;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
console.log((0, _v4.default)(name, namespace));
|
|
79
|
+
break;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
default:
|
|
83
|
+
usage();
|
|
84
|
+
process.exit(1);
|
|
85
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _rng = _interopRequireDefault(require("./rng.js"));
|
|
9
|
+
|
|
10
|
+
var _stringify = _interopRequireDefault(require("./stringify.js"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
// **`v1()` - Generate time-based UUID**
|
|
15
|
+
//
|
|
16
|
+
// Inspired by https://github.com/LiosK/UUID.js
|
|
17
|
+
// and http://docs.python.org/library/uuid.html
|
|
18
|
+
let _nodeId;
|
|
19
|
+
|
|
20
|
+
let _clockseq; // Previous uuid creation time
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
let _lastMSecs = 0;
|
|
24
|
+
let _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details
|
|
25
|
+
|
|
26
|
+
function v1(options, buf, offset) {
|
|
27
|
+
let i = buf && offset || 0;
|
|
28
|
+
const b = buf || new Array(16);
|
|
29
|
+
options = options || {};
|
|
30
|
+
let node = options.node || _nodeId;
|
|
31
|
+
let clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not
|
|
32
|
+
// specified. We do this lazily to minimize issues related to insufficient
|
|
33
|
+
// system entropy. See #189
|
|
34
|
+
|
|
35
|
+
if (node == null || clockseq == null) {
|
|
36
|
+
const seedBytes = options.random || (options.rng || _rng.default)();
|
|
37
|
+
|
|
38
|
+
if (node == null) {
|
|
39
|
+
// Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
|
|
40
|
+
node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
if (clockseq == null) {
|
|
44
|
+
// Per 4.2.2, randomize (14 bit) clockseq
|
|
45
|
+
clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
|
|
46
|
+
}
|
|
47
|
+
} // UUID timestamps are 100 nano-second units since the Gregorian epoch,
|
|
48
|
+
// (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
|
|
49
|
+
// time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
|
|
50
|
+
// (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
let msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock
|
|
54
|
+
// cycle to simulate higher resolution clock
|
|
55
|
+
|
|
56
|
+
let nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)
|
|
57
|
+
|
|
58
|
+
const dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression
|
|
59
|
+
|
|
60
|
+
if (dt < 0 && options.clockseq === undefined) {
|
|
61
|
+
clockseq = clockseq + 1 & 0x3fff;
|
|
62
|
+
} // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
|
|
63
|
+
// time interval
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
|
|
67
|
+
nsecs = 0;
|
|
68
|
+
} // Per 4.2.1.2 Throw error if too many uuids are requested
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
if (nsecs >= 10000) {
|
|
72
|
+
throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
_lastMSecs = msecs;
|
|
76
|
+
_lastNSecs = nsecs;
|
|
77
|
+
_clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch
|
|
78
|
+
|
|
79
|
+
msecs += 12219292800000; // `time_low`
|
|
80
|
+
|
|
81
|
+
const tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
|
|
82
|
+
b[i++] = tl >>> 24 & 0xff;
|
|
83
|
+
b[i++] = tl >>> 16 & 0xff;
|
|
84
|
+
b[i++] = tl >>> 8 & 0xff;
|
|
85
|
+
b[i++] = tl & 0xff; // `time_mid`
|
|
86
|
+
|
|
87
|
+
const tmh = msecs / 0x100000000 * 10000 & 0xfffffff;
|
|
88
|
+
b[i++] = tmh >>> 8 & 0xff;
|
|
89
|
+
b[i++] = tmh & 0xff; // `time_high_and_version`
|
|
90
|
+
|
|
91
|
+
b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
|
|
92
|
+
|
|
93
|
+
b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
|
|
94
|
+
|
|
95
|
+
b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`
|
|
96
|
+
|
|
97
|
+
b[i++] = clockseq & 0xff; // `node`
|
|
98
|
+
|
|
99
|
+
for (let n = 0; n < 6; ++n) {
|
|
100
|
+
b[i + n] = node[n];
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return buf || (0, _stringify.default)(b);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
var _default = v1;
|
|
107
|
+
exports.default = _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _v = _interopRequireDefault(require("./v35.js"));
|
|
9
|
+
|
|
10
|
+
var _md = _interopRequireDefault(require("./md5.js"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
const v3 = (0, _v.default)('v3', 0x30, _md.default);
|
|
15
|
+
var _default = v3;
|
|
16
|
+
exports.default = _default;
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = _default;
|
|
7
|
+
exports.URL = exports.DNS = void 0;
|
|
8
|
+
|
|
9
|
+
var _stringify = _interopRequireDefault(require("./stringify.js"));
|
|
10
|
+
|
|
11
|
+
var _parse = _interopRequireDefault(require("./parse.js"));
|
|
12
|
+
|
|
13
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
|
+
|
|
15
|
+
function stringToBytes(str) {
|
|
16
|
+
str = unescape(encodeURIComponent(str)); // UTF8 escape
|
|
17
|
+
|
|
18
|
+
const bytes = [];
|
|
19
|
+
|
|
20
|
+
for (let i = 0; i < str.length; ++i) {
|
|
21
|
+
bytes.push(str.charCodeAt(i));
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return bytes;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
|
|
28
|
+
exports.DNS = DNS;
|
|
29
|
+
const URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
|
|
30
|
+
exports.URL = URL;
|
|
31
|
+
|
|
32
|
+
function _default(name, version, hashfunc) {
|
|
33
|
+
function generateUUID(value, namespace, buf, offset) {
|
|
34
|
+
if (typeof value === 'string') {
|
|
35
|
+
value = stringToBytes(value);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
if (typeof namespace === 'string') {
|
|
39
|
+
namespace = (0, _parse.default)(namespace);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (namespace.length !== 16) {
|
|
43
|
+
throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');
|
|
44
|
+
} // Compute hash of namespace and value, Per 4.3
|
|
45
|
+
// Future: Use spread syntax when supported on all platforms, e.g. `bytes =
|
|
46
|
+
// hashfunc([...namespace, ... value])`
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
let bytes = new Uint8Array(16 + value.length);
|
|
50
|
+
bytes.set(namespace);
|
|
51
|
+
bytes.set(value, namespace.length);
|
|
52
|
+
bytes = hashfunc(bytes);
|
|
53
|
+
bytes[6] = bytes[6] & 0x0f | version;
|
|
54
|
+
bytes[8] = bytes[8] & 0x3f | 0x80;
|
|
55
|
+
|
|
56
|
+
if (buf) {
|
|
57
|
+
offset = offset || 0;
|
|
58
|
+
|
|
59
|
+
for (let i = 0; i < 16; ++i) {
|
|
60
|
+
buf[offset + i] = bytes[i];
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
return buf;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return (0, _stringify.default)(bytes);
|
|
67
|
+
} // Function#name is not settable on some platforms (#270)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
try {
|
|
71
|
+
generateUUID.name = name; // eslint-disable-next-line no-empty
|
|
72
|
+
} catch (err) {} // For CommonJS default export support
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
generateUUID.DNS = DNS;
|
|
76
|
+
generateUUID.URL = URL;
|
|
77
|
+
return generateUUID;
|
|
78
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _rng = _interopRequireDefault(require("./rng.js"));
|
|
9
|
+
|
|
10
|
+
var _stringify = _interopRequireDefault(require("./stringify.js"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
function v4(options, buf, offset) {
|
|
15
|
+
options = options || {};
|
|
16
|
+
|
|
17
|
+
const rnds = options.random || (options.rng || _rng.default)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
rnds[6] = rnds[6] & 0x0f | 0x40;
|
|
21
|
+
rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided
|
|
22
|
+
|
|
23
|
+
if (buf) {
|
|
24
|
+
offset = offset || 0;
|
|
25
|
+
|
|
26
|
+
for (let i = 0; i < 16; ++i) {
|
|
27
|
+
buf[offset + i] = rnds[i];
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return buf;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
return (0, _stringify.default)(rnds);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
var _default = v4;
|
|
37
|
+
exports.default = _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _v = _interopRequireDefault(require("./v35.js"));
|
|
9
|
+
|
|
10
|
+
var _sha = _interopRequireDefault(require("./sha1.js"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
const v5 = (0, _v.default)('v5', 0x50, _sha.default);
|
|
15
|
+
var _default = v5;
|
|
16
|
+
exports.default = _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _regex = _interopRequireDefault(require("./regex.js"));
|
|
9
|
+
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
+
|
|
12
|
+
function validate(uuid) {
|
|
13
|
+
return typeof uuid === 'string' && _regex.default.test(uuid);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
var _default = validate;
|
|
17
|
+
exports.default = _default;
|