style: prettier

This commit is contained in:
Derrick Hammer 2024-03-17 09:32:54 -04:00
parent 3c0510c272
commit de5aa03ba3
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 251 additions and 251 deletions

View File

@ -12,21 +12,21 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/LoginRequest'
$ref: "#/components/schemas/LoginRequest"
responses:
'200':
"200":
description: Successfully logged in
content:
application/json:
schema:
$ref: '#/components/schemas/LoginResponse'
'401':
$ref: "#/components/schemas/LoginResponse"
"401":
description: Unauthorized
/api/auth/logout:
post:
summary: Logout of account service
responses:
'200':
"200":
description: Successfully logged out
/api/auth/register:
post:
@ -36,11 +36,11 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/RegisterRequest'
$ref: "#/components/schemas/RegisterRequest"
responses:
'200':
"200":
description: Successfully registered
'400':
"400":
description: Bad Request
/api/auth/verify-email:
post:
@ -50,20 +50,20 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/VerifyEmailRequest'
$ref: "#/components/schemas/VerifyEmailRequest"
responses:
'200':
"200":
description: Email verified successfully
/api/auth/otp/generate:
get:
summary: Generate OTP for two-factor authentication
responses:
'200':
"200":
description: OTP generated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/OTPGenerateResponse'
$ref: "#/components/schemas/OTPGenerateResponse"
/api/auth/otp/verify:
post:
summary: Verify OTP for enabling two-factor authentication
@ -72,9 +72,9 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/OTPVerifyRequest'
$ref: "#/components/schemas/OTPVerifyRequest"
responses:
'200':
"200":
description: OTP verified successfully
/api/auth/otp/validate:
post:
@ -84,9 +84,9 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/OTPValidateRequest'
$ref: "#/components/schemas/OTPValidateRequest"
responses:
'200':
"200":
description: OTP validated successfully
/api/auth/otp/disable:
post:
@ -96,9 +96,9 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/OTPDisableRequest'
$ref: "#/components/schemas/OTPDisableRequest"
responses:
'200':
"200":
description: OTP disabled successfully
/api/auth/password-reset/request:
post:
@ -108,9 +108,9 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/PasswordResetRequest'
$ref: "#/components/schemas/PasswordResetRequest"
responses:
'200':
"200":
description: Password reset requested successfully
/api/auth/password-reset/confirm:
post:
@ -120,33 +120,33 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/PasswordResetVerifyRequest'
$ref: "#/components/schemas/PasswordResetVerifyRequest"
responses:
'200':
"200":
description: Password reset successfully
/api/auth/ping:
post:
summary: Auth check endpoint
responses:
'200':
"200":
description: Pong
content:
application/json:
schema:
$ref: '#/components/schemas/PingResponse'
'401':
$ref: "#/components/schemas/PingResponse"
"401":
description: Unauthorized
/api/account:
get:
summary: Get account information
responses:
'200':
"200":
description: Account information retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/AccountInfoResponse'
'401':
$ref: "#/components/schemas/AccountInfoResponse"
"401":
description: Unauthorized
components: