Compare commits

..

4 Commits

Author SHA1 Message Date
1fb61ca6f8
updated lib
All checks were successful
continuous-integration/drone Build is passing
2023-02-02 16:15:30 +01:00
e7fb20ce69
ignore pnpm lock 2023-02-02 16:15:24 +01:00
1a29eaa3db
Merge branch 'main' of git.odit.services:lfk/lfk-client-node 2023-02-02 16:14:45 +01:00
ee73d279ee
removed unused glob 2023-02-02 16:14:40 +01:00
4 changed files with 11 additions and 10 deletions

3
.gitignore vendored
View File

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

View File

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

View File

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

View File

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