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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ pub trait {{classnamePascalCase}}<E: std::fmt::Debug + Send + Sync + 'static = (
{{/x-consumes-multipart}}
{{/x-consumes-multipart-related}}
{{#x-consumes-multipart}}
body: &Multipart,
body: Multipart,
{{/x-consumes-multipart}}
{{#x-consumes-multipart-related}}
body: &axum::body::Body,
body: axum::body::Body,
{{/x-consumes-multipart-related}}
) -> Result<{{{operationId}}}Response, E>;
{{/vendorExtensions}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,10 @@ where
{{/x-consumes-multipart}}
{{/x-consumes-multipart-related}}
{{#x-consumes-multipart}}
&body,
body,
{{/x-consumes-multipart}}
{{#x-consumes-multipart-related}}
&body,
body,
{{/x-consumes-multipart-related}}
{{/vendorExtensions}}
).await;
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 1.0.0
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 1.0.7
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub trait Default<E: std::fmt::Debug + Send + Sync + 'static = ()>: super::Error
method: &Method,
host: &Host,
cookies: &CookieJar,
body: &axum::body::Body,
body: axum::body::Body,
) -> Result<MultipartRelatedRequestPostResponse, E>;

/// MultipartRequestPost - POST /multipart_request
Expand All @@ -50,7 +50,7 @@ pub trait Default<E: std::fmt::Debug + Send + Sync + 'static = ()>: super::Error
method: &Method,
host: &Host,
cookies: &CookieJar,
body: &Multipart,
body: Multipart,
) -> Result<MultipartRequestPostResponse, E>;

/// MultipleIdenticalMimeTypesPost - POST /multiple-identical-mime-types
Expand All @@ -59,6 +59,6 @@ pub trait Default<E: std::fmt::Debug + Send + Sync + 'static = ()>: super::Error
method: &Method,
host: &Host,
cookies: &CookieJar,
body: &axum::body::Body,
body: axum::body::Body,
) -> Result<MultipleIdenticalMimeTypesPostResponse, E>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ where

let result = api_impl
.as_ref()
.multipart_related_request_post(&method, &host, &cookies, &body)
.multipart_related_request_post(&method, &host, &cookies, body)
.await;

let mut response = Response::builder();
Expand Down Expand Up @@ -129,7 +129,7 @@ where

let result = api_impl
.as_ref()
.multipart_request_post(&method, &host, &cookies, &body)
.multipart_request_post(&method, &host, &cookies, body)
.await;

let mut response = Response::builder();
Expand Down Expand Up @@ -190,7 +190,7 @@ where

let result = api_impl
.as_ref()
.multiple_identical_mime_types_post(&method, &host, &cookies, &body)
.multiple_identical_mime_types_post(&method, &host, &cookies, body)
.await;

let mut response = Response::builder();
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 1.0.7
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
2 changes: 1 addition & 1 deletion samples/server/petstore/rust-axum/output/ops-v3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 0.0.1
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 1.0.0
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,6 @@ pub trait Pet<E: std::fmt::Debug + Send + Sync + 'static = ()>: super::ErrorHand
host: &Host,
cookies: &CookieJar,
path_params: &models::UploadFilePathParams,
body: &Multipart,
body: Multipart,
) -> Result<UploadFileResponse, E>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2052,7 +2052,7 @@ where

let result = api_impl
.as_ref()
.upload_file(&method, &host, &cookies, &path_params, &body)
.upload_file(&method, &host, &cookies, &path_params, body)
.await;

let mut response = Response::builder();
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 1.0.0
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,6 @@ pub trait Pet<E: std::fmt::Debug + Send + Sync + 'static = ()>: super::ErrorHand
host: &Host,
cookies: &CookieJar,
path_params: &models::UploadFilePathParams,
body: &Multipart,
body: Multipart,
) -> Result<UploadFileResponse, E>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ where

let result = api_impl
.as_ref()
.upload_file(&method, &host, &cookies, &path_params, &body)
.upload_file(&method, &host, &cookies, &path_params, body)
.await;

let mut response = Response::builder();
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 1.0
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.gitignore
.openapi-generator-ignore
Cargo.toml
README.md
src/apis/default.rs
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 0.0.1
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 0.1.9
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 0.0.1
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 2.3.4
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.13.0-SNAPSHOT
7.14.0-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server, you can easily generate a server stub.
To see how to make this your own, look here: [README]((https://openapi-generator.tech))

- API version: 0.0.1
- Generator version: 7.13.0-SNAPSHOT
- Generator version: 7.14.0-SNAPSHOT



Expand Down
Loading