@rasadov/lumoar 2.0.0

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/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # @rasadov/lumoar
2
+
3
+ Lumoar API SDK for public use (API key authentication)
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @rasadov/lumoar
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```typescript
14
+ import { Configuration } from '@rasadov/lumoar';
15
+ import { YourApi } from '@rasadov/lumoar';
16
+
17
+ const config = new Configuration({
18
+ basePath: 'https://api.example.com',
19
+ apiKey: 'your-api-key'
20
+ });
21
+
22
+ const api = new YourApi(config);
23
+ ```
24
+
25
+ ## OpenAPI Specification
26
+
27
+ This SDK is generated from the OpenAPI specification included in this package. You can find the OpenAPI spec at `openapi.json` in the package root.
28
+
29
+ If you want to generate an SDK in a different language, you can use the included OpenAPI specification with [OpenAPI Generator](https://openapi-generator.tech/).
30
+
31
+ ```bash
32
+ # Example: Generate Python SDK
33
+ openapi-generator-cli generate -i node_modules/@rasadov/lumoar/openapi.json -g python -o ./python-sdk
34
+ ```
35
+
36
+ ## License
37
+ ISC