├── .changeset ├── README.md ├── config.json └── format.js ├── .dockerignore ├── .eslintrc.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md ├── styles │ ├── Redocly-Docs │ │ ├── BritishEnglish.yml │ │ ├── FutureTense.yml │ │ ├── HeaderGerunds.yml │ │ ├── InclusionGenderCulture.yml │ │ └── OxfordComma.yml │ └── config │ │ └── vocabularies │ │ └── Redocly-Docs │ │ ├── accept.txt │ │ └── reject.txt └── workflows │ ├── docs-tests.yaml │ ├── performance.yaml │ ├── pr-title.yml │ ├── pre-release.yaml │ ├── release.yaml │ ├── require-changeset.yaml │ ├── smoke-plugins.yaml │ ├── smoke-rebilly.yaml │ ├── smoke.yaml │ └── tests.yaml ├── .gitignore ├── .husky └── pre-commit ├── .markdownlint.yaml ├── .mlc.toml ├── .prettierignore ├── .prettierrc.json ├── .vale.ini ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── docs ├── @v1 │ ├── api-docs.md │ ├── api-standards.md │ ├── changelog.md │ ├── commands │ │ ├── build-docs.md │ │ ├── bundle.md │ │ ├── check-config.md │ │ ├── completion.md │ │ ├── eject.md │ │ ├── generate-arazzo.md │ │ ├── images │ │ │ ├── lint-markdown.png │ │ │ └── stats-github-job-summary.png │ │ ├── index.md │ │ ├── join.md │ │ ├── lint.md │ │ ├── login.md │ │ ├── logout.md │ │ ├── preview-docs.md │ │ ├── preview.md │ │ ├── push-status.md │ │ ├── push.md │ │ ├── respect.md │ │ ├── split.md │ │ ├── stats.md │ │ └── translate.md │ ├── configuration │ │ ├── api.yaml │ │ ├── apis.md │ │ ├── extends.md │ │ ├── index.md │ │ ├── mockserver.yaml │ │ ├── reference │ │ │ ├── apis.md │ │ │ ├── decorators.md │ │ │ ├── extends.md │ │ │ ├── plugins.md │ │ │ ├── preprocessors.md │ │ │ ├── resolve.md │ │ │ └── rules.md │ │ ├── resolve.yaml │ │ ├── rules.md │ │ └── schema.yaml │ ├── custom-plugins │ │ ├── custom-config.md │ │ ├── custom-decorators.md │ │ ├── custom-rules.md │ │ ├── extended-types.md │ │ ├── index.md │ │ └── visitor.md │ ├── decorators.md │ ├── decorators │ │ ├── filter-in.md │ │ ├── filter-out.md │ │ ├── info-description-override.md │ │ ├── info-override.md │ │ ├── media-type-examples-override.md │ │ ├── operation-description-override.md │ │ ├── remove-unused-components.md │ │ ├── remove-x-internal.md │ │ └── tag-description-override.md │ ├── file-management.md │ ├── guides │ │ ├── autocomplete.md │ │ ├── change-token-url.md │ │ ├── configure-rules.md │ │ ├── hide-apis.md │ │ ├── hide-specification-extensions.md │ │ ├── images │ │ │ ├── hide-apis-path-to-root-file.png │ │ │ ├── hide-internal-apis-problem.png │ │ │ ├── museum-arazzo-lint.png │ │ │ ├── response-contains-property-multiple.png │ │ │ ├── response-contains-property-one.png │ │ │ └── response-contains-property-range.png │ │ ├── index.md │ │ ├── lint-and-bundle.md │ │ ├── lint-arazzo.md │ │ ├── lint-asyncapi.md │ │ ├── migrate-from-openapi-cli.md │ │ ├── migrate-from-redoc-cli.md │ │ ├── migrate-from-spectral.md │ │ ├── migrate-from-swagger-cli.md │ │ ├── replace-servers-url.md │ │ ├── response-contains-property.md │ │ └── update-cli.md │ ├── images │ │ ├── install-update-openapi-cli.gif │ │ ├── preview-docs.png │ │ ├── redoc.png │ │ ├── redocly-api-ref.png │ │ └── updated-preview-docs.png │ ├── index.md │ ├── installation.md │ ├── openapi-starter.md │ ├── quickstart.md │ ├── rules.md │ ├── rules │ │ ├── arazzo │ │ │ ├── criteria-unique.md │ │ │ ├── parameters-unique.md │ │ │ ├── requestBody-replacements-unique.md │ │ │ ├── sourceDescriptions-name-unique.md │ │ │ ├── sourceDescriptions-not-empty.md │ │ │ ├── sourceDescriptions-type.md │ │ │ ├── step-onFailure-unique.md │ │ │ ├── step-onSuccess-unique.md │ │ │ ├── stepId-unique.md │ │ │ ├── struct.md │ │ │ ├── workflow-dependsOn.md │ │ │ └── workflowId-unique.md │ │ ├── async │ │ │ ├── channels-kebab-case.md │ │ │ └── no-channel-trailing-slash.md │ │ ├── built-in-rules.md │ │ ├── configurable-rules.md │ │ ├── configure-rules.md │ │ ├── minimal.md │ │ ├── oas │ │ │ ├── array-parameter-serialization.md │ │ │ ├── boolean-parameter-prefixes.md │ │ │ ├── component-name-unique.md │ │ │ ├── info-contact.md │ │ │ ├── info-license-url.md │ │ │ ├── info-license.md │ │ │ ├── no-ambiguous-paths.md │ │ │ ├── no-empty-servers.md │ │ │ ├── no-enum-type-mismatch.md │ │ │ ├── no-example-value-and-externalValue.md │ │ │ ├── no-http-verbs-in-paths.md │ │ │ ├── no-identical-paths.md │ │ │ ├── no-invalid-media-type-examples.md │ │ │ ├── no-invalid-parameter-examples.md │ │ │ ├── no-invalid-schema-examples.md │ │ │ ├── no-path-trailing-slash.md │ │ │ ├── no-required-schema-properties-undefined.md │ │ │ ├── no-schema-type-mismatch.md │ │ │ ├── no-server-example-com.md │ │ │ ├── no-server-trailing-slash.md │ │ │ ├── no-server-variables-empty-enum.md │ │ │ ├── no-undefined-server-variable.md │ │ │ ├── no-unresolved-refs.md │ │ │ ├── no-unused-components.md │ │ │ ├── operation-2xx-response.md │ │ │ ├── operation-4xx-problem-details-rfc7807.md │ │ │ ├── operation-4xx-response.md │ │ │ ├── operation-description.md │ │ │ ├── operation-operationId-unique.md │ │ │ ├── operation-operationId-url-safe.md │ │ │ ├── operation-operationId.md │ │ │ ├── operation-parameters-unique.md │ │ │ ├── operation-singular-tag.md │ │ │ ├── operation-summary.md │ │ │ ├── operation-tag-defined.md │ │ │ ├── parameter-description.md │ │ │ ├── path-declaration-must-exist.md │ │ │ ├── path-excludes-patterns.md │ │ │ ├── path-not-include-query.md │ │ │ ├── path-parameters-defined.md │ │ │ ├── path-segment-plural.md │ │ │ ├── paths-kebab-case.md │ │ │ ├── request-mime-type.md │ │ │ ├── required-string-property-missing-min-length.md │ │ │ ├── response-contains-header.md │ │ │ ├── response-contains-property.md │ │ │ ├── response-mime-type.md │ │ │ ├── scalar-property-missing-example.md │ │ │ ├── security-defined.md │ │ │ ├── spec-components-invalid-map-name.md │ │ │ ├── spec-strict-refs.md │ │ │ ├── struct.md │ │ │ ├── tag-description.md │ │ │ └── tags-alphabetical.md │ │ ├── recommended.md │ │ ├── respect │ │ │ ├── no-criteria-xpath.md │ │ │ └── respect-supported-versions.md │ │ ├── ruleset-templates.md │ │ └── spec-ruleset.md │ ├── usage-data.md │ └── v1.sidebars.yaml ├── @v2 │ ├── api-docs.md │ ├── api-standards.md │ ├── changelog.md │ ├── commands │ │ ├── build-docs.md │ │ ├── bundle.md │ │ ├── check-config.md │ │ ├── completion.md │ │ ├── eject.md │ │ ├── generate-arazzo.md │ │ ├── images │ │ │ ├── lint-markdown.png │ │ │ └── stats-github-job-summary.png │ │ ├── index.md │ │ ├── join.md │ │ ├── lint.md │ │ ├── login.md │ │ ├── logout.md │ │ ├── preview.md │ │ ├── push-status.md │ │ ├── push.md │ │ ├── respect.md │ │ ├── split.md │ │ ├── stats.md │ │ └── translate.md │ ├── configuration │ │ ├── api.yaml │ │ ├── apis.md │ │ ├── extends.md │ │ ├── index.md │ │ ├── mockserver.yaml │ │ ├── reference │ │ │ ├── apis.md │ │ │ ├── decorators.md │ │ │ ├── extends.md │ │ │ ├── plugins.md │ │ │ ├── preprocessors.md │ │ │ ├── resolve.md │ │ │ └── rules.md │ │ ├── resolve.yaml │ │ └── rules.md │ ├── custom-plugins │ │ ├── custom-config.md │ │ ├── custom-decorators.md │ │ ├── custom-rules.md │ │ ├── extended-types.md │ │ ├── index.md │ │ └── visitor.md │ ├── decorators.md │ ├── decorators │ │ ├── filter-in.md │ │ ├── filter-out.md │ │ ├── info-description-override.md │ │ ├── info-override.md │ │ ├── media-type-examples-override.md │ │ ├── operation-description-override.md │ │ ├── remove-unused-components.md │ │ ├── remove-x-internal.md │ │ └── tag-description-override.md │ ├── file-management.md │ ├── guides │ │ ├── autocomplete.md │ │ ├── change-token-url.md │ │ ├── configure-rules.md │ │ ├── hide-apis.md │ │ ├── hide-specification-extensions.md │ │ ├── images │ │ │ ├── hide-apis-path-to-root-file.png │ │ │ ├── hide-internal-apis-problem.png │ │ │ ├── museum-arazzo-lint.png │ │ │ ├── response-contains-property-multiple.png │ │ │ ├── response-contains-property-one.png │ │ │ └── response-contains-property-range.png │ │ ├── index.md │ │ ├── lint-and-bundle.md │ │ ├── lint-arazzo.md │ │ ├── lint-asyncapi.md │ │ ├── migrate-from-openapi-cli.md │ │ ├── migrate-from-redoc-cli.md │ │ ├── migrate-from-spectral.md │ │ ├── migrate-from-swagger-cli.md │ │ ├── migrate-to-v2.md │ │ ├── replace-servers-url.md │ │ ├── response-contains-property.md │ │ └── update-cli.md │ ├── images │ │ ├── install-update-openapi-cli.gif │ │ ├── redoc-reunite.svg │ │ ├── redoc.png │ │ └── updated-preview-docs.png │ ├── index.md │ ├── installation.md │ ├── openapi-starter.md │ ├── quickstart.md │ ├── rules.md │ ├── rules │ │ ├── arazzo │ │ │ ├── criteria-unique.md │ │ │ ├── parameters-unique.md │ │ │ ├── requestBody-replacements-unique.md │ │ │ ├── sourceDescriptions-name-unique.md │ │ │ ├── sourceDescriptions-not-empty.md │ │ │ ├── sourceDescriptions-type.md │ │ │ ├── step-onFailure-unique.md │ │ │ ├── step-onSuccess-unique.md │ │ │ ├── stepId-unique.md │ │ │ ├── workflow-dependsOn.md │ │ │ └── workflowId-unique.md │ │ ├── async │ │ │ ├── channels-kebab-case.md │ │ │ ├── no-channel-trailing-slash.md │ │ │ └── no-duplicated-tag-names.md │ │ ├── built-in-rules.md │ │ ├── common │ │ │ ├── no-enum-type-mismatch.md │ │ │ ├── no-required-schema-properties-undefined.md │ │ │ ├── no-schema-type-mismatch.md │ │ │ ├── no-unresolved-refs.md │ │ │ └── struct.md │ │ ├── configurable-rules.md │ │ ├── configure-rules.md │ │ ├── minimal.md │ │ ├── oas │ │ │ ├── array-parameter-serialization.md │ │ │ ├── boolean-parameter-prefixes.md │ │ │ ├── component-name-unique.md │ │ │ ├── info-contact.md │ │ │ ├── info-license-strict.md │ │ │ ├── info-license.md │ │ │ ├── no-ambiguous-paths.md │ │ │ ├── no-duplicated-tag-names.md │ │ │ ├── no-empty-servers.md │ │ │ ├── no-example-value-and-externalValue.md │ │ │ ├── no-http-verbs-in-paths.md │ │ │ ├── no-identical-paths.md │ │ │ ├── no-invalid-media-type-examples.md │ │ │ ├── no-invalid-parameter-examples.md │ │ │ ├── no-invalid-schema-examples.md │ │ │ ├── no-path-trailing-slash.md │ │ │ ├── no-server-example-com.md │ │ │ ├── no-server-trailing-slash.md │ │ │ ├── no-server-variables-empty-enum.md │ │ │ ├── no-undefined-server-variable.md │ │ │ ├── no-unused-components.md │ │ │ ├── nullable-type-sibling.md │ │ │ ├── operation-2xx-response.md │ │ │ ├── operation-4xx-problem-details-rfc7807.md │ │ │ ├── operation-4xx-response.md │ │ │ ├── operation-description.md │ │ │ ├── operation-operationId-unique.md │ │ │ ├── operation-operationId-url-safe.md │ │ │ ├── operation-operationId.md │ │ │ ├── operation-parameters-unique.md │ │ │ ├── operation-singular-tag.md │ │ │ ├── operation-summary.md │ │ │ ├── operation-tag-defined.md │ │ │ ├── parameter-description.md │ │ │ ├── path-declaration-must-exist.md │ │ │ ├── path-not-include-query.md │ │ │ ├── path-parameters-defined.md │ │ │ ├── path-segment-plural.md │ │ │ ├── paths-kebab-case.md │ │ │ ├── request-mime-type.md │ │ │ ├── required-string-property-missing-min-length.md │ │ │ ├── response-contains-header.md │ │ │ ├── response-contains-property.md │ │ │ ├── response-mime-type.md │ │ │ ├── scalar-property-missing-example.md │ │ │ ├── security-defined.md │ │ │ ├── spec-components-invalid-map-name.md │ │ │ ├── spec-discriminator-defaultMapping.md │ │ │ ├── spec-example-values.md │ │ │ ├── spec-no-invalid-encoding-combinations.md │ │ │ ├── spec-no-invalid-tag-parents.md │ │ │ ├── spec-strict-refs.md │ │ │ ├── tag-description.md │ │ │ └── tags-alphabetical.md │ │ ├── recommended.md │ │ ├── respect │ │ │ ├── no-criteria-xpath.md │ │ │ ├── no-x-security-both-scheme-and-scheme-name.md │ │ │ ├── no-x-security-scheme-name-without-openapi.md │ │ │ ├── respect-supported-versions.md │ │ │ ├── x-security-scheme-name-reference.md │ │ │ └── x-security-scheme-required-values.md │ │ ├── ruleset-templates.md │ │ └── spec-ruleset.md │ ├── usage-data.md │ └── v2.sidebars.yaml ├── _code-snippets │ └── per-api-rules-example.yaml ├── sidebars.yaml └── versions.yaml ├── media └── redocly-cli.gif ├── package.json ├── packages ├── cli │ ├── .npmignore │ ├── CHANGELOG.md │ ├── bin │ │ └── cli.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── commands │ │ │ │ ├── build-docs.test.ts │ │ │ │ ├── bundle.test.ts │ │ │ │ ├── generate-arazzo.test.ts │ │ │ │ ├── join.test.ts │ │ │ │ ├── lint.test.ts │ │ │ │ └── respect │ │ │ │ │ ├── create-network-dispatcher.test.ts │ │ │ │ │ ├── har-logs │ │ │ │ │ ├── create-har-log.test.ts │ │ │ │ │ └── helpers │ │ │ │ │ │ ├── add-headers.test.ts │ │ │ │ │ │ ├── build-headers.test.ts │ │ │ │ │ │ ├── build-params.test.ts │ │ │ │ │ │ ├── build-request-cookies.test.ts │ │ │ │ │ │ ├── build-response-cookies.test.ts │ │ │ │ │ │ ├── get-agent.test.ts │ │ │ │ │ │ ├── get-duration.test.ts │ │ │ │ │ │ ├── get-input-url.test.ts │ │ │ │ │ │ └── handle-request.test.ts │ │ │ │ │ ├── mtls │ │ │ │ │ └── resolve-mtls-certificates.test.ts │ │ │ │ │ └── respect.test.ts │ │ │ ├── fetch-with-timeout.test.ts │ │ │ ├── fixtures │ │ │ │ ├── config.ts │ │ │ │ ├── join │ │ │ │ │ └── documents.ts │ │ │ │ ├── openapi.json │ │ │ │ ├── openapi.yaml │ │ │ │ └── redocly.yaml │ │ │ ├── spinner.test.ts │ │ │ ├── utils.test.ts │ │ │ ├── utils │ │ │ │ ├── read-env-variables.test.ts │ │ │ │ └── telemetry.test.ts │ │ │ └── wrapper.test.ts │ │ ├── auth │ │ │ ├── __tests__ │ │ │ │ ├── device-flow.test.ts │ │ │ │ └── oauth-client.test.ts │ │ │ ├── device-flow.ts │ │ │ └── oauth-client.ts │ │ ├── commands │ │ │ ├── auth.ts │ │ │ ├── build-docs │ │ │ │ ├── index.ts │ │ │ │ ├── template.hbs │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── bundle.ts │ │ │ ├── eject.ts │ │ │ ├── generate-arazzo.ts │ │ │ ├── join.ts │ │ │ ├── lint.ts │ │ │ ├── preview-project │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── respect │ │ │ │ ├── connection-client.ts │ │ │ │ ├── display-files-summary-table.ts │ │ │ │ ├── har-logs │ │ │ │ │ ├── README.md │ │ │ │ │ ├── har-logs.ts │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── add-headers.ts │ │ │ │ │ │ ├── build-headers.ts │ │ │ │ │ │ ├── build-params.ts │ │ │ │ │ │ ├── build-request-cookies.ts │ │ │ │ │ │ ├── build-response-cookies.ts │ │ │ │ │ │ ├── get-agent.ts │ │ │ │ │ │ ├── get-duration.ts │ │ │ │ │ │ ├── get-input-url.ts │ │ │ │ │ │ └── handle-request.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-har.ts │ │ │ │ ├── index.ts │ │ │ │ ├── json-logs.ts │ │ │ │ └── mtls │ │ │ │ │ ├── resolve-mtls-certificates.ts │ │ │ │ │ └── validate-mtls-command-option.ts │ │ │ ├── split │ │ │ │ ├── __tests__ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── samples.json │ │ │ │ │ │ ├── spec.json │ │ │ │ │ │ └── webhooks.json │ │ │ │ │ └── index.test.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── stats.ts │ │ │ └── translations.ts │ │ ├── custom.d.ts │ │ ├── index.ts │ │ ├── reunite │ │ │ ├── api │ │ │ │ ├── __tests__ │ │ │ │ │ ├── api-keys.test.ts │ │ │ │ │ ├── api.client.test.ts │ │ │ │ │ └── domains.test.ts │ │ │ │ ├── api-client.ts │ │ │ │ ├── api-keys.ts │ │ │ │ ├── domains.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── commands │ │ │ │ ├── __tests__ │ │ │ │ │ ├── push-status.test.ts │ │ │ │ │ ├── push.test.ts │ │ │ │ │ └── utils.test.ts │ │ │ │ ├── push-status.ts │ │ │ │ ├── push.ts │ │ │ │ └── utils.ts │ │ │ └── utils.ts │ │ ├── types.ts │ │ ├── utils │ │ │ ├── __tests__ │ │ │ │ ├── json-stringify-with-array-buffer.test.ts │ │ │ │ └── validate-mount-path.test.ts │ │ │ ├── assert-node-version.ts │ │ │ ├── constants.ts │ │ │ ├── error.ts │ │ │ ├── fetch-with-timeout.ts │ │ │ ├── get-command-name-from-args.ts │ │ │ ├── json-stringify-with-array-buffer.ts │ │ │ ├── miscellaneous.ts │ │ │ ├── network-check.ts │ │ │ ├── otel.ts │ │ │ ├── package.ts │ │ │ ├── platform.ts │ │ │ ├── proxy-agent.ts │ │ │ ├── read-env-variables.ts │ │ │ ├── spinner.ts │ │ │ ├── telemetry.ts │ │ │ ├── update-version-notifier.ts │ │ │ ├── validate-mount-path.ts │ │ │ └── validate-positive-number.ts │ │ └── wrapper.ts │ └── tsconfig.json ├── core │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ │ └── utils.ts │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── bundle-oas.test.ts.snap │ │ │ │ └── bundle.test.ts.snap │ │ │ ├── bundle-examples-ref-resolution.test.ts │ │ │ ├── bundle-oas.test.ts │ │ │ ├── bundle.test.ts │ │ │ ├── codeframes.test.ts │ │ │ ├── entity-yaml.test.ts │ │ │ ├── fixtures │ │ │ │ ├── .redocly.lint-ignore.yaml │ │ │ │ ├── example-data.json │ │ │ │ ├── extension.js │ │ │ │ ├── lint-with-refs-and-plugins │ │ │ │ │ ├── config-with-plugin.yaml │ │ │ │ │ ├── config-with-ref-to-plugin.yaml │ │ │ │ │ └── custom-plugin.js │ │ │ │ ├── lint │ │ │ │ │ └── openapi.yaml │ │ │ │ ├── local-plugin.js │ │ │ │ ├── redocly.yaml │ │ │ │ ├── refs │ │ │ │ │ ├── definitions.yaml │ │ │ │ │ ├── examples.yaml │ │ │ │ │ ├── external-request-body.yaml │ │ │ │ │ ├── externalref.yaml │ │ │ │ │ ├── hosted.yaml │ │ │ │ │ ├── openapi-with-external-refs-conflicting-names.yaml │ │ │ │ │ ├── openapi-with-external-refs.yaml │ │ │ │ │ ├── openapi-with-special-names-in-props.yaml │ │ │ │ │ ├── openapi-with-url-refs.yaml │ │ │ │ │ ├── param-b.yaml │ │ │ │ │ ├── param-c.yaml │ │ │ │ │ ├── rename.yaml │ │ │ │ │ ├── requestBody.yaml │ │ │ │ │ ├── schema-a.yaml │ │ │ │ │ ├── simple.yaml │ │ │ │ │ └── vendor.schema.yaml │ │ │ │ ├── resolve │ │ │ │ │ ├── External.yaml │ │ │ │ │ ├── External2.yaml │ │ │ │ │ ├── description.md │ │ │ │ │ ├── externalInfo.yaml │ │ │ │ │ ├── externalLicense.yaml │ │ │ │ │ ├── openapi-with-back.yaml │ │ │ │ │ ├── openapi-with-md-description.yaml │ │ │ │ │ ├── openapi.yaml │ │ │ │ │ ├── schemas │ │ │ │ │ │ ├── type-a.yaml │ │ │ │ │ │ └── type-b.yaml │ │ │ │ │ └── transitive │ │ │ │ │ │ ├── a.yaml │ │ │ │ │ │ ├── components.yaml │ │ │ │ │ │ └── schemas.yaml │ │ │ │ ├── self-file-refs │ │ │ │ │ ├── async2.yaml │ │ │ │ │ ├── async3-nested.yaml │ │ │ │ │ ├── async3-root.yaml │ │ │ │ │ ├── oas2.yaml │ │ │ │ │ ├── oas3-nested.yaml │ │ │ │ │ └── oas3-root.yaml │ │ │ │ └── sibling-refs │ │ │ │ │ ├── arazzo.yaml │ │ │ │ │ ├── asyncapi.yaml │ │ │ │ │ ├── description.md │ │ │ │ │ ├── openapi-non-summary-desc-ref.yaml │ │ │ │ │ ├── openapi-request-body.yaml │ │ │ │ │ ├── openapi-with-description-ref.yaml │ │ │ │ │ ├── openapi.yaml │ │ │ │ │ └── summary.md │ │ │ ├── format.test.ts │ │ │ ├── js-yaml.test.ts │ │ │ ├── lint.test.ts │ │ │ ├── logger-browser.test.ts │ │ │ ├── logger.test.ts │ │ │ ├── normalizeVisitors.test.ts │ │ │ ├── output-browser.test.ts │ │ │ ├── output.test.ts │ │ │ ├── ref-utils.test.ts │ │ │ ├── resolve-http.test.ts │ │ │ ├── resolve.test.ts │ │ │ ├── utils-browser.test.ts │ │ │ ├── utils.test.ts │ │ │ └── walk.test.ts │ │ ├── bundle │ │ │ ├── bundle-document.ts │ │ │ ├── bundle-oas.ts │ │ │ ├── bundle-visitor.ts │ │ │ └── bundle.ts │ │ ├── config │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── config-resolvers.test.ts.snap │ │ │ │ │ ├── config.test.ts.snap │ │ │ │ │ └── load.test.ts.snap │ │ │ │ ├── config-resolvers.test.ts │ │ │ │ ├── config.test.ts │ │ │ │ ├── fixtures │ │ │ │ │ ├── gold.yaml │ │ │ │ │ ├── ingore-file.ts │ │ │ │ │ ├── load-external.yaml │ │ │ │ │ ├── load-redocly-with-scorecards.yaml │ │ │ │ │ ├── load-redocly.yaml │ │ │ │ │ ├── plugin-config.yaml │ │ │ │ │ ├── plugin.cjs │ │ │ │ │ ├── resolve-config │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── nested-config.yaml │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── local-config-with-circular.yaml │ │ │ │ │ │ ├── local-config-with-commonjs-export-function.yaml │ │ │ │ │ │ ├── local-config-with-custom-function.yaml │ │ │ │ │ │ ├── local-config-with-esm.yaml │ │ │ │ │ │ ├── local-config-with-file.yaml │ │ │ │ │ │ ├── local-config-with-plugin-init.yaml │ │ │ │ │ │ ├── local-config-with-realm-plugin.yaml │ │ │ │ │ │ ├── local-config-with-wrong-custom-function.yaml │ │ │ │ │ │ ├── local-config.yaml │ │ │ │ │ │ ├── plugin-esm.mjs │ │ │ │ │ │ ├── plugin-with-export-function.cjs │ │ │ │ │ │ ├── plugin-with-init-logic.js │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ ├── realm-plugin.js │ │ │ │ │ │ └── sd.yaml │ │ │ │ │ ├── resolve-refs-in-config │ │ │ │ │ │ ├── config-with-refs.yaml │ │ │ │ │ │ ├── rules.yaml │ │ │ │ │ │ └── seo.yaml │ │ │ │ │ └── resolve-remote-configs │ │ │ │ │ │ ├── nested-remote-config.yaml │ │ │ │ │ │ └── remote-config.yaml │ │ │ │ ├── load.test.ts │ │ │ │ ├── resolve-plugins.test.ts │ │ │ │ └── utils.test.ts │ │ │ ├── all.ts │ │ │ ├── builtIn.ts │ │ │ ├── bundle-extends.ts │ │ │ ├── config-resolvers.ts │ │ │ ├── config.ts │ │ │ ├── constants.ts │ │ │ ├── get-resolve-config.ts │ │ │ ├── group-assertion-rules.ts │ │ │ ├── index.ts │ │ │ ├── load.ts │ │ │ ├── minimal.ts │ │ │ ├── recommended-strict.ts │ │ │ ├── recommended.ts │ │ │ ├── rules.ts │ │ │ ├── spec.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── visitors.ts │ │ ├── decorators │ │ │ ├── __tests__ │ │ │ │ ├── filter-in.test.ts │ │ │ │ ├── filter-out.test.ts │ │ │ │ ├── media-type-examples-override.test.ts │ │ │ │ ├── remove-x-internal.test.ts │ │ │ │ └── resources │ │ │ │ │ ├── request.yaml │ │ │ │ │ └── response.yaml │ │ │ ├── arazzo │ │ │ │ └── index.ts │ │ │ ├── async2 │ │ │ │ └── index.ts │ │ │ ├── async3 │ │ │ │ └── index.ts │ │ │ ├── common │ │ │ │ ├── filters │ │ │ │ │ ├── filter-helper.ts │ │ │ │ │ ├── filter-in.ts │ │ │ │ │ └── filter-out.ts │ │ │ │ ├── info-description-override.ts │ │ │ │ ├── info-override.ts │ │ │ │ ├── media-type-examples-override.ts │ │ │ │ ├── operation-description-override.ts │ │ │ │ ├── remove-x-internal.ts │ │ │ │ └── tag-description-override.ts │ │ │ ├── oas2 │ │ │ │ ├── __tests__ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── handle-invalid-ref │ │ │ │ │ │ │ ├── schemas.yaml │ │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ └── remove-unused-components.test.ts │ │ │ │ ├── index.ts │ │ │ │ └── remove-unused-components.ts │ │ │ ├── oas3 │ │ │ │ ├── __tests__ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── handle-invalid-ref │ │ │ │ │ │ │ ├── openapi.yaml │ │ │ │ │ │ │ └── schemas.yaml │ │ │ │ │ └── remove-unused-components.test.ts │ │ │ │ ├── index.ts │ │ │ │ └── remove-unused-components.ts │ │ │ └── overlay1 │ │ │ │ └── index.ts │ │ ├── detect-spec.ts │ │ ├── env.ts │ │ ├── errors │ │ │ └── yaml-parse-error.ts │ │ ├── format │ │ │ ├── codeframes.ts │ │ │ └── format.ts │ │ ├── index.ts │ │ ├── js-yaml │ │ │ └── index.ts │ │ ├── lint.ts │ │ ├── logger.ts │ │ ├── oas-types.ts │ │ ├── ref-utils.ts │ │ ├── resolve.ts │ │ ├── rules │ │ │ ├── __tests__ │ │ │ │ ├── spec-ruleset.test.ts │ │ │ │ └── utils.test.ts │ │ │ ├── ajv.ts │ │ │ ├── arazzo │ │ │ │ ├── __tests__ │ │ │ │ │ ├── criteria-unique.test.ts │ │ │ │ │ ├── no-criteria-xpath.test.ts │ │ │ │ │ ├── no-x-security-scheme-name-without-openapi.test.ts │ │ │ │ │ ├── parameters-unique.test.ts │ │ │ │ │ ├── requestBody-replacements-unique.test.ts │ │ │ │ │ ├── respect-supported-versions.test.ts │ │ │ │ │ ├── source-description-type.test.ts │ │ │ │ │ ├── sourceDescription-name-unique.test.ts │ │ │ │ │ ├── sourceDescriptions-not-empty.test.ts │ │ │ │ │ ├── step-onFailure-unique.test.ts │ │ │ │ │ ├── step-onSuccess-unique.test.ts │ │ │ │ │ ├── stepId-unique.test.ts │ │ │ │ │ ├── workflow-dependsOn.test.ts │ │ │ │ │ ├── workflowId-unique.test.ts │ │ │ │ │ └── x-security-scheme-required-values.test.ts │ │ │ │ ├── criteria-unique.ts │ │ │ │ ├── index.ts │ │ │ │ ├── parameters-unique.ts │ │ │ │ ├── requestBody-replacements-unique.ts │ │ │ │ ├── sourceDescription-type.ts │ │ │ │ ├── sourceDescriptions-name-unique.ts │ │ │ │ ├── sourceDescriptions-not-empty.ts │ │ │ │ ├── step-onFailure-unique.ts │ │ │ │ ├── step-onSuccess-unique.ts │ │ │ │ ├── stepId-unique.ts │ │ │ │ ├── workflow-dependsOn.ts │ │ │ │ └── workflowId-unique.ts │ │ │ ├── async2 │ │ │ │ ├── __tests__ │ │ │ │ │ ├── channels-kebab-case.test.ts │ │ │ │ │ └── no-channel-trailing-slash.test.ts │ │ │ │ ├── channels-kebab-case.ts │ │ │ │ ├── index.ts │ │ │ │ └── no-channel-trailing-slash.ts │ │ │ ├── async3 │ │ │ │ ├── __tests__ │ │ │ │ │ ├── channels-kebab-case.test.ts │ │ │ │ │ └── no-channel-trailing-slash.test.ts │ │ │ │ ├── channels-kebab-case.ts │ │ │ │ ├── index.ts │ │ │ │ └── no-channel-trailing-slash.ts │ │ │ ├── catalog-entity │ │ │ │ ├── __tests__ │ │ │ │ │ └── entity-key-valid.test.ts │ │ │ │ └── entity-key-valid.ts │ │ │ ├── common │ │ │ │ ├── __tests__ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── code-sample.php │ │ │ │ │ │ ├── invalid-yaml.yaml │ │ │ │ │ │ └── ref.yaml │ │ │ │ │ ├── info-license-strict.test.ts │ │ │ │ │ ├── info-license.test.ts │ │ │ │ │ ├── no-ambiguous-paths.test.ts │ │ │ │ │ ├── no-duplicated-tag-names.test.ts │ │ │ │ │ ├── no-enum-type-mismatch.test.ts │ │ │ │ │ ├── no-http-verbs-in-paths.test.ts │ │ │ │ │ ├── no-identical-paths.test.ts │ │ │ │ │ ├── no-invalid-parameter-examples.test.ts │ │ │ │ │ ├── no-invalid-schema-examples.test.ts │ │ │ │ │ ├── no-path-trailing-slash.test.ts │ │ │ │ │ ├── no-required-schema-properties-undefined.test.ts │ │ │ │ │ ├── no-schema-type-mismatch.test.ts │ │ │ │ │ ├── no-unresolved-refs.test.ts │ │ │ │ │ ├── operation-2xx-response.test.ts │ │ │ │ │ ├── operation-4xx-response.test.ts │ │ │ │ │ ├── operation-operationId-unique.test.ts │ │ │ │ │ ├── operation-operationId-url-safe.test.ts │ │ │ │ │ ├── operation-parameters-unique.test.ts │ │ │ │ │ ├── operation-singular-tag.test.ts │ │ │ │ │ ├── operation-tag-defined.test.ts │ │ │ │ │ ├── path-http-verbs-order.test.ts │ │ │ │ │ ├── path-not-include-query.test.ts │ │ │ │ │ ├── path-params-defined.test.ts │ │ │ │ │ ├── paths-kebab-case.test.ts │ │ │ │ │ ├── scalar-property-missing-example.test.ts │ │ │ │ │ ├── security-defined.test.ts │ │ │ │ │ ├── spec-strict-refs.test.ts │ │ │ │ │ ├── struct.test.ts │ │ │ │ │ ├── tag-description.test.ts │ │ │ │ │ └── tags-alphabetical.test.ts │ │ │ │ ├── assertions │ │ │ │ │ ├── __tests__ │ │ │ │ │ │ ├── asserts.test.ts │ │ │ │ │ │ ├── index.test.ts │ │ │ │ │ │ └── utils.test.ts │ │ │ │ │ ├── asserts.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── info-contact.ts │ │ │ │ ├── info-license-strict.ts │ │ │ │ ├── info-license.ts │ │ │ │ ├── no-ambiguous-paths.ts │ │ │ │ ├── no-duplicated-tag-names.ts │ │ │ │ ├── no-enum-type-mismatch.ts │ │ │ │ ├── no-http-verbs-in-paths.ts │ │ │ │ ├── no-identical-paths.ts │ │ │ │ ├── no-invalid-parameter-examples.ts │ │ │ │ ├── no-invalid-schema-examples.ts │ │ │ │ ├── no-path-trailing-slash.ts │ │ │ │ ├── no-required-schema-properties-undefined.ts │ │ │ │ ├── no-schema-type-mismatch.ts │ │ │ │ ├── no-unresolved-refs.ts │ │ │ │ ├── operation-2xx-response.ts │ │ │ │ ├── operation-4xx-response.ts │ │ │ │ ├── operation-description.ts │ │ │ │ ├── operation-operationId-unique.ts │ │ │ │ ├── operation-operationId-url-safe.ts │ │ │ │ ├── operation-operationId.ts │ │ │ │ ├── operation-parameters-unique.ts │ │ │ │ ├── operation-singular-tag.ts │ │ │ │ ├── operation-summary.ts │ │ │ │ ├── operation-tag-defined.ts │ │ │ │ ├── parameter-description.ts │ │ │ │ ├── path-declaration-must-exist.ts │ │ │ │ ├── path-http-verbs-order.ts │ │ │ │ ├── path-not-include-query.ts │ │ │ │ ├── path-params-defined.ts │ │ │ │ ├── path-segment-plural.ts │ │ │ │ ├── paths-kebab-case.ts │ │ │ │ ├── required-string-property-missing-min-length.ts │ │ │ │ ├── response-contains-header.ts │ │ │ │ ├── scalar-property-missing-example.ts │ │ │ │ ├── security-defined.ts │ │ │ │ ├── spec-strict-refs.ts │ │ │ │ ├── struct.ts │ │ │ │ ├── tag-description.ts │ │ │ │ └── tags-alphabetical.ts │ │ │ ├── oas2 │ │ │ │ ├── __tests__ │ │ │ │ │ ├── boolean-parameter-prefixes.test.ts │ │ │ │ │ ├── response-contains-header.test.ts │ │ │ │ │ ├── response-contains-property.test.ts │ │ │ │ │ └── struct │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── description.md │ │ │ │ │ │ ├── info.test.ts │ │ │ │ │ │ ├── operation.test.ts │ │ │ │ │ │ ├── paths.test.ts │ │ │ │ │ │ ├── referenceableScalars.test.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ ├── boolean-parameter-prefixes.ts │ │ │ │ ├── index.ts │ │ │ │ ├── request-mime-type.ts │ │ │ │ ├── response-contains-property.ts │ │ │ │ └── response-mime-type.ts │ │ │ ├── oas3 │ │ │ │ ├── __tests__ │ │ │ │ │ ├── array-parameter-serialization.test.ts │ │ │ │ │ ├── boolean-parameter-prefixes.test.ts │ │ │ │ │ ├── component-name-unique.test.ts │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── common.yaml │ │ │ │ │ │ └── external-value.yaml │ │ │ │ │ ├── no-empty-enum-servers.com.test.ts │ │ │ │ │ ├── no-example-value-and-externalValue.test.ts │ │ │ │ │ ├── no-invalid-media-type-examples.test.ts │ │ │ │ │ ├── no-server-example.com.test.ts │ │ │ │ │ ├── no-server-trailing-slash.test.ts │ │ │ │ │ ├── no-undefined-server-variables.test.ts │ │ │ │ │ ├── no-unused-components.test.ts │ │ │ │ │ ├── operation-4xx-problem-details-rfc7807.test.ts │ │ │ │ │ ├── response-contains-header.test.ts │ │ │ │ │ ├── response-contains-property.test.ts │ │ │ │ │ ├── spec-components-invalid-map-name.test.ts │ │ │ │ │ ├── spec-discriminator-defaultMapping.test.ts │ │ │ │ │ ├── spec-example-values.test.ts │ │ │ │ │ ├── spec-no-invalid-encoding-combinations.test.ts │ │ │ │ │ ├── spec-no-invalid-tag-parents.test.ts │ │ │ │ │ ├── struct │ │ │ │ │ │ ├── callbacks.test.ts │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ └── description.md │ │ │ │ │ │ ├── info.test.ts │ │ │ │ │ │ ├── operation.test.ts │ │ │ │ │ │ ├── paths.test.ts │ │ │ │ │ │ ├── referenceableScalars.test.ts │ │ │ │ │ │ ├── servers.test.ts │ │ │ │ │ │ ├── struct.test.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ └── utils │ │ │ │ │ │ └── lint-document-for-test.ts │ │ │ │ ├── array-parameter-serialization.ts │ │ │ │ ├── boolean-parameter-prefixes.ts │ │ │ │ ├── component-name-unique.ts │ │ │ │ ├── index.ts │ │ │ │ ├── no-empty-servers.ts │ │ │ │ ├── no-example-value-and-externalValue.ts │ │ │ │ ├── no-invalid-media-type-examples.ts │ │ │ │ ├── no-server-example.com.ts │ │ │ │ ├── no-server-trailing-slash.ts │ │ │ │ ├── no-server-variables-empty-enum.ts │ │ │ │ ├── no-undefined-server-variable.ts │ │ │ │ ├── no-unused-components.ts │ │ │ │ ├── nullable-type-sibling.ts │ │ │ │ ├── operation-4xx-problem-details-rfc7807.ts │ │ │ │ ├── request-mime-type.ts │ │ │ │ ├── response-contains-property.ts │ │ │ │ ├── response-mime-type.ts │ │ │ │ ├── spec-components-invalid-map-name.ts │ │ │ │ ├── spec-discriminator-defaultMapping.ts │ │ │ │ ├── spec-example-values.ts │ │ │ │ ├── spec-no-invalid-encoding-combinations.ts │ │ │ │ └── spec-no-invalid-tag-parents.ts │ │ │ ├── other │ │ │ │ └── stats.ts │ │ │ ├── overlay1 │ │ │ │ ├── __tests__ │ │ │ │ │ └── info-contact.test.ts │ │ │ │ └── index.ts │ │ │ ├── respect │ │ │ │ ├── __tests__ │ │ │ │ │ ├── no-x-security-both-scheme-and-schemeName.test.ts │ │ │ │ │ └── x-security-scheme-name-reference.test.ts │ │ │ │ ├── no-criteria-xpath.ts │ │ │ │ ├── no-x-security-both-scheme-and-scheme-name.ts │ │ │ │ ├── no-x-security-scheme-name-without-openapi.ts │ │ │ │ ├── respect-supported-versions.ts │ │ │ │ ├── x-security-scheme-name-reference.ts │ │ │ │ └── x-security-scheme-required-values.ts │ │ │ └── utils.ts │ │ ├── types │ │ │ ├── arazzo.ts │ │ │ ├── asyncapi2.ts │ │ │ ├── asyncapi3.ts │ │ │ ├── entity-yaml.ts │ │ │ ├── index.ts │ │ │ ├── json-schema-adapter.ts │ │ │ ├── oas2.ts │ │ │ ├── oas3.ts │ │ │ ├── oas3_1.ts │ │ │ ├── oas3_2.ts │ │ │ ├── overlay.ts │ │ │ └── redocly-yaml.ts │ │ ├── typings │ │ │ ├── arazzo.ts │ │ │ ├── asyncapi.ts │ │ │ ├── asyncapi3.ts │ │ │ ├── common.ts │ │ │ ├── openapi.ts │ │ │ ├── overlay.ts │ │ │ └── swagger.ts │ │ ├── utils │ │ │ ├── assign-config.ts │ │ │ ├── dequal.ts │ │ │ ├── does-yaml-file-exist.ts │ │ │ ├── error.ts │ │ │ ├── get-intersection-length.ts │ │ │ ├── get-matching-status-code-range.ts │ │ │ ├── get-own.ts │ │ │ ├── identity.ts │ │ │ ├── is-custom-rule-id.ts │ │ │ ├── is-defined.ts │ │ │ ├── is-empty-array.ts │ │ │ ├── is-empty-object.ts │ │ │ ├── is-not-empty-array.ts │ │ │ ├── is-not-empty-object.ts │ │ │ ├── is-not-string.ts │ │ │ ├── is-ordered.ts │ │ │ ├── is-path-parameter.ts │ │ │ ├── is-plain-object.ts │ │ │ ├── is-string.ts │ │ │ ├── is-truthy.ts │ │ │ ├── keys-of.ts │ │ │ ├── make-ref-id.ts │ │ │ ├── next-tick.ts │ │ │ ├── omit.ts │ │ │ ├── pause.ts │ │ │ ├── pluralize.ts │ │ │ ├── read-file-from-url.ts │ │ │ ├── regex-from-string.ts │ │ │ ├── slash.ts │ │ │ ├── split-camel-case-into-words.ts │ │ │ ├── stack.ts │ │ │ ├── types.ts │ │ │ ├── validate-mime-type.ts │ │ │ └── yaml-fs-helper.ts │ │ ├── visitors.ts │ │ └── walk.ts │ └── tsconfig.json └── respect-core │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── arazzo-schema.ts │ ├── generate.ts │ ├── index.ts │ ├── modules │ │ ├── __tests__ │ │ │ ├── arazzo-description-generator │ │ │ │ ├── cleanup-test-description.test.ts │ │ │ │ ├── generate-arazzo-description.test.ts │ │ │ │ ├── generate-example-value.test.ts │ │ │ │ ├── generate-inputs-arazzo-components.test.ts │ │ │ │ ├── generate-test-data-from-json-schema.test.ts │ │ │ │ ├── generate-workflow-security-inputs.test.ts │ │ │ │ └── generate-workflow-security-parameters.test.ts │ │ │ ├── checks │ │ │ │ └── severity.test.ts │ │ │ ├── config-parser │ │ │ │ ├── auto-with-lint-errors.yaml │ │ │ │ ├── auto.yaml │ │ │ │ ├── get-security-parameters.test.ts │ │ │ │ ├── get-value-from-context.test.ts │ │ │ │ ├── handle-request-body-replacements.test.ts │ │ │ │ ├── parse-parameters.test.ts │ │ │ │ ├── parse-request-body.test.ts │ │ │ │ ├── resolve-reusable-component-item.test.ts │ │ │ │ └── resolve-reusable-object-reference.test.ts │ │ │ ├── description-parser │ │ │ │ ├── get-operation-from-description.test.ts │ │ │ │ ├── get-request-body-schema.test.ts │ │ │ │ ├── get-response-schema.test.ts │ │ │ │ └── remove-write-only-properties.test.ts │ │ │ ├── faker.test.ts │ │ │ ├── flow-runner │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── run-step.test.ts.snap │ │ │ │ ├── call-api-and-analyze-results.test.ts │ │ │ │ ├── context │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── create-runtime-expression-ctx.test.ts.snap │ │ │ │ │ ├── create-runtime-expression-ctx.test.ts │ │ │ │ │ └── create-test-context.test.ts │ │ │ │ ├── error-message-matcher.test.ts │ │ │ │ ├── get-server-url.test.ts │ │ │ │ ├── get-workflows-to-run.test.ts │ │ │ │ ├── inputs │ │ │ │ │ ├── format-cli-inputs.test.ts │ │ │ │ │ └── map-input-values-to-schema.test.ts │ │ │ │ ├── outputs │ │ │ │ │ └── print-message.test.ts │ │ │ │ ├── prepare-request.test.ts │ │ │ │ ├── resolve-running-workflows.test.ts │ │ │ │ ├── resolve-security-scheme.test.ts │ │ │ │ ├── resolve-x-security-parameters.ts.test.ts │ │ │ │ ├── run-step.test.ts │ │ │ │ ├── runner │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── create-workflow-runner.test.ts.snap │ │ │ │ │ │ └── run-test-file.test.ts.snap │ │ │ │ │ ├── create-workflow-runner.test.ts │ │ │ │ │ ├── resolve-workflow-context.test.ts │ │ │ │ │ └── run-test-file.test.ts │ │ │ │ ├── schema │ │ │ │ │ └── schema-checker.test.ts │ │ │ │ ├── success-criteria │ │ │ │ │ ├── check-success-criteria.test.ts │ │ │ │ │ └── validate-success-criteria.test.ts │ │ │ │ └── validate-x-security-parameters.test.ts │ │ │ ├── logger-output │ │ │ │ ├── helpers.test.ts │ │ │ │ └── mask-secrets.test.ts │ │ │ ├── runtime-expressions │ │ │ │ ├── evaluate.test.ts │ │ │ │ ├── lint.test.ts │ │ │ │ └── replace-json-pointers.test.ts │ │ │ └── timeout-timer │ │ │ │ └── timer.test.ts │ │ ├── arazzo-description-generator │ │ │ ├── cleanup-test-description.ts │ │ │ ├── generate-arazzo-description.ts │ │ │ ├── generate-example-value.ts │ │ │ ├── generate-inputs-arazzo-components.ts │ │ │ ├── generate-test-data-from-json-schema.ts │ │ │ ├── generate-workflow-security-inputs.ts │ │ │ ├── generate-workflow-security-parameters.ts │ │ │ ├── generate-workflows-from-description.ts │ │ │ └── index.ts │ │ ├── checks │ │ │ ├── checks.ts │ │ │ ├── index.ts │ │ │ └── severity.ts │ │ ├── context-parser │ │ │ ├── get-security-parameters.ts │ │ │ ├── get-value-from-context.ts │ │ │ ├── handle-request-body-replacements.ts │ │ │ ├── index.ts │ │ │ ├── parse-parameters.ts │ │ │ ├── parse-request-body.ts │ │ │ ├── resolve-reusable-component.ts │ │ │ └── resolve-reusable-object-reference.ts │ │ ├── description-parser │ │ │ ├── bundle-openapi.ts │ │ │ ├── extract-first-example.ts │ │ │ ├── get-operation-by-id.ts │ │ │ ├── get-operation-by-path.ts │ │ │ ├── get-operation-from-description.ts │ │ │ ├── get-request-body-schema.ts │ │ │ ├── get-request-data-from-openapi.ts │ │ │ ├── get-response-schema.ts │ │ │ ├── index.ts │ │ │ └── remove-write-only-properties.ts │ │ ├── faker.ts │ │ ├── flow-runner │ │ │ ├── call-api-and-analyze-results.ts │ │ │ ├── context │ │ │ │ ├── create-runtime-expression-ctx.ts │ │ │ │ ├── create-test-context.ts │ │ │ │ ├── index.ts │ │ │ │ ├── set-public-steps.ts │ │ │ │ └── set-public-workflows.ts │ │ │ ├── error-message-matcher.ts │ │ │ ├── get-server-url.ts │ │ │ ├── get-test-description-from-file.ts │ │ │ ├── get-workflows-to-run.ts │ │ │ ├── index.ts │ │ │ ├── inputs │ │ │ │ ├── format-cli-inputs.ts │ │ │ │ ├── index.ts │ │ │ │ └── map-input-values-to-schema.ts │ │ │ ├── outputs │ │ │ │ ├── index.ts │ │ │ │ └── print-message.ts │ │ │ ├── prepare-request.ts │ │ │ ├── resolve-running-workflows.ts │ │ │ ├── resolve-security-scheme.ts │ │ │ ├── resolve-x-security-parameters.ts │ │ │ ├── run-step.ts │ │ │ ├── runner.ts │ │ │ ├── schema │ │ │ │ ├── index.ts │ │ │ │ └── schema-checker.ts │ │ │ ├── success-criteria │ │ │ │ ├── check-success-criteria.ts │ │ │ │ ├── evaluate-jsonpath-condition.ts │ │ │ │ ├── index.ts │ │ │ │ └── validate-success-criteria.ts │ │ │ └── validate-x-security-parameters.ts │ │ ├── logger-output │ │ │ ├── calculate-tests-passed.ts │ │ │ ├── display-checks.ts │ │ │ ├── display-errors.ts │ │ │ ├── display-summary.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── mask-secrets.ts │ │ │ └── verbose-logs.ts │ │ ├── runtime-expressions │ │ │ ├── abnf-parser.pegjs │ │ │ ├── evaluate.ts │ │ │ ├── index.ts │ │ │ ├── lint.ts │ │ │ └── replace-json-pointers.ts │ │ └── timeout-timer │ │ │ └── timer.ts │ ├── run.ts │ ├── types.ts │ └── utils │ │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── ajv-errors.test.ts.snap │ │ ├── ajv-errors.test.ts │ │ ├── api-fetcher.test.ts │ │ ├── check-circular-refs-in-schema.test.ts │ │ ├── clean-colors.test.ts │ │ ├── deep-copy.test.ts │ │ ├── digest-auth │ │ │ ├── generate-digest-auth-header.test.ts │ │ │ └── parse-www-authenticate-header.test.ts │ │ ├── file.test.ts │ │ ├── get-nested-value.test.ts │ │ ├── is-binary-content-type.test.ts │ │ ├── is-empty.test.ts │ │ ├── is-json.test.ts │ │ ├── sort.test.ts │ │ ├── time.test.ts │ │ └── url.test.ts │ │ ├── ajv-errors.ts │ │ ├── api-fetcher.ts │ │ ├── binary-content-type-checker.ts │ │ ├── check-circular-refs-in-schema.ts │ │ ├── clean-colors.ts │ │ ├── deep-copy.ts │ │ ├── delay.ts │ │ ├── digest-auth │ │ ├── generate-digest-auth-header.ts │ │ └── parse-www-authenticate-header.ts │ │ ├── file.ts │ │ ├── get-nested-value.ts │ │ ├── is-empty.ts │ │ ├── is-json.ts │ │ ├── sort.ts │ │ ├── time.ts │ │ └── url.ts │ └── tsconfig.json ├── resources ├── .redocly.lint-ignore.yaml ├── async.yaml ├── asyncapi3.yaml ├── description.md ├── local-plugin.js ├── museum-api.arazzo.yaml ├── museum-tickets.arazzo.yaml ├── museum.yaml ├── overlay.yaml ├── pets.yaml ├── petstore-with-errors.yaml ├── rebilly.yaml └── redocly.yaml ├── scripts ├── local-pack.sh ├── post-changeset.js └── write-release-message.js ├── tests ├── e2e │ ├── build-docs │ │ ├── build-docs-with-config-option │ │ │ ├── index.hbs │ │ │ ├── nested │ │ │ │ ├── message-schema.yaml │ │ │ │ ├── openapi.yaml │ │ │ │ └── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── build-docs-with-disabled-search │ │ │ ├── config-with-alias.yaml │ │ │ ├── config-with-apis-and-root-option.yaml │ │ │ ├── config.yaml │ │ │ ├── openapi.yaml │ │ │ └── snapshot.txt │ │ └── simple-build-docs │ │ │ ├── pets.yaml │ │ │ └── snapshot.txt │ ├── bundle │ │ ├── async3 │ │ │ ├── UserSignedUp.yaml │ │ │ ├── redocly.yaml │ │ │ ├── simple.yml │ │ │ └── snapshot.txt │ │ ├── bundle-anchor │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── test.yaml │ │ ├── bundle-arazzo-valid-test-description │ │ │ ├── museum.yaml │ │ │ ├── parameter.yaml │ │ │ ├── request-body.yaml │ │ │ └── snapshot.txt │ │ ├── bundle-description-dereferenced │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ ├── snapshot_2.txt │ │ │ └── test.yaml │ │ ├── bundle-description-long │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ ├── snapshot_2.txt │ │ │ └── test.yaml │ │ ├── bundle-example-value-with-ref │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── bundle-external-value │ │ │ ├── external-value.json │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ ├── test-success.yaml │ │ │ └── test-wrong-examples.yaml │ │ ├── bundle-no-output-without-inline-apis │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── test.yaml │ │ ├── bundle-remove-unused-components-from-api-config │ │ │ ├── oas2-without-option │ │ │ │ ├── keep-unused-components-snapshot.txt │ │ │ │ ├── openapi.yaml │ │ │ │ └── redocly.yaml │ │ │ ├── oas2 │ │ │ │ ├── openapi.yaml │ │ │ │ ├── redocly.yaml │ │ │ │ └── remove-unused-components-snapshot.txt │ │ │ ├── oas3-turn-off-with-flag │ │ │ │ ├── keep-unused-components-snapshot.txt │ │ │ │ ├── openapi.yaml │ │ │ │ └── redocly.yaml │ │ │ ├── oas3-with-decorator-off │ │ │ │ ├── keep-unused-components-snapshot.txt │ │ │ │ ├── openapi.yaml │ │ │ │ └── redocly.yaml │ │ │ ├── oas3-without-option │ │ │ │ ├── keep-unused-components-snapshot.txt │ │ │ │ ├── openapi.yaml │ │ │ │ └── redocly.yaml │ │ │ └── oas3 │ │ │ │ ├── openapi.yaml │ │ │ │ ├── redocly.yaml │ │ │ │ └── remove-unused-components-snapshot.txt │ │ ├── bundle-remove-unused-components-from-config │ │ │ ├── oas2-without-option │ │ │ │ ├── openapi.yaml │ │ │ │ ├── redocly.yaml │ │ │ │ ├── ref.yaml │ │ │ │ └── without-remove-unused-components-snapshot.txt │ │ │ ├── oas2 │ │ │ │ ├── openapi.yaml │ │ │ │ ├── redocly.yaml │ │ │ │ ├── ref.yaml │ │ │ │ └── remove-unused-components-snapshot.txt │ │ │ ├── oas3-without-option │ │ │ │ ├── openapi.yaml │ │ │ │ ├── redocly.yaml │ │ │ │ ├── ref.yaml │ │ │ │ └── without-remove-unused-components-snapshot.txt │ │ │ └── oas3 │ │ │ │ ├── openapi.yaml │ │ │ │ ├── redocly.yaml │ │ │ │ ├── ref.yaml │ │ │ │ └── remove-unused-components-snapshot.txt │ │ ├── bundle-remove-unused-components │ │ │ ├── oas2 │ │ │ │ ├── openapi.yaml │ │ │ │ ├── redocly.yaml │ │ │ │ ├── ref.yaml │ │ │ │ └── remove-unused-components-snapshot.txt │ │ │ └── oas3 │ │ │ │ ├── openapi.yaml │ │ │ │ ├── redocly.yaml │ │ │ │ ├── ref.yaml │ │ │ │ └── remove-unused-components-snapshot.txt │ │ ├── discriminator-mapping │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ ├── main.yaml │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── snapshot_2.txt │ │ ├── info-description-override-error │ │ │ ├── main.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── info-description-override │ │ │ ├── main.yaml │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── test.md │ │ ├── info-override │ │ │ ├── main.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── media-type-examples-override │ │ │ ├── examples │ │ │ │ ├── request.yaml │ │ │ │ └── response.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-duplicated-components │ │ │ ├── Test.yaml │ │ │ ├── openapi.yaml │ │ │ ├── paths │ │ │ │ └── path.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-self-referenced-components │ │ │ ├── openapi.yaml │ │ │ ├── parameters │ │ │ │ ├── PetId.yaml │ │ │ │ └── _index.yaml │ │ │ ├── paths │ │ │ │ └── Pet.yaml │ │ │ ├── redocly.yaml │ │ │ ├── schemas │ │ │ │ ├── Pet.yaml │ │ │ │ └── _index.yaml │ │ │ └── snapshot.txt │ │ ├── no-self-referenced-or-duplicated-components │ │ │ ├── components │ │ │ │ └── schemas.yaml │ │ │ ├── folder │ │ │ │ └── myObject.v2.schema.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── oas3_1-pattern-porperties │ │ │ ├── object.yaml │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── test.yaml │ │ ├── operation-description-override-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-description-override │ │ │ ├── create-user-operation-description.md │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── update-pet-operation-description.md │ │ ├── primitive-types │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── reference-ending-in-hash │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ ├── schemas │ │ │ │ └── Pet.json │ │ │ └── snapshot.txt │ │ ├── remove-x-internal │ │ │ ├── main.yaml │ │ │ ├── redocly.yaml │ │ │ ├── schemas │ │ │ │ ├── candy-cane.yaml │ │ │ │ ├── cranberry.yaml │ │ │ │ └── popcorn.yaml │ │ │ └── snapshot.txt │ │ ├── resolve-refs-from-x-attributes │ │ │ ├── external.yaml │ │ │ ├── openapi.yaml │ │ │ ├── plugin.cjs │ │ │ ├── redocly.yaml │ │ │ ├── resolve-x.decorator.cjs │ │ │ └── snapshot.txt │ │ ├── self-file-ref-normalization │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── sibling-refs-asyncapi │ │ │ ├── asyncapi.yaml │ │ │ ├── description.md │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── summary.md │ │ ├── sibling-refs-oas │ │ │ ├── description.md │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── summary.md │ │ ├── tag-description-override-error │ │ │ ├── main.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ └── tag-description-override │ │ │ ├── main.yaml │ │ │ ├── pet-tag-description.md │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── store-tag-description.md │ ├── check-config │ │ ├── config-type-extensions-in-assertions │ │ │ ├── openapi.yaml │ │ │ ├── plugins │ │ │ │ └── type-extention.cjs │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── empty-config-null │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-config--lint-config-error │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-config--lint-config-warn │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-config--no-option │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── valid-config-with-config-option │ │ │ ├── nested │ │ │ │ └── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── valid-config │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ └── wrong-config-type-extensions-in-assertions │ │ │ ├── openapi.yaml │ │ │ ├── plugins │ │ │ └── type-extention.cjs │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ ├── commands.test.ts │ ├── fixtures │ │ └── constructor-property │ │ │ ├── openapi.yaml │ │ │ └── snapshot.txt │ ├── helpers.ts │ ├── join │ │ ├── fails-if-component-conflicts │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── fails-if-no-info-section │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── fails-if-tags-duplication │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── ignore-decorators │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── json-and-yaml-input │ │ │ ├── bar.yaml │ │ │ ├── foo.json │ │ │ ├── json-output.snapshot.txt │ │ │ └── yaml-output.snapshot.txt │ │ ├── multi-references-to-one-file │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ ├── nested │ │ │ │ ├── FooObject.yaml │ │ │ │ └── Response.yaml │ │ │ ├── openapi.yaml │ │ │ └── snapshot.txt │ │ ├── multiple-tags-in-same-files │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── oas3.2 │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── prefix-components-with-info-prop │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── prefix-tags-with-filename │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── prefix-tags-with-info-prop │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── reference-in-description │ │ │ ├── bar.yaml │ │ │ ├── description.md │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── references-in-parameters │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── three-files-one-without-servers │ │ │ ├── bar.yaml │ │ │ ├── baz.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── two-files-with-no-errors │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ ├── with-metadata │ │ │ ├── pet.yaml │ │ │ ├── snapshot.txt │ │ │ └── test.yaml │ │ ├── without-x-tag-groups │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ │ └── yaml-input-and-json-output │ │ │ ├── bar.yaml │ │ │ ├── foo.yaml │ │ │ └── snapshot.txt │ ├── lint-config │ │ ├── __fixtures__ │ │ │ ├── invalid-openapi.yaml │ │ │ └── valid-openapi.yaml │ │ ├── config-structure │ │ │ ├── env.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── config-with-refs-extended │ │ │ ├── apis.yaml │ │ │ ├── redocly.yaml │ │ │ ├── rules.yaml │ │ │ ├── seo.yaml │ │ │ ├── snapshot.txt │ │ │ ├── theme-openapi.yaml │ │ │ └── v1.yaml │ │ ├── config-with-refs │ │ │ ├── redocly.yaml │ │ │ ├── rules.yaml │ │ │ ├── snapshot.txt │ │ │ └── theme-openapi.yaml │ │ ├── invalid-config--lint-config-error │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-config--lint-config-off │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-config--lint-config-warn │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-config--no-option │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-config-assertation-config-type │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-config-assertation-name │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-config-format-json │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── invalid-definition-and-config │ │ │ ├── config-with-error.snapshot.txt │ │ │ ├── config-with-warn.snapshot.txt │ │ │ └── redocly.yaml │ │ └── invalid-lint-config-severity │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ ├── lint │ │ ├── arazzo-not-valid-test-description │ │ │ ├── museum.yaml │ │ │ └── snapshot.txt │ │ ├── arazzo-type-extensions-with-plugin │ │ │ ├── museum.yaml │ │ │ ├── plugins │ │ │ │ └── type-extention.cjs │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── arazzo-valid-test-description │ │ │ ├── museum.yaml │ │ │ └── snapshot.txt │ │ ├── assertion-string-property-min-length │ │ │ ├── openapi.yaml │ │ │ ├── plugin.mjs │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-camel-case-twice │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-casing-camel-case-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-casing-kebab-case-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-casing-pascal-case-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-casing-snake-case-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-custom-function-options │ │ │ ├── openapi.yaml │ │ │ ├── plugin.mjs │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-defined-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-enum-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-enum-on-keys-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-list-types │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-map-types │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-match-parent-keys │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-max-length-array-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-max-length-string-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-message-placeholders │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-min-length-array-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-min-length-string-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-mutually-exclusive-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-mutually-required-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-non-empty-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-non-empty-off │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-non-empty-warn │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-pattern-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-pattern-report-location │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-pattern-with-object │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-patternProperties │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ ├── schema.json │ │ │ └── snapshot.txt │ │ ├── assertions-property-key-not-allowed │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-property-key-required │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-query-in-parameters │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-ref-forbidden-error │ │ │ ├── components │ │ │ │ ├── paths │ │ │ │ │ └── Owners.yaml │ │ │ │ └── schemas │ │ │ │ │ └── Error.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-ref-pattern-error │ │ │ ├── components │ │ │ │ ├── Vets.yaml │ │ │ │ ├── paths │ │ │ │ │ └── Owners.yaml │ │ │ │ └── schemas │ │ │ │ │ └── Error.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-ref-required-error │ │ │ ├── components │ │ │ │ ├── paths │ │ │ │ │ └── Owners.yaml │ │ │ │ └── schemas │ │ │ │ │ └── Error.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-require-any-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-severity-override-without-extends │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── snapshot_2.txt │ │ ├── assertions-severity-override │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ ├── ruleset.yaml │ │ │ ├── snapshot.txt │ │ │ └── snapshot_2.txt │ │ ├── assertions-show-suggestions │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-type-integer-in-parameter │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-type-integer-in-schema-response │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-undefined-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions-vendor-extensions │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── assertions │ │ │ ├── description.md │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── async2 │ │ │ ├── anyof.yml │ │ │ ├── application-headers.yml │ │ │ ├── correlation-id.yml │ │ │ ├── gitter-streaming.yml │ │ │ ├── mercure.yml │ │ │ ├── not.yml │ │ │ ├── oneof.yml │ │ │ ├── operation-security.yml │ │ │ ├── operation-with-tags.yml │ │ │ ├── redocly.yaml │ │ │ ├── rpc-client.yml │ │ │ ├── rpc-server.yml │ │ │ ├── simple.yml │ │ │ ├── slack-rtm.yml │ │ │ ├── snapshot.txt │ │ │ ├── streetlights-kafka.yml │ │ │ ├── streetlights-mqtt.yml │ │ │ ├── streetlights-operation-security.yml │ │ │ └── websocket-gemini.yml │ │ ├── async3 │ │ │ ├── anyof.yml │ │ │ ├── application-headers.yml │ │ │ ├── correlation-id.yml │ │ │ ├── gitter-streaming.yml │ │ │ ├── mercure.yml │ │ │ ├── not.yml │ │ │ ├── oneof.yml │ │ │ ├── operation-security.yml │ │ │ ├── redocly.yaml │ │ │ ├── rpc-client.yml │ │ │ ├── rpc-server.yml │ │ │ ├── simple.yml │ │ │ ├── slack-rtm.yml │ │ │ ├── snapshot.txt │ │ │ ├── streetlights-kafka.yml │ │ │ ├── streetlights-mqtt.yml │ │ │ ├── streetlights-operation-security.yml │ │ │ └── websocket-gemini.yml │ │ ├── default-message-override │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── split │ │ │ │ ├── info.yaml │ │ │ │ ├── openapi.yaml │ │ │ │ └── paths │ │ │ │ └── test.yaml │ │ ├── extends-empty-array │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── info-contact--lint-in-apis │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── info-contact-not-present-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── info-contact │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── info-license-rule-not-present-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── info-license-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── info-license-strict-missing-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── info-license-strict-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── merge-lint-configs │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── nested-extends-two-level │ │ │ ├── nested-config-2.yaml │ │ │ ├── nested-config.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── nested-extends │ │ │ ├── nested-config.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-duplicated-tag-names │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-empty-servers-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-empty-servers-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-enum-type-mismatch-error-recommended-config │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-enum-type-mismatch-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-enum-type-mismatch │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-http-verbs-in-paths-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-http-verbs-in-paths-split-words-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-media-type-examples-anyof-top-props │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-media-type-examples-invalid-schema │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-media-type-examples-multiple-valid-refs-different-files │ │ │ ├── components.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-media-type-examples-multiple-valid-refs │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-media-type-examples-recursion-oneOf │ │ │ ├── openapi.json │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-media-type-examples-recursion │ │ │ ├── openapi.json │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-media-type-examples │ │ │ ├── example.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-schema-examples-array-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-schema-examples-nested-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-schema-examples-oas3.1-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-schema-examples-oas3.1 │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-schema-examples-string-number-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-invalid-schema-examples │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-path-trailing-slash-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-path-trailing-slash-off │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-path-trailing-slash-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-server-example-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-server-trailing-slash-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-server-trailing-slash-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-server-variables-empty-enum-errror │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-server-variables-empty-enum │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-undefined-server-variable-error-recommended-config │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-unresolved-refs-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-unresolved-refs-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-unused-components-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── no-unused-components-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── null-schema-values │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── oas2 │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── oas3-no-errors │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── oas3.1-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── oas3.1 │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── oas3.2 │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-2xx-response-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-2xx-response-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-4xx-problem-details-rfc7807 │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-4xx-response-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-4xx-response-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-description-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-description-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-operationId-in-callback │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-operationId-unique-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-operationId-unique-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-parameters-unique-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-security-defined-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-security-defined-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-security-scheme-oas2-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-security-scheme-oas3-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── operation-tag-defined-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── parameter-description-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── parameter-description-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── path-declaration-must-exist-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── path-declaration-must-exist-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── path-not-include-query-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── path-not-include-query-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── path-parameters-defined-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── path-parameters-defined-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── path-segment-plural-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── path-segment-plural │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── request-response-mime-type-oas2-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── request-response-mime-type-oas3-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── request-response-mime-type-oas3.1-error │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── required-string-property-missing-min-length │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── skip-rules │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ └── snapshot_2.txt │ │ ├── spec-error-if-minimum-not-correct │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── spec-from │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── spec-json-schema-validation-dependentRequired │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── spec-strict-refs │ │ │ ├── info.yaml │ │ │ ├── openapi.yaml │ │ │ ├── props.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── tags-alphabetical-rule │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── tags-alphabetical-warning │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── test-unused-component │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── turn-off-rules │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── turn-on-all-rules │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── validate-schema-formats │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── with-ignore-file │ │ │ ├── .redocly.lint-ignore.yaml │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ ├── wrong-required-type │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ │ └── xml-oas-3.2 │ │ │ ├── openapi.yaml │ │ │ ├── redocly.yaml │ │ │ └── snapshot.txt │ ├── miscellaneous │ │ ├── apply-per-api-decorators │ │ │ ├── nested │ │ │ │ ├── openapi │ │ │ │ │ └── main.yaml │ │ │ │ ├── plugins │ │ │ │ │ ├── decorators │ │ │ │ │ │ └── version.cjs │ │ │ │ │ └── test.cjs │ │ │ │ └── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ ├── snapshot_2.txt │ │ │ ├── snapshot_3.txt │ │ │ └── snapshot_4.txt │ │ ├── resolve-plugins │ │ │ ├── openapi.yaml │ │ │ ├── plugin-config.yaml │ │ │ ├── snapshot.txt │ │ │ └── snapshot_2.txt │ │ └── resolve-refs-in-preprocessors │ │ │ ├── bad-request-error.response.yaml │ │ │ ├── error-schema.yaml │ │ │ ├── nested │ │ │ └── status.yaml │ │ │ ├── openapi.yaml │ │ │ ├── plugin.cjs │ │ │ ├── redocly.yaml │ │ │ ├── snapshot.txt │ │ │ ├── snapshot_2.txt │ │ │ ├── snapshot_3.txt │ │ │ └── successful-request.response.yaml │ ├── respect │ │ ├── case-insensitive-headers │ │ │ ├── __snapshots__ │ │ │ │ └── case-insensitive-headers.test.ts.snap │ │ │ ├── case-insensitive-headers.arazzo.yaml │ │ │ └── case-insensitive-headers.test.ts │ │ ├── cat-fact-api │ │ │ ├── __snapshots__ │ │ │ │ └── cat-fact-api.test.ts.snap │ │ │ ├── auto-cat.arazzo.yaml │ │ │ ├── cat-fact-api.test.ts │ │ │ └── cats.yaml │ │ ├── consider-severity-in-next-step-execution │ │ │ ├── __snapshots__ │ │ │ │ └── consider-severity-in-next-step-execution.test.ts.snap │ │ │ ├── consider-severity-in-next-step-execution.arazzo.yaml │ │ │ └── consider-severity-in-next-step-execution.test.ts │ │ ├── free-apis │ │ │ ├── __snapshots__ │ │ │ │ └── free-apis.test.ts.snap │ │ │ ├── free-apis.test.ts │ │ │ ├── free.arazzo.yaml │ │ │ └── testing-acme.yaml │ │ ├── implicit │ │ │ ├── __snapshots__ │ │ │ │ └── implicit.test.ts.snap │ │ │ ├── implicit.arazzo.yaml │ │ │ ├── implicit.test.ts │ │ │ └── testing-acme.yaml │ │ ├── inputs-passed-to-step-target-workflow-and-remapped │ │ │ ├── __snapshots__ │ │ │ │ └── inputs-passed-to-step-target-workflow-and-remapped.test.ts.snap │ │ │ ├── events.arazzo.yaml │ │ │ ├── inputs-passed-to-step-target-workflow-and-remapped.arazzo.yaml │ │ │ └── inputs-passed-to-step-target-workflow-and-remapped.test.ts │ │ ├── inputs-passed-to-step-target-workflow │ │ │ ├── __snapshots__ │ │ │ │ └── inputs-passed-to-step-target-workflow.test.ts.snap │ │ │ ├── events.arazzo.yaml │ │ │ ├── inputs-passed-to-step-target-workflow.arazzo.yaml │ │ │ └── inputs-passed-to-step-target-workflow.test.ts │ │ ├── inputs-with-cli-and-env │ │ │ ├── __snapshots__ │ │ │ │ └── inputs-with-cli-and-env.test.ts.snap │ │ │ ├── inputs-with-cli-and-env.arazzo.yaml │ │ │ └── inputs-with-cli-and-env.test.ts │ │ ├── local-json-server │ │ │ ├── .gitignore │ │ │ ├── __snapshots__ │ │ │ │ └── local-json-server.test.ts.snap │ │ │ ├── fake-db.json │ │ │ ├── json-server-openapi.yaml │ │ │ ├── local-json-server.arazzo.yaml │ │ │ └── local-json-server.test.ts │ │ ├── mask-input-secrets │ │ │ ├── __snapshots__ │ │ │ │ └── mask-input-secrets.test.ts.snap │ │ │ ├── mask-input-secrets.arazzo.yaml │ │ │ └── mask-input-secrets.test.ts │ │ ├── max-steps │ │ │ ├── __snapshots__ │ │ │ │ └── max-steps.test.ts.snap │ │ │ ├── arazzo.yaml │ │ │ ├── max-steps.test.ts │ │ │ └── oas.yaml │ │ ├── museum-api-with-errors.yaml │ │ ├── museum-api.yaml │ │ ├── museum-tickets.yaml │ │ ├── outputs-access-syntax-variations │ │ │ ├── __snapshots__ │ │ │ │ └── outputs-access-syntax-variations.test.ts.snap │ │ │ ├── outputs-access-syntax-variations.arazzo.yaml │ │ │ └── outputs-access-syntax-variations.test.ts │ │ ├── replacements │ │ │ ├── __snapshots__ │ │ │ │ └── replacements.test.ts.snap │ │ │ ├── replacements.arazzo.yaml │ │ │ └── replacements.test.ts │ │ ├── reusable-components │ │ │ ├── __snapshots__ │ │ │ │ └── reusable-components.test.ts.snap │ │ │ ├── reusable-components.arazzo.yaml │ │ │ └── reusable-components.test.ts │ │ ├── reveal-masked-input-secrets │ │ │ ├── __snapshots__ │ │ │ │ └── reveal-masked-input-secrets.test.ts.snap │ │ │ ├── reveal-masked-input-secrets.arazzo.yaml │ │ │ └── reveal-masked-input-secrets.test.ts │ │ ├── server-override-with-console-parameters │ │ │ ├── __snapshots__ │ │ │ │ └── server-override-with-console-parameters.test.ts.snap │ │ │ ├── server-override-with-console-parameters.arazzo.yaml │ │ │ └── server-override-with-console-parameters.test.ts │ │ ├── severity-error-level │ │ │ ├── __snapshots__ │ │ │ │ └── severity-error-level.test.ts.snap │ │ │ ├── severity-error-level.test.ts │ │ │ └── severity-level.arazzo.yaml │ │ ├── severity-off-level │ │ │ ├── __snapshots__ │ │ │ │ └── severity-off-level.test.ts.snap │ │ │ ├── severity-level.arazzo.yaml │ │ │ └── severity-off-level.test.ts │ │ ├── severity-warn-level │ │ │ ├── __snapshots__ │ │ │ │ └── severity-warn-level.test.ts.snap │ │ │ ├── severity-level.arazzo.yaml │ │ │ └── severity-warn-level.test.ts │ │ ├── step-on-failure-type-end-action │ │ │ ├── __snapshots__ │ │ │ │ └── step-on-failure-type-end-action.test.ts.snap │ │ │ ├── step-on-failure-type-end-action.arazzo.yaml │ │ │ └── step-on-failure-type-end-action.test.ts │ │ ├── step-on-success-type-end-action │ │ │ ├── __snapshots__ │ │ │ │ └── step-on-success-type-end-action.test.ts.snap │ │ │ ├── step-on-success-type-end-action.arazzo.yaml │ │ │ └── step-on-success-type-end-action.test.ts │ │ ├── utils.ts │ │ ├── workflow-failure-actions │ │ │ ├── __snapshots__ │ │ │ │ └── workflow-failure-actions.test.ts.snap │ │ │ ├── workflow-failure-actions.arazzo.yaml │ │ │ └── workflow-failure-actions.test.ts │ │ ├── workflow-success-actions │ │ │ ├── __snapshots__ │ │ │ │ └── workflow-success-actions.test.ts.snap │ │ │ ├── workflow-success-actions.arazzo.yaml │ │ │ └── workflow-success-actions.test.ts │ │ ├── x-security-api-key-auth │ │ │ ├── __snapshots__ │ │ │ │ └── x-security-api-key-auth.test.ts.snap │ │ │ ├── x-security-api-key-auth.arazzo.yaml │ │ │ └── x-security-api-key-auth.test.ts │ │ ├── x-security-basic-auth │ │ │ ├── __snapshots__ │ │ │ │ └── x-security-basic-auth.test.ts.snap │ │ │ ├── x-security-basic-auth.arazzo.yaml │ │ │ └── x-security-basic-auth.test.ts │ │ ├── x-security-bearer-auth │ │ │ ├── __snapshots__ │ │ │ │ └── x-security-bearer-auth.test.ts.snap │ │ │ ├── x-security-bearer-auth.arazzo.yaml │ │ │ └── x-security-bearer-auth.test.ts │ │ ├── x-security-oauth2-auth │ │ │ ├── __snapshots__ │ │ │ │ └── x-security-oauth2-auth.test.ts.snap │ │ │ ├── x-security-oauth2-auth.arazzo.yaml │ │ │ └── x-security-oauth2-auth.test.ts │ │ ├── x-security-on-workflow-level-merged-to-steps │ │ │ ├── __snapshots__ │ │ │ │ └── x-security-on-workflow-level-merged-to-steps.test.ts.snap │ │ │ ├── x-security-on-workflow-level-merged-to-steps.arazzo.yaml │ │ │ └── x-security-on-workflow-level-merged-to-steps.test.ts │ │ ├── x-security-open-id-connect-auth │ │ │ ├── __snapshots__ │ │ │ │ └── x-security-open-id-connect-auth.test.ts.snap │ │ │ ├── x-security-open-id-connect-auth.arazzo.yaml │ │ │ └── x-security-open-id-connect-auth.test.ts │ │ ├── x-security-resolve-scheme-name │ │ │ ├── __snapshots__ │ │ │ │ └── x-security-resolve-scheme-name.test.ts.snap │ │ │ ├── x-security-resolve-scheme-name.arazzo.yaml │ │ │ └── x-security-resolve-scheme-name.test.ts │ │ └── x-security-scheme-apply-order │ │ │ ├── __snapshots__ │ │ │ └── x-security-scheme-apply-order.test.ts.snap │ │ │ ├── x-security-scheme-apply-order.arazzo.yaml │ │ │ └── x-security-scheme-apply-order.test.ts │ ├── split │ │ ├── discriminator-in-json │ │ │ ├── openapi.json │ │ │ └── snapshot.txt │ │ ├── missing-outDir │ │ │ ├── snapshot.txt │ │ │ └── spec.json │ │ ├── oas2 │ │ │ ├── openapi.yaml │ │ │ └── snapshot.txt │ │ ├── oas3-no-errors │ │ │ ├── openapi.yaml │ │ │ └── snapshot.txt │ │ ├── openapi-json-file │ │ │ ├── openapi.json │ │ │ └── snapshot.txt │ │ ├── refs-in-json │ │ │ ├── openapi.json │ │ │ └── snapshot.txt │ │ └── slash-separator │ │ │ ├── openapi.yaml │ │ │ └── snapshot.txt │ ├── stats │ │ ├── stats-json │ │ │ ├── museum.yaml │ │ │ └── snapshot.txt │ │ ├── stats-markdown │ │ │ ├── museum.yaml │ │ │ └── snapshot.txt │ │ └── stats-stylish │ │ │ ├── museum.yaml │ │ │ └── snapshot.txt │ └── zero-config │ │ ├── default-recommended-fallback │ │ ├── openapi.yaml │ │ └── snapshot.txt │ │ ├── no-default-recommended-fallback-with-empty-config │ │ ├── openapi.yaml │ │ ├── redocly.yaml │ │ └── snapshot.txt │ │ └── no-default-recommended-fallback │ │ ├── openapi.yaml │ │ ├── redocly.yaml │ │ └── snapshot.txt ├── performance │ ├── .gitignore │ ├── README.md │ ├── chart.js │ ├── make-test-command.sh │ └── package.json └── smoke │ ├── basic │ ├── message-schema.yaml │ ├── openapi.yaml │ ├── package.json │ ├── pre-built │ │ └── redoc.html │ ├── pre-split │ │ ├── museum │ │ │ ├── components │ │ │ │ ├── examples │ │ │ │ │ ├── BuyEventTicketsRequestExample.yaml │ │ │ │ │ ├── BuyEventTicketsResponseExample.yaml │ │ │ │ │ ├── BuyGeneralTicketsRequestExample.yaml │ │ │ │ │ ├── BuyGeneralTicketsResponseExample.yaml │ │ │ │ │ ├── CreateSpecialEventRequestExample.yaml │ │ │ │ │ ├── CreateSpecialEventResponseExample.yaml │ │ │ │ │ ├── GetMuseumHoursResponseExample.yaml │ │ │ │ │ ├── GetSpecialEventResponseExample.yaml │ │ │ │ │ ├── ListSpecialEventsResponseExample.yaml │ │ │ │ │ ├── UpdateSpecialEventRequestExample.yaml │ │ │ │ │ └── UpdateSpecialEventResponseExample.yaml │ │ │ │ ├── parameters │ │ │ │ │ ├── EndDate.yaml │ │ │ │ │ ├── EventId.yaml │ │ │ │ │ ├── PaginationLimit.yaml │ │ │ │ │ ├── PaginationPage.yaml │ │ │ │ │ ├── StartDate.yaml │ │ │ │ │ └── TicketId.yaml │ │ │ │ ├── responses │ │ │ │ │ ├── BadRequest.yaml │ │ │ │ │ ├── NotFound.yaml │ │ │ │ │ └── Unauthorized.yaml │ │ │ │ └── schemas │ │ │ │ │ ├── BuyMuseumTicketsRequest.yaml │ │ │ │ │ ├── BuyMuseumTicketsResponse.yaml │ │ │ │ │ ├── CreateSpecialEventRequest.yaml │ │ │ │ │ ├── Date.yaml │ │ │ │ │ ├── Email.yaml │ │ │ │ │ ├── Error.yaml │ │ │ │ │ ├── EventDates.yaml │ │ │ │ │ ├── EventDescription.yaml │ │ │ │ │ ├── EventId.yaml │ │ │ │ │ ├── EventLocation.yaml │ │ │ │ │ ├── EventName.yaml │ │ │ │ │ ├── EventPrice.yaml │ │ │ │ │ ├── GetMuseumHoursResponse.yaml │ │ │ │ │ ├── GetTicketCodeResponse.yaml │ │ │ │ │ ├── ListSpecialEventsResponse.yaml │ │ │ │ │ ├── MuseumDailyHours.yaml │ │ │ │ │ ├── Phone.yaml │ │ │ │ │ ├── SpecialEventResponse.yaml │ │ │ │ │ ├── TicketConfirmation.yaml │ │ │ │ │ ├── TicketId.yaml │ │ │ │ │ ├── TicketMessage.yaml │ │ │ │ │ ├── TicketType.yaml │ │ │ │ │ └── UpdateSpecialEventRequest.yaml │ │ │ ├── openapi.yaml │ │ │ └── paths │ │ │ │ ├── museum-hours.yaml │ │ │ │ ├── special-events.yaml │ │ │ │ ├── special-events_{eventId}.yaml │ │ │ │ ├── tickets.yaml │ │ │ │ └── tickets_{ticketId}_qr.yaml │ │ └── petstore │ │ │ ├── code_samples │ │ │ ├── C_sharp │ │ │ │ └── petGet │ │ │ │ │ └── post.cs │ │ │ └── PHP │ │ │ │ └── petGet │ │ │ │ ├── post.php │ │ │ │ └── put.php │ │ │ ├── components │ │ │ ├── examples │ │ │ │ └── Order.yaml │ │ │ ├── requestBodies │ │ │ │ ├── Pet.yaml │ │ │ │ └── UserArray.yaml │ │ │ └── schemas │ │ │ │ ├── ApiResponse.yaml │ │ │ │ ├── Cat.yaml │ │ │ │ ├── Category.yaml │ │ │ │ ├── Dog.yaml │ │ │ │ ├── HoneyBee.yaml │ │ │ │ ├── Id.yaml │ │ │ │ ├── Order.yaml │ │ │ │ ├── Pet.yaml │ │ │ │ ├── Tag.yaml │ │ │ │ └── User.yaml │ │ │ ├── openapi.yaml │ │ │ ├── paths │ │ │ ├── GETCustomers_findByTags.yaml │ │ │ ├── GETpet_{petId}.yaml │ │ │ ├── petGet.yaml │ │ │ ├── pet_findByStatusPut.yaml │ │ │ ├── pet_{petId}_uploadImage.yaml │ │ │ ├── store_inventory.yaml │ │ │ ├── store_order.yaml │ │ │ ├── store_order_{orderId}.yaml │ │ │ ├── store_subscribe.yaml │ │ │ ├── user.yaml │ │ │ ├── user_createWithArray.yaml │ │ │ ├── user_createWithList.yaml │ │ │ ├── user_login.yaml │ │ │ ├── user_logout.yaml │ │ │ └── user_{username}.yaml │ │ │ └── webhooks │ │ │ └── newPet.yaml │ ├── prepare-smoke.sh │ └── run-smoke.sh │ ├── plugins │ ├── local-plugin.js │ ├── message-schema.yaml │ ├── openapi.yaml │ ├── package.json │ ├── prepare-smoke-plugins.sh │ ├── redocly.yaml │ └── run-smoke.sh │ └── rebilly │ ├── __snapshots__ │ └── rebilly.smoke.ts.snap │ ├── rebilly-description.yaml │ ├── rebilly.arazzo.yaml │ └── rebilly.smoke.ts ├── tsconfig.build.json ├── tsconfig.json └── vitest.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.changeset/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.changeset/format.js -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/styles/Redocly-Docs/BritishEnglish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/styles/Redocly-Docs/BritishEnglish.yml -------------------------------------------------------------------------------- /.github/styles/Redocly-Docs/FutureTense.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/styles/Redocly-Docs/FutureTense.yml -------------------------------------------------------------------------------- /.github/styles/Redocly-Docs/HeaderGerunds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/styles/Redocly-Docs/HeaderGerunds.yml -------------------------------------------------------------------------------- /.github/styles/Redocly-Docs/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/styles/Redocly-Docs/OxfordComma.yml -------------------------------------------------------------------------------- /.github/styles/config/vocabularies/Redocly-Docs/reject.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/docs-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/docs-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/performance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/performance.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/pre-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/pre-release.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/require-changeset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/require-changeset.yaml -------------------------------------------------------------------------------- /.github/workflows/smoke-plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/smoke-plugins.yaml -------------------------------------------------------------------------------- /.github/workflows/smoke-rebilly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/smoke-rebilly.yaml -------------------------------------------------------------------------------- /.github/workflows/smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/smoke.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.mlc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.mlc.toml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/.vale.ini -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/README.md -------------------------------------------------------------------------------- /docs/@v1/api-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/api-docs.md -------------------------------------------------------------------------------- /docs/@v1/api-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/api-standards.md -------------------------------------------------------------------------------- /docs/@v1/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/changelog.md -------------------------------------------------------------------------------- /docs/@v1/commands/build-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/build-docs.md -------------------------------------------------------------------------------- /docs/@v1/commands/bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/bundle.md -------------------------------------------------------------------------------- /docs/@v1/commands/check-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/check-config.md -------------------------------------------------------------------------------- /docs/@v1/commands/completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/completion.md -------------------------------------------------------------------------------- /docs/@v1/commands/eject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/eject.md -------------------------------------------------------------------------------- /docs/@v1/commands/generate-arazzo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/generate-arazzo.md -------------------------------------------------------------------------------- /docs/@v1/commands/images/lint-markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/images/lint-markdown.png -------------------------------------------------------------------------------- /docs/@v1/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/index.md -------------------------------------------------------------------------------- /docs/@v1/commands/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/join.md -------------------------------------------------------------------------------- /docs/@v1/commands/lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/lint.md -------------------------------------------------------------------------------- /docs/@v1/commands/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/login.md -------------------------------------------------------------------------------- /docs/@v1/commands/logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/logout.md -------------------------------------------------------------------------------- /docs/@v1/commands/preview-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/preview-docs.md -------------------------------------------------------------------------------- /docs/@v1/commands/preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/preview.md -------------------------------------------------------------------------------- /docs/@v1/commands/push-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/push-status.md -------------------------------------------------------------------------------- /docs/@v1/commands/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/push.md -------------------------------------------------------------------------------- /docs/@v1/commands/respect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/respect.md -------------------------------------------------------------------------------- /docs/@v1/commands/split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/split.md -------------------------------------------------------------------------------- /docs/@v1/commands/stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/stats.md -------------------------------------------------------------------------------- /docs/@v1/commands/translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/commands/translate.md -------------------------------------------------------------------------------- /docs/@v1/configuration/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/api.yaml -------------------------------------------------------------------------------- /docs/@v1/configuration/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/apis.md -------------------------------------------------------------------------------- /docs/@v1/configuration/extends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/extends.md -------------------------------------------------------------------------------- /docs/@v1/configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/index.md -------------------------------------------------------------------------------- /docs/@v1/configuration/mockserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/mockserver.yaml -------------------------------------------------------------------------------- /docs/@v1/configuration/reference/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/reference/apis.md -------------------------------------------------------------------------------- /docs/@v1/configuration/reference/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/reference/decorators.md -------------------------------------------------------------------------------- /docs/@v1/configuration/reference/extends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/reference/extends.md -------------------------------------------------------------------------------- /docs/@v1/configuration/reference/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/reference/plugins.md -------------------------------------------------------------------------------- /docs/@v1/configuration/reference/preprocessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/reference/preprocessors.md -------------------------------------------------------------------------------- /docs/@v1/configuration/reference/resolve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/reference/resolve.md -------------------------------------------------------------------------------- /docs/@v1/configuration/reference/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/reference/rules.md -------------------------------------------------------------------------------- /docs/@v1/configuration/resolve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/resolve.yaml -------------------------------------------------------------------------------- /docs/@v1/configuration/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/rules.md -------------------------------------------------------------------------------- /docs/@v1/configuration/schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/configuration/schema.yaml -------------------------------------------------------------------------------- /docs/@v1/custom-plugins/custom-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/custom-plugins/custom-config.md -------------------------------------------------------------------------------- /docs/@v1/custom-plugins/custom-decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/custom-plugins/custom-decorators.md -------------------------------------------------------------------------------- /docs/@v1/custom-plugins/custom-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/custom-plugins/custom-rules.md -------------------------------------------------------------------------------- /docs/@v1/custom-plugins/extended-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/custom-plugins/extended-types.md -------------------------------------------------------------------------------- /docs/@v1/custom-plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/custom-plugins/index.md -------------------------------------------------------------------------------- /docs/@v1/custom-plugins/visitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/custom-plugins/visitor.md -------------------------------------------------------------------------------- /docs/@v1/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/decorators.md -------------------------------------------------------------------------------- /docs/@v1/decorators/filter-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/decorators/filter-in.md -------------------------------------------------------------------------------- /docs/@v1/decorators/filter-out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/decorators/filter-out.md -------------------------------------------------------------------------------- /docs/@v1/decorators/info-description-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/decorators/info-description-override.md -------------------------------------------------------------------------------- /docs/@v1/decorators/info-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/decorators/info-override.md -------------------------------------------------------------------------------- /docs/@v1/decorators/remove-unused-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/decorators/remove-unused-components.md -------------------------------------------------------------------------------- /docs/@v1/decorators/remove-x-internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/decorators/remove-x-internal.md -------------------------------------------------------------------------------- /docs/@v1/decorators/tag-description-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/decorators/tag-description-override.md -------------------------------------------------------------------------------- /docs/@v1/file-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/file-management.md -------------------------------------------------------------------------------- /docs/@v1/guides/autocomplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/autocomplete.md -------------------------------------------------------------------------------- /docs/@v1/guides/change-token-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/change-token-url.md -------------------------------------------------------------------------------- /docs/@v1/guides/configure-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/configure-rules.md -------------------------------------------------------------------------------- /docs/@v1/guides/hide-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/hide-apis.md -------------------------------------------------------------------------------- /docs/@v1/guides/hide-specification-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/hide-specification-extensions.md -------------------------------------------------------------------------------- /docs/@v1/guides/images/museum-arazzo-lint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/images/museum-arazzo-lint.png -------------------------------------------------------------------------------- /docs/@v1/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/index.md -------------------------------------------------------------------------------- /docs/@v1/guides/lint-and-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/lint-and-bundle.md -------------------------------------------------------------------------------- /docs/@v1/guides/lint-arazzo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/lint-arazzo.md -------------------------------------------------------------------------------- /docs/@v1/guides/lint-asyncapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/lint-asyncapi.md -------------------------------------------------------------------------------- /docs/@v1/guides/migrate-from-openapi-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/migrate-from-openapi-cli.md -------------------------------------------------------------------------------- /docs/@v1/guides/migrate-from-redoc-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/migrate-from-redoc-cli.md -------------------------------------------------------------------------------- /docs/@v1/guides/migrate-from-spectral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/migrate-from-spectral.md -------------------------------------------------------------------------------- /docs/@v1/guides/migrate-from-swagger-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/migrate-from-swagger-cli.md -------------------------------------------------------------------------------- /docs/@v1/guides/replace-servers-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/replace-servers-url.md -------------------------------------------------------------------------------- /docs/@v1/guides/response-contains-property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/response-contains-property.md -------------------------------------------------------------------------------- /docs/@v1/guides/update-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/guides/update-cli.md -------------------------------------------------------------------------------- /docs/@v1/images/install-update-openapi-cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/images/install-update-openapi-cli.gif -------------------------------------------------------------------------------- /docs/@v1/images/preview-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/images/preview-docs.png -------------------------------------------------------------------------------- /docs/@v1/images/redoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/images/redoc.png -------------------------------------------------------------------------------- /docs/@v1/images/redocly-api-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/images/redocly-api-ref.png -------------------------------------------------------------------------------- /docs/@v1/images/updated-preview-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/images/updated-preview-docs.png -------------------------------------------------------------------------------- /docs/@v1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/index.md -------------------------------------------------------------------------------- /docs/@v1/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/installation.md -------------------------------------------------------------------------------- /docs/@v1/openapi-starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/openapi-starter.md -------------------------------------------------------------------------------- /docs/@v1/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/quickstart.md -------------------------------------------------------------------------------- /docs/@v1/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules.md -------------------------------------------------------------------------------- /docs/@v1/rules/arazzo/criteria-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/arazzo/criteria-unique.md -------------------------------------------------------------------------------- /docs/@v1/rules/arazzo/parameters-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/arazzo/parameters-unique.md -------------------------------------------------------------------------------- /docs/@v1/rules/arazzo/sourceDescriptions-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/arazzo/sourceDescriptions-type.md -------------------------------------------------------------------------------- /docs/@v1/rules/arazzo/step-onFailure-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/arazzo/step-onFailure-unique.md -------------------------------------------------------------------------------- /docs/@v1/rules/arazzo/step-onSuccess-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/arazzo/step-onSuccess-unique.md -------------------------------------------------------------------------------- /docs/@v1/rules/arazzo/stepId-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/arazzo/stepId-unique.md -------------------------------------------------------------------------------- /docs/@v1/rules/arazzo/struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/arazzo/struct.md -------------------------------------------------------------------------------- /docs/@v1/rules/arazzo/workflow-dependsOn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/arazzo/workflow-dependsOn.md -------------------------------------------------------------------------------- /docs/@v1/rules/arazzo/workflowId-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/arazzo/workflowId-unique.md -------------------------------------------------------------------------------- /docs/@v1/rules/async/channels-kebab-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/async/channels-kebab-case.md -------------------------------------------------------------------------------- /docs/@v1/rules/async/no-channel-trailing-slash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/async/no-channel-trailing-slash.md -------------------------------------------------------------------------------- /docs/@v1/rules/built-in-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/built-in-rules.md -------------------------------------------------------------------------------- /docs/@v1/rules/configurable-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/configurable-rules.md -------------------------------------------------------------------------------- /docs/@v1/rules/configure-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/configure-rules.md -------------------------------------------------------------------------------- /docs/@v1/rules/minimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/minimal.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/boolean-parameter-prefixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/boolean-parameter-prefixes.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/component-name-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/component-name-unique.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/info-contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/info-contact.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/info-license-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/info-license-url.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/info-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/info-license.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-ambiguous-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-ambiguous-paths.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-empty-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-empty-servers.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-enum-type-mismatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-enum-type-mismatch.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-http-verbs-in-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-http-verbs-in-paths.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-identical-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-identical-paths.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-invalid-schema-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-invalid-schema-examples.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-path-trailing-slash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-path-trailing-slash.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-schema-type-mismatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-schema-type-mismatch.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-server-example-com.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-server-example-com.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-server-trailing-slash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-server-trailing-slash.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-unresolved-refs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-unresolved-refs.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/no-unused-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/no-unused-components.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/operation-2xx-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/operation-2xx-response.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/operation-4xx-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/operation-4xx-response.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/operation-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/operation-description.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/operation-operationId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/operation-operationId.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/operation-parameters-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/operation-parameters-unique.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/operation-singular-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/operation-singular-tag.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/operation-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/operation-summary.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/operation-tag-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/operation-tag-defined.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/parameter-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/parameter-description.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/path-declaration-must-exist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/path-declaration-must-exist.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/path-excludes-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/path-excludes-patterns.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/path-not-include-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/path-not-include-query.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/path-parameters-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/path-parameters-defined.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/path-segment-plural.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/path-segment-plural.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/paths-kebab-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/paths-kebab-case.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/request-mime-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/request-mime-type.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/response-contains-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/response-contains-header.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/response-contains-property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/response-contains-property.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/response-mime-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/response-mime-type.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/security-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/security-defined.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/spec-strict-refs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/spec-strict-refs.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/struct.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/tag-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/tag-description.md -------------------------------------------------------------------------------- /docs/@v1/rules/oas/tags-alphabetical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/oas/tags-alphabetical.md -------------------------------------------------------------------------------- /docs/@v1/rules/recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/recommended.md -------------------------------------------------------------------------------- /docs/@v1/rules/respect/no-criteria-xpath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/respect/no-criteria-xpath.md -------------------------------------------------------------------------------- /docs/@v1/rules/ruleset-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/ruleset-templates.md -------------------------------------------------------------------------------- /docs/@v1/rules/spec-ruleset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/rules/spec-ruleset.md -------------------------------------------------------------------------------- /docs/@v1/usage-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/usage-data.md -------------------------------------------------------------------------------- /docs/@v1/v1.sidebars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v1/v1.sidebars.yaml -------------------------------------------------------------------------------- /docs/@v2/api-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/api-docs.md -------------------------------------------------------------------------------- /docs/@v2/api-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/api-standards.md -------------------------------------------------------------------------------- /docs/@v2/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/changelog.md -------------------------------------------------------------------------------- /docs/@v2/commands/build-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/build-docs.md -------------------------------------------------------------------------------- /docs/@v2/commands/bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/bundle.md -------------------------------------------------------------------------------- /docs/@v2/commands/check-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/check-config.md -------------------------------------------------------------------------------- /docs/@v2/commands/completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/completion.md -------------------------------------------------------------------------------- /docs/@v2/commands/eject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/eject.md -------------------------------------------------------------------------------- /docs/@v2/commands/generate-arazzo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/generate-arazzo.md -------------------------------------------------------------------------------- /docs/@v2/commands/images/lint-markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/images/lint-markdown.png -------------------------------------------------------------------------------- /docs/@v2/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/index.md -------------------------------------------------------------------------------- /docs/@v2/commands/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/join.md -------------------------------------------------------------------------------- /docs/@v2/commands/lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/lint.md -------------------------------------------------------------------------------- /docs/@v2/commands/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/login.md -------------------------------------------------------------------------------- /docs/@v2/commands/logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/logout.md -------------------------------------------------------------------------------- /docs/@v2/commands/preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/preview.md -------------------------------------------------------------------------------- /docs/@v2/commands/push-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/push-status.md -------------------------------------------------------------------------------- /docs/@v2/commands/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/push.md -------------------------------------------------------------------------------- /docs/@v2/commands/respect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/respect.md -------------------------------------------------------------------------------- /docs/@v2/commands/split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/split.md -------------------------------------------------------------------------------- /docs/@v2/commands/stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/stats.md -------------------------------------------------------------------------------- /docs/@v2/commands/translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/commands/translate.md -------------------------------------------------------------------------------- /docs/@v2/configuration/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/api.yaml -------------------------------------------------------------------------------- /docs/@v2/configuration/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/apis.md -------------------------------------------------------------------------------- /docs/@v2/configuration/extends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/extends.md -------------------------------------------------------------------------------- /docs/@v2/configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/index.md -------------------------------------------------------------------------------- /docs/@v2/configuration/mockserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/mockserver.yaml -------------------------------------------------------------------------------- /docs/@v2/configuration/reference/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/reference/apis.md -------------------------------------------------------------------------------- /docs/@v2/configuration/reference/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/reference/decorators.md -------------------------------------------------------------------------------- /docs/@v2/configuration/reference/extends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/reference/extends.md -------------------------------------------------------------------------------- /docs/@v2/configuration/reference/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/reference/plugins.md -------------------------------------------------------------------------------- /docs/@v2/configuration/reference/preprocessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/reference/preprocessors.md -------------------------------------------------------------------------------- /docs/@v2/configuration/reference/resolve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/reference/resolve.md -------------------------------------------------------------------------------- /docs/@v2/configuration/reference/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/reference/rules.md -------------------------------------------------------------------------------- /docs/@v2/configuration/resolve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/resolve.yaml -------------------------------------------------------------------------------- /docs/@v2/configuration/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/configuration/rules.md -------------------------------------------------------------------------------- /docs/@v2/custom-plugins/custom-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/custom-plugins/custom-config.md -------------------------------------------------------------------------------- /docs/@v2/custom-plugins/custom-decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/custom-plugins/custom-decorators.md -------------------------------------------------------------------------------- /docs/@v2/custom-plugins/custom-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/custom-plugins/custom-rules.md -------------------------------------------------------------------------------- /docs/@v2/custom-plugins/extended-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/custom-plugins/extended-types.md -------------------------------------------------------------------------------- /docs/@v2/custom-plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/custom-plugins/index.md -------------------------------------------------------------------------------- /docs/@v2/custom-plugins/visitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/custom-plugins/visitor.md -------------------------------------------------------------------------------- /docs/@v2/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/decorators.md -------------------------------------------------------------------------------- /docs/@v2/decorators/filter-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/decorators/filter-in.md -------------------------------------------------------------------------------- /docs/@v2/decorators/filter-out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/decorators/filter-out.md -------------------------------------------------------------------------------- /docs/@v2/decorators/info-description-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/decorators/info-description-override.md -------------------------------------------------------------------------------- /docs/@v2/decorators/info-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/decorators/info-override.md -------------------------------------------------------------------------------- /docs/@v2/decorators/remove-unused-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/decorators/remove-unused-components.md -------------------------------------------------------------------------------- /docs/@v2/decorators/remove-x-internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/decorators/remove-x-internal.md -------------------------------------------------------------------------------- /docs/@v2/decorators/tag-description-override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/decorators/tag-description-override.md -------------------------------------------------------------------------------- /docs/@v2/file-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/file-management.md -------------------------------------------------------------------------------- /docs/@v2/guides/autocomplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/autocomplete.md -------------------------------------------------------------------------------- /docs/@v2/guides/change-token-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/change-token-url.md -------------------------------------------------------------------------------- /docs/@v2/guides/configure-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/configure-rules.md -------------------------------------------------------------------------------- /docs/@v2/guides/hide-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/hide-apis.md -------------------------------------------------------------------------------- /docs/@v2/guides/hide-specification-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/hide-specification-extensions.md -------------------------------------------------------------------------------- /docs/@v2/guides/images/museum-arazzo-lint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/images/museum-arazzo-lint.png -------------------------------------------------------------------------------- /docs/@v2/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/index.md -------------------------------------------------------------------------------- /docs/@v2/guides/lint-and-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/lint-and-bundle.md -------------------------------------------------------------------------------- /docs/@v2/guides/lint-arazzo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/lint-arazzo.md -------------------------------------------------------------------------------- /docs/@v2/guides/lint-asyncapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/lint-asyncapi.md -------------------------------------------------------------------------------- /docs/@v2/guides/migrate-from-openapi-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/migrate-from-openapi-cli.md -------------------------------------------------------------------------------- /docs/@v2/guides/migrate-from-redoc-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/migrate-from-redoc-cli.md -------------------------------------------------------------------------------- /docs/@v2/guides/migrate-from-spectral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/migrate-from-spectral.md -------------------------------------------------------------------------------- /docs/@v2/guides/migrate-from-swagger-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/migrate-from-swagger-cli.md -------------------------------------------------------------------------------- /docs/@v2/guides/migrate-to-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/migrate-to-v2.md -------------------------------------------------------------------------------- /docs/@v2/guides/replace-servers-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/replace-servers-url.md -------------------------------------------------------------------------------- /docs/@v2/guides/response-contains-property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/response-contains-property.md -------------------------------------------------------------------------------- /docs/@v2/guides/update-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/guides/update-cli.md -------------------------------------------------------------------------------- /docs/@v2/images/install-update-openapi-cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/images/install-update-openapi-cli.gif -------------------------------------------------------------------------------- /docs/@v2/images/redoc-reunite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/images/redoc-reunite.svg -------------------------------------------------------------------------------- /docs/@v2/images/redoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/images/redoc.png -------------------------------------------------------------------------------- /docs/@v2/images/updated-preview-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/images/updated-preview-docs.png -------------------------------------------------------------------------------- /docs/@v2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/index.md -------------------------------------------------------------------------------- /docs/@v2/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/installation.md -------------------------------------------------------------------------------- /docs/@v2/openapi-starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/openapi-starter.md -------------------------------------------------------------------------------- /docs/@v2/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/quickstart.md -------------------------------------------------------------------------------- /docs/@v2/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules.md -------------------------------------------------------------------------------- /docs/@v2/rules/arazzo/criteria-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/arazzo/criteria-unique.md -------------------------------------------------------------------------------- /docs/@v2/rules/arazzo/parameters-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/arazzo/parameters-unique.md -------------------------------------------------------------------------------- /docs/@v2/rules/arazzo/sourceDescriptions-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/arazzo/sourceDescriptions-type.md -------------------------------------------------------------------------------- /docs/@v2/rules/arazzo/step-onFailure-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/arazzo/step-onFailure-unique.md -------------------------------------------------------------------------------- /docs/@v2/rules/arazzo/step-onSuccess-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/arazzo/step-onSuccess-unique.md -------------------------------------------------------------------------------- /docs/@v2/rules/arazzo/stepId-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/arazzo/stepId-unique.md -------------------------------------------------------------------------------- /docs/@v2/rules/arazzo/workflow-dependsOn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/arazzo/workflow-dependsOn.md -------------------------------------------------------------------------------- /docs/@v2/rules/arazzo/workflowId-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/arazzo/workflowId-unique.md -------------------------------------------------------------------------------- /docs/@v2/rules/async/channels-kebab-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/async/channels-kebab-case.md -------------------------------------------------------------------------------- /docs/@v2/rules/async/no-channel-trailing-slash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/async/no-channel-trailing-slash.md -------------------------------------------------------------------------------- /docs/@v2/rules/async/no-duplicated-tag-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/async/no-duplicated-tag-names.md -------------------------------------------------------------------------------- /docs/@v2/rules/built-in-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/built-in-rules.md -------------------------------------------------------------------------------- /docs/@v2/rules/common/no-enum-type-mismatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/common/no-enum-type-mismatch.md -------------------------------------------------------------------------------- /docs/@v2/rules/common/no-schema-type-mismatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/common/no-schema-type-mismatch.md -------------------------------------------------------------------------------- /docs/@v2/rules/common/no-unresolved-refs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/common/no-unresolved-refs.md -------------------------------------------------------------------------------- /docs/@v2/rules/common/struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/common/struct.md -------------------------------------------------------------------------------- /docs/@v2/rules/configurable-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/configurable-rules.md -------------------------------------------------------------------------------- /docs/@v2/rules/configure-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/configure-rules.md -------------------------------------------------------------------------------- /docs/@v2/rules/minimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/minimal.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/boolean-parameter-prefixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/boolean-parameter-prefixes.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/component-name-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/component-name-unique.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/info-contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/info-contact.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/info-license-strict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/info-license-strict.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/info-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/info-license.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-ambiguous-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-ambiguous-paths.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-duplicated-tag-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-duplicated-tag-names.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-empty-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-empty-servers.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-http-verbs-in-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-http-verbs-in-paths.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-identical-paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-identical-paths.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-invalid-schema-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-invalid-schema-examples.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-path-trailing-slash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-path-trailing-slash.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-server-example-com.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-server-example-com.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-server-trailing-slash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-server-trailing-slash.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/no-unused-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/no-unused-components.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/nullable-type-sibling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/nullable-type-sibling.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/operation-2xx-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/operation-2xx-response.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/operation-4xx-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/operation-4xx-response.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/operation-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/operation-description.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/operation-operationId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/operation-operationId.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/operation-parameters-unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/operation-parameters-unique.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/operation-singular-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/operation-singular-tag.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/operation-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/operation-summary.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/operation-tag-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/operation-tag-defined.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/parameter-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/parameter-description.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/path-declaration-must-exist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/path-declaration-must-exist.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/path-not-include-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/path-not-include-query.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/path-parameters-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/path-parameters-defined.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/path-segment-plural.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/path-segment-plural.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/paths-kebab-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/paths-kebab-case.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/request-mime-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/request-mime-type.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/response-contains-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/response-contains-header.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/response-contains-property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/response-contains-property.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/response-mime-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/response-mime-type.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/security-defined.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/security-defined.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/spec-example-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/spec-example-values.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/spec-no-invalid-tag-parents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/spec-no-invalid-tag-parents.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/spec-strict-refs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/spec-strict-refs.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/tag-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/tag-description.md -------------------------------------------------------------------------------- /docs/@v2/rules/oas/tags-alphabetical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/oas/tags-alphabetical.md -------------------------------------------------------------------------------- /docs/@v2/rules/recommended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/recommended.md -------------------------------------------------------------------------------- /docs/@v2/rules/respect/no-criteria-xpath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/respect/no-criteria-xpath.md -------------------------------------------------------------------------------- /docs/@v2/rules/ruleset-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/ruleset-templates.md -------------------------------------------------------------------------------- /docs/@v2/rules/spec-ruleset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/rules/spec-ruleset.md -------------------------------------------------------------------------------- /docs/@v2/usage-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/usage-data.md -------------------------------------------------------------------------------- /docs/@v2/v2.sidebars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/@v2/v2.sidebars.yaml -------------------------------------------------------------------------------- /docs/_code-snippets/per-api-rules-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/_code-snippets/per-api-rules-example.yaml -------------------------------------------------------------------------------- /docs/sidebars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/sidebars.yaml -------------------------------------------------------------------------------- /docs/versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/docs/versions.yaml -------------------------------------------------------------------------------- /media/redocly-cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/media/redocly-cli.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/package.json -------------------------------------------------------------------------------- /packages/cli/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/.npmignore -------------------------------------------------------------------------------- /packages/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cli/bin/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | import '../lib/index.js'; 4 | -------------------------------------------------------------------------------- /packages/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/package.json -------------------------------------------------------------------------------- /packages/cli/src/__tests__/commands/join.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/__tests__/commands/join.test.ts -------------------------------------------------------------------------------- /packages/cli/src/__tests__/commands/lint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/__tests__/commands/lint.test.ts -------------------------------------------------------------------------------- /packages/cli/src/__tests__/fixtures/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/__tests__/fixtures/config.ts -------------------------------------------------------------------------------- /packages/cli/src/__tests__/fixtures/openapi.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/cli/src/__tests__/fixtures/openapi.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/cli/src/__tests__/fixtures/redocly.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/cli/src/__tests__/spinner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/__tests__/spinner.test.ts -------------------------------------------------------------------------------- /packages/cli/src/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/__tests__/utils.test.ts -------------------------------------------------------------------------------- /packages/cli/src/__tests__/wrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/__tests__/wrapper.test.ts -------------------------------------------------------------------------------- /packages/cli/src/auth/device-flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/auth/device-flow.ts -------------------------------------------------------------------------------- /packages/cli/src/auth/oauth-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/auth/oauth-client.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/auth.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/build-docs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/build-docs/index.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/build-docs/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/build-docs/template.hbs -------------------------------------------------------------------------------- /packages/cli/src/commands/build-docs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/build-docs/types.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/build-docs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/build-docs/utils.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/bundle.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/eject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/eject.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/generate-arazzo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/generate-arazzo.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/join.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/lint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/lint.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/respect/har-logs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './with-har.js'; 2 | -------------------------------------------------------------------------------- /packages/cli/src/commands/respect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/respect/index.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/respect/json-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/respect/json-logs.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/split/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/split/index.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/split/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/split/types.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/stats.ts -------------------------------------------------------------------------------- /packages/cli/src/commands/translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/commands/translations.ts -------------------------------------------------------------------------------- /packages/cli/src/custom.d.ts: -------------------------------------------------------------------------------- 1 | type GenericObject = Record; 2 | -------------------------------------------------------------------------------- /packages/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/index.ts -------------------------------------------------------------------------------- /packages/cli/src/reunite/api/api-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/reunite/api/api-client.ts -------------------------------------------------------------------------------- /packages/cli/src/reunite/api/api-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/reunite/api/api-keys.ts -------------------------------------------------------------------------------- /packages/cli/src/reunite/api/domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/reunite/api/domains.ts -------------------------------------------------------------------------------- /packages/cli/src/reunite/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/reunite/api/index.ts -------------------------------------------------------------------------------- /packages/cli/src/reunite/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/reunite/api/types.ts -------------------------------------------------------------------------------- /packages/cli/src/reunite/commands/push-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/reunite/commands/push-status.ts -------------------------------------------------------------------------------- /packages/cli/src/reunite/commands/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/reunite/commands/push.ts -------------------------------------------------------------------------------- /packages/cli/src/reunite/commands/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/reunite/commands/utils.ts -------------------------------------------------------------------------------- /packages/cli/src/reunite/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/reunite/utils.ts -------------------------------------------------------------------------------- /packages/cli/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/types.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/assert-node-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/assert-node-version.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/constants.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/error.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/fetch-with-timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/fetch-with-timeout.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/miscellaneous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/miscellaneous.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/network-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/network-check.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/otel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/otel.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/package.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/platform.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/proxy-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/proxy-agent.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/read-env-variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/read-env-variables.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/spinner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/spinner.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/telemetry.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/update-version-notifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/update-version-notifier.ts -------------------------------------------------------------------------------- /packages/cli/src/utils/validate-mount-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/utils/validate-mount-path.ts -------------------------------------------------------------------------------- /packages/cli/src/wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/src/wrapper.ts -------------------------------------------------------------------------------- /packages/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/cli/tsconfig.json -------------------------------------------------------------------------------- /packages/core/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !lib/**/* 3 | !package.json 4 | !README.md 5 | !LICENSE 6 | -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/__tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/__tests__/utils.ts -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/__tests__/bundle-oas.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/bundle-oas.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/bundle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/bundle.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/codeframes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/codeframes.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/entity-yaml.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/entity-yaml.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/fixtures/extension.js -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/lint-with-refs-and-plugins/config-with-ref-to-plugin.yaml: -------------------------------------------------------------------------------- 1 | $ref: config-with-plugin.yaml 2 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/redocly.yaml: -------------------------------------------------------------------------------- 1 | extends: 2 | - recommended 3 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/refs/param-b.yaml: -------------------------------------------------------------------------------- 1 | name: param_b 2 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/refs/param-c.yaml: -------------------------------------------------------------------------------- 1 | name: param_c 2 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/refs/rename.yaml: -------------------------------------------------------------------------------- 1 | type: number 2 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/refs/schema-a.yaml: -------------------------------------------------------------------------------- 1 | type: string 2 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/refs/simple.yaml: -------------------------------------------------------------------------------- 1 | type: string 2 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/resolve/description.md: -------------------------------------------------------------------------------- 1 | # Hello World 2 | 3 | Lorem ipsum 4 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/resolve/externalLicense.yaml: -------------------------------------------------------------------------------- 1 | name: MIT 2 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/resolve/transitive/a.yaml: -------------------------------------------------------------------------------- 1 | type: string 2 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/fixtures/sibling-refs/summary.md: -------------------------------------------------------------------------------- 1 | Summary from reference 2 | -------------------------------------------------------------------------------- /packages/core/src/__tests__/format.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/format.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/js-yaml.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/js-yaml.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/lint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/lint.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/logger.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/output.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/output.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/ref-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/ref-utils.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/resolve-http.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/resolve-http.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/resolve.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/resolve.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/utils-browser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/utils-browser.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/utils.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/walk.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/__tests__/walk.test.ts -------------------------------------------------------------------------------- /packages/core/src/bundle/bundle-document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/bundle/bundle-document.ts -------------------------------------------------------------------------------- /packages/core/src/bundle/bundle-oas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/bundle/bundle-oas.ts -------------------------------------------------------------------------------- /packages/core/src/bundle/bundle-visitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/bundle/bundle-visitor.ts -------------------------------------------------------------------------------- /packages/core/src/bundle/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/bundle/bundle.ts -------------------------------------------------------------------------------- /packages/core/src/config/__tests__/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/__tests__/config.test.ts -------------------------------------------------------------------------------- /packages/core/src/config/__tests__/fixtures/load-redocly.yaml: -------------------------------------------------------------------------------- 1 | rules: 2 | info-contact: warn 3 | -------------------------------------------------------------------------------- /packages/core/src/config/__tests__/fixtures/resolve-refs-in-config/rules.yaml: -------------------------------------------------------------------------------- 1 | info-license: error 2 | non-existing-rule: warn # fail 3 | -------------------------------------------------------------------------------- /packages/core/src/config/__tests__/fixtures/resolve-refs-in-config/seo.yaml: -------------------------------------------------------------------------------- 1 | title: 1 # fail 2 | -------------------------------------------------------------------------------- /packages/core/src/config/__tests__/load.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/__tests__/load.test.ts -------------------------------------------------------------------------------- /packages/core/src/config/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/__tests__/utils.test.ts -------------------------------------------------------------------------------- /packages/core/src/config/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/all.ts -------------------------------------------------------------------------------- /packages/core/src/config/builtIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/builtIn.ts -------------------------------------------------------------------------------- /packages/core/src/config/bundle-extends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/bundle-extends.ts -------------------------------------------------------------------------------- /packages/core/src/config/config-resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/config-resolvers.ts -------------------------------------------------------------------------------- /packages/core/src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/config.ts -------------------------------------------------------------------------------- /packages/core/src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/constants.ts -------------------------------------------------------------------------------- /packages/core/src/config/get-resolve-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/get-resolve-config.ts -------------------------------------------------------------------------------- /packages/core/src/config/group-assertion-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/group-assertion-rules.ts -------------------------------------------------------------------------------- /packages/core/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/index.ts -------------------------------------------------------------------------------- /packages/core/src/config/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/load.ts -------------------------------------------------------------------------------- /packages/core/src/config/minimal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/minimal.ts -------------------------------------------------------------------------------- /packages/core/src/config/recommended-strict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/recommended-strict.ts -------------------------------------------------------------------------------- /packages/core/src/config/recommended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/recommended.ts -------------------------------------------------------------------------------- /packages/core/src/config/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/rules.ts -------------------------------------------------------------------------------- /packages/core/src/config/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/spec.ts -------------------------------------------------------------------------------- /packages/core/src/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/types.ts -------------------------------------------------------------------------------- /packages/core/src/config/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/utils.ts -------------------------------------------------------------------------------- /packages/core/src/config/visitors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/config/visitors.ts -------------------------------------------------------------------------------- /packages/core/src/decorators/arazzo/index.ts: -------------------------------------------------------------------------------- 1 | export const decorators = {}; 2 | -------------------------------------------------------------------------------- /packages/core/src/decorators/async2/index.ts: -------------------------------------------------------------------------------- 1 | export const decorators = {}; 2 | -------------------------------------------------------------------------------- /packages/core/src/decorators/async3/index.ts: -------------------------------------------------------------------------------- 1 | export const decorators = {}; 2 | -------------------------------------------------------------------------------- /packages/core/src/decorators/oas2/__tests__/fixtures/handle-invalid-ref/schemas.yaml: -------------------------------------------------------------------------------- 1 | Something: 2 | type: string 3 | -------------------------------------------------------------------------------- /packages/core/src/decorators/oas2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/decorators/oas2/index.ts -------------------------------------------------------------------------------- /packages/core/src/decorators/oas3/__tests__/fixtures/handle-invalid-ref/schemas.yaml: -------------------------------------------------------------------------------- 1 | Something: 2 | type: string 3 | -------------------------------------------------------------------------------- /packages/core/src/decorators/oas3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/decorators/oas3/index.ts -------------------------------------------------------------------------------- /packages/core/src/decorators/overlay1/index.ts: -------------------------------------------------------------------------------- 1 | export const decorators = {}; 2 | -------------------------------------------------------------------------------- /packages/core/src/detect-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/detect-spec.ts -------------------------------------------------------------------------------- /packages/core/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/env.ts -------------------------------------------------------------------------------- /packages/core/src/errors/yaml-parse-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/errors/yaml-parse-error.ts -------------------------------------------------------------------------------- /packages/core/src/format/codeframes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/format/codeframes.ts -------------------------------------------------------------------------------- /packages/core/src/format/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/format/format.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/js-yaml/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/js-yaml/index.ts -------------------------------------------------------------------------------- /packages/core/src/lint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/lint.ts -------------------------------------------------------------------------------- /packages/core/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/logger.ts -------------------------------------------------------------------------------- /packages/core/src/oas-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/oas-types.ts -------------------------------------------------------------------------------- /packages/core/src/ref-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/ref-utils.ts -------------------------------------------------------------------------------- /packages/core/src/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/resolve.ts -------------------------------------------------------------------------------- /packages/core/src/rules/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/__tests__/utils.test.ts -------------------------------------------------------------------------------- /packages/core/src/rules/ajv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/ajv.ts -------------------------------------------------------------------------------- /packages/core/src/rules/arazzo/criteria-unique.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/arazzo/criteria-unique.ts -------------------------------------------------------------------------------- /packages/core/src/rules/arazzo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/arazzo/index.ts -------------------------------------------------------------------------------- /packages/core/src/rules/arazzo/stepId-unique.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/arazzo/stepId-unique.ts -------------------------------------------------------------------------------- /packages/core/src/rules/async2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/async2/index.ts -------------------------------------------------------------------------------- /packages/core/src/rules/async3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/async3/index.ts -------------------------------------------------------------------------------- /packages/core/src/rules/common/__tests__/fixtures/invalid-yaml.yaml: -------------------------------------------------------------------------------- 1 | test: ' -------------------------------------------------------------------------------- /packages/core/src/rules/common/__tests__/fixtures/ref.yaml: -------------------------------------------------------------------------------- 1 | test: 1 2 | -------------------------------------------------------------------------------- /packages/core/src/rules/common/info-contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/common/info-contact.ts -------------------------------------------------------------------------------- /packages/core/src/rules/common/info-license.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/common/info-license.ts -------------------------------------------------------------------------------- /packages/core/src/rules/common/struct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/common/struct.ts -------------------------------------------------------------------------------- /packages/core/src/rules/common/tag-description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/common/tag-description.ts -------------------------------------------------------------------------------- /packages/core/src/rules/oas2/__tests__/struct/fixtures/description.md: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /packages/core/src/rules/oas2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/oas2/index.ts -------------------------------------------------------------------------------- /packages/core/src/rules/oas2/request-mime-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/oas2/request-mime-type.ts -------------------------------------------------------------------------------- /packages/core/src/rules/oas3/__tests__/fixtures/external-value.yaml: -------------------------------------------------------------------------------- 1 | a: foo 2 | b: 100 3 | -------------------------------------------------------------------------------- /packages/core/src/rules/oas3/__tests__/struct/fixtures/description.md: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /packages/core/src/rules/oas3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/oas3/index.ts -------------------------------------------------------------------------------- /packages/core/src/rules/oas3/no-empty-servers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/oas3/no-empty-servers.ts -------------------------------------------------------------------------------- /packages/core/src/rules/oas3/request-mime-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/oas3/request-mime-type.ts -------------------------------------------------------------------------------- /packages/core/src/rules/other/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/other/stats.ts -------------------------------------------------------------------------------- /packages/core/src/rules/overlay1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/overlay1/index.ts -------------------------------------------------------------------------------- /packages/core/src/rules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/rules/utils.ts -------------------------------------------------------------------------------- /packages/core/src/types/arazzo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/arazzo.ts -------------------------------------------------------------------------------- /packages/core/src/types/asyncapi2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/asyncapi2.ts -------------------------------------------------------------------------------- /packages/core/src/types/asyncapi3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/asyncapi3.ts -------------------------------------------------------------------------------- /packages/core/src/types/entity-yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/entity-yaml.ts -------------------------------------------------------------------------------- /packages/core/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/index.ts -------------------------------------------------------------------------------- /packages/core/src/types/json-schema-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/json-schema-adapter.ts -------------------------------------------------------------------------------- /packages/core/src/types/oas2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/oas2.ts -------------------------------------------------------------------------------- /packages/core/src/types/oas3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/oas3.ts -------------------------------------------------------------------------------- /packages/core/src/types/oas3_1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/oas3_1.ts -------------------------------------------------------------------------------- /packages/core/src/types/oas3_2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/oas3_2.ts -------------------------------------------------------------------------------- /packages/core/src/types/overlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/overlay.ts -------------------------------------------------------------------------------- /packages/core/src/types/redocly-yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/types/redocly-yaml.ts -------------------------------------------------------------------------------- /packages/core/src/typings/arazzo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/typings/arazzo.ts -------------------------------------------------------------------------------- /packages/core/src/typings/asyncapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/typings/asyncapi.ts -------------------------------------------------------------------------------- /packages/core/src/typings/asyncapi3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/typings/asyncapi3.ts -------------------------------------------------------------------------------- /packages/core/src/typings/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/typings/common.ts -------------------------------------------------------------------------------- /packages/core/src/typings/openapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/typings/openapi.ts -------------------------------------------------------------------------------- /packages/core/src/typings/overlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/typings/overlay.ts -------------------------------------------------------------------------------- /packages/core/src/typings/swagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/typings/swagger.ts -------------------------------------------------------------------------------- /packages/core/src/utils/assign-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/assign-config.ts -------------------------------------------------------------------------------- /packages/core/src/utils/dequal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/dequal.ts -------------------------------------------------------------------------------- /packages/core/src/utils/does-yaml-file-exist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/does-yaml-file-exist.ts -------------------------------------------------------------------------------- /packages/core/src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/error.ts -------------------------------------------------------------------------------- /packages/core/src/utils/get-own.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/get-own.ts -------------------------------------------------------------------------------- /packages/core/src/utils/identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/identity.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-custom-rule-id.ts: -------------------------------------------------------------------------------- 1 | export function isCustomRuleId(id: string) { 2 | return id.includes('/'); 3 | } 4 | -------------------------------------------------------------------------------- /packages/core/src/utils/is-defined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-defined.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-empty-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-empty-array.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-empty-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-empty-object.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-not-empty-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-not-empty-array.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-not-empty-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-not-empty-object.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-not-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-not-string.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-ordered.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-ordered.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-path-parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-path-parameter.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-plain-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-plain-object.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-string.ts -------------------------------------------------------------------------------- /packages/core/src/utils/is-truthy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/is-truthy.ts -------------------------------------------------------------------------------- /packages/core/src/utils/keys-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/keys-of.ts -------------------------------------------------------------------------------- /packages/core/src/utils/make-ref-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/make-ref-id.ts -------------------------------------------------------------------------------- /packages/core/src/utils/next-tick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/next-tick.ts -------------------------------------------------------------------------------- /packages/core/src/utils/omit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/omit.ts -------------------------------------------------------------------------------- /packages/core/src/utils/pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/pause.ts -------------------------------------------------------------------------------- /packages/core/src/utils/pluralize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/pluralize.ts -------------------------------------------------------------------------------- /packages/core/src/utils/read-file-from-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/read-file-from-url.ts -------------------------------------------------------------------------------- /packages/core/src/utils/regex-from-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/regex-from-string.ts -------------------------------------------------------------------------------- /packages/core/src/utils/slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/slash.ts -------------------------------------------------------------------------------- /packages/core/src/utils/stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/stack.ts -------------------------------------------------------------------------------- /packages/core/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/types.ts -------------------------------------------------------------------------------- /packages/core/src/utils/validate-mime-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/validate-mime-type.ts -------------------------------------------------------------------------------- /packages/core/src/utils/yaml-fs-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/utils/yaml-fs-helper.ts -------------------------------------------------------------------------------- /packages/core/src/visitors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/visitors.ts -------------------------------------------------------------------------------- /packages/core/src/walk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/src/walk.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/respect-core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/.npmignore -------------------------------------------------------------------------------- /packages/respect-core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/respect-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/README.md -------------------------------------------------------------------------------- /packages/respect-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/package.json -------------------------------------------------------------------------------- /packages/respect-core/src/arazzo-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/arazzo-schema.ts -------------------------------------------------------------------------------- /packages/respect-core/src/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/generate.ts -------------------------------------------------------------------------------- /packages/respect-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/index.ts -------------------------------------------------------------------------------- /packages/respect-core/src/modules/checks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/modules/checks/index.ts -------------------------------------------------------------------------------- /packages/respect-core/src/modules/faker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/modules/faker.ts -------------------------------------------------------------------------------- /packages/respect-core/src/modules/flow-runner/outputs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './print-message.js'; 2 | -------------------------------------------------------------------------------- /packages/respect-core/src/modules/flow-runner/schema/index.ts: -------------------------------------------------------------------------------- 1 | export * from './schema-checker.js'; 2 | -------------------------------------------------------------------------------- /packages/respect-core/src/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/run.ts -------------------------------------------------------------------------------- /packages/respect-core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/types.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/ajv-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/ajv-errors.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/api-fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/api-fetcher.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/clean-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/clean-colors.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/deep-copy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/deep-copy.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/delay.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/file.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/is-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/is-empty.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/is-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/is-json.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/sort.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/time.ts -------------------------------------------------------------------------------- /packages/respect-core/src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/src/utils/url.ts -------------------------------------------------------------------------------- /packages/respect-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/packages/respect-core/tsconfig.json -------------------------------------------------------------------------------- /resources/.redocly.lint-ignore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/.redocly.lint-ignore.yaml -------------------------------------------------------------------------------- /resources/async.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/async.yaml -------------------------------------------------------------------------------- /resources/asyncapi3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/asyncapi3.yaml -------------------------------------------------------------------------------- /resources/description.md: -------------------------------------------------------------------------------- 1 | # Hello World 2 | 3 | Test 4 | -------------------------------------------------------------------------------- /resources/local-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/local-plugin.js -------------------------------------------------------------------------------- /resources/museum-api.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/museum-api.arazzo.yaml -------------------------------------------------------------------------------- /resources/museum-tickets.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/museum-tickets.arazzo.yaml -------------------------------------------------------------------------------- /resources/museum.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/museum.yaml -------------------------------------------------------------------------------- /resources/overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/overlay.yaml -------------------------------------------------------------------------------- /resources/pets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/pets.yaml -------------------------------------------------------------------------------- /resources/petstore-with-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/petstore-with-errors.yaml -------------------------------------------------------------------------------- /resources/rebilly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/rebilly.yaml -------------------------------------------------------------------------------- /resources/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/resources/redocly.yaml -------------------------------------------------------------------------------- /scripts/local-pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/scripts/local-pack.sh -------------------------------------------------------------------------------- /scripts/post-changeset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/scripts/post-changeset.js -------------------------------------------------------------------------------- /scripts/write-release-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/scripts/write-release-message.js -------------------------------------------------------------------------------- /tests/e2e/build-docs/build-docs-with-config-option/nested/redocly.yaml: -------------------------------------------------------------------------------- 1 | extends: 2 | - minimal 3 | openapi: 4 | htmlTemplate: ../index.hbs 5 | -------------------------------------------------------------------------------- /tests/e2e/build-docs/build-docs-with-disabled-search/config.yaml: -------------------------------------------------------------------------------- 1 | openapi: 2 | disableSearch: true 3 | -------------------------------------------------------------------------------- /tests/e2e/build-docs/simple-build-docs/pets.yaml: -------------------------------------------------------------------------------- 1 | ../../../../resources/pets.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/async3/UserSignedUp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/async3/UserSignedUp.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/async3/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/async3/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/async3/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/async3/simple.yml -------------------------------------------------------------------------------- /tests/e2e/bundle/async3/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/async3/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-anchor/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/bundle-anchor/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-anchor/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/bundle-anchor/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-anchor/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/bundle-anchor/test.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-arazzo-valid-test-description/parameter.yaml: -------------------------------------------------------------------------------- 1 | in: header 2 | name: Authorization 3 | value: Basic Og== 4 | -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-remove-unused-components-from-config/oas2-without-option/ref.yaml: -------------------------------------------------------------------------------- 1 | { 'type': 'string' } 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-remove-unused-components-from-config/oas2/ref.yaml: -------------------------------------------------------------------------------- 1 | { 'type': 'string' } 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-remove-unused-components-from-config/oas3-without-option/ref.yaml: -------------------------------------------------------------------------------- 1 | { 'type': 'string' } 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-remove-unused-components-from-config/oas3/ref.yaml: -------------------------------------------------------------------------------- 1 | { 'type': 'string' } 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-remove-unused-components/oas2/ref.yaml: -------------------------------------------------------------------------------- 1 | { 'type': 'string' } 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/bundle-remove-unused-components/oas3/ref.yaml: -------------------------------------------------------------------------------- 1 | { 'type': 'string' } 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/discriminator-mapping/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/discriminator-mapping/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/discriminator-mapping/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/discriminator-mapping/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/discriminator-mapping/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/discriminator-mapping/main.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/info-override/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/info-override/main.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/info-override/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/info-override/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/info-override/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/info-override/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/bundle/media-type-examples-override/examples/request.yaml: -------------------------------------------------------------------------------- 1 | name: Test 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/media-type-examples-override/examples/response.yaml: -------------------------------------------------------------------------------- 1 | - Foo 2 | - Bar 3 | -------------------------------------------------------------------------------- /tests/e2e/bundle/no-duplicated-components/Test.yaml: -------------------------------------------------------------------------------- 1 | type: object 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/no-self-referenced-components/parameters/_index.yaml: -------------------------------------------------------------------------------- 1 | PetId: 2 | $ref: './PetId.yaml' 3 | -------------------------------------------------------------------------------- /tests/e2e/bundle/no-self-referenced-components/schemas/Pet.yaml: -------------------------------------------------------------------------------- 1 | type: object 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/no-self-referenced-components/schemas/_index.yaml: -------------------------------------------------------------------------------- 1 | Pet: 2 | $ref: './Pet.yaml' 3 | -------------------------------------------------------------------------------- /tests/e2e/bundle/no-self-referenced-or-duplicated-components/folder/myObject.v2.schema.yaml: -------------------------------------------------------------------------------- 1 | type: object 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/oas3_1-pattern-porperties/object.yaml: -------------------------------------------------------------------------------- 1 | type: object 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/operation-description-override/create-user-operation-description.md: -------------------------------------------------------------------------------- 1 | Create a user **test** description. 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/operation-description-override/update-pet-operation-description.md: -------------------------------------------------------------------------------- 1 | Create a pet **test** description. 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/primitive-types/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/primitive-types/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/primitive-types/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/primitive-types/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/primitive-types/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/primitive-types/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/bundle/reference-ending-in-hash/schemas/Pet.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/remove-x-internal/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/remove-x-internal/main.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/remove-x-internal/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/remove-x-internal/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/remove-x-internal/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/remove-x-internal/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/bundle/sibling-refs-asyncapi/summary.md: -------------------------------------------------------------------------------- 1 | Summary from reference 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/sibling-refs-oas/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/sibling-refs-oas/description.md -------------------------------------------------------------------------------- /tests/e2e/bundle/sibling-refs-oas/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/sibling-refs-oas/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/sibling-refs-oas/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/sibling-refs-oas/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/bundle/sibling-refs-oas/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/bundle/sibling-refs-oas/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/bundle/sibling-refs-oas/summary.md: -------------------------------------------------------------------------------- 1 | Summary from reference 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/tag-description-override/pet-tag-description.md: -------------------------------------------------------------------------------- 1 | Create a **pat** tag description. 2 | -------------------------------------------------------------------------------- /tests/e2e/bundle/tag-description-override/store-tag-description.md: -------------------------------------------------------------------------------- 1 | Create a **store** tag description. 2 | -------------------------------------------------------------------------------- /tests/e2e/check-config/config-type-extensions-in-assertions/snapshot.txt: -------------------------------------------------------------------------------- 1 | 2 | ✅ Your config is valid. 3 | -------------------------------------------------------------------------------- /tests/e2e/check-config/empty-config-null/redocly.yaml: -------------------------------------------------------------------------------- 1 | # it means `null` when converted to json 2 | -------------------------------------------------------------------------------- /tests/e2e/check-config/valid-config-with-config-option/snapshot.txt: -------------------------------------------------------------------------------- 1 | 2 | ✅ Your config is valid. 3 | -------------------------------------------------------------------------------- /tests/e2e/check-config/valid-config/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/check-config/valid-config/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/check-config/valid-config/snapshot.txt: -------------------------------------------------------------------------------- 1 | 2 | ✅ Your config is valid. 3 | -------------------------------------------------------------------------------- /tests/e2e/commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/commands.test.ts -------------------------------------------------------------------------------- /tests/e2e/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/helpers.ts -------------------------------------------------------------------------------- /tests/e2e/join/fails-if-no-info-section/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/fails-if-no-info-section/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/fails-if-no-info-section/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/fails-if-no-info-section/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/join/fails-if-no-info-section/snapshot.txt: -------------------------------------------------------------------------------- 1 | 2 | Info section is not found in specification. 3 | 4 | -------------------------------------------------------------------------------- /tests/e2e/join/fails-if-tags-duplication/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/fails-if-tags-duplication/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/fails-if-tags-duplication/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/fails-if-tags-duplication/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/join/ignore-decorators/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/ignore-decorators/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/ignore-decorators/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/ignore-decorators/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/join/ignore-decorators/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/ignore-decorators/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/join/ignore-decorators/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/ignore-decorators/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/join/json-and-yaml-input/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/json-and-yaml-input/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/json-and-yaml-input/foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/json-and-yaml-input/foo.json -------------------------------------------------------------------------------- /tests/e2e/join/oas3.2/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/oas3.2/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/oas3.2/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/oas3.2/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/join/oas3.2/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/oas3.2/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/join/prefix-tags-with-filename/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/prefix-tags-with-filename/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/prefix-tags-with-filename/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/prefix-tags-with-filename/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/join/reference-in-description/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/reference-in-description/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/reference-in-description/description.md: -------------------------------------------------------------------------------- 1 | Test description from md file 2 | -------------------------------------------------------------------------------- /tests/e2e/join/reference-in-description/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/reference-in-description/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/join/references-in-parameters/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/references-in-parameters/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/references-in-parameters/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/references-in-parameters/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/join/two-files-with-no-errors/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/two-files-with-no-errors/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/two-files-with-no-errors/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/two-files-with-no-errors/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/join/with-metadata/pet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/with-metadata/pet.yaml -------------------------------------------------------------------------------- /tests/e2e/join/with-metadata/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/with-metadata/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/join/with-metadata/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/with-metadata/test.yaml -------------------------------------------------------------------------------- /tests/e2e/join/without-x-tag-groups/bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/without-x-tag-groups/bar.yaml -------------------------------------------------------------------------------- /tests/e2e/join/without-x-tag-groups/foo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/without-x-tag-groups/foo.yaml -------------------------------------------------------------------------------- /tests/e2e/join/without-x-tag-groups/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/join/without-x-tag-groups/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint-config/config-structure/env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint-config/config-structure/env.yaml -------------------------------------------------------------------------------- /tests/e2e/lint-config/config-with-refs-extended/apis.yaml: -------------------------------------------------------------------------------- 1 | test@v1: 2 | $ref: v1.yaml 3 | -------------------------------------------------------------------------------- /tests/e2e/lint-config/config-with-refs-extended/rules.yaml: -------------------------------------------------------------------------------- 1 | info-contact: error 2 | wrong-rule: warn 3 | -------------------------------------------------------------------------------- /tests/e2e/lint-config/config-with-refs-extended/seo.yaml: -------------------------------------------------------------------------------- 1 | title: 222 # wrong, expected string 2 | -------------------------------------------------------------------------------- /tests/e2e/lint-config/config-with-refs-extended/v1.yaml: -------------------------------------------------------------------------------- 1 | root: true # wrong, expected string 2 | -------------------------------------------------------------------------------- /tests/e2e/lint-config/config-with-refs/rules.yaml: -------------------------------------------------------------------------------- 1 | info-contact: error 2 | wrong-rule: warn 3 | -------------------------------------------------------------------------------- /tests/e2e/lint-config/invalid-config-format-json/redocly.yaml: -------------------------------------------------------------------------------- 1 | badKey: 1 2 | 3 | extends: 4 | - recommended 5 | -------------------------------------------------------------------------------- /tests/e2e/lint/assertions-enum-error/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/assertions-enum-error/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/assertions-enum-error/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/assertions-enum-error/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/assertions-enum-error/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/assertions-enum-error/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/assertions-error/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/assertions-error/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/assertions-error/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/assertions-error/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/assertions-error/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/assertions-error/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/assertions/description.md: -------------------------------------------------------------------------------- 1 | Example description 2 | -------------------------------------------------------------------------------- /tests/e2e/lint/assertions/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/assertions/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/assertions/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/assertions/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/assertions/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/assertions/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/async2/anyof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/anyof.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/application-headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/application-headers.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/correlation-id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/correlation-id.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/gitter-streaming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/gitter-streaming.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/mercure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/mercure.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/not.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/not.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/oneof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/oneof.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/operation-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/operation-security.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/operation-with-tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/operation-with-tags.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/rpc-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/rpc-client.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/rpc-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/rpc-server.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/simple.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/slack-rtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/slack-rtm.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/async2/streetlights-kafka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/streetlights-kafka.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/streetlights-mqtt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/streetlights-mqtt.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async2/websocket-gemini.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async2/websocket-gemini.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/anyof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/anyof.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/application-headers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/application-headers.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/correlation-id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/correlation-id.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/gitter-streaming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/gitter-streaming.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/mercure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/mercure.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/not.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/not.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/oneof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/oneof.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/operation-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/operation-security.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/rpc-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/rpc-client.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/rpc-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/rpc-server.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/simple.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/slack-rtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/slack-rtm.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/async3/streetlights-kafka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/streetlights-kafka.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/streetlights-mqtt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/streetlights-mqtt.yml -------------------------------------------------------------------------------- /tests/e2e/lint/async3/websocket-gemini.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/async3/websocket-gemini.yml -------------------------------------------------------------------------------- /tests/e2e/lint/default-message-override/split/info.yaml: -------------------------------------------------------------------------------- 1 | version: 1.0.0 2 | title: Custom messages test 3 | -------------------------------------------------------------------------------- /tests/e2e/lint/info-contact/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/info-contact/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/info-contact/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/info-contact/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/info-contact/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/info-contact/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/info-license-rule/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/info-license-rule/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/info-license-rule/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/info-license-rule/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/info-license-rule/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/info-license-rule/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/merge-lint-configs/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/merge-lint-configs/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/merge-lint-configs/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/merge-lint-configs/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/merge-lint-configs/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/merge-lint-configs/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/nested-extends-two-level/nested-config.yaml: -------------------------------------------------------------------------------- 1 | extends: 2 | - ./nested-config-2.yaml 3 | -------------------------------------------------------------------------------- /tests/e2e/lint/nested-extends/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/nested-extends/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/nested-extends/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/nested-extends/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/nested-extends/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/nested-extends/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/no-invalid-media-type-examples/example.yaml: -------------------------------------------------------------------------------- 1 | network: social 2 | -------------------------------------------------------------------------------- /tests/e2e/lint/null-schema-values/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/null-schema-values/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/null-schema-values/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/null-schema-values/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/null-schema-values/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/null-schema-values/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/oas2/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas2/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas2/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas2/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas2/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas2/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/oas3-no-errors/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3-no-errors/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas3-no-errors/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3-no-errors/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas3-no-errors/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3-no-errors/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/oas3.1-error/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3.1-error/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas3.1-error/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3.1-error/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas3.1-error/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3.1-error/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/oas3.1/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3.1/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas3.1/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3.1/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas3.1/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3.1/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/oas3.2/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3.2/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas3.2/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3.2/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/oas3.2/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/oas3.2/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/skip-rules/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/skip-rules/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/skip-rules/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/skip-rules/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/skip-rules/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/skip-rules/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/skip-rules/snapshot_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/skip-rules/snapshot_2.txt -------------------------------------------------------------------------------- /tests/e2e/lint/spec-from/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/spec-from/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/spec-from/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/spec-from/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/spec-from/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/spec-from/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/spec-strict-refs/info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/spec-strict-refs/info.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/spec-strict-refs/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/spec-strict-refs/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/spec-strict-refs/props.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/spec-strict-refs/props.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/spec-strict-refs/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/spec-strict-refs/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/spec-strict-refs/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/spec-strict-refs/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/turn-off-rules/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/turn-off-rules/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/turn-off-rules/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/turn-off-rules/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/turn-off-rules/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/turn-off-rules/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/turn-on-all-rules/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/turn-on-all-rules/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/turn-on-all-rules/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/turn-on-all-rules/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/turn-on-all-rules/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/turn-on-all-rules/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/with-ignore-file/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/with-ignore-file/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/with-ignore-file/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/with-ignore-file/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/with-ignore-file/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/with-ignore-file/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/lint/xml-oas-3.2/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/xml-oas-3.2/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/xml-oas-3.2/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/xml-oas-3.2/redocly.yaml -------------------------------------------------------------------------------- /tests/e2e/lint/xml-oas-3.2/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/lint/xml-oas-3.2/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/respect/cat-fact-api/cats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/cat-fact-api/cats.yaml -------------------------------------------------------------------------------- /tests/e2e/respect/free-apis/free-apis.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/free-apis/free-apis.test.ts -------------------------------------------------------------------------------- /tests/e2e/respect/free-apis/free.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/free-apis/free.arazzo.yaml -------------------------------------------------------------------------------- /tests/e2e/respect/free-apis/testing-acme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/free-apis/testing-acme.yaml -------------------------------------------------------------------------------- /tests/e2e/respect/implicit/implicit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/implicit/implicit.test.ts -------------------------------------------------------------------------------- /tests/e2e/respect/implicit/testing-acme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/implicit/testing-acme.yaml -------------------------------------------------------------------------------- /tests/e2e/respect/local-json-server/.gitignore: -------------------------------------------------------------------------------- 1 | fake-db.json -------------------------------------------------------------------------------- /tests/e2e/respect/local-json-server/fake-db.json: -------------------------------------------------------------------------------- 1 | { 2 | "items": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/e2e/respect/max-steps/arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/max-steps/arazzo.yaml -------------------------------------------------------------------------------- /tests/e2e/respect/max-steps/max-steps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/max-steps/max-steps.test.ts -------------------------------------------------------------------------------- /tests/e2e/respect/max-steps/oas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/max-steps/oas.yaml -------------------------------------------------------------------------------- /tests/e2e/respect/museum-api-with-errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/museum-api-with-errors.yaml -------------------------------------------------------------------------------- /tests/e2e/respect/museum-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/museum-api.yaml -------------------------------------------------------------------------------- /tests/e2e/respect/museum-tickets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/museum-tickets.yaml -------------------------------------------------------------------------------- /tests/e2e/respect/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/respect/utils.ts -------------------------------------------------------------------------------- /tests/e2e/split/missing-outDir/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/missing-outDir/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/split/missing-outDir/spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "openapi": "3.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /tests/e2e/split/oas2/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/oas2/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/split/oas2/snapshot.txt: -------------------------------------------------------------------------------- 1 | 2 | OpenAPI 2 is not supported by this command. 3 | 4 | -------------------------------------------------------------------------------- /tests/e2e/split/oas3-no-errors/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/oas3-no-errors/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/split/oas3-no-errors/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/oas3-no-errors/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/split/openapi-json-file/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/openapi-json-file/openapi.json -------------------------------------------------------------------------------- /tests/e2e/split/openapi-json-file/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/openapi-json-file/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/split/refs-in-json/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/refs-in-json/openapi.json -------------------------------------------------------------------------------- /tests/e2e/split/refs-in-json/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/refs-in-json/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/split/slash-separator/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/slash-separator/openapi.yaml -------------------------------------------------------------------------------- /tests/e2e/split/slash-separator/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/split/slash-separator/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/stats/stats-json/museum.yaml: -------------------------------------------------------------------------------- 1 | ../../../../resources/museum.yaml -------------------------------------------------------------------------------- /tests/e2e/stats/stats-json/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/stats/stats-json/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/stats/stats-markdown/museum.yaml: -------------------------------------------------------------------------------- 1 | ../../../../resources/museum.yaml -------------------------------------------------------------------------------- /tests/e2e/stats/stats-markdown/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/stats/stats-markdown/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/stats/stats-stylish/museum.yaml: -------------------------------------------------------------------------------- 1 | ../../../../resources/museum.yaml -------------------------------------------------------------------------------- /tests/e2e/stats/stats-stylish/snapshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/e2e/stats/stats-stylish/snapshot.txt -------------------------------------------------------------------------------- /tests/e2e/zero-config/no-default-recommended-fallback-with-empty-config/redocly.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/performance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/performance/.gitignore -------------------------------------------------------------------------------- /tests/performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/performance/README.md -------------------------------------------------------------------------------- /tests/performance/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/performance/chart.js -------------------------------------------------------------------------------- /tests/performance/make-test-command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/performance/make-test-command.sh -------------------------------------------------------------------------------- /tests/performance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/performance/package.json -------------------------------------------------------------------------------- /tests/smoke/basic/message-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/basic/message-schema.yaml -------------------------------------------------------------------------------- /tests/smoke/basic/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/basic/openapi.yaml -------------------------------------------------------------------------------- /tests/smoke/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/basic/package.json -------------------------------------------------------------------------------- /tests/smoke/basic/pre-built/redoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/basic/pre-built/redoc.html -------------------------------------------------------------------------------- /tests/smoke/basic/pre-split/museum/components/schemas/Date.yaml: -------------------------------------------------------------------------------- 1 | type: string 2 | format: date 3 | example: '2023-10-29' 4 | -------------------------------------------------------------------------------- /tests/smoke/basic/prepare-smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/basic/prepare-smoke.sh -------------------------------------------------------------------------------- /tests/smoke/basic/run-smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/basic/run-smoke.sh -------------------------------------------------------------------------------- /tests/smoke/plugins/local-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/plugins/local-plugin.js -------------------------------------------------------------------------------- /tests/smoke/plugins/message-schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/plugins/message-schema.yaml -------------------------------------------------------------------------------- /tests/smoke/plugins/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/plugins/openapi.yaml -------------------------------------------------------------------------------- /tests/smoke/plugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/plugins/package.json -------------------------------------------------------------------------------- /tests/smoke/plugins/prepare-smoke-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/plugins/prepare-smoke-plugins.sh -------------------------------------------------------------------------------- /tests/smoke/plugins/redocly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/plugins/redocly.yaml -------------------------------------------------------------------------------- /tests/smoke/plugins/run-smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/plugins/run-smoke.sh -------------------------------------------------------------------------------- /tests/smoke/rebilly/rebilly-description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/rebilly/rebilly-description.yaml -------------------------------------------------------------------------------- /tests/smoke/rebilly/rebilly.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/rebilly/rebilly.arazzo.yaml -------------------------------------------------------------------------------- /tests/smoke/rebilly/rebilly.smoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tests/smoke/rebilly/rebilly.smoke.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redocly/redocly-cli/HEAD/vitest.config.ts --------------------------------------------------------------------------------