Skip to content

Commit 1e68d5f

Browse files
committed
refactor: migrate to openapi
0 parents  commit 1e68d5f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+24989
-0
lines changed

.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 2
7+
indent_style = space
8+
insert_final_newline = true
9+
max_line_length = 100
10+
tab_width = 2
11+
trim_trailing_whitespace = true

.eslintignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eslint.config.js
2+
.gitignore
3+
example
4+
*.json
5+
dist

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules
2+
.idea
3+
.vscode
4+
temp
5+
.env
6+
dev
7+
!dist
8+
!types

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 PlusAuth, Inc. <[email protected]> (https://plusauth.com)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# @plusauth/plusauth-rest-js
2+
3+
Helper library for interacting with PlusAuth REST API intent upon to be used in NodeJS and browser environments.
4+
5+
Table Of Content
6+
1. [Installation](#installation)
7+
2. [Usage](#usage)
8+
3. [Docs](#docs)
9+
4. [Examples](#examples)
10+
11+
12+
# Installation
13+
From PlusAuth CDN:
14+
```html
15+
<!-- Latest release -->
16+
<script src="https://unpkg.com/@plusauth/[email protected]/dist/plusauth-rest-js.min.js"></script>
17+
```
18+
19+
With npm:
20+
```shell script
21+
$ npm install @plusauth/plusauth-rest-js
22+
```
23+
24+
or with yarn
25+
```shell script
26+
$ yarn add @plusauth/plusauth-rest-js
27+
```
28+
29+
# Usage
30+
31+
## CDN Usage
32+
The library will be exposed to global as `PlusAuthRestClient`
33+
34+
Initialize it like following:
35+
```js
36+
const authToken = '<ACCESS_TOKEN>'
37+
const plusAuth = PlusAuthRestClient('https://<YOUR_TENANT_ID>.plusauth.com', { token: authToken })
38+
```
39+
40+
## NPM Usage
41+
```js
42+
import { PlusAuthRestClient } from '@plusauth/plusauth-rest-js'
43+
44+
const authToken = '<ACCESS_TOKEN>'
45+
const plusAuth = new PlusAuthRestClient('https://<YOUR_TENANT_ID>.plusauth.com', { token: authToken })
46+
```
47+
48+
## Replacing Token
49+
Generally you may need to replace PlusAuth REST API token because its lifetime could end.
50+
In this case updating `options.token` or by using the `token` setter
51+
of PlusAuthClient instance will be enough to change used token.
52+
53+
> To generate access token consult [docs](#docs) or have a look at [example/getAuthToken.js](./example/getAuthToken.js).
54+
The example file also includes an example curl request.
55+
56+
```js
57+
const initialToken = 'INITIAL_TOKEN'
58+
const plusAuth = new PlusAuthRestClient('https://<YOUR_TENANT_ID>.plusauth.com', { token: initialToken })
59+
60+
plusAuth.apis.getAll().then( function (res){
61+
// retrieved with initial token
62+
console.log(res)
63+
})
64+
65+
// or: plusauth.options.token = 'NEW_TOKEN'
66+
plusAuth.token = 'NEW_TOKEN'
67+
68+
plusAuth.apis.getAll().then(function (res){
69+
// Retrieved with new token
70+
console.log(res)
71+
})
72+
```
73+
74+
## Custom HTTP Client
75+
You may provide your own http client to the library when you need to have more control over your requests.
76+
77+
```js
78+
const axios = require('axios')
79+
const plusAuth = new PlusAuthRestClient('https://<YOUR_TENANT_ID>.plusauth.com', {
80+
httpClient: function (url, options) {
81+
options.url = url
82+
options.data = options.body
83+
return axios(options)
84+
}
85+
})
86+
```
87+
88+
# Docs
89+
For API docs visit [here](https://docs.plusauth.com/api/core/introduction)

dist/plusauth-rest-js.global.js

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)