Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2024"
rust-version = "1.90"
description = "OpenAPI 3.x multi-language code generator"
authors = ["Adam Basfop Cavendish <GetbetterABC@yeah.net>"]
repository = "https://github.com/adamcavendish/openapi-nexus"
repository = "https://github.com/rust-codegen-group/openapi-nexus"
readme = "README.md"
license = "MIT OR Apache-2.0"

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ OpenAPI Nexus transforms OpenAPI specifications into type-safe client libraries.
**Shell installer (no Rust toolchain needed):**

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/adamcavendish/openapi-nexus/releases/download/0.1.15/openapi-nexus-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-codegen-group/openapi-nexus/releases/download/0.1.15/openapi-nexus-installer.sh | sh
```

**Nightly build (latest master):**
**Nightly build (latest main):**

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/adamcavendish/openapi-nexus/releases/download/nightly/openapi-nexus-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-codegen-group/openapi-nexus/releases/download/nightly/openapi-nexus-installer.sh | sh
```

**Build from source:**
Expand Down
2 changes: 1 addition & 1 deletion docs/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build-dir = "book"
[preprocessor.mermaid-mmdr]

[output.html]
git-repository-url = "https://github.com/adamcavendish/openapi-nexus"
git-repository-url = "https://github.com/rust-codegen-group/openapi-nexus"

[output.html.search]
enable = true
8 changes: 4 additions & 4 deletions docs/src/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
**Shell installer (no Rust toolchain needed):**

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/adamcavendish/openapi-nexus/releases/download/0.1.15/openapi-nexus-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-codegen-group/openapi-nexus/releases/download/0.1.15/openapi-nexus-installer.sh | sh
```

**Nightly build (latest master):**
**Nightly build (latest main):**

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/adamcavendish/openapi-nexus/releases/download/nightly/openapi-nexus-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-codegen-group/openapi-nexus/releases/download/nightly/openapi-nexus-installer.sh | sh
```

**Build from source:**
Expand Down Expand Up @@ -84,7 +84,7 @@ export OPENAPI_NEXUS_GENERATORS="typescript-fetch"

### Configuration File

Create an `openapi-nexus-config.toml` in your project root. See the [sample configuration file](https://github.com/adamcavendish/openapi-nexus/blob/master/openapi-nexus-config.toml.example) for all available options.
Create an `openapi-nexus-config.toml` in your project root. See the [sample configuration file](https://github.com/rust-codegen-group/openapi-nexus/blob/main/openapi-nexus-config.toml.example) for all available options.

Generator-specific options live under `[generators.<name>]` sections:

Expand Down
4 changes: 2 additions & 2 deletions docs/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ Parsing and lowering happen once in the orchestrator. Each generator receives a

## Links

- [Repository](https://github.com/adamcavendish/openapi-nexus)
- [Releases](https://github.com/adamcavendish/openapi-nexus/releases)
- [Repository](https://github.com/rust-codegen-group/openapi-nexus)
- [Releases](https://github.com/rust-codegen-group/openapi-nexus/releases)
2 changes: 1 addition & 1 deletion docs/src/multipart_and_binary.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ OpenAPI uses the same `type: string`, `format: binary` schema shape in several p
- Binary response bodies stay as raw bytes or blob values.
- JSON and text multipart parts keep their normal generated model or scalar types.

See [`examples/multipart-binary/openapi.yaml`](https://github.com/adamcavendish/openapi-nexus/blob/master/examples/multipart-binary/openapi.yaml) for a complete spec.
See [`examples/multipart-binary/openapi.yaml`](https://github.com/rust-codegen-group/openapi-nexus/blob/main/examples/multipart-binary/openapi.yaml) for a complete spec.

## Multipart Uploads

Expand Down
2 changes: 1 addition & 1 deletion src/generators/go/http/codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ fn readme_file(info: &IrInfo) -> FileInfo {
.unwrap_or_else(|| "Generated Go SDK.".to_string());
let package = info.title.to_kebab_case();
let content = format!(
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `{package}`.\n"
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `{package}`.\n"
);
FileInfo::readme("README.md".to_string(), content)
}
2 changes: 1 addition & 1 deletion src/generators/java/okhttp/codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ fn readme_file(info: &IrInfo) -> FileInfo {
.unwrap_or_else(|| "Generated Java SDK.".to_string());
let package = info.title.to_kebab_case();
let content = format!(
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `{package}`.\n"
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `{package}`.\n"
);
FileInfo::readme("README.md".to_string(), content)
}
2 changes: 1 addition & 1 deletion src/generators/kotlin/okhttp/codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fn readme_file(info: &IrInfo) -> FileInfo {
.unwrap_or_else(|| "Generated Kotlin SDK.".to_string());
let package = info.title.to_kebab_case();
let content = format!(
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `{package}`.\n"
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `{package}`.\n"
);
FileInfo::readme("README.md".to_string(), content)
}
2 changes: 1 addition & 1 deletion src/generators/python/httpx/project_files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn readme_file(info: &IrInfo, package_name: &str) -> FileInfo {
.clone()
.unwrap_or_else(|| "Generated Python SDK.".to_string());
let content = format!(
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `{package_name}`.\n"
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `{package_name}`.\n"
);
FileInfo::readme("README.md".to_string(), content)
}
Expand Down
2 changes: 1 addition & 1 deletion src/generators/python/requests/project_files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn readme_file(info: &IrInfo, package_name: &str) -> FileInfo {
.clone()
.unwrap_or_else(|| "Generated Python SDK.".to_string());
let content = format!(
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `{package_name}`.\n"
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `{package_name}`.\n"
);
FileInfo::readme("README.md".to_string(), content)
}
Expand Down
2 changes: 1 addition & 1 deletion src/generators/rust/common/project_files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub fn readme_file(info: &IrInfo) -> FileInfo {
.unwrap_or_else(|| "Generated Rust SDK.".to_string());
let crate_name = info.title.to_kebab_case();
let content = format!(
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `{crate_name}`.\n"
"# {title}\n\n{description}\n\nVersion: `{version}`\n\nGenerated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `{crate_name}`.\n"
);
FileInfo::readme("README.md".to_string(), content)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ API demonstrating OpenAPI additionalProperties with multiple levels of structs (

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `additional-properties-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `additional-properties-api`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Covers multipart upload and octet-stream download.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `binary-transfer-media-types`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `binary-transfer-media-types`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Comprehensive test for all OpenAPI v3.1.2 schema types

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `comprehensive-schema-types-example`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `comprehensive-schema-types-example`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test fixture for DELETE operations with JSON response schemas and type alias req

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `test-api-with-delete-response-schema`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `test-api-with-delete-response-schema`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test API with duplicate parameter names across different locations

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `duplicate-parameter-names-test-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `duplicate-parameter-names-test-api`.
2 changes: 1 addition & 1 deletion tests/golden/go/go-http/enum-repr/README.md.golden
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ This API demonstrates all 4 kinds of enum representation types: Externally Tagge

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `enum-representation-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `enum-representation-api`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for interfaces that reference enum types

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `interface-with-enum-reference-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `interface-with-enum-reference-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Covers normalized media-type selection for requests and responses.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `media-type-selection`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `media-type-selection`.
2 changes: 1 addition & 1 deletion tests/golden/go/go-http/minimal/README.md.golden
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Generated Go SDK.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `minimal-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `minimal-api`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Covers optional multipart bodies, optional parts, and text-only multipart fields

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `multipart-edge-cases`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `multipart-edge-cases`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Covers explicit multipart part content types.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `multipart-explicit-encoding`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `multipart-explicit-encoding`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Covers multipart object parts whose wire names differ from ergonomic names.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `multipart-nested-object-parts`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `multipart-nested-object-parts`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Covers multipart request bodies that are not object-shaped.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `multipart-unsupported-schema`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `multipart-unsupported-schema`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test API with multiple operations having similar request body schema names

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `multiple-similar-request-schemas-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `multiple-similar-request-schemas-api`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test fixture to verify language property naming conventions

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `naming-conventions-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `naming-conventions-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Covers optional non-multipart request bodies.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `optional-request-bodies`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `optional-request-bodies`.
2 changes: 1 addition & 1 deletion tests/golden/go/go-http/petstore/README.md.golden
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ This is a sample Pet Store Server based on the OpenAPI 3.1 specification

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `petstore-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `petstore-api`.
2 changes: 1 addition & 1 deletion tests/golden/go/go-http/query-param-enum/README.md.golden
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for query parameters that reference enum schemas

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `query-parameter-enum-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `query-parameter-enum-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for object with all optional properties including arrays, references,

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `all-optional-properties-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `all-optional-properties-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for array of inline objects with snake_case to camelCase conversion (m

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `array-of-inline-objects-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `array-of-inline-objects-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for array of referenced model types with recursive FromJSON calls

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `array-of-referenced-types-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `array-of-referenced-types-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for array of inline objects that contain a reference property

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `array-with-reference-property-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `array-with-reference-property-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for array of inline objects where each object has nested inline object

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `complex-array-structure-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `complex-array-structure-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for three levels of nested inline objects

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `deeply-nested-inline-objects-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `deeply-nested-inline-objects-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for empty array handling

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `empty-array-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `empty-array-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for inline object containing an array of inline objects

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `inline-object-with-array-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `inline-object-with-array-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for inline objects (not arrays) with snake_case to camelCase conversio

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `inline-object-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `inline-object-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for object with mix of simple types, arrays, references, and inline ob

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `mixed-property-types-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `mixed-property-types-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for nested object reference with recursive FromJSON calls

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `nested-object-reference-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `nested-object-reference-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for optional array of inline objects with snake_case to camelCase conv

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `optional-array-of-inline-objects-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `optional-array-of-inline-objects-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for optional array of referenced model types

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `optional-array-of-referenced-types-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `optional-array-of-referenced-types-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for optional inline objects

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `optional-inline-object-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `optional-inline-object-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for optional nested object reference

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `optional-nested-object-reference-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `optional-nested-object-reference-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Test case for arrays with primitive items (should not be affected by recursive p

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `primitive-array-test`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `primitive-array-test`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Covers non-JSON request body media types to pin Content-Type emission.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `request-body-content-types`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `request-body-content-types`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Generated Go SDK.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `default-and-exact-response-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `default-and-exact-response-api`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Generated Go SDK.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `response-fallback-test-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `response-fallback-test-api`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Generated Go SDK.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `multi-status-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `multi-status-api`.
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Generated Go SDK.

Version: `1.0.0`

Generated by [openapi-nexus](https://github.com/adamcavendish/openapi-nexus) for `no-response-body-api`.
Generated by [openapi-nexus](https://github.com/rust-codegen-group/openapi-nexus) for `no-response-body-api`.
Loading