@flipdish/authorization 0.0.2-rc.1756733622
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +12 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +28 -0
- package/api.ts +2484 -0
- package/base.ts +86 -0
- package/common.ts +150 -0
- package/configuration.ts +128 -0
- package/dist/api.d.ts +1959 -0
- package/dist/api.js +1945 -0
- package/dist/base.d.ts +66 -0
- package/dist/base.js +86 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +253 -0
- package/dist/configuration.d.ts +99 -0
- package/dist/configuration.js +61 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +31 -0
- package/git_push.sh +57 -0
- package/index.ts +18 -0
- package/package.json +31 -0
- package/tsconfig.json +21 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
7.8.0
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# OpenAPI Generator Ignore
|
|
2
|
+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
|
|
3
|
+
|
|
4
|
+
# Use this file to prevent files from being overwritten by the generator.
|
|
5
|
+
# The patterns follow closely to .gitignore or .dockerignore.
|
|
6
|
+
|
|
7
|
+
# As an example, the C# client generator defines ApiClient.cs.
|
|
8
|
+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
|
|
9
|
+
#ApiClient.cs
|
|
10
|
+
|
|
11
|
+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
|
|
12
|
+
#foo/*/qux
|
|
13
|
+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
|
|
14
|
+
|
|
15
|
+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
|
|
16
|
+
#foo/**/qux
|
|
17
|
+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
|
|
18
|
+
|
|
19
|
+
# You can also negate patterns with an exclamation (!).
|
|
20
|
+
# For example, you can ignore all files in a docs folder with the file extension .md:
|
|
21
|
+
#docs/*.md
|
|
22
|
+
# Then explicitly reverse the ignore rule for a single file:
|
|
23
|
+
#!docs/README.md
|
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
## @flipdish/authorization
|
|
2
|
+
|
|
3
|
+
This package provides a Typescript/JavaScript client for interacting with Flipdish's Authorization APIs over HTTP.
|
|
4
|
+
|
|
5
|
+
Internally the package utilizes the [axios](https://github.com/axios/axios) as its HTTP client.
|
|
6
|
+
|
|
7
|
+
### Example code
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
import { AuthorizationApi
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The generated Node module can be used in the following environments:
|
|
14
|
+
|
|
15
|
+
Environment
|
|
16
|
+
* Node.js
|
|
17
|
+
* Webpack
|
|
18
|
+
* Browserify
|
|
19
|
+
|
|
20
|
+
Language level
|
|
21
|
+
* ES5 - you must have a Promises/A+ library installed
|
|
22
|
+
* ES6
|
|
23
|
+
|
|
24
|
+
Module system
|
|
25
|
+
* CommonJS
|
|
26
|
+
* ES6 module system
|
|
27
|
+
|
|
28
|
+
It can be used in both TypeScript and JavaScript. In TypeScript, the definition will be automatically resolved via `package.json`. ([Reference](https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html))
|