@bluefly/openstandardagents 0.4.6 → 0.4.9

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.
Files changed (934) hide show
  1. package/.version.json +4 -4
  2. package/CHANGELOG.md +30 -0
  3. package/README.md +21 -5
  4. package/dist/.version.json +4 -4
  5. package/dist/adapters/a2a/__tests__/mcp-integration.spec.js +1 -1
  6. package/dist/adapters/a2a/a2a-protocol.d.ts +1 -1
  7. package/dist/adapters/a2a/a2a-tool.js +3 -3
  8. package/dist/adapters/a2a/delegation.js +1 -1
  9. package/dist/adapters/base/common-file-generator.d.ts +1 -1
  10. package/dist/adapters/base/common-file-generator.js +22 -0
  11. package/dist/adapters/mcp/converter.js +4 -3
  12. package/dist/adapters/npm/adapter.js +2 -1
  13. package/dist/adapters/openai-agents/adapter.js +1 -1
  14. package/dist/cli/banner.js +1 -1
  15. package/dist/cli/commands/agents-sync.command.d.ts +19 -0
  16. package/dist/cli/commands/agents-sync.command.js +268 -0
  17. package/dist/cli/commands/config.command.d.ts +7 -0
  18. package/dist/cli/commands/config.command.js +92 -0
  19. package/dist/cli/commands/discover.js +48 -52
  20. package/dist/cli/commands/export.command.js +41 -12
  21. package/dist/cli/commands/lifecycle.command.d.ts +29 -0
  22. package/dist/cli/commands/lifecycle.command.js +495 -0
  23. package/dist/cli/commands/migrate.command.js +1 -1
  24. package/dist/cli/commands/policy.command.d.ts +11 -0
  25. package/dist/cli/commands/policy.command.js +85 -0
  26. package/dist/cli/commands/publish.command.js +29 -3
  27. package/dist/cli/commands/search.command.js +31 -2
  28. package/dist/cli/commands/serve-builder-routes.d.ts +17 -0
  29. package/dist/cli/commands/serve-builder-routes.js +390 -0
  30. package/dist/cli/commands/sign.command.d.ts +3 -0
  31. package/dist/cli/commands/sign.command.js +42 -0
  32. package/dist/cli/commands/skills.command.js +4 -6
  33. package/dist/cli/commands/validate.command.js +48 -2
  34. package/dist/cli/commands/verify.js +61 -34
  35. package/dist/cli/commands/wizard-api-first.command.js +6 -0
  36. package/dist/cli/commands/wizard.command.js +6 -0
  37. package/dist/cli/commands/workspace.command.js +65 -65
  38. package/dist/cli/index.js +11 -3
  39. package/dist/cli/utils/standard-options.js +1 -1
  40. package/dist/confidence/index.d.ts +67 -0
  41. package/dist/confidence/index.js +130 -0
  42. package/dist/config/cli-config.d.ts +33 -0
  43. package/dist/config/cli-config.js +107 -0
  44. package/dist/data/platform-matrix.js +29 -0
  45. package/dist/mesh/discovery-providers.js +2 -2
  46. package/dist/mesh/discovery.js +1 -1
  47. package/dist/mesh/index.d.ts +2 -2
  48. package/dist/mesh/index.js +2 -2
  49. package/dist/mesh/types.d.ts +202 -1
  50. package/dist/package.json +9 -16
  51. package/dist/services/agent-card-generator.d.ts +2 -2
  52. package/dist/services/agent-card-generator.js +3 -1
  53. package/dist/services/agents-md/agents-md.service.d.ts +4 -0
  54. package/dist/services/agents-md/agents-md.service.js +18 -0
  55. package/dist/services/governance/cedar-provider.js +2 -1
  56. package/dist/services/governance/cedar-validator.service.d.ts +32 -0
  57. package/dist/services/governance/cedar-validator.service.js +88 -0
  58. package/dist/services/mcp/bridge.service.d.ts +1 -0
  59. package/dist/services/mcp/bridge.service.js +31 -0
  60. package/dist/services/release-automation/base-crud.service.d.ts +93 -0
  61. package/dist/services/release-automation/base-crud.service.js +68 -0
  62. package/dist/services/release-automation/generate-changelog.d.ts +7 -0
  63. package/dist/services/release-automation/generate-changelog.js +288 -0
  64. package/dist/services/release-automation/increment-dev-tag.d.ts +7 -0
  65. package/dist/services/release-automation/increment-dev-tag.js +160 -0
  66. package/dist/services/release-automation/index.d.ts +12 -0
  67. package/dist/services/release-automation/index.js +12 -0
  68. package/dist/services/release-automation/merge-request.service.d.ts +119 -0
  69. package/dist/services/release-automation/merge-request.service.js +212 -0
  70. package/dist/services/release-automation/milestone.service.d.ts +104 -0
  71. package/dist/services/release-automation/milestone.service.js +207 -0
  72. package/dist/services/release-automation/release-agent.service.d.ts +39 -0
  73. package/dist/services/release-automation/release-agent.service.js +43 -0
  74. package/dist/services/release-automation/release-buttons.d.ts +7 -0
  75. package/dist/services/release-automation/release-buttons.js +207 -0
  76. package/dist/services/release-automation/release.service.d.ts +118 -0
  77. package/dist/services/release-automation/release.service.js +207 -0
  78. package/dist/services/release-automation/schemas/release.schema.d.ts +299 -0
  79. package/dist/services/release-automation/schemas/release.schema.js +272 -0
  80. package/dist/services/release-automation/tag.service.d.ts +99 -0
  81. package/dist/services/release-automation/tag.service.js +183 -0
  82. package/dist/services/release-automation/webhook.service.d.ts +37 -0
  83. package/dist/services/release-automation/webhook.service.js +187 -0
  84. package/dist/services/skills-pipeline/skills-install.service.js +2 -2
  85. package/dist/services/skills-pipeline/skills-research.service.d.ts +5 -7
  86. package/dist/services/skills-pipeline/skills-research.service.js +13 -58
  87. package/dist/services/trust/trust.service.d.ts +9 -0
  88. package/dist/services/trust/trust.service.js +35 -0
  89. package/dist/services/validators/a2a.validator.js +2 -2
  90. package/dist/skills/test-skill/README.md +36 -0
  91. package/dist/skills/test-skill/SKILL.md +31 -0
  92. package/dist/skills/test-skill/index.d.ts +31 -0
  93. package/dist/skills/test-skill/install.js +44 -0
  94. package/dist/skills/test-skill/package.json +36 -0
  95. package/dist/spec/reference/reference-agents/compliance-auditor/manifest.ossa.yaml +1 -1
  96. package/dist/spec/reference/reference-agents/doc-agent/manifest.ossa.yaml +1 -1
  97. package/dist/spec/reference/reference-agents/mr-reviewer/manifest.ossa.yaml +1 -1
  98. package/dist/spec/reference/reference-agents/ossa-validator-v0.3/manifest.ossa.yaml +1 -1
  99. package/dist/spec/reference/reference-agents/pipeline-fixer/manifest.ossa.yaml +1 -1
  100. package/dist/spec/reference/reference-agents/release-orchestrator/manifest.ossa.yaml +1 -1
  101. package/dist/spec/uadp/README.md +393 -0
  102. package/dist/spec/uadp/openapi.yaml +387 -0
  103. package/dist/spec/uadp/schemas/uadp-agents-response.schema.json +68 -0
  104. package/dist/spec/uadp/schemas/uadp-federation-response.schema.json +46 -0
  105. package/dist/spec/uadp/schemas/uadp-manifest.schema.json +82 -0
  106. package/dist/spec/uadp/schemas/uadp-skills-response.schema.json +72 -0
  107. package/dist/spec/v0.4/agent-card.schema.json +3 -3
  108. package/dist/spec/v0.4/agent.schema.json +84 -15
  109. package/dist/spec/v0.4/extensions/a2a/a2a.schema.json +2 -2
  110. package/dist/spec/v0.4/extensions/ag2/ag2.schema.json +1 -1
  111. package/dist/spec/v0.4/extensions/crewai/crewai.schema.json +1 -1
  112. package/dist/spec/v0.4/extensions/kagent/kagent.schema.json +1 -1
  113. package/dist/spec/v0.4/extensions/langchain/langchain.schema.json +1 -1
  114. package/dist/spec/v0.4/extensions/langgraph/langgraph.schema.json +1 -1
  115. package/dist/spec/v0.4/extensions/mcp/mcp.schema.json +1 -1
  116. package/dist/spec/v0.5/agent-card.schema.json +477 -0
  117. package/dist/spec/v0.5/agent.schema.json +1626 -0
  118. package/dist/spec/v0.5/conformance/profiles/baseline.json +19 -0
  119. package/dist/spec/v0.5/conformance/profiles/enterprise.json +20 -0
  120. package/dist/spec/v0.5/extensions/a2a/README.md +193 -0
  121. package/dist/spec/v0.5/extensions/a2a/a2a.schema.json +77 -0
  122. package/dist/spec/v0.5/extensions/ag2/ag2.schema.json +277 -0
  123. package/dist/spec/v0.5/extensions/cognition/cognition.schema.json +94 -0
  124. package/dist/spec/v0.5/extensions/cognition/thought-node.schema.json +80 -0
  125. package/dist/spec/v0.5/extensions/crewai/crewai.schema.json +256 -0
  126. package/dist/spec/v0.5/extensions/drupal/drupal.schema.json +318 -0
  127. package/dist/spec/v0.5/extensions/evals/evals.schema.json +597 -0
  128. package/dist/spec/v0.5/extensions/governance/governance-extension.yaml +161 -0
  129. package/dist/spec/v0.5/extensions/identity/identity.schema.json +302 -0
  130. package/dist/spec/v0.5/extensions/kagent/README.md +315 -0
  131. package/dist/spec/v0.5/extensions/kagent/kagent.schema.json +624 -0
  132. package/dist/spec/v0.5/extensions/langchain/langchain.schema.json +243 -0
  133. package/dist/spec/v0.5/extensions/langgraph/langgraph.schema.json +211 -0
  134. package/dist/spec/v0.5/extensions/mcp/README.md +276 -0
  135. package/dist/spec/v0.5/extensions/mcp/mcp.schema.json +84 -0
  136. package/dist/spec/v0.5/extensions/memory/memory.schema.json +7 -0
  137. package/dist/spec/v0.5/extensions/team/team.schema.json +304 -0
  138. package/dist/spec/v0.5/extensions/token-efficiency/token-efficiency.schema.json +47 -0
  139. package/dist/spec/v0.5/mcp.schema.json +1 -0
  140. package/dist/spec/v0.5/skill.schema.json +1 -0
  141. package/dist/spec/v0.5/validator.schema.json +282 -0
  142. package/dist/types/index.d.ts +3 -1
  143. package/dist/validation/error-codes.js +1 -1
  144. package/dist/validation/progressive-scorer.d.ts +1 -1
  145. package/dist/validation/progressive-scorer.js +19 -2
  146. package/dist/version-management/api/server.d.ts +1 -1
  147. package/examples/a2a/agent-handoff.ossa.yaml +1 -1
  148. package/examples/a2a/service-discovery.ossa.yaml +1 -1
  149. package/examples/adapters/drupal-eca-mapping.yaml +1 -1
  150. package/examples/adapters/drupal-eca-task.yaml +1 -1
  151. package/examples/adapters/drupal-flowdrop-mapping.yaml +1 -1
  152. package/examples/adapters/drupal-maestro-mapping.yaml +1 -1
  153. package/examples/adapters/mistral-agent.yaml +1 -1
  154. package/examples/adapters/symfony-messenger-task.yaml +1 -1
  155. package/examples/adapters/symfony-messenger-workflow.yaml +1 -1
  156. package/examples/adk-integration/code-review-workflow.yml +1 -1
  157. package/examples/adk-integration/customer-support.yml +1 -1
  158. package/examples/adk-integration/data-pipeline.yml +1 -1
  159. package/examples/advanced/reasoning-agent.yaml +1 -1
  160. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  161. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  162. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  163. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  164. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  165. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  166. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  167. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  168. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  169. package/examples/agent-mesh/DISCOVERY.md +25 -25
  170. package/examples/agent-mesh/README.ts +6 -6
  171. package/examples/agent-mesh/basic-usage.ts +11 -11
  172. package/examples/agent-mesh/discovery-system.ts +37 -37
  173. package/examples/agent-taxonomy-example.ossa.yaml +1 -1
  174. package/examples/agents/01-customer-support-bot/agent.ossa.yaml +1 -1
  175. package/examples/agents/02-code-review-agent/agent.ossa.yaml +1 -1
  176. package/examples/agents/03-data-analysis-agent/agent.ossa.yaml +1 -1
  177. package/examples/agents/04-content-moderator/agent.ossa.yaml +1 -1
  178. package/examples/agents/05-sales-assistant/agent.ossa.yaml +1 -1
  179. package/examples/agents/06-devops-agent/agent.ossa.yaml +1 -1
  180. package/examples/agents/07-research-assistant/agent.ossa.yaml +1 -1
  181. package/examples/agents/08-email-triage-agent/agent.ossa.yaml +1 -1
  182. package/examples/agents/09-security-scanner/agent.ossa.yaml +1 -1
  183. package/examples/agents/10-meeting-assistant/agent.ossa.yaml +1 -1
  184. package/examples/agents/architecture-healer-enterprise.yaml +1 -1
  185. package/examples/agents/dependency-healer-npm.yaml +1 -1
  186. package/examples/agents/spec-healer-openapi.yaml +1 -1
  187. package/examples/agents/wiki-healer-production.yaml +1 -1
  188. package/examples/agents-md/monorepo-agent.ossa.yaml +1 -1
  189. package/examples/agentscope/react-assistant/README.md +111 -0
  190. package/examples/agentscope/react-assistant/agent.ossa.yaml +132 -0
  191. package/examples/agentscope/react-assistant/skills/code-analysis/SKILL.md +18 -0
  192. package/examples/agentscope/react-assistant/skills/question-answering/SKILL.md +18 -0
  193. package/examples/autonomous-evolution/self-evolving-agent.ossa.yaml +1 -1
  194. package/examples/bridges/.gitlab-ci.yml +2 -2
  195. package/examples/build-once-use-everywhere/agent.ossa.yaml +1 -1
  196. package/examples/claude-code/code-reviewer.ossa.yaml +1 -1
  197. package/examples/claude-code/ossa-validator.ossa.yaml +1 -1
  198. package/examples/common_npm/agent-router.ossa.yaml +1 -1
  199. package/examples/contracts/data-consumer.ossa.yaml +1 -1
  200. package/examples/contracts/data-producer-v2.ossa.yaml +1 -1
  201. package/examples/contracts/data-producer.ossa.yaml +1 -1
  202. package/examples/drupal/QUICKSTART.md +17 -3
  203. package/examples/drupal/ai_agents_agentscope/README.md +62 -0
  204. package/examples/drupal/ai_agents_agentscope/ai_agents_agentscope.info.yml +13 -0
  205. package/examples/drupal/ai_agents_agentscope/ai_agents_agentscope.services.yml +4 -0
  206. package/examples/drupal/ai_agents_agentscope/config/install/ai_agents_agentscope.settings.yml +3 -0
  207. package/examples/drupal/ai_agents_agentscope/config/schema/ai_agents_agentscope.schema.yml +14 -0
  208. package/examples/drupal/ai_agents_agentscope/src/AgentScopeRuntime.php +11 -0
  209. package/examples/drupal/ai_agents_agentscope/src/Plugin/AiAgent/AgentScopeAgent.php +10 -0
  210. package/examples/drupal/ai_agents_agentscope/src/Plugin/AiProvider/AgentScopeProvider.php +217 -0
  211. package/examples/drupal/ai_agents_agentscope/src/Plugin/Derivative/AgentScopeDeriver.php +10 -0
  212. package/examples/drupal/ai_agents_agentscope/src/Service/AgentScopeAdapter.php +9 -0
  213. package/examples/drupal/content-moderator.ossa.yaml +1 -1
  214. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -1
  215. package/examples/export/langchain/production-agent-with-memory/agent.ossa.yaml +1 -1
  216. package/examples/export/langchain/production-agent-with-tools/agent.ossa.yaml +1 -1
  217. package/examples/extensions/agents-md-advanced.yml +1 -1
  218. package/examples/extensions/agents-md-basic.yml +1 -1
  219. package/examples/extensions/agents-md-sync.yml +1 -1
  220. package/examples/extensions/agents-md-v1.yml +1 -1
  221. package/examples/extensions/drupal-v1.yml +1 -1
  222. package/examples/extensions/encryption-multi-provider.yaml +4 -4
  223. package/examples/extensions/kagent-v1.yml +1 -1
  224. package/examples/extensions/knowledge-sources.yaml +1 -1
  225. package/examples/extensions/mcp-full-featured.yaml +1 -1
  226. package/examples/getting-started/01-minimal-agent.ossa.yaml +1 -1
  227. package/examples/getting-started/02-agent-with-tools.ossa.yaml +1 -1
  228. package/examples/getting-started/03-agent-with-safety.ossa.yaml +1 -1
  229. package/examples/getting-started/04-agent-with-messaging.ossa.yaml +1 -1
  230. package/examples/getting-started/05-workflow-composition.ossa.yaml +1 -1
  231. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  232. package/examples/gitlab-agents/daily-code-scan/.gitlab-ci.yml +2 -2
  233. package/examples/gitlab-agents/duo-comment-responder/.gitlab-ci.yml +2 -2
  234. package/examples/gitlab-agents/mr-reviewer/.gitlab-ci.yml +2 -2
  235. package/examples/gitlab-agents/pipeline-auto-fix/.gitlab-ci.yml +2 -2
  236. package/examples/gitlab-agents/pre-commit-quality-check/.gitlab-ci.yml +2 -2
  237. package/examples/gitlab-agents/pre-push-validation/.gitlab-ci.yml +2 -2
  238. package/examples/hierarchical-agent.ossa.yaml +1 -1
  239. package/examples/infrastructure/token-rotation/manifest.ossa.yaml +1 -1
  240. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +1 -1
  241. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  242. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  243. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  244. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -1
  245. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  246. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  247. package/examples/knowledge-graph/drupal-agent-with-kg.ossa.yaml +1 -1
  248. package/examples/mcp/browser-puppeteer.ossa.yaml +1 -1
  249. package/examples/mcp/database-mcp.ossa.yaml +1 -1
  250. package/examples/mcp/filesystem-mcp.ossa.yaml +1 -1
  251. package/examples/messaging/dependency-healer.ossa.yaml +1 -1
  252. package/examples/messaging/incident-responder.ossa.yaml +1 -1
  253. package/examples/messaging/routing-rules.ossa.yaml +1 -1
  254. package/examples/messaging/security-scanner.ossa.yaml +1 -1
  255. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  256. package/examples/migrations/langchain/01-python-react-agent-after.ossa.yaml +1 -1
  257. package/examples/migrations/langchain/02-typescript-conversational-after.ossa.yaml +1 -1
  258. package/examples/migrations/langchain/03-sequential-chain-after.ossa.yaml +1 -1
  259. package/examples/migrations/langchain/04-config-based-after.ossa.yaml +1 -1
  260. package/examples/migrations/swarm-to-ossa/after-handoffs.ossa.yaml +6 -6
  261. package/examples/migrations/swarm-to-ossa/after-triage-agent.ossa.yaml +3 -3
  262. package/examples/mr-reviewer-with-governance.ossa.yaml +1 -1
  263. package/examples/multi-agent/conditional-router.ossa.yaml +1 -1
  264. package/examples/multi-agent/parallel-execution.ossa.yaml +1 -1
  265. package/examples/multi-agent/sequential-pipeline.ossa.yaml +1 -1
  266. package/examples/multi-agent-research-workflow.ossa.yaml +1 -1
  267. package/examples/multi-platform/single-manifest/agent.ossa.yaml +1 -1
  268. package/examples/observability/activity-stream-full.yaml +1 -1
  269. package/examples/openai/basic-agent.ossa.yaml +1 -1
  270. package/examples/ossa-templates/01-code-assistant.ossa.yaml +1 -1
  271. package/examples/ossa-templates/02-security-scanner.ossa.yaml +1 -1
  272. package/examples/ossa-templates/03-ci-pipeline.ossa.yaml +1 -1
  273. package/examples/ossa-templates/04-code-reviewer.ossa.yaml +1 -1
  274. package/examples/ossa-templates/05-doc-generator.ossa.yaml +1 -1
  275. package/examples/ossa-templates/06-compliance-validator.ossa.yaml +1 -1
  276. package/examples/ossa-templates/07-workflow-orchestrator.ossa.yaml +1 -1
  277. package/examples/ossa-templates/08-content-writer.ossa.yaml +1 -1
  278. package/examples/ossa-templates/09-test-generator.ossa.yaml +1 -1
  279. package/examples/ossa-templates/10-data-transformer.ossa.yaml +1 -1
  280. package/examples/ossa-templates/11-react-performance-expert.ossa.yaml +1 -1
  281. package/examples/ossa-templates/12-typescript-type-safety-expert.ossa.yaml +1 -1
  282. package/examples/ossa-templates/13-accessibility-champion.ossa.yaml +1 -1
  283. package/examples/ossa-templates/14-security-hardening-agent.ossa.yaml +1 -1
  284. package/examples/pipeline-agent.ossa.yaml +1 -1
  285. package/examples/production/document-analyzer-openai.yml +1 -1
  286. package/examples/production-ready/01-customer-support-bot/agent.ossa.yaml +1 -1
  287. package/examples/production-ready/02-code-review-agent/agent.ossa.yaml +1 -1
  288. package/examples/production-ready/03-data-analysis-agent/agent.ossa.yaml +1 -1
  289. package/examples/production-ready/04-content-moderator/agent.ossa.yaml +1 -1
  290. package/examples/production-ready/05-sales-assistant/agent.ossa.yaml +1 -1
  291. package/examples/production-ready/06-devops-agent/agent.ossa.yaml +1 -1
  292. package/examples/production-ready/07-research-assistant/agent.ossa.yaml +1 -1
  293. package/examples/production-ready/08-email-triage-agent/agent.ossa.yaml +1 -1
  294. package/examples/production-ready/09-security-scanner/agent.ossa.yaml +1 -1
  295. package/examples/production-ready/10-meeting-assistant/agent.ossa.yaml +1 -1
  296. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  297. package/examples/real-world/gitlab-cicd-optimizer.ossa.yaml +1 -1
  298. package/examples/real-world/rag-documentation-assistant.ossa.yaml +1 -1
  299. package/examples/registry/agents/code-reviewer/agent.yaml +1 -1
  300. package/examples/registry/agents/security-scanner/agent.yaml +1 -1
  301. package/examples/runtime-adapters/bedrock-claude-example.ossa.yaml +1 -1
  302. package/examples/schema/reusable-components.yaml +1 -1
  303. package/examples/showcase/ci-pipeline.ossa.yaml +1 -1
  304. package/examples/showcase/code-assistant.ossa.yaml +1 -1
  305. package/examples/showcase/code-reviewer.ossa.yaml +1 -1
  306. package/examples/showcase/compliance-checker.ossa.yaml +1 -1
  307. package/examples/showcase/compliance-validator.ossa.yaml +1 -1
  308. package/examples/showcase/content-writer.ossa.yaml +1 -1
  309. package/examples/showcase/customer-support.ossa.yaml +1 -1
  310. package/examples/showcase/data-processing-pipeline.ossa.yaml +1 -1
  311. package/examples/showcase/data-transformer.ossa.yaml +1 -1
  312. package/examples/showcase/doc-generator.ossa.yaml +1 -1
  313. package/examples/showcase/full-power-agent.ossa.yaml +1 -1
  314. package/examples/showcase/security-scanner-enhanced.ossa.yaml +1 -1
  315. package/examples/showcase/security-scanner.ossa.yaml +1 -1
  316. package/examples/showcase/team-leader.ossa.yaml +1 -1
  317. package/examples/showcase/test-generator.ossa.yaml +1 -1
  318. package/examples/showcase/workflow-orchestrator.ossa.yaml +1 -1
  319. package/examples/skills-example.ossa.yaml +1 -1
  320. package/examples/swarm-agent.ossa.yaml +1 -1
  321. package/examples/tasks/batch-email-sender.yaml +1 -1
  322. package/examples/tasks/data-transform.yaml +1 -1
  323. package/examples/tasks/publish-content.yaml +1 -1
  324. package/examples/team-agent.ossa.yaml +1 -1
  325. package/examples/templates/ossa-compliance.yaml +1 -1
  326. package/examples/unified/security-scanner.ossa.yaml +1 -1
  327. package/examples/workflows/batch-email-campaign.yaml +1 -1
  328. package/examples/workflows/content-review-publish.yaml +1 -1
  329. package/examples/workflows/simple-etl.yaml +1 -1
  330. package/openapi/agent-communication.yaml +12 -12
  331. package/openapi/marketplace-plugin.openapi.yaml +1 -1
  332. package/openapi/protocols/sse-streams.yaml +3 -3
  333. package/openapi/protocols/websocket-events.yaml +3 -3
  334. package/openapi/uadp-asyncapi.yaml +1 -1
  335. package/openapi/uadp-openapi.yaml +99 -5
  336. package/package.json +9 -16
  337. package/spec/reference/reference-agents/compliance-auditor/manifest.ossa.yaml +1 -1
  338. package/spec/reference/reference-agents/doc-agent/manifest.ossa.yaml +1 -1
  339. package/spec/reference/reference-agents/mr-reviewer/manifest.ossa.yaml +1 -1
  340. package/spec/reference/reference-agents/ossa-validator-v0.3/manifest.ossa.yaml +1 -1
  341. package/spec/reference/reference-agents/pipeline-fixer/manifest.ossa.yaml +1 -1
  342. package/spec/reference/reference-agents/release-orchestrator/manifest.ossa.yaml +1 -1
  343. package/spec/uadp/README.md +393 -0
  344. package/spec/uadp/openapi.yaml +387 -0
  345. package/spec/uadp/schemas/uadp-agents-response.schema.json +68 -0
  346. package/spec/uadp/schemas/uadp-federation-response.schema.json +46 -0
  347. package/spec/uadp/schemas/uadp-manifest.schema.json +82 -0
  348. package/spec/uadp/schemas/uadp-skills-response.schema.json +72 -0
  349. package/spec/v0.4/agent-card.schema.json +3 -3
  350. package/spec/v0.4/agent.schema.json +84 -15
  351. package/spec/v0.4/extensions/a2a/a2a.schema.json +2 -2
  352. package/spec/v0.4/extensions/ag2/ag2.schema.json +1 -1
  353. package/spec/v0.4/extensions/crewai/crewai.schema.json +1 -1
  354. package/spec/v0.4/extensions/kagent/kagent.schema.json +1 -1
  355. package/spec/v0.4/extensions/langchain/langchain.schema.json +1 -1
  356. package/spec/v0.4/extensions/langgraph/langgraph.schema.json +1 -1
  357. package/spec/v0.4/extensions/mcp/mcp.schema.json +1 -1
  358. package/spec/v0.5/agent-card.schema.json +477 -0
  359. package/spec/v0.5/agent.schema.json +1626 -0
  360. package/spec/v0.5/conformance/profiles/baseline.json +19 -0
  361. package/spec/v0.5/conformance/profiles/enterprise.json +20 -0
  362. package/spec/v0.5/extensions/a2a/README.md +193 -0
  363. package/spec/v0.5/extensions/a2a/a2a.schema.json +77 -0
  364. package/spec/v0.5/extensions/ag2/ag2.schema.json +277 -0
  365. package/spec/v0.5/extensions/cognition/cognition.schema.json +94 -0
  366. package/spec/v0.5/extensions/cognition/thought-node.schema.json +80 -0
  367. package/spec/v0.5/extensions/crewai/crewai.schema.json +256 -0
  368. package/spec/v0.5/extensions/drupal/drupal.schema.json +318 -0
  369. package/spec/v0.5/extensions/evals/evals.schema.json +597 -0
  370. package/spec/v0.5/extensions/governance/governance-extension.yaml +161 -0
  371. package/spec/v0.5/extensions/identity/identity.schema.json +302 -0
  372. package/spec/v0.5/extensions/kagent/README.md +315 -0
  373. package/spec/v0.5/extensions/kagent/kagent.schema.json +624 -0
  374. package/spec/v0.5/extensions/langchain/langchain.schema.json +243 -0
  375. package/spec/v0.5/extensions/langgraph/langgraph.schema.json +211 -0
  376. package/spec/v0.5/extensions/mcp/README.md +276 -0
  377. package/spec/v0.5/extensions/mcp/mcp.schema.json +84 -0
  378. package/spec/v0.5/extensions/memory/memory.schema.json +7 -0
  379. package/spec/v0.5/extensions/team/team.schema.json +304 -0
  380. package/spec/v0.5/extensions/token-efficiency/token-efficiency.schema.json +47 -0
  381. package/spec/v0.5/mcp.schema.json +1 -0
  382. package/spec/v0.5/skill.schema.json +1 -0
  383. package/spec/v0.5/validator.schema.json +282 -0
  384. package/templates/agent-types/claude-agent.ossa.yaml +1 -1
  385. package/templates/agent-types/kagent.ossa.yaml +1 -1
  386. package/templates/agent-types/langchain-agent.ossa.yaml +1 -1
  387. package/templates/agent-types/openapi-agent.ossa.yaml +1 -1
  388. package/templates/agent-types/swarm-agents.ossa.yaml +1 -1
  389. package/templates/ci-cd/gitlab-ci.deploy.yml +2 -2
  390. package/templates/validators/capability-compatibility.ossa.yaml +1 -1
  391. package/templates/validators/coordination-consistency.ossa.yaml +1 -1
  392. package/templates/validators/pattern-requirements.ossa.yaml +1 -1
  393. package/templates/validators/transport-compatibility.ossa.yaml +1 -1
  394. package/node_modules/ajv/.runkit_example.js +0 -23
  395. package/node_modules/ajv/LICENSE +0 -22
  396. package/node_modules/ajv/README.md +0 -207
  397. package/node_modules/ajv/dist/2019.d.ts +0 -19
  398. package/node_modules/ajv/dist/2019.js +0 -61
  399. package/node_modules/ajv/dist/2019.js.map +0 -1
  400. package/node_modules/ajv/dist/2020.d.ts +0 -19
  401. package/node_modules/ajv/dist/2020.js +0 -55
  402. package/node_modules/ajv/dist/2020.js.map +0 -1
  403. package/node_modules/ajv/dist/ajv.d.ts +0 -18
  404. package/node_modules/ajv/dist/ajv.js +0 -50
  405. package/node_modules/ajv/dist/ajv.js.map +0 -1
  406. package/node_modules/ajv/dist/compile/codegen/code.d.ts +0 -40
  407. package/node_modules/ajv/dist/compile/codegen/code.js +0 -156
  408. package/node_modules/ajv/dist/compile/codegen/code.js.map +0 -1
  409. package/node_modules/ajv/dist/compile/codegen/index.d.ts +0 -79
  410. package/node_modules/ajv/dist/compile/codegen/index.js +0 -697
  411. package/node_modules/ajv/dist/compile/codegen/index.js.map +0 -1
  412. package/node_modules/ajv/dist/compile/codegen/scope.d.ts +0 -79
  413. package/node_modules/ajv/dist/compile/codegen/scope.js +0 -143
  414. package/node_modules/ajv/dist/compile/codegen/scope.js.map +0 -1
  415. package/node_modules/ajv/dist/compile/errors.d.ts +0 -13
  416. package/node_modules/ajv/dist/compile/errors.js +0 -123
  417. package/node_modules/ajv/dist/compile/errors.js.map +0 -1
  418. package/node_modules/ajv/dist/compile/index.d.ts +0 -80
  419. package/node_modules/ajv/dist/compile/index.js +0 -242
  420. package/node_modules/ajv/dist/compile/index.js.map +0 -1
  421. package/node_modules/ajv/dist/compile/jtd/parse.d.ts +0 -4
  422. package/node_modules/ajv/dist/compile/jtd/parse.js +0 -350
  423. package/node_modules/ajv/dist/compile/jtd/parse.js.map +0 -1
  424. package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +0 -4
  425. package/node_modules/ajv/dist/compile/jtd/serialize.js +0 -236
  426. package/node_modules/ajv/dist/compile/jtd/serialize.js.map +0 -1
  427. package/node_modules/ajv/dist/compile/jtd/types.d.ts +0 -6
  428. package/node_modules/ajv/dist/compile/jtd/types.js +0 -14
  429. package/node_modules/ajv/dist/compile/jtd/types.js.map +0 -1
  430. package/node_modules/ajv/dist/compile/names.d.ts +0 -20
  431. package/node_modules/ajv/dist/compile/names.js +0 -28
  432. package/node_modules/ajv/dist/compile/names.js.map +0 -1
  433. package/node_modules/ajv/dist/compile/ref_error.d.ts +0 -6
  434. package/node_modules/ajv/dist/compile/ref_error.js +0 -12
  435. package/node_modules/ajv/dist/compile/ref_error.js.map +0 -1
  436. package/node_modules/ajv/dist/compile/resolve.d.ts +0 -12
  437. package/node_modules/ajv/dist/compile/resolve.js +0 -155
  438. package/node_modules/ajv/dist/compile/resolve.js.map +0 -1
  439. package/node_modules/ajv/dist/compile/rules.d.ts +0 -28
  440. package/node_modules/ajv/dist/compile/rules.js +0 -26
  441. package/node_modules/ajv/dist/compile/rules.js.map +0 -1
  442. package/node_modules/ajv/dist/compile/util.d.ts +0 -40
  443. package/node_modules/ajv/dist/compile/util.js +0 -178
  444. package/node_modules/ajv/dist/compile/util.js.map +0 -1
  445. package/node_modules/ajv/dist/compile/validate/applicability.d.ts +0 -6
  446. package/node_modules/ajv/dist/compile/validate/applicability.js +0 -19
  447. package/node_modules/ajv/dist/compile/validate/applicability.js.map +0 -1
  448. package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +0 -4
  449. package/node_modules/ajv/dist/compile/validate/boolSchema.js +0 -50
  450. package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +0 -1
  451. package/node_modules/ajv/dist/compile/validate/dataType.d.ts +0 -17
  452. package/node_modules/ajv/dist/compile/validate/dataType.js +0 -203
  453. package/node_modules/ajv/dist/compile/validate/dataType.js.map +0 -1
  454. package/node_modules/ajv/dist/compile/validate/defaults.d.ts +0 -2
  455. package/node_modules/ajv/dist/compile/validate/defaults.js +0 -35
  456. package/node_modules/ajv/dist/compile/validate/defaults.js.map +0 -1
  457. package/node_modules/ajv/dist/compile/validate/index.d.ts +0 -42
  458. package/node_modules/ajv/dist/compile/validate/index.js +0 -520
  459. package/node_modules/ajv/dist/compile/validate/index.js.map +0 -1
  460. package/node_modules/ajv/dist/compile/validate/keyword.d.ts +0 -8
  461. package/node_modules/ajv/dist/compile/validate/keyword.js +0 -124
  462. package/node_modules/ajv/dist/compile/validate/keyword.js.map +0 -1
  463. package/node_modules/ajv/dist/compile/validate/subschema.d.ts +0 -47
  464. package/node_modules/ajv/dist/compile/validate/subschema.js +0 -81
  465. package/node_modules/ajv/dist/compile/validate/subschema.js.map +0 -1
  466. package/node_modules/ajv/dist/core.d.ts +0 -174
  467. package/node_modules/ajv/dist/core.js +0 -618
  468. package/node_modules/ajv/dist/core.js.map +0 -1
  469. package/node_modules/ajv/dist/jtd.d.ts +0 -47
  470. package/node_modules/ajv/dist/jtd.js +0 -72
  471. package/node_modules/ajv/dist/jtd.js.map +0 -1
  472. package/node_modules/ajv/dist/refs/data.json +0 -13
  473. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +0 -2
  474. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +0 -28
  475. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +0 -1
  476. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +0 -53
  477. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +0 -17
  478. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +0 -57
  479. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +0 -14
  480. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +0 -37
  481. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +0 -90
  482. package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +0 -39
  483. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +0 -2
  484. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +0 -30
  485. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +0 -1
  486. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +0 -48
  487. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +0 -17
  488. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +0 -51
  489. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
  490. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +0 -37
  491. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
  492. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +0 -90
  493. package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +0 -55
  494. package/node_modules/ajv/dist/refs/json-schema-draft-06.json +0 -137
  495. package/node_modules/ajv/dist/refs/json-schema-draft-07.json +0 -151
  496. package/node_modules/ajv/dist/refs/json-schema-secure.json +0 -88
  497. package/node_modules/ajv/dist/refs/jtd-schema.d.ts +0 -3
  498. package/node_modules/ajv/dist/refs/jtd-schema.js +0 -118
  499. package/node_modules/ajv/dist/refs/jtd-schema.js.map +0 -1
  500. package/node_modules/ajv/dist/runtime/equal.d.ts +0 -6
  501. package/node_modules/ajv/dist/runtime/equal.js +0 -7
  502. package/node_modules/ajv/dist/runtime/equal.js.map +0 -1
  503. package/node_modules/ajv/dist/runtime/parseJson.d.ts +0 -18
  504. package/node_modules/ajv/dist/runtime/parseJson.js +0 -185
  505. package/node_modules/ajv/dist/runtime/parseJson.js.map +0 -1
  506. package/node_modules/ajv/dist/runtime/quote.d.ts +0 -5
  507. package/node_modules/ajv/dist/runtime/quote.js +0 -30
  508. package/node_modules/ajv/dist/runtime/quote.js.map +0 -1
  509. package/node_modules/ajv/dist/runtime/re2.d.ts +0 -6
  510. package/node_modules/ajv/dist/runtime/re2.js +0 -6
  511. package/node_modules/ajv/dist/runtime/re2.js.map +0 -1
  512. package/node_modules/ajv/dist/runtime/timestamp.d.ts +0 -5
  513. package/node_modules/ajv/dist/runtime/timestamp.js +0 -42
  514. package/node_modules/ajv/dist/runtime/timestamp.js.map +0 -1
  515. package/node_modules/ajv/dist/runtime/ucs2length.d.ts +0 -5
  516. package/node_modules/ajv/dist/runtime/ucs2length.js +0 -24
  517. package/node_modules/ajv/dist/runtime/ucs2length.js.map +0 -1
  518. package/node_modules/ajv/dist/runtime/uri.d.ts +0 -6
  519. package/node_modules/ajv/dist/runtime/uri.js +0 -6
  520. package/node_modules/ajv/dist/runtime/uri.js.map +0 -1
  521. package/node_modules/ajv/dist/runtime/validation_error.d.ts +0 -7
  522. package/node_modules/ajv/dist/runtime/validation_error.js +0 -11
  523. package/node_modules/ajv/dist/runtime/validation_error.js.map +0 -1
  524. package/node_modules/ajv/dist/standalone/index.d.ts +0 -6
  525. package/node_modules/ajv/dist/standalone/index.js +0 -90
  526. package/node_modules/ajv/dist/standalone/index.js.map +0 -1
  527. package/node_modules/ajv/dist/standalone/instance.d.ts +0 -12
  528. package/node_modules/ajv/dist/standalone/instance.js +0 -35
  529. package/node_modules/ajv/dist/standalone/instance.js.map +0 -1
  530. package/node_modules/ajv/dist/types/index.d.ts +0 -183
  531. package/node_modules/ajv/dist/types/index.js +0 -3
  532. package/node_modules/ajv/dist/types/index.js.map +0 -1
  533. package/node_modules/ajv/dist/types/json-schema.d.ts +0 -125
  534. package/node_modules/ajv/dist/types/json-schema.js +0 -3
  535. package/node_modules/ajv/dist/types/json-schema.js.map +0 -1
  536. package/node_modules/ajv/dist/types/jtd-schema.d.ts +0 -174
  537. package/node_modules/ajv/dist/types/jtd-schema.js +0 -3
  538. package/node_modules/ajv/dist/types/jtd-schema.js.map +0 -1
  539. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +0 -8
  540. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +0 -49
  541. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +0 -1
  542. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +0 -6
  543. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +0 -106
  544. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +0 -1
  545. package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +0 -3
  546. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +0 -23
  547. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +0 -1
  548. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +0 -4
  549. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +0 -12
  550. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +0 -1
  551. package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +0 -7
  552. package/node_modules/ajv/dist/vocabularies/applicator/contains.js +0 -95
  553. package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +0 -1
  554. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +0 -21
  555. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +0 -85
  556. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +0 -1
  557. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +0 -3
  558. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +0 -11
  559. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +0 -1
  560. package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +0 -6
  561. package/node_modules/ajv/dist/vocabularies/applicator/if.js +0 -66
  562. package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +0 -1
  563. package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +0 -13
  564. package/node_modules/ajv/dist/vocabularies/applicator/index.js +0 -44
  565. package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +0 -1
  566. package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +0 -5
  567. package/node_modules/ajv/dist/vocabularies/applicator/items.js +0 -52
  568. package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +0 -1
  569. package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +0 -6
  570. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +0 -30
  571. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +0 -1
  572. package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +0 -4
  573. package/node_modules/ajv/dist/vocabularies/applicator/not.js +0 -26
  574. package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +0 -1
  575. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +0 -6
  576. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +0 -60
  577. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +0 -1
  578. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +0 -3
  579. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +0 -75
  580. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +0 -1
  581. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +0 -3
  582. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +0 -12
  583. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +0 -1
  584. package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +0 -3
  585. package/node_modules/ajv/dist/vocabularies/applicator/properties.js +0 -54
  586. package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +0 -1
  587. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +0 -6
  588. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +0 -38
  589. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +0 -1
  590. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +0 -3
  591. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +0 -13
  592. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +0 -1
  593. package/node_modules/ajv/dist/vocabularies/code.d.ts +0 -17
  594. package/node_modules/ajv/dist/vocabularies/code.js +0 -131
  595. package/node_modules/ajv/dist/vocabularies/code.js.map +0 -1
  596. package/node_modules/ajv/dist/vocabularies/core/id.d.ts +0 -3
  597. package/node_modules/ajv/dist/vocabularies/core/id.js +0 -10
  598. package/node_modules/ajv/dist/vocabularies/core/id.js.map +0 -1
  599. package/node_modules/ajv/dist/vocabularies/core/index.d.ts +0 -3
  600. package/node_modules/ajv/dist/vocabularies/core/index.js +0 -16
  601. package/node_modules/ajv/dist/vocabularies/core/index.js.map +0 -1
  602. package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +0 -8
  603. package/node_modules/ajv/dist/vocabularies/core/ref.js +0 -122
  604. package/node_modules/ajv/dist/vocabularies/core/ref.js.map +0 -1
  605. package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +0 -5
  606. package/node_modules/ajv/dist/vocabularies/discriminator/index.js +0 -104
  607. package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +0 -1
  608. package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +0 -10
  609. package/node_modules/ajv/dist/vocabularies/discriminator/types.js +0 -9
  610. package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +0 -1
  611. package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +0 -3
  612. package/node_modules/ajv/dist/vocabularies/draft2020.js +0 -23
  613. package/node_modules/ajv/dist/vocabularies/draft2020.js.map +0 -1
  614. package/node_modules/ajv/dist/vocabularies/draft7.d.ts +0 -3
  615. package/node_modules/ajv/dist/vocabularies/draft7.js +0 -17
  616. package/node_modules/ajv/dist/vocabularies/draft7.js.map +0 -1
  617. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +0 -5
  618. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +0 -30
  619. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +0 -1
  620. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +0 -5
  621. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +0 -51
  622. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +0 -1
  623. package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +0 -3
  624. package/node_modules/ajv/dist/vocabularies/dynamic/index.js +0 -9
  625. package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +0 -1
  626. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +0 -3
  627. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +0 -16
  628. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +0 -1
  629. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +0 -3
  630. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +0 -10
  631. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +0 -1
  632. package/node_modules/ajv/dist/vocabularies/errors.d.ts +0 -9
  633. package/node_modules/ajv/dist/vocabularies/errors.js +0 -3
  634. package/node_modules/ajv/dist/vocabularies/errors.js.map +0 -1
  635. package/node_modules/ajv/dist/vocabularies/format/format.d.ts +0 -8
  636. package/node_modules/ajv/dist/vocabularies/format/format.js +0 -92
  637. package/node_modules/ajv/dist/vocabularies/format/format.js.map +0 -1
  638. package/node_modules/ajv/dist/vocabularies/format/index.d.ts +0 -3
  639. package/node_modules/ajv/dist/vocabularies/format/index.js +0 -6
  640. package/node_modules/ajv/dist/vocabularies/format/index.js.map +0 -1
  641. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +0 -6
  642. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +0 -71
  643. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +0 -1
  644. package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +0 -5
  645. package/node_modules/ajv/dist/vocabularies/jtd/elements.js +0 -24
  646. package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +0 -1
  647. package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +0 -6
  648. package/node_modules/ajv/dist/vocabularies/jtd/enum.js +0 -43
  649. package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +0 -1
  650. package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +0 -9
  651. package/node_modules/ajv/dist/vocabularies/jtd/error.js +0 -20
  652. package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +0 -1
  653. package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +0 -10
  654. package/node_modules/ajv/dist/vocabularies/jtd/index.js +0 -29
  655. package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +0 -1
  656. package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +0 -5
  657. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +0 -25
  658. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +0 -1
  659. package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +0 -4
  660. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +0 -22
  661. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +0 -1
  662. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +0 -3
  663. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +0 -15
  664. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +0 -1
  665. package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +0 -22
  666. package/node_modules/ajv/dist/vocabularies/jtd/properties.js +0 -149
  667. package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +0 -1
  668. package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +0 -4
  669. package/node_modules/ajv/dist/vocabularies/jtd/ref.js +0 -67
  670. package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +0 -1
  671. package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +0 -10
  672. package/node_modules/ajv/dist/vocabularies/jtd/type.js +0 -69
  673. package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +0 -1
  674. package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +0 -3
  675. package/node_modules/ajv/dist/vocabularies/jtd/union.js +0 -12
  676. package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +0 -1
  677. package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +0 -5
  678. package/node_modules/ajv/dist/vocabularies/jtd/values.js +0 -51
  679. package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +0 -1
  680. package/node_modules/ajv/dist/vocabularies/metadata.d.ts +0 -3
  681. package/node_modules/ajv/dist/vocabularies/metadata.js +0 -18
  682. package/node_modules/ajv/dist/vocabularies/metadata.js.map +0 -1
  683. package/node_modules/ajv/dist/vocabularies/next.d.ts +0 -3
  684. package/node_modules/ajv/dist/vocabularies/next.js +0 -8
  685. package/node_modules/ajv/dist/vocabularies/next.js.map +0 -1
  686. package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +0 -3
  687. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +0 -7
  688. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +0 -1
  689. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +0 -6
  690. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +0 -40
  691. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +0 -1
  692. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +0 -6
  693. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +0 -65
  694. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +0 -1
  695. package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +0 -6
  696. package/node_modules/ajv/dist/vocabularies/validation/const.js +0 -25
  697. package/node_modules/ajv/dist/vocabularies/validation/const.js.map +0 -1
  698. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +0 -5
  699. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +0 -12
  700. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +0 -1
  701. package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +0 -8
  702. package/node_modules/ajv/dist/vocabularies/validation/enum.js +0 -48
  703. package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +0 -1
  704. package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +0 -16
  705. package/node_modules/ajv/dist/vocabularies/validation/index.js +0 -33
  706. package/node_modules/ajv/dist/vocabularies/validation/index.js.map +0 -1
  707. package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +0 -3
  708. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +0 -15
  709. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +0 -1
  710. package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +0 -3
  711. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +0 -24
  712. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +0 -1
  713. package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +0 -3
  714. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +0 -27
  715. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +0 -1
  716. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +0 -11
  717. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +0 -27
  718. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +0 -1
  719. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +0 -3
  720. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +0 -24
  721. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +0 -1
  722. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +0 -8
  723. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +0 -26
  724. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +0 -1
  725. package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +0 -8
  726. package/node_modules/ajv/dist/vocabularies/validation/pattern.js +0 -33
  727. package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +0 -1
  728. package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +0 -8
  729. package/node_modules/ajv/dist/vocabularies/validation/required.js +0 -79
  730. package/node_modules/ajv/dist/vocabularies/validation/required.js.map +0 -1
  731. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +0 -9
  732. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +0 -64
  733. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +0 -1
  734. package/node_modules/ajv/lib/2019.ts +0 -81
  735. package/node_modules/ajv/lib/2020.ts +0 -75
  736. package/node_modules/ajv/lib/ajv.ts +0 -70
  737. package/node_modules/ajv/lib/compile/codegen/code.ts +0 -169
  738. package/node_modules/ajv/lib/compile/codegen/index.ts +0 -852
  739. package/node_modules/ajv/lib/compile/codegen/scope.ts +0 -215
  740. package/node_modules/ajv/lib/compile/errors.ts +0 -184
  741. package/node_modules/ajv/lib/compile/index.ts +0 -324
  742. package/node_modules/ajv/lib/compile/jtd/parse.ts +0 -411
  743. package/node_modules/ajv/lib/compile/jtd/serialize.ts +0 -277
  744. package/node_modules/ajv/lib/compile/jtd/types.ts +0 -16
  745. package/node_modules/ajv/lib/compile/names.ts +0 -27
  746. package/node_modules/ajv/lib/compile/ref_error.ts +0 -13
  747. package/node_modules/ajv/lib/compile/resolve.ts +0 -149
  748. package/node_modules/ajv/lib/compile/rules.ts +0 -50
  749. package/node_modules/ajv/lib/compile/util.ts +0 -213
  750. package/node_modules/ajv/lib/compile/validate/applicability.ts +0 -22
  751. package/node_modules/ajv/lib/compile/validate/boolSchema.ts +0 -47
  752. package/node_modules/ajv/lib/compile/validate/dataType.ts +0 -230
  753. package/node_modules/ajv/lib/compile/validate/defaults.ts +0 -32
  754. package/node_modules/ajv/lib/compile/validate/index.ts +0 -582
  755. package/node_modules/ajv/lib/compile/validate/keyword.ts +0 -171
  756. package/node_modules/ajv/lib/compile/validate/subschema.ts +0 -135
  757. package/node_modules/ajv/lib/core.ts +0 -892
  758. package/node_modules/ajv/lib/jtd.ts +0 -132
  759. package/node_modules/ajv/lib/refs/data.json +0 -13
  760. package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +0 -28
  761. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +0 -53
  762. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +0 -17
  763. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +0 -57
  764. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +0 -14
  765. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +0 -37
  766. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +0 -90
  767. package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +0 -39
  768. package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +0 -30
  769. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +0 -48
  770. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +0 -17
  771. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +0 -51
  772. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
  773. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +0 -37
  774. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
  775. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +0 -90
  776. package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +0 -55
  777. package/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -137
  778. package/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -151
  779. package/node_modules/ajv/lib/refs/json-schema-secure.json +0 -88
  780. package/node_modules/ajv/lib/refs/jtd-schema.ts +0 -130
  781. package/node_modules/ajv/lib/runtime/equal.ts +0 -7
  782. package/node_modules/ajv/lib/runtime/parseJson.ts +0 -177
  783. package/node_modules/ajv/lib/runtime/quote.ts +0 -31
  784. package/node_modules/ajv/lib/runtime/re2.ts +0 -6
  785. package/node_modules/ajv/lib/runtime/timestamp.ts +0 -46
  786. package/node_modules/ajv/lib/runtime/ucs2length.ts +0 -20
  787. package/node_modules/ajv/lib/runtime/uri.ts +0 -6
  788. package/node_modules/ajv/lib/runtime/validation_error.ts +0 -13
  789. package/node_modules/ajv/lib/standalone/index.ts +0 -100
  790. package/node_modules/ajv/lib/standalone/instance.ts +0 -36
  791. package/node_modules/ajv/lib/types/index.ts +0 -244
  792. package/node_modules/ajv/lib/types/json-schema.ts +0 -187
  793. package/node_modules/ajv/lib/types/jtd-schema.ts +0 -273
  794. package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +0 -56
  795. package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +0 -118
  796. package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +0 -22
  797. package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +0 -14
  798. package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +0 -109
  799. package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +0 -112
  800. package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +0 -11
  801. package/node_modules/ajv/lib/vocabularies/applicator/if.ts +0 -80
  802. package/node_modules/ajv/lib/vocabularies/applicator/index.ts +0 -53
  803. package/node_modules/ajv/lib/vocabularies/applicator/items.ts +0 -59
  804. package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +0 -36
  805. package/node_modules/ajv/lib/vocabularies/applicator/not.ts +0 -38
  806. package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +0 -82
  807. package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +0 -91
  808. package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +0 -12
  809. package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +0 -57
  810. package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +0 -50
  811. package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +0 -13
  812. package/node_modules/ajv/lib/vocabularies/code.ts +0 -168
  813. package/node_modules/ajv/lib/vocabularies/core/id.ts +0 -10
  814. package/node_modules/ajv/lib/vocabularies/core/index.ts +0 -16
  815. package/node_modules/ajv/lib/vocabularies/core/ref.ts +0 -129
  816. package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +0 -113
  817. package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +0 -12
  818. package/node_modules/ajv/lib/vocabularies/draft2020.ts +0 -23
  819. package/node_modules/ajv/lib/vocabularies/draft7.ts +0 -17
  820. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +0 -31
  821. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +0 -51
  822. package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +0 -9
  823. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +0 -14
  824. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +0 -10
  825. package/node_modules/ajv/lib/vocabularies/errors.ts +0 -18
  826. package/node_modules/ajv/lib/vocabularies/format/format.ts +0 -120
  827. package/node_modules/ajv/lib/vocabularies/format/index.ts +0 -6
  828. package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +0 -89
  829. package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +0 -32
  830. package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +0 -45
  831. package/node_modules/ajv/lib/vocabularies/jtd/error.ts +0 -23
  832. package/node_modules/ajv/lib/vocabularies/jtd/index.ts +0 -37
  833. package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +0 -24
  834. package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +0 -21
  835. package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +0 -15
  836. package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +0 -184
  837. package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +0 -76
  838. package/node_modules/ajv/lib/vocabularies/jtd/type.ts +0 -75
  839. package/node_modules/ajv/lib/vocabularies/jtd/union.ts +0 -12
  840. package/node_modules/ajv/lib/vocabularies/jtd/values.ts +0 -58
  841. package/node_modules/ajv/lib/vocabularies/metadata.ts +0 -17
  842. package/node_modules/ajv/lib/vocabularies/next.ts +0 -8
  843. package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +0 -7
  844. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +0 -47
  845. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +0 -85
  846. package/node_modules/ajv/lib/vocabularies/validation/const.ts +0 -28
  847. package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +0 -23
  848. package/node_modules/ajv/lib/vocabularies/validation/enum.ts +0 -54
  849. package/node_modules/ajv/lib/vocabularies/validation/index.ts +0 -49
  850. package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +0 -16
  851. package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +0 -26
  852. package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +0 -30
  853. package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +0 -42
  854. package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +0 -26
  855. package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +0 -34
  856. package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +0 -39
  857. package/node_modules/ajv/lib/vocabularies/validation/required.ts +0 -98
  858. package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +0 -79
  859. package/node_modules/ajv/package.json +0 -127
  860. package/node_modules/ajv-formats/LICENSE +0 -21
  861. package/node_modules/ajv-formats/README.md +0 -125
  862. package/node_modules/ajv-formats/dist/formats.d.ts +0 -9
  863. package/node_modules/ajv-formats/dist/formats.js +0 -208
  864. package/node_modules/ajv-formats/dist/formats.js.map +0 -1
  865. package/node_modules/ajv-formats/dist/index.d.ts +0 -15
  866. package/node_modules/ajv-formats/dist/index.js +0 -37
  867. package/node_modules/ajv-formats/dist/index.js.map +0 -1
  868. package/node_modules/ajv-formats/dist/limit.d.ts +0 -10
  869. package/node_modules/ajv-formats/dist/limit.js +0 -69
  870. package/node_modules/ajv-formats/dist/limit.js.map +0 -1
  871. package/node_modules/ajv-formats/package.json +0 -74
  872. package/node_modules/ajv-formats/src/formats.ts +0 -269
  873. package/node_modules/ajv-formats/src/index.ts +0 -62
  874. package/node_modules/ajv-formats/src/limit.ts +0 -99
  875. package/node_modules/fast-deep-equal/LICENSE +0 -21
  876. package/node_modules/fast-deep-equal/README.md +0 -96
  877. package/node_modules/fast-deep-equal/es6/index.d.ts +0 -2
  878. package/node_modules/fast-deep-equal/es6/index.js +0 -72
  879. package/node_modules/fast-deep-equal/es6/react.d.ts +0 -2
  880. package/node_modules/fast-deep-equal/es6/react.js +0 -79
  881. package/node_modules/fast-deep-equal/index.d.ts +0 -4
  882. package/node_modules/fast-deep-equal/index.js +0 -46
  883. package/node_modules/fast-deep-equal/package.json +0 -61
  884. package/node_modules/fast-deep-equal/react.d.ts +0 -2
  885. package/node_modules/fast-deep-equal/react.js +0 -53
  886. package/node_modules/fast-uri/.gitattributes +0 -2
  887. package/node_modules/fast-uri/.github/.stale.yml +0 -21
  888. package/node_modules/fast-uri/.github/dependabot.yml +0 -13
  889. package/node_modules/fast-uri/.github/tests_checker.yml +0 -8
  890. package/node_modules/fast-uri/.github/workflows/ci.yml +0 -101
  891. package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +0 -24
  892. package/node_modules/fast-uri/LICENSE +0 -32
  893. package/node_modules/fast-uri/README.md +0 -143
  894. package/node_modules/fast-uri/benchmark/benchmark.mjs +0 -159
  895. package/node_modules/fast-uri/benchmark/equal.mjs +0 -51
  896. package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +0 -22
  897. package/node_modules/fast-uri/benchmark/package.json +0 -17
  898. package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +0 -24
  899. package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +0 -65
  900. package/node_modules/fast-uri/eslint.config.js +0 -6
  901. package/node_modules/fast-uri/index.js +0 -340
  902. package/node_modules/fast-uri/lib/schemes.js +0 -267
  903. package/node_modules/fast-uri/lib/utils.js +0 -336
  904. package/node_modules/fast-uri/package.json +0 -69
  905. package/node_modules/fast-uri/test/ajv.test.js +0 -43
  906. package/node_modules/fast-uri/test/equal.test.js +0 -108
  907. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +0 -501
  908. package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +0 -120
  909. package/node_modules/fast-uri/test/parse.test.js +0 -318
  910. package/node_modules/fast-uri/test/resolve.test.js +0 -78
  911. package/node_modules/fast-uri/test/rfc-3986.test.js +0 -90
  912. package/node_modules/fast-uri/test/serialize.test.js +0 -151
  913. package/node_modules/fast-uri/test/uri-js-compatibility.test.js +0 -33
  914. package/node_modules/fast-uri/test/uri-js.test.js +0 -912
  915. package/node_modules/fast-uri/test/util.test.js +0 -38
  916. package/node_modules/fast-uri/tsconfig.json +0 -9
  917. package/node_modules/fast-uri/types/index.d.ts +0 -60
  918. package/node_modules/fast-uri/types/index.test-d.ts +0 -17
  919. package/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
  920. package/node_modules/json-schema-traverse/.github/FUNDING.yml +0 -2
  921. package/node_modules/json-schema-traverse/.github/workflows/build.yml +0 -28
  922. package/node_modules/json-schema-traverse/.github/workflows/publish.yml +0 -27
  923. package/node_modules/json-schema-traverse/LICENSE +0 -21
  924. package/node_modules/json-schema-traverse/README.md +0 -95
  925. package/node_modules/json-schema-traverse/index.d.ts +0 -40
  926. package/node_modules/json-schema-traverse/index.js +0 -93
  927. package/node_modules/json-schema-traverse/package.json +0 -43
  928. package/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
  929. package/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
  930. package/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
  931. package/node_modules/require-from-string/index.js +0 -34
  932. package/node_modules/require-from-string/license +0 -21
  933. package/node_modules/require-from-string/package.json +0 -28
  934. package/node_modules/require-from-string/readme.md +0 -56
@@ -1,912 +0,0 @@
1
- 'use strict'
2
-
3
- const test = require('tape')
4
- const fastURI = require('..')
5
-
6
- /**
7
- * URI.js
8
- *
9
- * @fileoverview An RFC 3986 compliant, scheme extendable URI parsing/normalizing/resolving/serializing library for JavaScript.
10
- * @author <a href="mailto:gary.court@gmail.com">Gary Court</a>
11
- * @see http://github.com/garycourt/uri-js
12
- */
13
-
14
- /**
15
- * Copyright 2011 Gary Court. All rights reserved.
16
- *
17
- * Redistribution and use in source and binary forms, with or without modification, are
18
- * permitted provided that the following conditions are met:
19
- *
20
- * 1. Redistributions of source code must retain the above copyright notice, this list of
21
- * conditions and the following disclaimer.
22
- *
23
- * 2. Redistributions in binary form must reproduce the above copyright notice, this list
24
- * of conditions and the following disclaimer in the documentation and/or other materials
25
- * provided with the distribution.
26
- *
27
- * THIS SOFTWARE IS PROVIDED BY GARY COURT ``AS IS'' AND ANY EXPRESS OR IMPLIED
28
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
29
- * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR
30
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
32
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
33
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
35
- * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
- *
37
- * The views and conclusions contained in the software and documentation are those of the
38
- * authors and should not be interpreted as representing official policies, either expressed
39
- * or implied, of Gary Court.
40
- */
41
-
42
- test('Acquire URI', (t) => {
43
- t.ok(fastURI)
44
- t.end()
45
- })
46
-
47
- test('URI Parsing', (t) => {
48
- let components
49
-
50
- // scheme
51
- components = fastURI.parse('uri:')
52
- t.equal(components.error, undefined, 'scheme errors')
53
- t.equal(components.scheme, 'uri', 'scheme')
54
- t.equal(components.userinfo, undefined, 'userinfo')
55
- t.equal(components.host, undefined, 'host')
56
- t.equal(components.port, undefined, 'port')
57
- t.equal(components.path, '', 'path')
58
- t.equal(components.query, undefined, 'query')
59
- t.equal(components.fragment, undefined, 'fragment')
60
-
61
- // userinfo
62
- components = fastURI.parse('//@')
63
- t.equal(components.error, undefined, 'userinfo errors')
64
- t.equal(components.scheme, undefined, 'scheme')
65
- t.equal(components.userinfo, '', 'userinfo')
66
- t.equal(components.host, '', 'host')
67
- t.equal(components.port, undefined, 'port')
68
- t.equal(components.path, '', 'path')
69
- t.equal(components.query, undefined, 'query')
70
- t.equal(components.fragment, undefined, 'fragment')
71
-
72
- // host
73
- components = fastURI.parse('//')
74
- t.equal(components.error, undefined, 'host errors')
75
- t.equal(components.scheme, undefined, 'scheme')
76
- t.equal(components.userinfo, undefined, 'userinfo')
77
- t.equal(components.host, '', 'host')
78
- t.equal(components.port, undefined, 'port')
79
- t.equal(components.path, '', 'path')
80
- t.equal(components.query, undefined, 'query')
81
- t.equal(components.fragment, undefined, 'fragment')
82
-
83
- // port
84
- components = fastURI.parse('//:')
85
- t.equal(components.error, undefined, 'port errors')
86
- t.equal(components.scheme, undefined, 'scheme')
87
- t.equal(components.userinfo, undefined, 'userinfo')
88
- t.equal(components.host, '', 'host')
89
- t.equal(components.port, '', 'port')
90
- t.equal(components.path, '', 'path')
91
- t.equal(components.query, undefined, 'query')
92
- t.equal(components.fragment, undefined, 'fragment')
93
-
94
- // path
95
- components = fastURI.parse('')
96
- t.equal(components.error, undefined, 'path errors')
97
- t.equal(components.scheme, undefined, 'scheme')
98
- t.equal(components.userinfo, undefined, 'userinfo')
99
- t.equal(components.host, undefined, 'host')
100
- t.equal(components.port, undefined, 'port')
101
- t.equal(components.path, '', 'path')
102
- t.equal(components.query, undefined, 'query')
103
- t.equal(components.fragment, undefined, 'fragment')
104
-
105
- // query
106
- components = fastURI.parse('?')
107
- t.equal(components.error, undefined, 'query errors')
108
- t.equal(components.scheme, undefined, 'scheme')
109
- t.equal(components.userinfo, undefined, 'userinfo')
110
- t.equal(components.host, undefined, 'host')
111
- t.equal(components.port, undefined, 'port')
112
- t.equal(components.path, '', 'path')
113
- t.equal(components.query, '', 'query')
114
- t.equal(components.fragment, undefined, 'fragment')
115
-
116
- // fragment
117
- components = fastURI.parse('#')
118
- t.equal(components.error, undefined, 'fragment errors')
119
- t.equal(components.scheme, undefined, 'scheme')
120
- t.equal(components.userinfo, undefined, 'userinfo')
121
- t.equal(components.host, undefined, 'host')
122
- t.equal(components.port, undefined, 'port')
123
- t.equal(components.path, '', 'path')
124
- t.equal(components.query, undefined, 'query')
125
- t.equal(components.fragment, '', 'fragment')
126
-
127
- // fragment with character tabulation
128
- components = fastURI.parse('#\t')
129
- t.equal(components.error, undefined, 'path errors')
130
- t.equal(components.scheme, undefined, 'scheme')
131
- t.equal(components.userinfo, undefined, 'userinfo')
132
- t.equal(components.host, undefined, 'host')
133
- t.equal(components.port, undefined, 'port')
134
- t.equal(components.path, '', 'path')
135
- t.equal(components.query, undefined, 'query')
136
- t.equal(components.fragment, '%09', 'fragment')
137
-
138
- // fragment with line feed
139
- components = fastURI.parse('#\n')
140
- t.equal(components.error, undefined, 'path errors')
141
- t.equal(components.scheme, undefined, 'scheme')
142
- t.equal(components.userinfo, undefined, 'userinfo')
143
- t.equal(components.host, undefined, 'host')
144
- t.equal(components.port, undefined, 'port')
145
- t.equal(components.path, '', 'path')
146
- t.equal(components.query, undefined, 'query')
147
- t.equal(components.fragment, '%0A', 'fragment')
148
-
149
- // fragment with line tabulation
150
- components = fastURI.parse('#\v')
151
- t.equal(components.error, undefined, 'path errors')
152
- t.equal(components.scheme, undefined, 'scheme')
153
- t.equal(components.userinfo, undefined, 'userinfo')
154
- t.equal(components.host, undefined, 'host')
155
- t.equal(components.port, undefined, 'port')
156
- t.equal(components.path, '', 'path')
157
- t.equal(components.query, undefined, 'query')
158
- t.equal(components.fragment, '%0B', 'fragment')
159
-
160
- // fragment with form feed
161
- components = fastURI.parse('#\f')
162
- t.equal(components.error, undefined, 'path errors')
163
- t.equal(components.scheme, undefined, 'scheme')
164
- t.equal(components.userinfo, undefined, 'userinfo')
165
- t.equal(components.host, undefined, 'host')
166
- t.equal(components.port, undefined, 'port')
167
- t.equal(components.path, '', 'path')
168
- t.equal(components.query, undefined, 'query')
169
- t.equal(components.fragment, '%0C', 'fragment')
170
-
171
- // fragment with carriage return
172
- components = fastURI.parse('#\r')
173
- t.equal(components.error, undefined, 'path errors')
174
- t.equal(components.scheme, undefined, 'scheme')
175
- t.equal(components.userinfo, undefined, 'userinfo')
176
- t.equal(components.host, undefined, 'host')
177
- t.equal(components.port, undefined, 'port')
178
- t.equal(components.path, '', 'path')
179
- t.equal(components.query, undefined, 'query')
180
- t.equal(components.fragment, '%0D', 'fragment')
181
-
182
- // all
183
- components = fastURI.parse('uri://user:pass@example.com:123/one/two.three?q1=a1&q2=a2#body')
184
- t.equal(components.error, undefined, 'all errors')
185
- t.equal(components.scheme, 'uri', 'scheme')
186
- t.equal(components.userinfo, 'user:pass', 'userinfo')
187
- t.equal(components.host, 'example.com', 'host')
188
- t.equal(components.port, 123, 'port')
189
- t.equal(components.path, '/one/two.three', 'path')
190
- t.equal(components.query, 'q1=a1&q2=a2', 'query')
191
- t.equal(components.fragment, 'body', 'fragment')
192
-
193
- // IPv4address
194
- components = fastURI.parse('//10.10.10.10')
195
- t.equal(components.error, undefined, 'IPv4address errors')
196
- t.equal(components.scheme, undefined, 'scheme')
197
- t.equal(components.userinfo, undefined, 'userinfo')
198
- t.equal(components.host, '10.10.10.10', 'host')
199
- t.equal(components.port, undefined, 'port')
200
- t.equal(components.path, '', 'path')
201
- t.equal(components.query, undefined, 'query')
202
- t.equal(components.fragment, undefined, 'fragment')
203
-
204
- // IPv6address
205
- components = fastURI.parse('//[2001:db8::7]')
206
- t.equal(components.error, undefined, 'IPv4address errors')
207
- t.equal(components.scheme, undefined, 'scheme')
208
- t.equal(components.userinfo, undefined, 'userinfo')
209
- t.equal(components.host, '2001:db8::7', 'host')
210
- t.equal(components.port, undefined, 'port')
211
- t.equal(components.path, '', 'path')
212
- t.equal(components.query, undefined, 'query')
213
- t.equal(components.fragment, undefined, 'fragment')
214
-
215
- // mixed IPv4address & IPv6address
216
- components = fastURI.parse('//[::ffff:129.144.52.38]')
217
- t.equal(components.error, undefined, 'IPv4address errors')
218
- t.equal(components.scheme, undefined, 'scheme')
219
- t.equal(components.userinfo, undefined, 'userinfo')
220
- t.equal(components.host, '::ffff:129.144.52.38', 'host')
221
- t.equal(components.port, undefined, 'port')
222
- t.equal(components.path, '', 'path')
223
- t.equal(components.query, undefined, 'query')
224
- t.equal(components.fragment, undefined, 'fragment')
225
-
226
- // mixed IPv4address & reg-name, example from terion-name (https://github.com/garycourt/uri-js/issues/4)
227
- components = fastURI.parse('uri://10.10.10.10.example.com/en/process')
228
- t.equal(components.error, undefined, 'mixed errors')
229
- t.equal(components.scheme, 'uri', 'scheme')
230
- t.equal(components.userinfo, undefined, 'userinfo')
231
- t.equal(components.host, '10.10.10.10.example.com', 'host')
232
- t.equal(components.port, undefined, 'port')
233
- t.equal(components.path, '/en/process', 'path')
234
- t.equal(components.query, undefined, 'query')
235
- t.equal(components.fragment, undefined, 'fragment')
236
-
237
- // IPv6address, example from bkw (https://github.com/garycourt/uri-js/pull/16)
238
- components = fastURI.parse('//[2606:2800:220:1:248:1893:25c8:1946]/test')
239
- t.equal(components.error, undefined, 'IPv6address errors')
240
- t.equal(components.scheme, undefined, 'scheme')
241
- t.equal(components.userinfo, undefined, 'userinfo')
242
- t.equal(components.host, '2606:2800:220:1:248:1893:25c8:1946', 'host')
243
- t.equal(components.port, undefined, 'port')
244
- t.equal(components.path, '/test', 'path')
245
- t.equal(components.query, undefined, 'query')
246
- t.equal(components.fragment, undefined, 'fragment')
247
-
248
- // IPv6address, example from RFC 5952
249
- components = fastURI.parse('//[2001:db8::1]:80')
250
- t.equal(components.error, undefined, 'IPv6address errors')
251
- t.equal(components.scheme, undefined, 'scheme')
252
- t.equal(components.userinfo, undefined, 'userinfo')
253
- t.equal(components.host, '2001:db8::1', 'host')
254
- t.equal(components.port, 80, 'port')
255
- t.equal(components.path, '', 'path')
256
- t.equal(components.query, undefined, 'query')
257
- t.equal(components.fragment, undefined, 'fragment')
258
-
259
- // IPv6address with zone identifier, RFC 6874
260
- components = fastURI.parse('//[fe80::a%25en1]')
261
- t.equal(components.error, undefined, 'IPv4address errors')
262
- t.equal(components.scheme, undefined, 'scheme')
263
- t.equal(components.userinfo, undefined, 'userinfo')
264
- t.equal(components.host, 'fe80::a%en1', 'host')
265
- t.equal(components.port, undefined, 'port')
266
- t.equal(components.path, '', 'path')
267
- t.equal(components.query, undefined, 'query')
268
- t.equal(components.fragment, undefined, 'fragment')
269
-
270
- // IPv6address with an unescaped interface specifier, example from pekkanikander (https://github.com/garycourt/uri-js/pull/22)
271
- components = fastURI.parse('//[2001:db8::7%en0]')
272
- t.equal(components.error, undefined, 'IPv6address interface errors')
273
- t.equal(components.scheme, undefined, 'scheme')
274
- t.equal(components.userinfo, undefined, 'userinfo')
275
- t.equal(components.host, '2001:db8::7%en0', 'host')
276
- t.equal(components.port, undefined, 'port')
277
- t.equal(components.path, '', 'path')
278
- t.equal(components.query, undefined, 'query')
279
- t.equal(components.fragment, undefined, 'fragment')
280
-
281
- t.end()
282
- })
283
-
284
- test('URI Serialization', (t) => {
285
- let components = {
286
- scheme: undefined,
287
- userinfo: undefined,
288
- host: undefined,
289
- port: undefined,
290
- path: undefined,
291
- query: undefined,
292
- fragment: undefined
293
- }
294
- t.equal(fastURI.serialize(components), '', 'Undefined Components')
295
-
296
- components = {
297
- scheme: '',
298
- userinfo: '',
299
- host: '',
300
- port: 0,
301
- path: '',
302
- query: '',
303
- fragment: ''
304
- }
305
- t.equal(fastURI.serialize(components), '//@:0?#', 'Empty Components')
306
-
307
- components = {
308
- scheme: 'uri',
309
- userinfo: 'foo:bar',
310
- host: 'example.com',
311
- port: 1,
312
- path: 'path',
313
- query: 'query',
314
- fragment: 'fragment'
315
- }
316
- t.equal(fastURI.serialize(components), 'uri://foo:bar@example.com:1/path?query#fragment', 'All Components')
317
-
318
- components = {
319
- scheme: 'uri',
320
- host: 'example.com',
321
- port: '9000'
322
- }
323
- t.equal(fastURI.serialize(components), 'uri://example.com:9000', 'String port')
324
-
325
- t.equal(fastURI.serialize({ path: '//path' }), '/%2Fpath', 'Double slash path')
326
- t.equal(fastURI.serialize({ path: 'foo:bar' }), 'foo%3Abar', 'Colon path')
327
- t.equal(fastURI.serialize({ path: '?query' }), '%3Fquery', 'Query path')
328
-
329
- // mixed IPv4address & reg-name, example from terion-name (https://github.com/garycourt/uri-js/issues/4)
330
- t.equal(fastURI.serialize({ host: '10.10.10.10.example.com' }), '//10.10.10.10.example.com', 'Mixed IPv4address & reg-name')
331
-
332
- // IPv6address
333
- t.equal(fastURI.serialize({ host: '2001:db8::7' }), '//[2001:db8::7]', 'IPv6 Host')
334
- t.equal(fastURI.serialize({ host: '::ffff:129.144.52.38' }), '//[::ffff:129.144.52.38]', 'IPv6 Mixed Host')
335
- t.equal(fastURI.serialize({ host: '2606:2800:220:1:248:1893:25c8:1946' }), '//[2606:2800:220:1:248:1893:25c8:1946]', 'IPv6 Full Host')
336
-
337
- // IPv6address with zone identifier, RFC 6874
338
- t.equal(fastURI.serialize({ host: 'fe80::a%en1' }), '//[fe80::a%25en1]', 'IPv6 Zone Unescaped Host')
339
- t.equal(fastURI.serialize({ host: 'fe80::a%25en1' }), '//[fe80::a%25en1]', 'IPv6 Zone Escaped Host')
340
-
341
- t.end()
342
- })
343
-
344
- test('URI Resolving', { skip: true }, (t) => {
345
- // normal examples from RFC 3986
346
- const base = 'uri://a/b/c/d;p?q'
347
- t.equal(fastURI.resolve(base, 'g:h'), 'g:h', 'g:h')
348
- t.equal(fastURI.resolve(base, 'g'), 'uri://a/b/c/g', 'g')
349
- t.equal(fastURI.resolve(base, './g'), 'uri://a/b/c/g', './g')
350
- t.equal(fastURI.resolve(base, 'g/'), 'uri://a/b/c/g/', 'g/')
351
- t.equal(fastURI.resolve(base, '/g'), 'uri://a/g', '/g')
352
- t.equal(fastURI.resolve(base, '//g'), 'uri://g', '//g')
353
- t.equal(fastURI.resolve(base, '?y'), 'uri://a/b/c/d;p?y', '?y')
354
- t.equal(fastURI.resolve(base, 'g?y'), 'uri://a/b/c/g?y', 'g?y')
355
- t.equal(fastURI.resolve(base, '#s'), 'uri://a/b/c/d;p?q#s', '#s')
356
- t.equal(fastURI.resolve(base, 'g#s'), 'uri://a/b/c/g#s', 'g#s')
357
- t.equal(fastURI.resolve(base, 'g?y#s'), 'uri://a/b/c/g?y#s', 'g?y#s')
358
- t.equal(fastURI.resolve(base, ';x'), 'uri://a/b/c/;x', ';x')
359
- t.equal(fastURI.resolve(base, 'g;x'), 'uri://a/b/c/g;x', 'g;x')
360
- t.equal(fastURI.resolve(base, 'g;x?y#s'), 'uri://a/b/c/g;x?y#s', 'g;x?y#s')
361
- t.equal(fastURI.resolve(base, ''), 'uri://a/b/c/d;p?q', '')
362
- t.equal(fastURI.resolve(base, '.'), 'uri://a/b/c/', '.')
363
- t.equal(fastURI.resolve(base, './'), 'uri://a/b/c/', './')
364
- t.equal(fastURI.resolve(base, '..'), 'uri://a/b/', '..')
365
- t.equal(fastURI.resolve(base, '../'), 'uri://a/b/', '../')
366
- t.equal(fastURI.resolve(base, '../g'), 'uri://a/b/g', '../g')
367
- t.equal(fastURI.resolve(base, '../..'), 'uri://a/', '../..')
368
- t.equal(fastURI.resolve(base, '../../'), 'uri://a/', '../../')
369
- t.equal(fastURI.resolve(base, '../../g'), 'uri://a/g', '../../g')
370
-
371
- // abnormal examples from RFC 3986
372
- t.equal(fastURI.resolve(base, '../../../g'), 'uri://a/g', '../../../g')
373
- t.equal(fastURI.resolve(base, '../../../../g'), 'uri://a/g', '../../../../g')
374
-
375
- t.equal(fastURI.resolve(base, '/./g'), 'uri://a/g', '/./g')
376
- t.equal(fastURI.resolve(base, '/../g'), 'uri://a/g', '/../g')
377
- t.equal(fastURI.resolve(base, 'g.'), 'uri://a/b/c/g.', 'g.')
378
- t.equal(fastURI.resolve(base, '.g'), 'uri://a/b/c/.g', '.g')
379
- t.equal(fastURI.resolve(base, 'g..'), 'uri://a/b/c/g..', 'g..')
380
- t.equal(fastURI.resolve(base, '..g'), 'uri://a/b/c/..g', '..g')
381
-
382
- t.equal(fastURI.resolve(base, './../g'), 'uri://a/b/g', './../g')
383
- t.equal(fastURI.resolve(base, './g/.'), 'uri://a/b/c/g/', './g/.')
384
- t.equal(fastURI.resolve(base, 'g/./h'), 'uri://a/b/c/g/h', 'g/./h')
385
- t.equal(fastURI.resolve(base, 'g/../h'), 'uri://a/b/c/h', 'g/../h')
386
- t.equal(fastURI.resolve(base, 'g;x=1/./y'), 'uri://a/b/c/g;x=1/y', 'g;x=1/./y')
387
- t.equal(fastURI.resolve(base, 'g;x=1/../y'), 'uri://a/b/c/y', 'g;x=1/../y')
388
-
389
- t.equal(fastURI.resolve(base, 'g?y/./x'), 'uri://a/b/c/g?y/./x', 'g?y/./x')
390
- t.equal(fastURI.resolve(base, 'g?y/../x'), 'uri://a/b/c/g?y/../x', 'g?y/../x')
391
- t.equal(fastURI.resolve(base, 'g#s/./x'), 'uri://a/b/c/g#s/./x', 'g#s/./x')
392
- t.equal(fastURI.resolve(base, 'g#s/../x'), 'uri://a/b/c/g#s/../x', 'g#s/../x')
393
-
394
- t.equal(fastURI.resolve(base, 'uri:g'), 'uri:g', 'uri:g')
395
- t.equal(fastURI.resolve(base, 'uri:g', { tolerant: true }), 'uri://a/b/c/g', 'uri:g')
396
-
397
- // examples by PAEz
398
- t.equal(fastURI.resolve('//www.g.com/', '/adf\ngf'), '//www.g.com/adf%0Agf', '/adf\\ngf')
399
- t.equal(fastURI.resolve('//www.g.com/error\n/bleh/bleh', '..'), '//www.g.com/error%0A/', '//www.g.com/error\\n/bleh/bleh')
400
-
401
- t.end()
402
- })
403
-
404
- test('URI Normalizing', { skip: true }, (t) => {
405
- // test from RFC 3987
406
- t.equal(fastURI.normalize('uri://www.example.org/red%09ros\xE9#red'), 'uri://www.example.org/red%09ros%C3%A9#red')
407
-
408
- // IPv4address
409
- t.equal(fastURI.normalize('//192.068.001.000'), '//192.68.1.0')
410
-
411
- // IPv6address, example from RFC 3513
412
- t.equal(fastURI.normalize('http://[1080::8:800:200C:417A]/'), 'http://[1080::8:800:200c:417a]/')
413
-
414
- // IPv6address, examples from RFC 5952
415
- t.equal(fastURI.normalize('//[2001:0db8::0001]/'), '//[2001:db8::1]/')
416
- t.equal(fastURI.normalize('//[2001:db8::1:0000:1]/'), '//[2001:db8::1:0:1]/')
417
- t.equal(fastURI.normalize('//[2001:db8:0:0:0:0:2:1]/'), '//[2001:db8::2:1]/')
418
- t.equal(fastURI.normalize('//[2001:db8:0:1:1:1:1:1]/'), '//[2001:db8:0:1:1:1:1:1]/')
419
- t.equal(fastURI.normalize('//[2001:0:0:1:0:0:0:1]/'), '//[2001:0:0:1::1]/')
420
- t.equal(fastURI.normalize('//[2001:db8:0:0:1:0:0:1]/'), '//[2001:db8::1:0:0:1]/')
421
- t.equal(fastURI.normalize('//[2001:DB8::1]/'), '//[2001:db8::1]/')
422
- t.equal(fastURI.normalize('//[0:0:0:0:0:ffff:192.0.2.1]/'), '//[::ffff:192.0.2.1]/')
423
-
424
- // Mixed IPv4 and IPv6 address
425
- t.equal(fastURI.normalize('//[1:2:3:4:5:6:192.0.2.1]/'), '//[1:2:3:4:5:6:192.0.2.1]/')
426
- t.equal(fastURI.normalize('//[1:2:3:4:5:6:192.068.001.000]/'), '//[1:2:3:4:5:6:192.68.1.0]/')
427
-
428
- t.end()
429
- })
430
-
431
- test('URI Equals', (t) => {
432
- // test from RFC 3986
433
- t.equal(fastURI.equal('example://a/b/c/%7Bfoo%7D', 'eXAMPLE://a/./b/../b/%63/%7bfoo%7d'), true)
434
-
435
- // test from RFC 3987
436
- t.equal(fastURI.equal('http://example.org/~user', 'http://example.org/%7euser'), true)
437
-
438
- t.end()
439
- })
440
-
441
- test('Escape Component', { skip: true }, (t) => {
442
- let chr
443
- for (let d = 0; d <= 129; ++d) {
444
- chr = String.fromCharCode(d)
445
- if (!chr.match(/[$&+,;=]/)) {
446
- t.equal(fastURI.escapeComponent(chr), encodeURIComponent(chr))
447
- } else {
448
- t.equal(fastURI.escapeComponent(chr), chr)
449
- }
450
- }
451
- t.equal(fastURI.escapeComponent('\u00c0'), encodeURIComponent('\u00c0'))
452
- t.equal(fastURI.escapeComponent('\u07ff'), encodeURIComponent('\u07ff'))
453
- t.equal(fastURI.escapeComponent('\u0800'), encodeURIComponent('\u0800'))
454
- t.equal(fastURI.escapeComponent('\u30a2'), encodeURIComponent('\u30a2'))
455
- t.end()
456
- })
457
-
458
- test('Unescape Component', { skip: true }, (t) => {
459
- let chr
460
- for (let d = 0; d <= 129; ++d) {
461
- chr = String.fromCharCode(d)
462
- t.equal(fastURI.unescapeComponent(encodeURIComponent(chr)), chr)
463
- }
464
- t.equal(fastURI.unescapeComponent(encodeURIComponent('\u00c0')), '\u00c0')
465
- t.equal(fastURI.unescapeComponent(encodeURIComponent('\u07ff')), '\u07ff')
466
- t.equal(fastURI.unescapeComponent(encodeURIComponent('\u0800')), '\u0800')
467
- t.equal(fastURI.unescapeComponent(encodeURIComponent('\u30a2')), '\u30a2')
468
- t.end()
469
- })
470
-
471
- const IRI_OPTION = { iri: true, unicodeSupport: true }
472
-
473
- test('IRI Parsing', { skip: true }, (t) => {
474
- const components = fastURI.parse('uri://us\xA0er:pa\uD7FFss@example.com:123/o\uF900ne/t\uFDCFwo.t\uFDF0hree?q1=a1\uF8FF\uE000&q2=a2#bo\uFFEFdy', IRI_OPTION)
475
- t.equal(components.error, undefined, 'all errors')
476
- t.equal(components.scheme, 'uri', 'scheme')
477
- t.equal(components.userinfo, 'us\xA0er:pa\uD7FFss', 'userinfo')
478
- t.equal(components.host, 'example.com', 'host')
479
- t.equal(components.port, 123, 'port')
480
- t.equal(components.path, '/o\uF900ne/t\uFDCFwo.t\uFDF0hree', 'path')
481
- t.equal(components.query, 'q1=a1\uF8FF\uE000&q2=a2', 'query')
482
- t.equal(components.fragment, 'bo\uFFEFdy', 'fragment')
483
- t.end()
484
- })
485
-
486
- test('IRI Serialization', { skip: true }, (t) => {
487
- const components = {
488
- scheme: 'uri',
489
- userinfo: 'us\xA0er:pa\uD7FFss',
490
- host: 'example.com',
491
- port: 123,
492
- path: '/o\uF900ne/t\uFDCFwo.t\uFDF0hree',
493
- query: 'q1=a1\uF8FF\uE000&q2=a2',
494
- fragment: 'bo\uFFEFdy\uE001'
495
- }
496
- t.equal(fastURI.serialize(components, IRI_OPTION), 'uri://us\xA0er:pa\uD7FFss@example.com:123/o\uF900ne/t\uFDCFwo.t\uFDF0hree?q1=a1\uF8FF\uE000&q2=a2#bo\uFFEFdy%EE%80%81')
497
- t.end()
498
- })
499
-
500
- test('IRI Normalizing', { skip: true }, (t) => {
501
- t.equal(fastURI.normalize('uri://www.example.org/red%09ros\xE9#red', IRI_OPTION), 'uri://www.example.org/red%09ros\xE9#red')
502
- t.end()
503
- })
504
-
505
- test('IRI Equals', { skip: true }, (t) => {
506
- // example from RFC 3987
507
- t.equal(fastURI.equal('example://a/b/c/%7Bfoo%7D/ros\xE9', 'eXAMPLE://a/./b/../b/%63/%7bfoo%7d/ros%C3%A9', IRI_OPTION), true)
508
- t.end()
509
- })
510
-
511
- test('Convert IRI to URI', { skip: true }, (t) => {
512
- // example from RFC 3987
513
- t.equal(fastURI.serialize(fastURI.parse('uri://www.example.org/red%09ros\xE9#red', IRI_OPTION)), 'uri://www.example.org/red%09ros%C3%A9#red')
514
-
515
- // Internationalized Domain Name conversion via punycode example from RFC 3987
516
- t.equal(fastURI.serialize(fastURI.parse('uri://r\xE9sum\xE9.example.org', { iri: true, domainHost: true }), { domainHost: true }), 'uri://xn--rsum-bpad.example.org')
517
- t.end()
518
- })
519
-
520
- test('Convert URI to IRI', { skip: true }, (t) => {
521
- // examples from RFC 3987
522
- t.equal(fastURI.serialize(fastURI.parse('uri://www.example.org/D%C3%BCrst'), IRI_OPTION), 'uri://www.example.org/D\xFCrst')
523
- t.equal(fastURI.serialize(fastURI.parse('uri://www.example.org/D%FCrst'), IRI_OPTION), 'uri://www.example.org/D%FCrst')
524
- t.equal(fastURI.serialize(fastURI.parse('uri://xn--99zt52a.example.org/%e2%80%ae'), IRI_OPTION), 'uri://xn--99zt52a.example.org/%E2%80%AE') // or uri://\u7D0D\u8C46.example.org/%E2%80%AE
525
-
526
- // Internationalized Domain Name conversion via punycode example from RFC 3987
527
- t.equal(fastURI.serialize(fastURI.parse('uri://xn--rsum-bpad.example.org', { domainHost: true }), { iri: true, domainHost: true }), 'uri://r\xE9sum\xE9.example.org')
528
- t.end()
529
- })
530
-
531
- if (fastURI.SCHEMES.http) {
532
- test('HTTP Equals', (t) => {
533
- // test from RFC 2616
534
- t.equal(fastURI.equal('http://abc.com:80/~smith/home.html', 'http://abc.com/~smith/home.html'), true)
535
- t.equal(fastURI.equal('http://ABC.com/%7Esmith/home.html', 'http://abc.com/~smith/home.html'), true)
536
- t.equal(fastURI.equal('http://ABC.com:/%7esmith/home.html', 'http://abc.com/~smith/home.html'), true)
537
- t.equal(fastURI.equal('HTTP://ABC.COM', 'http://abc.com/'), true)
538
- // test from RFC 3986
539
- t.equal(fastURI.equal('http://example.com:/', 'http://example.com:80/'), true)
540
- t.end()
541
- })
542
- }
543
-
544
- if (fastURI.SCHEMES.https) {
545
- test('HTTPS Equals', (t) => {
546
- t.equal(fastURI.equal('https://example.com', 'https://example.com:443/'), true)
547
- t.equal(fastURI.equal('https://example.com:/', 'https://example.com:443/'), true)
548
- t.end()
549
- })
550
- }
551
-
552
- if (fastURI.SCHEMES.urn) {
553
- test('URN Parsing', (t) => {
554
- // example from RFC 2141
555
- const components = fastURI.parse('urn:foo:a123,456')
556
- t.equal(components.error, undefined, 'errors')
557
- t.equal(components.scheme, 'urn', 'scheme')
558
- t.equal(components.userinfo, undefined, 'userinfo')
559
- t.equal(components.host, undefined, 'host')
560
- t.equal(components.port, undefined, 'port')
561
- t.equal(components.path, undefined, 'path')
562
- t.equal(components.query, undefined, 'query')
563
- t.equal(components.fragment, undefined, 'fragment')
564
- t.equal(components.nid, 'foo', 'nid')
565
- t.equal(components.nss, 'a123,456', 'nss')
566
- t.end()
567
- })
568
-
569
- test('URN Serialization', (t) => {
570
- // example from RFC 2141
571
- const components = {
572
- scheme: 'urn',
573
- nid: 'foo',
574
- nss: 'a123,456'
575
- }
576
- t.equal(fastURI.serialize(components), 'urn:foo:a123,456')
577
- t.end()
578
- })
579
-
580
- test('URN Equals', { skip: true }, (t) => {
581
- // test from RFC 2141
582
- t.equal(fastURI.equal('urn:foo:a123,456', 'urn:foo:a123,456'), true)
583
- t.equal(fastURI.equal('urn:foo:a123,456', 'URN:foo:a123,456'), true)
584
- t.equal(fastURI.equal('urn:foo:a123,456', 'urn:FOO:a123,456'), true)
585
- t.equal(fastURI.equal('urn:foo:a123,456', 'urn:foo:A123,456'), false)
586
- t.equal(fastURI.equal('urn:foo:a123%2C456', 'URN:FOO:a123%2c456'), true)
587
- t.end()
588
- })
589
-
590
- test('URN Resolving', (t) => {
591
- // example from epoberezkin
592
- t.equal(fastURI.resolve('', 'urn:some:ip:prop'), 'urn:some:ip:prop')
593
- t.equal(fastURI.resolve('#', 'urn:some:ip:prop'), 'urn:some:ip:prop')
594
- t.equal(fastURI.resolve('urn:some:ip:prop', 'urn:some:ip:prop'), 'urn:some:ip:prop')
595
- t.equal(fastURI.resolve('urn:some:other:prop', 'urn:some:ip:prop'), 'urn:some:ip:prop')
596
- t.end()
597
- })
598
-
599
- test('UUID Parsing', (t) => {
600
- // example from RFC 4122
601
- let components = fastURI.parse('urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6')
602
- t.equal(components.error, undefined, 'errors')
603
- t.equal(components.scheme, 'urn', 'scheme')
604
- t.equal(components.userinfo, undefined, 'userinfo')
605
- t.equal(components.host, undefined, 'host')
606
- t.equal(components.port, undefined, 'port')
607
- t.equal(components.path, undefined, 'path')
608
- t.equal(components.query, undefined, 'query')
609
- t.equal(components.fragment, undefined, 'fragment')
610
- t.equal(components.nid, 'uuid', 'nid')
611
- t.equal(components.nss, undefined, 'nss')
612
- t.equal(components.uuid, 'f81d4fae-7dec-11d0-a765-00a0c91e6bf6', 'uuid')
613
-
614
- components = fastURI.parse('urn:uuid:notauuid-7dec-11d0-a765-00a0c91e6bf6')
615
- t.notEqual(components.error, undefined, 'errors')
616
- t.end()
617
- })
618
-
619
- test('UUID Serialization', (t) => {
620
- // example from RFC 4122
621
- let components = {
622
- scheme: 'urn',
623
- nid: 'uuid',
624
- uuid: 'f81d4fae-7dec-11d0-a765-00a0c91e6bf6'
625
- }
626
- t.equal(fastURI.serialize(components), 'urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6')
627
-
628
- components = {
629
- scheme: 'urn',
630
- nid: 'uuid',
631
- uuid: 'notauuid-7dec-11d0-a765-00a0c91e6bf6'
632
- }
633
- t.equal(fastURI.serialize(components), 'urn:uuid:notauuid-7dec-11d0-a765-00a0c91e6bf6')
634
- t.end()
635
- })
636
-
637
- test('UUID Equals', (t) => {
638
- t.equal(fastURI.equal('URN:UUID:F81D4FAE-7DEC-11D0-A765-00A0C91E6BF6', 'urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6'), true)
639
- t.end()
640
- })
641
-
642
- test('URN NID Override', (t) => {
643
- let components = fastURI.parse('urn:foo:f81d4fae-7dec-11d0-a765-00a0c91e6bf6', { nid: 'uuid' })
644
- t.equal(components.error, undefined, 'errors')
645
- t.equal(components.scheme, 'urn', 'scheme')
646
- t.equal(components.path, undefined, 'path')
647
- t.equal(components.nid, 'foo', 'nid')
648
- t.equal(components.nss, undefined, 'nss')
649
- t.equal(components.uuid, 'f81d4fae-7dec-11d0-a765-00a0c91e6bf6', 'uuid')
650
-
651
- components = {
652
- scheme: 'urn',
653
- nid: 'foo',
654
- uuid: 'f81d4fae-7dec-11d0-a765-00a0c91e6bf6'
655
- }
656
- t.equal(fastURI.serialize(components, { nid: 'uuid' }), 'urn:foo:f81d4fae-7dec-11d0-a765-00a0c91e6bf6')
657
- t.end()
658
- })
659
- }
660
-
661
- if (fastURI.SCHEMES.mailto) {
662
- test('Mailto Parse', (t) => {
663
- let components
664
-
665
- // tests from RFC 6068
666
-
667
- components = fastURI.parse('mailto:chris@example.com')
668
- t.equal(components.error, undefined, 'error')
669
- t.equal(components.scheme, 'mailto', 'scheme')
670
- t.equal(components.userinfo, undefined, 'userinfo')
671
- t.equal(components.host, undefined, 'host')
672
- t.equal(components.port, undefined, 'port')
673
- t.equal(components.path, undefined, 'path')
674
- t.equal(components.query, undefined, 'query')
675
- t.equal(components.fragment, undefined, 'fragment')
676
- t.deepEqual(components.to, ['chris@example.com'], 'to')
677
- t.equal(components.subject, undefined, 'subject')
678
- t.equal(components.body, undefined, 'body')
679
- t.equal(components.headers, undefined, 'headers')
680
-
681
- components = fastURI.parse('mailto:infobot@example.com?subject=current-issue')
682
- t.deepEqual(components.to, ['infobot@example.com'], 'to')
683
- t.equal(components.subject, 'current-issue', 'subject')
684
-
685
- components = fastURI.parse('mailto:infobot@example.com?body=send%20current-issue')
686
- t.deepEqual(components.to, ['infobot@example.com'], 'to')
687
- t.equal(components.body, 'send current-issue', 'body')
688
-
689
- components = fastURI.parse('mailto:infobot@example.com?body=send%20current-issue%0D%0Asend%20index')
690
- t.deepEqual(components.to, ['infobot@example.com'], 'to')
691
- t.equal(components.body, 'send current-issue\x0D\x0Asend index', 'body')
692
-
693
- components = fastURI.parse('mailto:list@example.org?In-Reply-To=%3C3469A91.D10AF4C@example.com%3E')
694
- t.deepEqual(components.to, ['list@example.org'], 'to')
695
- t.deepEqual(components.headers, { 'In-Reply-To': '<3469A91.D10AF4C@example.com>' }, 'headers')
696
-
697
- components = fastURI.parse('mailto:majordomo@example.com?body=subscribe%20bamboo-l')
698
- t.deepEqual(components.to, ['majordomo@example.com'], 'to')
699
- t.equal(components.body, 'subscribe bamboo-l', 'body')
700
-
701
- components = fastURI.parse('mailto:joe@example.com?cc=bob@example.com&body=hello')
702
- t.deepEqual(components.to, ['joe@example.com'], 'to')
703
- t.equal(components.body, 'hello', 'body')
704
- t.deepEqual(components.headers, { cc: 'bob@example.com' }, 'headers')
705
-
706
- components = fastURI.parse('mailto:joe@example.com?cc=bob@example.com?body=hello')
707
- if (fastURI.VALIDATE_SUPPORT) t.ok(components.error, 'invalid header fields')
708
-
709
- components = fastURI.parse('mailto:gorby%25kremvax@example.com')
710
- t.deepEqual(components.to, ['gorby%kremvax@example.com'], 'to gorby%kremvax@example.com')
711
-
712
- components = fastURI.parse('mailto:unlikely%3Faddress@example.com?blat=foop')
713
- t.deepEqual(components.to, ['unlikely?address@example.com'], 'to unlikely?address@example.com')
714
- t.deepEqual(components.headers, { blat: 'foop' }, 'headers')
715
-
716
- components = fastURI.parse('mailto:Mike%26family@example.org')
717
- t.deepEqual(components.to, ['Mike&family@example.org'], 'to Mike&family@example.org')
718
-
719
- components = fastURI.parse('mailto:%22not%40me%22@example.org')
720
- t.deepEqual(components.to, ['"not@me"@example.org'], 'to ' + '"not@me"@example.org')
721
-
722
- components = fastURI.parse('mailto:%22oh%5C%5Cno%22@example.org')
723
- t.deepEqual(components.to, ['"oh\\\\no"@example.org'], 'to ' + '"oh\\\\no"@example.org')
724
-
725
- components = fastURI.parse("mailto:%22%5C%5C%5C%22it's%5C%20ugly%5C%5C%5C%22%22@example.org")
726
- t.deepEqual(components.to, ['"\\\\\\"it\'s\\ ugly\\\\\\""@example.org'], 'to ' + '"\\\\\\"it\'s\\ ugly\\\\\\""@example.org')
727
-
728
- components = fastURI.parse('mailto:user@example.org?subject=caf%C3%A9')
729
- t.deepEqual(components.to, ['user@example.org'], 'to')
730
- t.equal(components.subject, 'caf\xE9', 'subject')
731
-
732
- components = fastURI.parse('mailto:user@example.org?subject=%3D%3Futf-8%3FQ%3Fcaf%3DC3%3DA9%3F%3D')
733
- t.deepEqual(components.to, ['user@example.org'], 'to')
734
- t.equal(components.subject, '=?utf-8?Q?caf=C3=A9?=', 'subject') // TODO: Verify this
735
-
736
- components = fastURI.parse('mailto:user@example.org?subject=%3D%3Fiso-8859-1%3FQ%3Fcaf%3DE9%3F%3D')
737
- t.deepEqual(components.to, ['user@example.org'], 'to')
738
- t.equal(components.subject, '=?iso-8859-1?Q?caf=E9?=', 'subject') // TODO: Verify this
739
-
740
- components = fastURI.parse('mailto:user@example.org?subject=caf%C3%A9&body=caf%C3%A9')
741
- t.deepEqual(components.to, ['user@example.org'], 'to')
742
- t.equal(components.subject, 'caf\xE9', 'subject')
743
- t.equal(components.body, 'caf\xE9', 'body')
744
-
745
- if (fastURI.IRI_SUPPORT) {
746
- components = fastURI.parse('mailto:user@%E7%B4%8D%E8%B1%86.example.org?subject=Test&body=NATTO')
747
- t.deepEqual(components.to, ['user@xn--99zt52a.example.org'], 'to')
748
- t.equal(components.subject, 'Test', 'subject')
749
- t.equal(components.body, 'NATTO', 'body')
750
- }
751
-
752
- t.end()
753
- })
754
-
755
- test('Mailto Serialize', (t) => {
756
- // tests from RFC 6068
757
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['chris@example.com'] }), 'mailto:chris@example.com')
758
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['infobot@example.com'], body: 'current-issue' }), 'mailto:infobot@example.com?body=current-issue')
759
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['infobot@example.com'], body: 'send current-issue' }), 'mailto:infobot@example.com?body=send%20current-issue')
760
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['infobot@example.com'], body: 'send current-issue\x0D\x0Asend index' }), 'mailto:infobot@example.com?body=send%20current-issue%0D%0Asend%20index')
761
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['list@example.org'], headers: { 'In-Reply-To': '<3469A91.D10AF4C@example.com>' } }), 'mailto:list@example.org?In-Reply-To=%3C3469A91.D10AF4C@example.com%3E')
762
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['majordomo@example.com'], body: 'subscribe bamboo-l' }), 'mailto:majordomo@example.com?body=subscribe%20bamboo-l')
763
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['joe@example.com'], headers: { cc: 'bob@example.com', body: 'hello' } }), 'mailto:joe@example.com?cc=bob@example.com&body=hello')
764
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['gorby%25kremvax@example.com'] }), 'mailto:gorby%25kremvax@example.com')
765
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['unlikely%3Faddress@example.com'], headers: { blat: 'foop' } }), 'mailto:unlikely%3Faddress@example.com?blat=foop')
766
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['Mike&family@example.org'] }), 'mailto:Mike%26family@example.org')
767
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['"not@me"@example.org'] }), 'mailto:%22not%40me%22@example.org')
768
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['"oh\\\\no"@example.org'] }), 'mailto:%22oh%5C%5Cno%22@example.org')
769
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['"\\\\\\"it\'s\\ ugly\\\\\\""@example.org'] }), "mailto:%22%5C%5C%5C%22it's%5C%20ugly%5C%5C%5C%22%22@example.org")
770
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['user@example.org'], subject: 'caf\xE9' }), 'mailto:user@example.org?subject=caf%C3%A9')
771
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['user@example.org'], subject: '=?utf-8?Q?caf=C3=A9?=' }), 'mailto:user@example.org?subject=%3D%3Futf-8%3FQ%3Fcaf%3DC3%3DA9%3F%3D')
772
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['user@example.org'], subject: '=?iso-8859-1?Q?caf=E9?=' }), 'mailto:user@example.org?subject=%3D%3Fiso-8859-1%3FQ%3Fcaf%3DE9%3F%3D')
773
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['user@example.org'], subject: 'caf\xE9', body: 'caf\xE9' }), 'mailto:user@example.org?subject=caf%C3%A9&body=caf%C3%A9')
774
- if (fastURI.IRI_SUPPORT) {
775
- t.equal(fastURI.serialize({ scheme: 'mailto', to: ['us\xE9r@\u7d0d\u8c46.example.org'], subject: 'Test', body: 'NATTO' }), 'mailto:us%C3%A9r@xn--99zt52a.example.org?subject=Test&body=NATTO')
776
- }
777
- t.end()
778
- })
779
-
780
- test('Mailto Equals', (t) => {
781
- // tests from RFC 6068
782
- t.equal(fastURI.equal('mailto:addr1@an.example,addr2@an.example', 'mailto:?to=addr1@an.example,addr2@an.example'), true)
783
- t.equal(fastURI.equal('mailto:?to=addr1@an.example,addr2@an.example', 'mailto:addr1@an.example?to=addr2@an.example'), true)
784
- t.end()
785
- })
786
- }
787
-
788
- if (fastURI.SCHEMES.ws) {
789
- test('WS Parse', (t) => {
790
- let components
791
-
792
- // example from RFC 6455, Sec 4.1
793
- components = fastURI.parse('ws://example.com/chat')
794
- t.equal(components.error, undefined, 'error')
795
- t.equal(components.scheme, 'ws', 'scheme')
796
- t.equal(components.userinfo, undefined, 'userinfo')
797
- t.equal(components.host, 'example.com', 'host')
798
- t.equal(components.port, undefined, 'port')
799
- t.equal(components.path, undefined, 'path')
800
- t.equal(components.query, undefined, 'query')
801
- t.equal(components.fragment, undefined, 'fragment')
802
- t.equal(components.resourceName, '/chat', 'resourceName')
803
- t.equal(components.secure, false, 'secure')
804
-
805
- components = fastURI.parse('ws://example.com/foo?bar=baz')
806
- t.equal(components.error, undefined, 'error')
807
- t.equal(components.scheme, 'ws', 'scheme')
808
- t.equal(components.userinfo, undefined, 'userinfo')
809
- t.equal(components.host, 'example.com', 'host')
810
- t.equal(components.port, undefined, 'port')
811
- t.equal(components.path, undefined, 'path')
812
- t.equal(components.query, undefined, 'query')
813
- t.equal(components.fragment, undefined, 'fragment')
814
- t.equal(components.resourceName, '/foo?bar=baz', 'resourceName')
815
- t.equal(components.secure, false, 'secure')
816
-
817
- components = fastURI.parse('ws://example.com/?bar=baz')
818
- t.equal(components.resourceName, '/?bar=baz', 'resourceName')
819
-
820
- t.end()
821
- })
822
-
823
- test('WS Serialize', (t) => {
824
- t.equal(fastURI.serialize({ scheme: 'ws' }), 'ws:')
825
- t.equal(fastURI.serialize({ scheme: 'ws', host: 'example.com' }), 'ws://example.com')
826
- t.equal(fastURI.serialize({ scheme: 'ws', resourceName: '/' }), 'ws:')
827
- t.equal(fastURI.serialize({ scheme: 'ws', resourceName: '/foo' }), 'ws:/foo')
828
- t.equal(fastURI.serialize({ scheme: 'ws', resourceName: '/foo?bar' }), 'ws:/foo?bar')
829
- t.equal(fastURI.serialize({ scheme: 'ws', secure: false }), 'ws:')
830
- t.equal(fastURI.serialize({ scheme: 'ws', secure: true }), 'wss:')
831
- t.equal(fastURI.serialize({ scheme: 'ws', host: 'example.com', resourceName: '/foo' }), 'ws://example.com/foo')
832
- t.equal(fastURI.serialize({ scheme: 'ws', host: 'example.com', resourceName: '/foo?bar' }), 'ws://example.com/foo?bar')
833
- t.equal(fastURI.serialize({ scheme: 'ws', host: 'example.com', secure: false }), 'ws://example.com')
834
- t.equal(fastURI.serialize({ scheme: 'ws', host: 'example.com', secure: true }), 'wss://example.com')
835
- t.equal(fastURI.serialize({ scheme: 'ws', host: 'example.com', resourceName: '/foo?bar', secure: false }), 'ws://example.com/foo?bar')
836
- t.equal(fastURI.serialize({ scheme: 'ws', host: 'example.com', resourceName: '/foo?bar', secure: true }), 'wss://example.com/foo?bar')
837
- t.end()
838
- })
839
-
840
- test('WS Equal', (t) => {
841
- t.equal(fastURI.equal('WS://ABC.COM:80/chat#one', 'ws://abc.com/chat'), true)
842
- t.end()
843
- })
844
-
845
- test('WS Normalize', (t) => {
846
- t.equal(fastURI.normalize('ws://example.com:80/foo#hash'), 'ws://example.com/foo')
847
- t.end()
848
- })
849
- }
850
-
851
- if (fastURI.SCHEMES.wss) {
852
- test('WSS Parse', (t) => {
853
- let components
854
-
855
- // example from RFC 6455, Sec 4.1
856
- components = fastURI.parse('wss://example.com/chat')
857
- t.equal(components.error, undefined, 'error')
858
- t.equal(components.scheme, 'wss', 'scheme')
859
- t.equal(components.userinfo, undefined, 'userinfo')
860
- t.equal(components.host, 'example.com', 'host')
861
- t.equal(components.port, undefined, 'port')
862
- t.equal(components.path, undefined, 'path')
863
- t.equal(components.query, undefined, 'query')
864
- t.equal(components.fragment, undefined, 'fragment')
865
- t.equal(components.resourceName, '/chat', 'resourceName')
866
- t.equal(components.secure, true, 'secure')
867
-
868
- components = fastURI.parse('wss://example.com/foo?bar=baz')
869
- t.equal(components.error, undefined, 'error')
870
- t.equal(components.scheme, 'wss', 'scheme')
871
- t.equal(components.userinfo, undefined, 'userinfo')
872
- t.equal(components.host, 'example.com', 'host')
873
- t.equal(components.port, undefined, 'port')
874
- t.equal(components.path, undefined, 'path')
875
- t.equal(components.query, undefined, 'query')
876
- t.equal(components.fragment, undefined, 'fragment')
877
- t.equal(components.resourceName, '/foo?bar=baz', 'resourceName')
878
- t.equal(components.secure, true, 'secure')
879
-
880
- components = fastURI.parse('wss://example.com/?bar=baz')
881
- t.equal(components.resourceName, '/?bar=baz', 'resourceName')
882
-
883
- t.end()
884
- })
885
-
886
- test('WSS Serialize', (t) => {
887
- t.equal(fastURI.serialize({ scheme: 'wss' }), 'wss:')
888
- t.equal(fastURI.serialize({ scheme: 'wss', host: 'example.com' }), 'wss://example.com')
889
- t.equal(fastURI.serialize({ scheme: 'wss', resourceName: '/' }), 'wss:')
890
- t.equal(fastURI.serialize({ scheme: 'wss', resourceName: '/foo' }), 'wss:/foo')
891
- t.equal(fastURI.serialize({ scheme: 'wss', resourceName: '/foo?bar' }), 'wss:/foo?bar')
892
- t.equal(fastURI.serialize({ scheme: 'wss', secure: false }), 'ws:')
893
- t.equal(fastURI.serialize({ scheme: 'wss', secure: true }), 'wss:')
894
- t.equal(fastURI.serialize({ scheme: 'wss', host: 'example.com', resourceName: '/foo' }), 'wss://example.com/foo')
895
- t.equal(fastURI.serialize({ scheme: 'wss', host: 'example.com', resourceName: '/foo?bar' }), 'wss://example.com/foo?bar')
896
- t.equal(fastURI.serialize({ scheme: 'wss', host: 'example.com', secure: false }), 'ws://example.com')
897
- t.equal(fastURI.serialize({ scheme: 'wss', host: 'example.com', secure: true }), 'wss://example.com')
898
- t.equal(fastURI.serialize({ scheme: 'wss', host: 'example.com', resourceName: '/foo?bar', secure: false }), 'ws://example.com/foo?bar')
899
- t.equal(fastURI.serialize({ scheme: 'wss', host: 'example.com', resourceName: '/foo?bar', secure: true }), 'wss://example.com/foo?bar')
900
- t.end()
901
- })
902
-
903
- test('WSS Equal', (t) => {
904
- t.equal(fastURI.equal('WSS://ABC.COM:443/chat#one', 'wss://abc.com/chat'), true)
905
- t.end()
906
- })
907
-
908
- test('WSS Normalize', (t) => {
909
- t.equal(fastURI.normalize('wss://example.com:443/foo#hash'), 'wss://example.com/foo')
910
- t.end()
911
- })
912
- }