aboutsummaryrefslogtreecommitdiffstats
path: root/rust/fatcat-openapi/src/mimetypes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/fatcat-openapi/src/mimetypes.rs')
-rw-r--r--rust/fatcat-openapi/src/mimetypes.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/rust/fatcat-openapi/src/mimetypes.rs b/rust/fatcat-openapi/src/mimetypes.rs
index ef297f69..51ff326e 100644
--- a/rust/fatcat-openapi/src/mimetypes.rs
+++ b/rust/fatcat-openapi/src/mimetypes.rs
@@ -52,6 +52,26 @@ pub mod responses {
lazy_static! {
pub static ref AUTH_OIDC_GENERIC_ERROR: Mime = mime!(Application / Json);
}
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_SUCCESS: Mime = mime!(Application / Json);
+ }
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_BAD_REQUEST: Mime = mime!(Application / Json);
+ }
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_NOT_AUTHORIZED: Mime = mime!(Application / Json);
+ }
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_FORBIDDEN: Mime = mime!(Application / Json);
+ }
+ /// Create Mime objects for the response content types for CreateAuthToken
+ lazy_static! {
+ pub static ref CREATE_AUTH_TOKEN_GENERIC_ERROR: Mime = mime!(Application / Json);
+ }
/// Create Mime objects for the response content types for GetChangelog
lazy_static! {
pub static ref GET_CHANGELOG_SUCCESS: Mime = mime!(Application / Json);