@bluefly/openstandardagents 0.4.8 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.version.json +4 -4
- package/CHANGELOG.md +22 -8
- package/README.md +70 -45
- package/bin/postinstall +0 -0
- package/dist/.version.json +4 -4
- package/dist/adapters/a2a/__tests__/mcp-integration.spec.js +1 -1
- package/dist/adapters/a2a/a2a-protocol.d.ts +1 -1
- package/dist/adapters/a2a/a2a-tool.js +3 -3
- package/dist/adapters/a2a/delegation.js +1 -1
- package/dist/adapters/base/common-file-generator.d.ts +1 -1
- package/dist/adapters/base/common-file-generator.js +22 -0
- package/dist/adapters/claude-code/adapter.js +2 -2
- package/dist/adapters/docker/generators.js +19 -19
- package/dist/adapters/drupal/generator.js +76 -76
- package/dist/adapters/openai-agents/adapter.js +2 -2
- package/dist/cli/banner.js +1 -1
- package/dist/cli/commands/agents-sync.command.d.ts +19 -0
- package/dist/cli/commands/agents-sync.command.js +268 -0
- package/dist/cli/commands/discover.js +48 -52
- package/dist/cli/commands/export.command.js +41 -12
- package/dist/cli/commands/lifecycle.command.d.ts +29 -0
- package/dist/cli/commands/lifecycle.command.js +495 -0
- package/dist/cli/commands/policy.command.d.ts +11 -0
- package/dist/cli/commands/policy.command.js +85 -0
- package/dist/cli/commands/publish.command.js +29 -3
- package/dist/cli/commands/search.command.js +31 -2
- package/dist/cli/commands/serve-builder-routes.d.ts +17 -0
- package/dist/cli/commands/serve-builder-routes.js +390 -0
- package/dist/cli/commands/validate.command.js +48 -2
- package/dist/cli/commands/verify.js +61 -34
- package/dist/cli/commands/wizard-api-first.command.js +6 -0
- package/dist/cli/commands/wizard.command.js +6 -0
- package/dist/cli/commands/workspace.command.js +65 -65
- package/dist/cli/index.js +11 -3
- package/dist/cli/schema-driven/schema-loader.js +5 -5
- package/dist/cli/utils/standard-options.js +1 -1
- package/dist/confidence/index.d.ts +67 -0
- package/dist/confidence/index.js +130 -0
- package/dist/data/platform-matrix.js +29 -0
- package/dist/mcp-server/__tests__/mcp-server.spec.js +20 -11
- package/dist/mesh/discovery-providers.js +2 -2
- package/dist/mesh/discovery.js +1 -1
- package/dist/mesh/index.d.ts +2 -2
- package/dist/mesh/index.js +2 -2
- package/dist/mesh/types.d.ts +202 -1
- package/dist/package.json +27 -20
- package/dist/services/agent-card-generator.d.ts +2 -2
- package/dist/services/agent-card-generator.js +3 -1
- package/dist/services/agents-md/agents-md.service.d.ts +4 -0
- package/dist/services/agents-md/agents-md.service.js +18 -0
- package/dist/services/export/langchain/langchain-exporter.js +2 -2
- package/dist/services/export/langchain/memory-generator.js +2 -2
- package/dist/services/export/testing/test-generator.js +1 -1
- package/dist/services/governance/cedar-validator.service.d.ts +32 -0
- package/dist/services/governance/cedar-validator.service.js +88 -0
- package/dist/services/mcp/bridge.service.d.ts +1 -0
- package/dist/services/mcp/bridge.service.js +31 -0
- package/dist/services/skills-pipeline/skills-install.service.js +2 -2
- package/dist/services/skills-pipeline/skills-research.service.d.ts +5 -7
- package/dist/services/skills-pipeline/skills-research.service.js +13 -58
- package/dist/services/taxonomy-service.d.ts +3 -3
- package/dist/services/trust/trust.service.d.ts +9 -0
- package/dist/services/trust/trust.service.js +35 -0
- package/dist/services/validators/a2a.validator.js +2 -2
- package/dist/skills/test-skill/package.json +1 -1
- package/dist/spec/extensions/role-manifest.md +188 -0
- package/dist/spec/uadp/README.md +1 -1
- package/dist/spec/v0.4/agent-card.schema.json +2 -2
- package/dist/spec/v0.4/agent.schema.json +69 -0
- package/dist/spec/v0.4/extensions/a2a/a2a.schema.json +1 -1
- package/dist/spec/v0.4/extensions/mcp/README.md +1 -1
- package/dist/spec/v0.5/agent-card.schema.json +1 -1
- package/dist/spec/v0.5/agent.schema.json +139 -68
- package/dist/spec/v0.5/extensions/mcp/README.md +1 -1
- package/dist/spec/v0.5/role.schema.json +268 -0
- package/dist/types/index.d.ts +5 -1
- package/dist/types/index.js +2 -0
- package/dist/types/role.d.ts +126 -0
- package/dist/types/role.js +38 -0
- package/dist/validation/progressive-scorer.d.ts +1 -1
- package/dist/validation/progressive-scorer.js +19 -2
- package/dist/validation/validator.js +1 -1
- package/dist/version-management/api/server.d.ts +1 -1
- package/examples/agent-mesh/DISCOVERY.md +25 -25
- package/examples/agent-mesh/README.ts +6 -6
- package/examples/agent-mesh/basic-usage.ts +11 -11
- package/examples/agent-mesh/discovery-system.ts +37 -37
- package/examples/agents/01-customer-support-bot/agent.ossa.yaml +24 -31
- package/examples/agents/05-sales-assistant/agent.ossa.yaml +35 -23
- package/examples/agents/07-research-assistant/agent.ossa.yaml +27 -21
- package/examples/agents/10-meeting-assistant/agent.ossa.yaml +27 -35
- package/examples/agents/security-audit-agent.ossa.yaml +234 -0
- package/examples/agentscope/react-assistant/agent.ossa.yaml +36 -32
- package/examples/drupal/content-moderator.ossa.yaml +2 -2
- package/examples/drupal/drupal-contributor.ossa.yaml +247 -0
- package/examples/export/langchain/production-agent-with-memory/README.md +1 -1
- package/examples/export/langchain/production-agent-with-memory/agent.ossa.yaml +13 -23
- package/examples/export/langchain/production-agent-with-streaming/agent.ossa.yaml +1 -15
- package/examples/export/langchain/production-agent-with-tools/agent.ossa.yaml +28 -29
- package/examples/getting-started/01-minimal-agent.ossa.yaml +1 -1
- package/examples/getting-started/02-agent-with-tools.ossa.yaml +1 -1
- package/examples/getting-started/03-agent-with-safety.ossa.yaml +1 -1
- package/examples/getting-started/04-agent-with-messaging.ossa.yaml +1 -1
- package/examples/getting-started/05-workflow-composition.ossa.yaml +1 -1
- package/examples/getting-started/README.md +3 -3
- package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
- package/examples/gitlab-agents/gitlab-ci-agent.ossa.yaml +221 -0
- package/examples/hierarchical-agent.ossa.yaml +10 -53
- package/examples/kagent/ossa-kagent-anthropic.ossa.yaml +2 -25
- package/examples/kagent/ossa-kagent-mcp-tools.ossa.yaml +2 -30
- package/examples/kagent/ossa-kagent-multi-tool.ossa.yaml +2 -18
- package/examples/kagent/ossa-kagent-poc.ossa.yaml +2 -16
- package/examples/pipeline-agent.ossa.yaml +3 -3
- package/examples/platform-specific/claude-code-subagent.yaml +1 -1
- package/examples/platform-specific/cursor-coding-agent.yaml +1 -1
- package/examples/platform-specific/warp-terminal-agent.yaml +1 -1
- package/examples/production-ready/01-customer-support-bot/agent.ossa.yaml +24 -31
- package/examples/production-ready/05-sales-assistant/agent.ossa.yaml +35 -23
- package/examples/production-ready/07-research-assistant/agent.ossa.yaml +27 -19
- package/examples/production-ready/10-meeting-assistant/agent.ossa.yaml +27 -35
- package/examples/reference-implementations/python-client/examples/basic_usage.py +0 -0
- package/examples/reference-implementations/python-client/examples/publish_agent.py +0 -0
- package/examples/roles/drupal-developer.role.yaml +37 -0
- package/examples/roles/platform-operator.role.yaml +28 -0
- package/examples/roles/security-auditor.role.yaml +27 -0
- package/examples/swarm-agent.ossa.yaml +13 -51
- package/examples/team-agent.ossa.yaml +12 -61
- package/examples/team-lead-teammate.ossa.yaml +12 -17
- package/openapi/agent-communication.yaml +268 -220
- package/openapi/agent-crud.yaml +217 -187
- package/openapi/agent-discovery.yaml +119 -81
- package/openapi/agent-identity.yaml +219 -187
- package/openapi/agent-taxonomy.yaml +95 -38
- package/openapi/agents-md-service.yaml +103 -30
- package/openapi/cli/openapi.yaml +147 -40
- package/openapi/core/ossa-core-api.openapi.yaml +327 -271
- package/openapi/core/ossa-registry-api.openapi.yaml +298 -235
- package/openapi/core/ossa-registry.openapi.yaml +299 -159
- package/openapi/core/unified-agent-gateway.openapi.yaml +234 -170
- package/openapi/daemon-api.openapi.yaml +323 -181
- package/openapi/dev-cli/openapi.yaml +137 -113
- package/openapi/github-sync.yaml +62 -19
- package/openapi/marketplace-plugin.openapi.yaml +539 -466
- package/openapi/ossa-api.openapi.yaml +354 -213
- package/openapi/ossa-cli-enhancements.openapi.yaml +108 -89
- package/openapi/ossa-cli.yaml +260 -184
- package/openapi/protocols/sse-streams.yaml +69 -77
- package/openapi/protocols/websocket-events.yaml +64 -57
- package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +37 -20
- package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +35 -23
- package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +29 -18
- package/openapi/reference-implementations/critic-agent-api.openapi.yaml +45 -19
- package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +30 -24
- package/openapi/reference-implementations/drupal-agent-api.openapi.yaml +101 -50
- package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +33 -22
- package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +20 -16
- package/openapi/reference-implementations/governor-agent-api.openapi.yaml +41 -23
- package/openapi/reference-implementations/helm-generator.openapi.yaml +88 -46
- package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +30 -20
- package/openapi/reference-implementations/judge-agent-api.openapi.yaml +22 -16
- package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +32 -18
- package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +32 -21
- package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +34 -21
- package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +49 -27
- package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +27 -19
- package/openapi/reference-implementations/self-evolving-ecosystem.openapi.yaml +427 -293
- package/openapi/reference-implementations/worker-agent-api.openapi.yaml +34 -23
- package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +35 -21
- package/openapi/release-automation.openapi.yaml +47 -13
- package/openapi/schemas/common/agent.yaml +30 -29
- package/openapi/schemas/common/errors.yaml +13 -3
- package/openapi/schemas/common/metadata.yaml +22 -7
- package/openapi/schemas/common/pagination.yaml +18 -6
- package/openapi/schemas/common/security.yaml +13 -5
- package/openapi/schemas/index.yaml +49 -42
- package/openapi/uadp-asyncapi.yaml +5 -3
- package/openapi/uadp-openapi.yaml +325 -153
- package/openapi/version-management.openapi.yaml +142 -135
- package/package.json +115 -110
- package/spec/extensions/role-manifest.md +188 -0
- package/spec/uadp/README.md +393 -0
- package/spec/uadp/openapi.yaml +387 -0
- package/spec/uadp/schemas/uadp-agents-response.schema.json +68 -0
- package/spec/uadp/schemas/uadp-federation-response.schema.json +46 -0
- package/spec/uadp/schemas/uadp-manifest.schema.json +82 -0
- package/spec/uadp/schemas/uadp-skills-response.schema.json +72 -0
- package/spec/v0.4/agent-card.schema.json +2 -2
- package/spec/v0.4/extensions/a2a/a2a.schema.json +1 -1
- package/spec/v0.4/extensions/mcp/README.md +1 -1
- package/spec/v0.5/agent-card.schema.json +477 -0
- package/spec/v0.5/agent.schema.json +1627 -0
- package/spec/v0.5/conformance/profiles/baseline.json +19 -0
- package/spec/v0.5/conformance/profiles/enterprise.json +20 -0
- package/spec/v0.5/extensions/a2a/README.md +193 -0
- package/spec/v0.5/extensions/a2a/a2a.schema.json +77 -0
- package/spec/v0.5/extensions/ag2/ag2.schema.json +277 -0
- package/spec/v0.5/extensions/cognition/cognition.schema.json +94 -0
- package/spec/v0.5/extensions/cognition/thought-node.schema.json +80 -0
- package/spec/v0.5/extensions/crewai/crewai.schema.json +256 -0
- package/spec/v0.5/extensions/drupal/drupal.schema.json +318 -0
- package/spec/v0.5/extensions/evals/evals.schema.json +597 -0
- package/spec/v0.5/extensions/governance/governance-extension.yaml +161 -0
- package/spec/v0.5/extensions/identity/identity.schema.json +302 -0
- package/spec/v0.5/extensions/kagent/README.md +315 -0
- package/spec/v0.5/extensions/kagent/kagent.schema.json +624 -0
- package/spec/v0.5/extensions/langchain/langchain.schema.json +243 -0
- package/spec/v0.5/extensions/langgraph/langgraph.schema.json +211 -0
- package/spec/v0.5/extensions/mcp/README.md +276 -0
- package/spec/v0.5/extensions/mcp/mcp.schema.json +84 -0
- package/spec/v0.5/extensions/memory/memory.schema.json +7 -0
- package/spec/v0.5/extensions/team/team.schema.json +304 -0
- package/spec/v0.5/extensions/token-efficiency/token-efficiency.schema.json +47 -0
- package/spec/v0.5/mcp.schema.json +1 -0
- package/spec/v0.5/role.schema.json +268 -0
- package/spec/v0.5/skill.schema.json +1 -0
- package/spec/v0.5/validator.schema.json +282 -0
- package/node_modules/ajv/.runkit_example.js +0 -23
- package/node_modules/ajv/LICENSE +0 -22
- package/node_modules/ajv/README.md +0 -207
- package/node_modules/ajv/dist/2019.d.ts +0 -19
- package/node_modules/ajv/dist/2019.js +0 -61
- package/node_modules/ajv/dist/2019.js.map +0 -1
- package/node_modules/ajv/dist/2020.d.ts +0 -19
- package/node_modules/ajv/dist/2020.js +0 -55
- package/node_modules/ajv/dist/2020.js.map +0 -1
- package/node_modules/ajv/dist/ajv.d.ts +0 -18
- package/node_modules/ajv/dist/ajv.js +0 -50
- package/node_modules/ajv/dist/ajv.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/code.d.ts +0 -40
- package/node_modules/ajv/dist/compile/codegen/code.js +0 -156
- package/node_modules/ajv/dist/compile/codegen/code.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/index.d.ts +0 -79
- package/node_modules/ajv/dist/compile/codegen/index.js +0 -697
- package/node_modules/ajv/dist/compile/codegen/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/scope.d.ts +0 -79
- package/node_modules/ajv/dist/compile/codegen/scope.js +0 -143
- package/node_modules/ajv/dist/compile/codegen/scope.js.map +0 -1
- package/node_modules/ajv/dist/compile/errors.d.ts +0 -13
- package/node_modules/ajv/dist/compile/errors.js +0 -123
- package/node_modules/ajv/dist/compile/errors.js.map +0 -1
- package/node_modules/ajv/dist/compile/index.d.ts +0 -80
- package/node_modules/ajv/dist/compile/index.js +0 -242
- package/node_modules/ajv/dist/compile/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/parse.d.ts +0 -4
- package/node_modules/ajv/dist/compile/jtd/parse.js +0 -350
- package/node_modules/ajv/dist/compile/jtd/parse.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +0 -4
- package/node_modules/ajv/dist/compile/jtd/serialize.js +0 -236
- package/node_modules/ajv/dist/compile/jtd/serialize.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/types.d.ts +0 -6
- package/node_modules/ajv/dist/compile/jtd/types.js +0 -14
- package/node_modules/ajv/dist/compile/jtd/types.js.map +0 -1
- package/node_modules/ajv/dist/compile/names.d.ts +0 -20
- package/node_modules/ajv/dist/compile/names.js +0 -28
- package/node_modules/ajv/dist/compile/names.js.map +0 -1
- package/node_modules/ajv/dist/compile/ref_error.d.ts +0 -6
- package/node_modules/ajv/dist/compile/ref_error.js +0 -12
- package/node_modules/ajv/dist/compile/ref_error.js.map +0 -1
- package/node_modules/ajv/dist/compile/resolve.d.ts +0 -12
- package/node_modules/ajv/dist/compile/resolve.js +0 -155
- package/node_modules/ajv/dist/compile/resolve.js.map +0 -1
- package/node_modules/ajv/dist/compile/rules.d.ts +0 -28
- package/node_modules/ajv/dist/compile/rules.js +0 -26
- package/node_modules/ajv/dist/compile/rules.js.map +0 -1
- package/node_modules/ajv/dist/compile/util.d.ts +0 -40
- package/node_modules/ajv/dist/compile/util.js +0 -178
- package/node_modules/ajv/dist/compile/util.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/applicability.d.ts +0 -6
- package/node_modules/ajv/dist/compile/validate/applicability.js +0 -19
- package/node_modules/ajv/dist/compile/validate/applicability.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +0 -4
- package/node_modules/ajv/dist/compile/validate/boolSchema.js +0 -50
- package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/dataType.d.ts +0 -17
- package/node_modules/ajv/dist/compile/validate/dataType.js +0 -203
- package/node_modules/ajv/dist/compile/validate/dataType.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/defaults.d.ts +0 -2
- package/node_modules/ajv/dist/compile/validate/defaults.js +0 -35
- package/node_modules/ajv/dist/compile/validate/defaults.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/index.d.ts +0 -42
- package/node_modules/ajv/dist/compile/validate/index.js +0 -520
- package/node_modules/ajv/dist/compile/validate/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/keyword.d.ts +0 -8
- package/node_modules/ajv/dist/compile/validate/keyword.js +0 -124
- package/node_modules/ajv/dist/compile/validate/keyword.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/subschema.d.ts +0 -47
- package/node_modules/ajv/dist/compile/validate/subschema.js +0 -81
- package/node_modules/ajv/dist/compile/validate/subschema.js.map +0 -1
- package/node_modules/ajv/dist/core.d.ts +0 -174
- package/node_modules/ajv/dist/core.js +0 -618
- package/node_modules/ajv/dist/core.js.map +0 -1
- package/node_modules/ajv/dist/jtd.d.ts +0 -47
- package/node_modules/ajv/dist/jtd.js +0 -72
- package/node_modules/ajv/dist/jtd.js.map +0 -1
- package/node_modules/ajv/dist/refs/data.json +0 -13
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +0 -2
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +0 -28
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +0 -1
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +0 -2
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +0 -30
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +0 -1
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv/dist/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv/dist/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv/dist/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv/dist/refs/jtd-schema.d.ts +0 -3
- package/node_modules/ajv/dist/refs/jtd-schema.js +0 -118
- package/node_modules/ajv/dist/refs/jtd-schema.js.map +0 -1
- package/node_modules/ajv/dist/runtime/equal.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/equal.js +0 -7
- package/node_modules/ajv/dist/runtime/equal.js.map +0 -1
- package/node_modules/ajv/dist/runtime/parseJson.d.ts +0 -18
- package/node_modules/ajv/dist/runtime/parseJson.js +0 -185
- package/node_modules/ajv/dist/runtime/parseJson.js.map +0 -1
- package/node_modules/ajv/dist/runtime/quote.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/quote.js +0 -30
- package/node_modules/ajv/dist/runtime/quote.js.map +0 -1
- package/node_modules/ajv/dist/runtime/re2.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/re2.js +0 -6
- package/node_modules/ajv/dist/runtime/re2.js.map +0 -1
- package/node_modules/ajv/dist/runtime/timestamp.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/timestamp.js +0 -42
- package/node_modules/ajv/dist/runtime/timestamp.js.map +0 -1
- package/node_modules/ajv/dist/runtime/ucs2length.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/ucs2length.js +0 -24
- package/node_modules/ajv/dist/runtime/ucs2length.js.map +0 -1
- package/node_modules/ajv/dist/runtime/uri.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/uri.js +0 -6
- package/node_modules/ajv/dist/runtime/uri.js.map +0 -1
- package/node_modules/ajv/dist/runtime/validation_error.d.ts +0 -7
- package/node_modules/ajv/dist/runtime/validation_error.js +0 -11
- package/node_modules/ajv/dist/runtime/validation_error.js.map +0 -1
- package/node_modules/ajv/dist/standalone/index.d.ts +0 -6
- package/node_modules/ajv/dist/standalone/index.js +0 -90
- package/node_modules/ajv/dist/standalone/index.js.map +0 -1
- package/node_modules/ajv/dist/standalone/instance.d.ts +0 -12
- package/node_modules/ajv/dist/standalone/instance.js +0 -35
- package/node_modules/ajv/dist/standalone/instance.js.map +0 -1
- package/node_modules/ajv/dist/types/index.d.ts +0 -183
- package/node_modules/ajv/dist/types/index.js +0 -3
- package/node_modules/ajv/dist/types/index.js.map +0 -1
- package/node_modules/ajv/dist/types/json-schema.d.ts +0 -125
- package/node_modules/ajv/dist/types/json-schema.js +0 -3
- package/node_modules/ajv/dist/types/json-schema.js.map +0 -1
- package/node_modules/ajv/dist/types/jtd-schema.d.ts +0 -174
- package/node_modules/ajv/dist/types/jtd-schema.js +0 -3
- package/node_modules/ajv/dist/types/jtd-schema.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +0 -49
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +0 -106
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +0 -23
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +0 -12
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +0 -7
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js +0 -95
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +0 -21
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +0 -85
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +0 -11
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/if.js +0 -66
- package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +0 -13
- package/node_modules/ajv/dist/vocabularies/applicator/index.js +0 -44
- package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/applicator/items.js +0 -52
- package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +0 -30
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/applicator/not.js +0 -26
- package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +0 -60
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +0 -75
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +0 -12
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js +0 -54
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +0 -38
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +0 -13
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/code.d.ts +0 -17
- package/node_modules/ajv/dist/vocabularies/code.js +0 -131
- package/node_modules/ajv/dist/vocabularies/code.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/id.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/core/id.js +0 -10
- package/node_modules/ajv/dist/vocabularies/core/id.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/core/index.js +0 -16
- package/node_modules/ajv/dist/vocabularies/core/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/core/ref.js +0 -122
- package/node_modules/ajv/dist/vocabularies/core/ref.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js +0 -104
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js +0 -9
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/draft2020.js +0 -23
- package/node_modules/ajv/dist/vocabularies/draft2020.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/draft7.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/draft7.js +0 -17
- package/node_modules/ajv/dist/vocabularies/draft7.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +0 -30
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +0 -51
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js +0 -9
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +0 -16
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +0 -10
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/errors.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/errors.js +0 -3
- package/node_modules/ajv/dist/vocabularies/errors.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/format/format.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/format/format.js +0 -92
- package/node_modules/ajv/dist/vocabularies/format/format.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/format/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/format/index.js +0 -6
- package/node_modules/ajv/dist/vocabularies/format/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +0 -71
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js +0 -24
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js +0 -43
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/jtd/error.js +0 -20
- package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/jtd/index.js +0 -29
- package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +0 -25
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +0 -22
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +0 -15
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +0 -22
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js +0 -149
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js +0 -67
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/jtd/type.js +0 -69
- package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/jtd/union.js +0 -12
- package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/values.js +0 -51
- package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/metadata.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/metadata.js +0 -18
- package/node_modules/ajv/dist/vocabularies/metadata.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/next.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/next.js +0 -8
- package/node_modules/ajv/dist/vocabularies/next.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +0 -7
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +0 -40
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +0 -65
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/validation/const.js +0 -25
- package/node_modules/ajv/dist/vocabularies/validation/const.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +0 -12
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/enum.js +0 -48
- package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +0 -16
- package/node_modules/ajv/dist/vocabularies/validation/index.js +0 -33
- package/node_modules/ajv/dist/vocabularies/validation/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +0 -15
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +0 -24
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +0 -27
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +0 -11
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +0 -27
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +0 -24
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +0 -26
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js +0 -33
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/required.js +0 -79
- package/node_modules/ajv/dist/vocabularies/validation/required.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +0 -64
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +0 -1
- package/node_modules/ajv/lib/2019.ts +0 -81
- package/node_modules/ajv/lib/2020.ts +0 -75
- package/node_modules/ajv/lib/ajv.ts +0 -70
- package/node_modules/ajv/lib/compile/codegen/code.ts +0 -169
- package/node_modules/ajv/lib/compile/codegen/index.ts +0 -852
- package/node_modules/ajv/lib/compile/codegen/scope.ts +0 -215
- package/node_modules/ajv/lib/compile/errors.ts +0 -184
- package/node_modules/ajv/lib/compile/index.ts +0 -324
- package/node_modules/ajv/lib/compile/jtd/parse.ts +0 -411
- package/node_modules/ajv/lib/compile/jtd/serialize.ts +0 -277
- package/node_modules/ajv/lib/compile/jtd/types.ts +0 -16
- package/node_modules/ajv/lib/compile/names.ts +0 -27
- package/node_modules/ajv/lib/compile/ref_error.ts +0 -13
- package/node_modules/ajv/lib/compile/resolve.ts +0 -149
- package/node_modules/ajv/lib/compile/rules.ts +0 -50
- package/node_modules/ajv/lib/compile/util.ts +0 -213
- package/node_modules/ajv/lib/compile/validate/applicability.ts +0 -22
- package/node_modules/ajv/lib/compile/validate/boolSchema.ts +0 -47
- package/node_modules/ajv/lib/compile/validate/dataType.ts +0 -230
- package/node_modules/ajv/lib/compile/validate/defaults.ts +0 -32
- package/node_modules/ajv/lib/compile/validate/index.ts +0 -582
- package/node_modules/ajv/lib/compile/validate/keyword.ts +0 -171
- package/node_modules/ajv/lib/compile/validate/subschema.ts +0 -135
- package/node_modules/ajv/lib/core.ts +0 -892
- package/node_modules/ajv/lib/jtd.ts +0 -132
- package/node_modules/ajv/lib/refs/data.json +0 -13
- package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +0 -28
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +0 -30
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv/lib/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv/lib/refs/jtd-schema.ts +0 -130
- package/node_modules/ajv/lib/runtime/equal.ts +0 -7
- package/node_modules/ajv/lib/runtime/parseJson.ts +0 -177
- package/node_modules/ajv/lib/runtime/quote.ts +0 -31
- package/node_modules/ajv/lib/runtime/re2.ts +0 -6
- package/node_modules/ajv/lib/runtime/timestamp.ts +0 -46
- package/node_modules/ajv/lib/runtime/ucs2length.ts +0 -20
- package/node_modules/ajv/lib/runtime/uri.ts +0 -6
- package/node_modules/ajv/lib/runtime/validation_error.ts +0 -13
- package/node_modules/ajv/lib/standalone/index.ts +0 -100
- package/node_modules/ajv/lib/standalone/instance.ts +0 -36
- package/node_modules/ajv/lib/types/index.ts +0 -244
- package/node_modules/ajv/lib/types/json-schema.ts +0 -187
- package/node_modules/ajv/lib/types/jtd-schema.ts +0 -273
- package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +0 -56
- package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +0 -118
- package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +0 -22
- package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +0 -14
- package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +0 -109
- package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +0 -112
- package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +0 -11
- package/node_modules/ajv/lib/vocabularies/applicator/if.ts +0 -80
- package/node_modules/ajv/lib/vocabularies/applicator/index.ts +0 -53
- package/node_modules/ajv/lib/vocabularies/applicator/items.ts +0 -59
- package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +0 -36
- package/node_modules/ajv/lib/vocabularies/applicator/not.ts +0 -38
- package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +0 -82
- package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +0 -91
- package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +0 -57
- package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +0 -50
- package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +0 -13
- package/node_modules/ajv/lib/vocabularies/code.ts +0 -168
- package/node_modules/ajv/lib/vocabularies/core/id.ts +0 -10
- package/node_modules/ajv/lib/vocabularies/core/index.ts +0 -16
- package/node_modules/ajv/lib/vocabularies/core/ref.ts +0 -129
- package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +0 -113
- package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/draft2020.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/draft7.ts +0 -17
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +0 -31
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +0 -51
- package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +0 -9
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +0 -14
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +0 -10
- package/node_modules/ajv/lib/vocabularies/errors.ts +0 -18
- package/node_modules/ajv/lib/vocabularies/format/format.ts +0 -120
- package/node_modules/ajv/lib/vocabularies/format/index.ts +0 -6
- package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +0 -89
- package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +0 -32
- package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +0 -45
- package/node_modules/ajv/lib/vocabularies/jtd/error.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/jtd/index.ts +0 -37
- package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +0 -24
- package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +0 -21
- package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +0 -15
- package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +0 -184
- package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +0 -76
- package/node_modules/ajv/lib/vocabularies/jtd/type.ts +0 -75
- package/node_modules/ajv/lib/vocabularies/jtd/union.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/jtd/values.ts +0 -58
- package/node_modules/ajv/lib/vocabularies/metadata.ts +0 -17
- package/node_modules/ajv/lib/vocabularies/next.ts +0 -8
- package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +0 -7
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +0 -47
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +0 -85
- package/node_modules/ajv/lib/vocabularies/validation/const.ts +0 -28
- package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/validation/enum.ts +0 -54
- package/node_modules/ajv/lib/vocabularies/validation/index.ts +0 -49
- package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +0 -16
- package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +0 -26
- package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +0 -30
- package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +0 -42
- package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +0 -26
- package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +0 -34
- package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +0 -39
- package/node_modules/ajv/lib/vocabularies/validation/required.ts +0 -98
- package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +0 -79
- package/node_modules/ajv/package.json +0 -127
- package/node_modules/ajv-formats/LICENSE +0 -21
- package/node_modules/ajv-formats/README.md +0 -125
- package/node_modules/ajv-formats/dist/formats.d.ts +0 -9
- package/node_modules/ajv-formats/dist/formats.js +0 -208
- package/node_modules/ajv-formats/dist/formats.js.map +0 -1
- package/node_modules/ajv-formats/dist/index.d.ts +0 -15
- package/node_modules/ajv-formats/dist/index.js +0 -37
- package/node_modules/ajv-formats/dist/index.js.map +0 -1
- package/node_modules/ajv-formats/dist/limit.d.ts +0 -10
- package/node_modules/ajv-formats/dist/limit.js +0 -69
- package/node_modules/ajv-formats/dist/limit.js.map +0 -1
- package/node_modules/ajv-formats/package.json +0 -74
- package/node_modules/ajv-formats/src/formats.ts +0 -269
- package/node_modules/ajv-formats/src/index.ts +0 -62
- package/node_modules/ajv-formats/src/limit.ts +0 -99
- package/node_modules/fast-deep-equal/LICENSE +0 -21
- package/node_modules/fast-deep-equal/README.md +0 -96
- package/node_modules/fast-deep-equal/es6/index.d.ts +0 -2
- package/node_modules/fast-deep-equal/es6/index.js +0 -72
- package/node_modules/fast-deep-equal/es6/react.d.ts +0 -2
- package/node_modules/fast-deep-equal/es6/react.js +0 -79
- package/node_modules/fast-deep-equal/index.d.ts +0 -4
- package/node_modules/fast-deep-equal/index.js +0 -46
- package/node_modules/fast-deep-equal/package.json +0 -61
- package/node_modules/fast-deep-equal/react.d.ts +0 -2
- package/node_modules/fast-deep-equal/react.js +0 -53
- package/node_modules/fast-uri/.gitattributes +0 -2
- package/node_modules/fast-uri/.github/.stale.yml +0 -21
- package/node_modules/fast-uri/.github/dependabot.yml +0 -13
- package/node_modules/fast-uri/.github/tests_checker.yml +0 -8
- package/node_modules/fast-uri/.github/workflows/ci.yml +0 -101
- package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +0 -24
- package/node_modules/fast-uri/LICENSE +0 -32
- package/node_modules/fast-uri/README.md +0 -143
- package/node_modules/fast-uri/benchmark/benchmark.mjs +0 -159
- package/node_modules/fast-uri/benchmark/equal.mjs +0 -51
- package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +0 -22
- package/node_modules/fast-uri/benchmark/package.json +0 -17
- package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +0 -24
- package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +0 -65
- package/node_modules/fast-uri/eslint.config.js +0 -6
- package/node_modules/fast-uri/index.js +0 -340
- package/node_modules/fast-uri/lib/schemes.js +0 -267
- package/node_modules/fast-uri/lib/utils.js +0 -336
- package/node_modules/fast-uri/package.json +0 -69
- package/node_modules/fast-uri/test/ajv.test.js +0 -43
- package/node_modules/fast-uri/test/equal.test.js +0 -108
- package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +0 -501
- package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +0 -120
- package/node_modules/fast-uri/test/parse.test.js +0 -318
- package/node_modules/fast-uri/test/resolve.test.js +0 -78
- package/node_modules/fast-uri/test/rfc-3986.test.js +0 -90
- package/node_modules/fast-uri/test/serialize.test.js +0 -151
- package/node_modules/fast-uri/test/uri-js-compatibility.test.js +0 -33
- package/node_modules/fast-uri/test/uri-js.test.js +0 -912
- package/node_modules/fast-uri/test/util.test.js +0 -38
- package/node_modules/fast-uri/tsconfig.json +0 -9
- package/node_modules/fast-uri/types/index.d.ts +0 -60
- package/node_modules/fast-uri/types/index.test-d.ts +0 -17
- package/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
- package/node_modules/json-schema-traverse/.github/FUNDING.yml +0 -2
- package/node_modules/json-schema-traverse/.github/workflows/build.yml +0 -28
- package/node_modules/json-schema-traverse/.github/workflows/publish.yml +0 -27
- package/node_modules/json-schema-traverse/LICENSE +0 -21
- package/node_modules/json-schema-traverse/README.md +0 -95
- package/node_modules/json-schema-traverse/index.d.ts +0 -40
- package/node_modules/json-schema-traverse/index.js +0 -93
- package/node_modules/json-schema-traverse/package.json +0 -43
- package/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
- package/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
- package/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
- package/node_modules/require-from-string/index.js +0 -34
- package/node_modules/require-from-string/license +0 -21
- package/node_modules/require-from-string/package.json +0 -28
- package/node_modules/require-from-string/readme.md +0 -56
|
@@ -13,20 +13,17 @@ info:
|
|
|
13
13
|
- Post-release: Replace `v0.4.2` → `{{VERSION}}`
|
|
14
14
|
- CI/CD: Automate version substitution in pipelines
|
|
15
15
|
- Multi-project: Apply consistent versioning across repositories
|
|
16
|
-
|
|
17
16
|
contact:
|
|
18
17
|
name: OSSA Community
|
|
19
18
|
url: https://openstandardagents.org
|
|
20
19
|
license:
|
|
21
20
|
name: Apache 2.0
|
|
22
21
|
url: https://www.apache.org/licenses/LICENSE-2.0.html
|
|
23
|
-
|
|
24
22
|
servers:
|
|
25
23
|
- url: http://localhost:3000/api/v1
|
|
26
24
|
description: Local development
|
|
27
25
|
- url: https://api.openstandardagents.org/v1
|
|
28
26
|
description: Production
|
|
29
|
-
|
|
30
27
|
tags:
|
|
31
28
|
- name: version
|
|
32
29
|
description: Version substitution and management operations
|
|
@@ -34,7 +31,6 @@ tags:
|
|
|
34
31
|
description: Version detection from project sources
|
|
35
32
|
- name: validation
|
|
36
33
|
description: Version format validation
|
|
37
|
-
|
|
38
34
|
paths:
|
|
39
35
|
/version/substitute:
|
|
40
36
|
post:
|
|
@@ -53,7 +49,6 @@ paths:
|
|
|
53
49
|
**Example:**
|
|
54
50
|
- Input: `apiVersion: ossa/v{{VERSION}}`
|
|
55
51
|
- Output: `apiVersion: ossa/v0.4.2`
|
|
56
|
-
|
|
57
52
|
tags:
|
|
58
53
|
- version
|
|
59
54
|
requestBody:
|
|
@@ -61,81 +56,84 @@ paths:
|
|
|
61
56
|
content:
|
|
62
57
|
application/json:
|
|
63
58
|
schema:
|
|
64
|
-
$ref:
|
|
59
|
+
$ref: "#/components/schemas/SubstituteRequest"
|
|
65
60
|
examples:
|
|
66
61
|
basic:
|
|
67
62
|
summary: Basic substitution
|
|
68
63
|
value:
|
|
69
|
-
version:
|
|
64
|
+
version: 0.4.2
|
|
70
65
|
with_prefix:
|
|
71
66
|
summary: Version with 'v' prefix
|
|
72
67
|
value:
|
|
73
|
-
version:
|
|
68
|
+
version: v0.4.2
|
|
74
69
|
custom_paths:
|
|
75
70
|
summary: Custom file patterns
|
|
76
71
|
value:
|
|
77
|
-
version:
|
|
72
|
+
version: 0.4.2
|
|
78
73
|
paths:
|
|
79
|
-
-
|
|
80
|
-
-
|
|
74
|
+
- spec/**/*.json
|
|
75
|
+
- docs/**/*.md
|
|
81
76
|
exclude:
|
|
82
|
-
-
|
|
83
|
-
-
|
|
77
|
+
- node_modules/**
|
|
78
|
+
- .git/**
|
|
84
79
|
dry_run:
|
|
85
80
|
summary: Preview changes without modifying files
|
|
86
81
|
value:
|
|
87
|
-
version:
|
|
82
|
+
version: 0.4.2
|
|
88
83
|
dry_run: true
|
|
89
84
|
responses:
|
|
90
|
-
|
|
85
|
+
"200":
|
|
91
86
|
description: Substitution completed successfully
|
|
92
87
|
content:
|
|
93
88
|
application/json:
|
|
94
89
|
schema:
|
|
95
|
-
$ref:
|
|
90
|
+
$ref: "#/components/schemas/SubstituteResponse"
|
|
96
91
|
examples:
|
|
97
92
|
success:
|
|
98
93
|
summary: Successful substitution
|
|
99
94
|
value:
|
|
100
95
|
success: true
|
|
101
|
-
version_used:
|
|
96
|
+
version_used: v0.4.2
|
|
102
97
|
files_processed: 42
|
|
103
98
|
replacements_made: 156
|
|
104
99
|
files:
|
|
105
|
-
- path:
|
|
100
|
+
- path: spec/v0.4/agent.schema.json
|
|
106
101
|
replacements: 8
|
|
107
|
-
- path:
|
|
102
|
+
- path: docs/roadmap/phase-1-specification.md
|
|
108
103
|
replacements: 3
|
|
109
104
|
dry_run:
|
|
110
105
|
summary: Dry run result
|
|
111
106
|
value:
|
|
112
107
|
success: true
|
|
113
|
-
version_used:
|
|
108
|
+
version_used: v0.4.2
|
|
114
109
|
files_processed: 42
|
|
115
110
|
replacements_made: 156
|
|
116
111
|
dry_run: true
|
|
117
|
-
message:
|
|
118
|
-
|
|
112
|
+
message: Dry run completed. No files were modified.
|
|
113
|
+
"400":
|
|
119
114
|
description: Invalid request
|
|
120
115
|
content:
|
|
121
116
|
application/json:
|
|
122
117
|
schema:
|
|
123
|
-
$ref:
|
|
118
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
124
119
|
examples:
|
|
125
120
|
invalid_version:
|
|
126
121
|
summary: Invalid version format
|
|
127
122
|
value:
|
|
128
123
|
success: false
|
|
129
|
-
error:
|
|
130
|
-
message:
|
|
131
|
-
code:
|
|
132
|
-
|
|
124
|
+
error: Invalid version format
|
|
125
|
+
message: Version must be in semver format (e.g., '0.4.2' or 'v0.4.2')
|
|
126
|
+
code: INVALID_VERSION_FORMAT
|
|
127
|
+
"500":
|
|
133
128
|
description: Server error
|
|
134
129
|
content:
|
|
135
130
|
application/json:
|
|
136
131
|
schema:
|
|
137
|
-
$ref:
|
|
138
|
-
|
|
132
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
133
|
+
x-ossa-capability: version-substitute-version
|
|
134
|
+
x-ossa-autonomy:
|
|
135
|
+
level: supervised
|
|
136
|
+
approval_required: true
|
|
139
137
|
/version/restore:
|
|
140
138
|
post:
|
|
141
139
|
operationId: restoreVersion
|
|
@@ -152,7 +150,6 @@ paths:
|
|
|
152
150
|
1. Scan files for the specified version
|
|
153
151
|
2. Replace version occurrences with `{{VERSION}}`
|
|
154
152
|
3. Report restorations made
|
|
155
|
-
|
|
156
153
|
tags:
|
|
157
154
|
- version
|
|
158
155
|
requestBody:
|
|
@@ -160,36 +157,39 @@ paths:
|
|
|
160
157
|
content:
|
|
161
158
|
application/json:
|
|
162
159
|
schema:
|
|
163
|
-
$ref:
|
|
160
|
+
$ref: "#/components/schemas/RestoreRequest"
|
|
164
161
|
examples:
|
|
165
162
|
basic:
|
|
166
163
|
summary: Basic restoration
|
|
167
164
|
value:
|
|
168
|
-
version:
|
|
165
|
+
version: 0.4.2
|
|
169
166
|
all_versions:
|
|
170
167
|
summary: Restore all versions to placeholder
|
|
171
168
|
value:
|
|
172
169
|
restore_all: true
|
|
173
170
|
responses:
|
|
174
|
-
|
|
171
|
+
"200":
|
|
175
172
|
description: Restoration completed successfully
|
|
176
173
|
content:
|
|
177
174
|
application/json:
|
|
178
175
|
schema:
|
|
179
|
-
$ref:
|
|
180
|
-
|
|
176
|
+
$ref: "#/components/schemas/RestoreResponse"
|
|
177
|
+
"400":
|
|
181
178
|
description: Invalid request
|
|
182
179
|
content:
|
|
183
180
|
application/json:
|
|
184
181
|
schema:
|
|
185
|
-
$ref:
|
|
186
|
-
|
|
182
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
183
|
+
"500":
|
|
187
184
|
description: Server error
|
|
188
185
|
content:
|
|
189
186
|
application/json:
|
|
190
187
|
schema:
|
|
191
|
-
$ref:
|
|
192
|
-
|
|
188
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
189
|
+
x-ossa-capability: version-restore-version
|
|
190
|
+
x-ossa-autonomy:
|
|
191
|
+
level: supervised
|
|
192
|
+
approval_required: true
|
|
193
193
|
/version/detect:
|
|
194
194
|
get:
|
|
195
195
|
operationId: detectVersion
|
|
@@ -208,7 +208,6 @@ paths:
|
|
|
208
208
|
- Detected version
|
|
209
209
|
- Source where version was found
|
|
210
210
|
- All available versions from all sources
|
|
211
|
-
|
|
212
211
|
tags:
|
|
213
212
|
- detection
|
|
214
213
|
parameters:
|
|
@@ -218,53 +217,53 @@ paths:
|
|
|
218
217
|
required: false
|
|
219
218
|
schema:
|
|
220
219
|
type: string
|
|
221
|
-
default:
|
|
220
|
+
default: .
|
|
222
221
|
responses:
|
|
223
|
-
|
|
222
|
+
"200":
|
|
224
223
|
description: Version detected successfully
|
|
225
224
|
content:
|
|
226
225
|
application/json:
|
|
227
226
|
schema:
|
|
228
|
-
$ref:
|
|
227
|
+
$ref: "#/components/schemas/DetectResponse"
|
|
229
228
|
examples:
|
|
230
229
|
from_git:
|
|
231
230
|
summary: Version detected from git tag
|
|
232
231
|
value:
|
|
233
232
|
success: true
|
|
234
|
-
version:
|
|
235
|
-
source:
|
|
233
|
+
version: v0.4.2
|
|
234
|
+
source: git_tag
|
|
236
235
|
all_sources:
|
|
237
|
-
git_tag:
|
|
238
|
-
package_json:
|
|
236
|
+
git_tag: v0.4.2
|
|
237
|
+
package_json: 0.4.1
|
|
239
238
|
from_package:
|
|
240
239
|
summary: Version detected from package.json
|
|
241
240
|
value:
|
|
242
241
|
success: true
|
|
243
|
-
version:
|
|
244
|
-
source:
|
|
242
|
+
version: 0.4.2
|
|
243
|
+
source: package_json
|
|
245
244
|
all_sources:
|
|
246
|
-
package_json:
|
|
247
|
-
|
|
245
|
+
package_json: 0.4.2
|
|
246
|
+
"404":
|
|
248
247
|
description: No version found
|
|
249
248
|
content:
|
|
250
249
|
application/json:
|
|
251
250
|
schema:
|
|
252
|
-
$ref:
|
|
251
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
253
252
|
examples:
|
|
254
253
|
not_found:
|
|
255
254
|
summary: No version detected
|
|
256
255
|
value:
|
|
257
256
|
success: false
|
|
258
|
-
error:
|
|
259
|
-
message:
|
|
260
|
-
code:
|
|
261
|
-
|
|
257
|
+
error: Version not found
|
|
258
|
+
message: Could not detect version from any source
|
|
259
|
+
code: VERSION_NOT_FOUND
|
|
260
|
+
"500":
|
|
262
261
|
description: Server error
|
|
263
262
|
content:
|
|
264
263
|
application/json:
|
|
265
264
|
schema:
|
|
266
|
-
$ref:
|
|
267
|
-
|
|
265
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
266
|
+
x-ossa-capability: version-detect-version
|
|
268
267
|
/version/validate:
|
|
269
268
|
post:
|
|
270
269
|
operationId: validateVersion
|
|
@@ -282,7 +281,6 @@ paths:
|
|
|
282
281
|
- `0.4` (missing patch)
|
|
283
282
|
- `v0.4.2.1` (too many segments)
|
|
284
283
|
- `latest` (not semver)
|
|
285
|
-
|
|
286
284
|
tags:
|
|
287
285
|
- validation
|
|
288
286
|
requestBody:
|
|
@@ -290,30 +288,30 @@ paths:
|
|
|
290
288
|
content:
|
|
291
289
|
application/json:
|
|
292
290
|
schema:
|
|
293
|
-
$ref:
|
|
291
|
+
$ref: "#/components/schemas/ValidateRequest"
|
|
294
292
|
examples:
|
|
295
293
|
valid:
|
|
296
294
|
summary: Valid version
|
|
297
295
|
value:
|
|
298
|
-
version:
|
|
296
|
+
version: 0.4.2
|
|
299
297
|
invalid:
|
|
300
298
|
summary: Invalid version
|
|
301
299
|
value:
|
|
302
300
|
version: "0.4"
|
|
303
301
|
responses:
|
|
304
|
-
|
|
302
|
+
"200":
|
|
305
303
|
description: Validation result
|
|
306
304
|
content:
|
|
307
305
|
application/json:
|
|
308
306
|
schema:
|
|
309
|
-
$ref:
|
|
307
|
+
$ref: "#/components/schemas/ValidateResponse"
|
|
310
308
|
examples:
|
|
311
309
|
valid:
|
|
312
310
|
summary: Version is valid
|
|
313
311
|
value:
|
|
314
312
|
success: true
|
|
315
313
|
valid: true
|
|
316
|
-
version:
|
|
314
|
+
version: 0.4.2
|
|
317
315
|
parsed:
|
|
318
316
|
major: 0
|
|
319
317
|
minor: 4
|
|
@@ -327,14 +325,17 @@ paths:
|
|
|
327
325
|
valid: false
|
|
328
326
|
version: "0.4"
|
|
329
327
|
errors:
|
|
330
|
-
-
|
|
331
|
-
|
|
328
|
+
- Missing patch version
|
|
329
|
+
"400":
|
|
332
330
|
description: Invalid request
|
|
333
331
|
content:
|
|
334
332
|
application/json:
|
|
335
333
|
schema:
|
|
336
|
-
$ref:
|
|
337
|
-
|
|
334
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
335
|
+
x-ossa-capability: version-validate-version
|
|
336
|
+
x-ossa-autonomy:
|
|
337
|
+
level: supervised
|
|
338
|
+
approval_required: true
|
|
338
339
|
/version/bump:
|
|
339
340
|
post:
|
|
340
341
|
operationId: bumpVersion
|
|
@@ -347,7 +348,6 @@ paths:
|
|
|
347
348
|
- `minor`: 0.4.2 → 0.5.0
|
|
348
349
|
- `patch`: 0.4.2 → 0.4.3
|
|
349
350
|
- `prerelease`: 0.4.2 → 0.4.3-alpha.1
|
|
350
|
-
|
|
351
351
|
tags:
|
|
352
352
|
- version
|
|
353
353
|
requestBody:
|
|
@@ -355,38 +355,41 @@ paths:
|
|
|
355
355
|
content:
|
|
356
356
|
application/json:
|
|
357
357
|
schema:
|
|
358
|
-
$ref:
|
|
358
|
+
$ref: "#/components/schemas/BumpRequest"
|
|
359
359
|
examples:
|
|
360
360
|
patch:
|
|
361
361
|
summary: Bump patch version
|
|
362
362
|
value:
|
|
363
|
-
version:
|
|
364
|
-
bump_type:
|
|
363
|
+
version: 0.4.2
|
|
364
|
+
bump_type: patch
|
|
365
365
|
minor:
|
|
366
366
|
summary: Bump minor version
|
|
367
367
|
value:
|
|
368
|
-
version:
|
|
369
|
-
bump_type:
|
|
368
|
+
version: 0.4.2
|
|
369
|
+
bump_type: minor
|
|
370
370
|
prerelease:
|
|
371
371
|
summary: Bump to prerelease
|
|
372
372
|
value:
|
|
373
|
-
version:
|
|
374
|
-
bump_type:
|
|
375
|
-
prerelease_identifier:
|
|
373
|
+
version: 0.4.2
|
|
374
|
+
bump_type: prerelease
|
|
375
|
+
prerelease_identifier: alpha
|
|
376
376
|
responses:
|
|
377
|
-
|
|
377
|
+
"200":
|
|
378
378
|
description: Version bumped successfully
|
|
379
379
|
content:
|
|
380
380
|
application/json:
|
|
381
381
|
schema:
|
|
382
|
-
$ref:
|
|
383
|
-
|
|
382
|
+
$ref: "#/components/schemas/BumpResponse"
|
|
383
|
+
"400":
|
|
384
384
|
description: Invalid request
|
|
385
385
|
content:
|
|
386
386
|
application/json:
|
|
387
387
|
schema:
|
|
388
|
-
$ref:
|
|
389
|
-
|
|
388
|
+
$ref: "#/components/schemas/ErrorResponse"
|
|
389
|
+
x-ossa-capability: version-bump-version
|
|
390
|
+
x-ossa-autonomy:
|
|
391
|
+
level: supervised
|
|
392
|
+
approval_required: true
|
|
390
393
|
components:
|
|
391
394
|
schemas:
|
|
392
395
|
SubstituteRequest:
|
|
@@ -396,9 +399,9 @@ components:
|
|
|
396
399
|
properties:
|
|
397
400
|
version:
|
|
398
401
|
type: string
|
|
399
|
-
pattern:
|
|
402
|
+
pattern: ^v?\d+\.\d+\.\d+(-[a-zA-Z0-9.]+)?(\+[a-zA-Z0-9.]+)?$
|
|
400
403
|
description: Semantic version to substitute (with or without 'v' prefix)
|
|
401
|
-
example:
|
|
404
|
+
example: 0.4.2
|
|
402
405
|
paths:
|
|
403
406
|
type: array
|
|
404
407
|
items:
|
|
@@ -410,22 +413,22 @@ components:
|
|
|
410
413
|
- "**/*.yaml"
|
|
411
414
|
- "**/*.yml"
|
|
412
415
|
example:
|
|
413
|
-
-
|
|
414
|
-
-
|
|
416
|
+
- spec/**/*.json
|
|
417
|
+
- docs/**/*.md
|
|
415
418
|
exclude:
|
|
416
419
|
type: array
|
|
417
420
|
items:
|
|
418
421
|
type: string
|
|
419
422
|
description: Glob patterns for files to exclude
|
|
420
423
|
default:
|
|
421
|
-
-
|
|
422
|
-
-
|
|
423
|
-
-
|
|
424
|
-
-
|
|
425
|
-
-
|
|
424
|
+
- node_modules/**
|
|
425
|
+
- .git/**
|
|
426
|
+
- vendor/**
|
|
427
|
+
- dist/**
|
|
428
|
+
- build/**
|
|
426
429
|
example:
|
|
427
|
-
-
|
|
428
|
-
-
|
|
430
|
+
- node_modules/**
|
|
431
|
+
- .git/**
|
|
429
432
|
dry_run:
|
|
430
433
|
type: boolean
|
|
431
434
|
default: false
|
|
@@ -435,7 +438,6 @@ components:
|
|
|
435
438
|
default: "{{VERSION}}"
|
|
436
439
|
description: Custom placeholder pattern to replace
|
|
437
440
|
example: "{{VERSION}}"
|
|
438
|
-
|
|
439
441
|
SubstituteResponse:
|
|
440
442
|
type: object
|
|
441
443
|
required:
|
|
@@ -450,7 +452,7 @@ components:
|
|
|
450
452
|
version_used:
|
|
451
453
|
type: string
|
|
452
454
|
description: The version that was substituted
|
|
453
|
-
example:
|
|
455
|
+
example: v0.4.2
|
|
454
456
|
files_processed:
|
|
455
457
|
type: integer
|
|
456
458
|
description: Number of files scanned
|
|
@@ -465,7 +467,7 @@ components:
|
|
|
465
467
|
message:
|
|
466
468
|
type: string
|
|
467
469
|
description: Human-readable result message
|
|
468
|
-
example:
|
|
470
|
+
example: Successfully replaced 156 occurrences in 42 files
|
|
469
471
|
files:
|
|
470
472
|
type: array
|
|
471
473
|
description: Details of each file processed
|
|
@@ -478,7 +480,7 @@ components:
|
|
|
478
480
|
path:
|
|
479
481
|
type: string
|
|
480
482
|
description: Relative path to file
|
|
481
|
-
example:
|
|
483
|
+
example: spec/v0.4/agent.schema.json
|
|
482
484
|
replacements:
|
|
483
485
|
type: integer
|
|
484
486
|
description: Number of replacements in this file
|
|
@@ -495,15 +497,14 @@ components:
|
|
|
495
497
|
type: string
|
|
496
498
|
after:
|
|
497
499
|
type: string
|
|
498
|
-
|
|
499
500
|
RestoreRequest:
|
|
500
501
|
type: object
|
|
501
502
|
properties:
|
|
502
503
|
version:
|
|
503
504
|
type: string
|
|
504
|
-
pattern:
|
|
505
|
+
pattern: ^v?\d+\.\d+\.\d+(-[a-zA-Z0-9.]+)?(\+[a-zA-Z0-9.]+)?$
|
|
505
506
|
description: Specific version to restore to placeholder
|
|
506
|
-
example:
|
|
507
|
+
example: 0.4.2
|
|
507
508
|
restore_all:
|
|
508
509
|
type: boolean
|
|
509
510
|
default: false
|
|
@@ -523,9 +524,10 @@ components:
|
|
|
523
524
|
default: "{{VERSION}}"
|
|
524
525
|
description: Placeholder pattern to restore
|
|
525
526
|
oneOf:
|
|
526
|
-
- required:
|
|
527
|
-
|
|
528
|
-
|
|
527
|
+
- required:
|
|
528
|
+
- version
|
|
529
|
+
- required:
|
|
530
|
+
- restore_all
|
|
529
531
|
RestoreResponse:
|
|
530
532
|
type: object
|
|
531
533
|
required:
|
|
@@ -538,7 +540,7 @@ components:
|
|
|
538
540
|
version_restored:
|
|
539
541
|
type: string
|
|
540
542
|
description: The version that was restored to placeholder
|
|
541
|
-
example:
|
|
543
|
+
example: v0.4.2
|
|
542
544
|
files_processed:
|
|
543
545
|
type: integer
|
|
544
546
|
example: 42
|
|
@@ -547,7 +549,7 @@ components:
|
|
|
547
549
|
example: 156
|
|
548
550
|
message:
|
|
549
551
|
type: string
|
|
550
|
-
example:
|
|
552
|
+
example: Successfully restored 156 occurrences to {{VERSION}} in 42 files
|
|
551
553
|
files:
|
|
552
554
|
type: array
|
|
553
555
|
items:
|
|
@@ -557,15 +559,14 @@ components:
|
|
|
557
559
|
type: string
|
|
558
560
|
replacements:
|
|
559
561
|
type: integer
|
|
560
|
-
|
|
561
562
|
DetectRequest:
|
|
562
563
|
type: object
|
|
563
564
|
properties:
|
|
564
565
|
directory:
|
|
565
566
|
type: string
|
|
566
|
-
default:
|
|
567
|
+
default: .
|
|
567
568
|
description: Directory to search for version sources
|
|
568
|
-
example:
|
|
569
|
+
example: /path/to/project
|
|
569
570
|
sources:
|
|
570
571
|
type: array
|
|
571
572
|
items:
|
|
@@ -578,7 +579,6 @@ components:
|
|
|
578
579
|
- pyproject_toml
|
|
579
580
|
- cargo_toml
|
|
580
581
|
description: Specific sources to check (checks all by default)
|
|
581
|
-
|
|
582
582
|
DetectResponse:
|
|
583
583
|
type: object
|
|
584
584
|
required:
|
|
@@ -591,7 +591,7 @@ components:
|
|
|
591
591
|
version:
|
|
592
592
|
type: string
|
|
593
593
|
description: Detected version
|
|
594
|
-
example:
|
|
594
|
+
example: v0.4.2
|
|
595
595
|
source:
|
|
596
596
|
type: string
|
|
597
597
|
enum:
|
|
@@ -602,16 +602,15 @@ components:
|
|
|
602
602
|
- pyproject_toml
|
|
603
603
|
- cargo_toml
|
|
604
604
|
description: Source where version was found
|
|
605
|
-
example:
|
|
605
|
+
example: git_tag
|
|
606
606
|
all_sources:
|
|
607
607
|
type: object
|
|
608
608
|
description: All versions found from all sources
|
|
609
609
|
additionalProperties:
|
|
610
610
|
type: string
|
|
611
611
|
example:
|
|
612
|
-
git_tag:
|
|
613
|
-
package_json:
|
|
614
|
-
|
|
612
|
+
git_tag: v0.4.2
|
|
613
|
+
package_json: 0.4.1
|
|
615
614
|
ValidateRequest:
|
|
616
615
|
type: object
|
|
617
616
|
required:
|
|
@@ -620,8 +619,7 @@ components:
|
|
|
620
619
|
version:
|
|
621
620
|
type: string
|
|
622
621
|
description: Version string to validate
|
|
623
|
-
example:
|
|
624
|
-
|
|
622
|
+
example: 0.4.2
|
|
625
623
|
ValidateResponse:
|
|
626
624
|
type: object
|
|
627
625
|
required:
|
|
@@ -653,17 +651,16 @@ components:
|
|
|
653
651
|
prerelease:
|
|
654
652
|
type: string
|
|
655
653
|
nullable: true
|
|
656
|
-
example:
|
|
654
|
+
example: alpha.1
|
|
657
655
|
build:
|
|
658
656
|
type: string
|
|
659
657
|
nullable: true
|
|
660
|
-
example:
|
|
658
|
+
example: build.123
|
|
661
659
|
errors:
|
|
662
660
|
type: array
|
|
663
661
|
items:
|
|
664
662
|
type: string
|
|
665
663
|
description: Validation errors (if invalid)
|
|
666
|
-
|
|
667
664
|
BumpRequest:
|
|
668
665
|
type: object
|
|
669
666
|
required:
|
|
@@ -672,9 +669,9 @@ components:
|
|
|
672
669
|
properties:
|
|
673
670
|
version:
|
|
674
671
|
type: string
|
|
675
|
-
pattern:
|
|
672
|
+
pattern: ^v?\d+\.\d+\.\d+(-[a-zA-Z0-9.]+)?(\+[a-zA-Z0-9.]+)?$
|
|
676
673
|
description: Current version
|
|
677
|
-
example:
|
|
674
|
+
example: 0.4.2
|
|
678
675
|
bump_type:
|
|
679
676
|
type: string
|
|
680
677
|
enum:
|
|
@@ -683,12 +680,11 @@ components:
|
|
|
683
680
|
- patch
|
|
684
681
|
- prerelease
|
|
685
682
|
description: Type of version bump
|
|
686
|
-
example:
|
|
683
|
+
example: patch
|
|
687
684
|
prerelease_identifier:
|
|
688
685
|
type: string
|
|
689
686
|
description: Identifier for prerelease (e.g., 'alpha', 'beta', 'rc')
|
|
690
|
-
example:
|
|
691
|
-
|
|
687
|
+
example: alpha
|
|
692
688
|
BumpResponse:
|
|
693
689
|
type: object
|
|
694
690
|
required:
|
|
@@ -701,11 +697,11 @@ components:
|
|
|
701
697
|
old_version:
|
|
702
698
|
type: string
|
|
703
699
|
description: Original version
|
|
704
|
-
example:
|
|
700
|
+
example: 0.4.2
|
|
705
701
|
new_version:
|
|
706
702
|
type: string
|
|
707
703
|
description: Bumped version
|
|
708
|
-
example:
|
|
704
|
+
example: 0.4.3
|
|
709
705
|
bump_type:
|
|
710
706
|
type: string
|
|
711
707
|
enum:
|
|
@@ -713,8 +709,7 @@ components:
|
|
|
713
709
|
- minor
|
|
714
710
|
- patch
|
|
715
711
|
- prerelease
|
|
716
|
-
example:
|
|
717
|
-
|
|
712
|
+
example: patch
|
|
718
713
|
ErrorResponse:
|
|
719
714
|
type: object
|
|
720
715
|
required:
|
|
@@ -724,31 +719,43 @@ components:
|
|
|
724
719
|
properties:
|
|
725
720
|
success:
|
|
726
721
|
type: boolean
|
|
727
|
-
enum:
|
|
722
|
+
enum:
|
|
723
|
+
- false
|
|
728
724
|
error:
|
|
729
725
|
type: string
|
|
730
726
|
description: Error type
|
|
731
|
-
example:
|
|
727
|
+
example: Invalid version format
|
|
732
728
|
message:
|
|
733
729
|
type: string
|
|
734
730
|
description: Human-readable error message
|
|
735
|
-
example:
|
|
731
|
+
example: Version must be in semver format (e.g., '0.4.2' or 'v0.4.2')
|
|
736
732
|
code:
|
|
737
733
|
type: string
|
|
738
734
|
description: Machine-readable error code
|
|
739
|
-
example:
|
|
735
|
+
example: INVALID_VERSION_FORMAT
|
|
740
736
|
details:
|
|
741
737
|
type: object
|
|
742
738
|
description: Additional error details
|
|
743
739
|
additionalProperties: true
|
|
744
|
-
|
|
745
740
|
securitySchemes:
|
|
746
741
|
apiKey:
|
|
747
742
|
type: apiKey
|
|
748
743
|
in: header
|
|
749
744
|
name: X-API-Key
|
|
750
745
|
description: API key for authentication (if required)
|
|
751
|
-
|
|
752
746
|
security:
|
|
753
747
|
- apiKey: []
|
|
754
|
-
- {}
|
|
748
|
+
- {}
|
|
749
|
+
x-ossa-metadata:
|
|
750
|
+
version: 1.0.0
|
|
751
|
+
compliance:
|
|
752
|
+
level: standard
|
|
753
|
+
observability:
|
|
754
|
+
tracing: true
|
|
755
|
+
metrics: true
|
|
756
|
+
logging: true
|
|
757
|
+
x-ossa:
|
|
758
|
+
version: 0.5.0
|
|
759
|
+
agent:
|
|
760
|
+
id: version-management-api
|
|
761
|
+
type: worker
|