@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.
@@ -0,0 +1,12 @@
1
+ .gitignore
2
+ .npmignore
3
+ .openapi-generator-ignore
4
+ README.md
5
+ api.ts
6
+ base.ts
7
+ common.ts
8
+ configuration.ts
9
+ git_push.sh
10
+ index.ts
11
+ package.json
12
+ tsconfig.json
@@ -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))