Compare commits

..

No commits in common. "1fb61ca6f81f46ff0f5e9e8ce7c44071fb50feb6" and "430dcbba07cdc149ad24f9e63d381ecdc7ea16c4" have entirely different histories.

4 changed files with 10 additions and 11 deletions

3
.gitignore vendored
View File

@ -11,5 +11,4 @@
node_modules node_modules
lib lib
package-lock.json package-lock.json
yarn.lock yarn.lock
pnpm-lock.yaml

View File

@ -17,8 +17,8 @@ export declare class AuthService {
/** /**
* Login * Login
* Login with your username/email and password. <br> You will receive: * Login with your username/email and password. <br> You will receive:
* * access token (use it as a bearer token) * * access token (use it as a bearer token)
* * refresh token (will also be sent as a cookie) * * refresh token (will also be sent as a cookie)
* @param requestBody CreateAuth * @param requestBody CreateAuth
* @returns any * @returns any
* @throws ApiError * @throws ApiError
@ -35,8 +35,8 @@ export declare class AuthService {
/** /**
* Refresh * Refresh
* Refresh your access and refresh tokens using a valid refresh token. <br> You will receive: * Refresh your access and refresh tokens using a valid refresh token. <br> You will receive:
* * access token (use it as a bearer token) * * access token (use it as a bearer token)
* * refresh token (will also be sent as a cookie) * * refresh token (will also be sent as a cookie)
* @param requestBody RefreshAuth * @param requestBody RefreshAuth
* @returns any * @returns any
* @throws ApiError * @throws ApiError

View File

@ -6,8 +6,8 @@ class AuthService {
/** /**
* Login * Login
* Login with your username/email and password. <br> You will receive: * Login with your username/email and password. <br> You will receive:
* * access token (use it as a bearer token) * * access token (use it as a bearer token)
* * refresh token (will also be sent as a cookie) * * refresh token (will also be sent as a cookie)
* @param requestBody CreateAuth * @param requestBody CreateAuth
* @returns any * @returns any
* @throws ApiError * @throws ApiError
@ -38,8 +38,8 @@ class AuthService {
/** /**
* Refresh * Refresh
* Refresh your access and refresh tokens using a valid refresh token. <br> You will receive: * Refresh your access and refresh tokens using a valid refresh token. <br> You will receive:
* * access token (use it as a bearer token) * * access token (use it as a bearer token)
* * refresh token (will also be sent as a cookie) * * refresh token (will also be sent as a cookie)
* @param requestBody RefreshAuth * @param requestBody RefreshAuth
* @returns any * @returns any
* @throws ApiError * @throws ApiError

View File

@ -16,7 +16,7 @@
], ],
"author": "ODIT.Services", "author": "ODIT.Services",
"files": [ "files": [
"dist", "**/dist",
"package.json", "package.json",
"README.md" "README.md"
], ],