@aui.io/aui-client 1.2.0 → 1.2.2
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 +4 -22
- package/dist/cjs/Client.js +2 -2
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.mjs +2 -2
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,20 +7,14 @@
|
|
|
7
7
|
|
|
8
8
|
## 🚀 Installation
|
|
9
9
|
|
|
10
|
-
**TypeScript/JavaScript:**
|
|
11
10
|
```bash
|
|
12
11
|
npm install @aui.io/aui-client
|
|
13
12
|
```
|
|
14
13
|
|
|
15
|
-
**Python:**
|
|
16
|
-
```bash
|
|
17
|
-
pip install aui-client
|
|
18
|
-
```
|
|
14
|
+
**Also available in Python:** `pip install aui-client` - [Python Documentation](https://github.com/aui-io/aui-client-python)
|
|
19
15
|
|
|
20
16
|
## ⚡ Quick Start
|
|
21
17
|
|
|
22
|
-
### TypeScript/JavaScript
|
|
23
|
-
|
|
24
18
|
```typescript
|
|
25
19
|
import { ApolloClient } from '@aui.io/aui-client';
|
|
26
20
|
|
|
@@ -33,18 +27,6 @@ const client = new ApolloClient({
|
|
|
33
27
|
// - WebSocket: wss://api.aui.io/ia-controller/api/v1/external/session
|
|
34
28
|
```
|
|
35
29
|
|
|
36
|
-
### Python
|
|
37
|
-
|
|
38
|
-
```python
|
|
39
|
-
from aui_client import ApolloClient
|
|
40
|
-
|
|
41
|
-
client = ApolloClient(
|
|
42
|
-
network_api_key='API_KEY_YOUR_KEY_HERE'
|
|
43
|
-
)
|
|
44
|
-
|
|
45
|
-
# Connects to the same production endpoints as TypeScript
|
|
46
|
-
```
|
|
47
|
-
|
|
48
30
|
|
|
49
31
|
### REST API - Create and Manage Tasks
|
|
50
32
|
|
|
@@ -543,11 +525,11 @@ npm install --save-dev typescript@latest
|
|
|
543
525
|
|
|
544
526
|
## 🔗 Resources
|
|
545
527
|
|
|
546
|
-
- **GitHub Repository:** [aui-io/aui-client](https://github.com/aui-io/aui-client)
|
|
528
|
+
- **GitHub Repository:** [aui-io/aui-client-typescript](https://github.com/aui-io/aui-client-typescript)
|
|
547
529
|
- **npm Package:** [@aui.io/aui-client](https://www.npmjs.com/package/@aui.io/aui-client)
|
|
548
|
-
- **
|
|
530
|
+
- **Python SDK:** [aui-client on PyPI](https://pypi.org/project/aui-client) | [Python Docs](https://github.com/aui-io/aui-client-python)
|
|
549
531
|
- **API Documentation:** [Full API Reference](https://docs.aui.io)
|
|
550
|
-
- **Report Issues:** [GitHub Issues](https://github.com/aui-io/aui-client/issues)
|
|
532
|
+
- **Report Issues:** [GitHub Issues](https://github.com/aui-io/aui-client-typescript/issues)
|
|
551
533
|
|
|
552
534
|
## 📄 License
|
|
553
535
|
|
package/dist/cjs/Client.js
CHANGED
|
@@ -45,8 +45,8 @@ class ApolloClient {
|
|
|
45
45
|
"x-network-api-key": _options === null || _options === void 0 ? void 0 : _options.networkApiKey,
|
|
46
46
|
"X-Fern-Language": "JavaScript",
|
|
47
47
|
"X-Fern-SDK-Name": "@aui.io/aui-client",
|
|
48
|
-
"X-Fern-SDK-Version": "1.2.
|
|
49
|
-
"User-Agent": "@aui.io/aui-client/1.2.
|
|
48
|
+
"X-Fern-SDK-Version": "1.2.2",
|
|
49
|
+
"User-Agent": "@aui.io/aui-client/1.2.2",
|
|
50
50
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
51
51
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
52
52
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.2.
|
|
1
|
+
export declare const SDK_VERSION = "1.2.2";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/Client.mjs
CHANGED
|
@@ -9,8 +9,8 @@ export class ApolloClient {
|
|
|
9
9
|
"x-network-api-key": _options === null || _options === void 0 ? void 0 : _options.networkApiKey,
|
|
10
10
|
"X-Fern-Language": "JavaScript",
|
|
11
11
|
"X-Fern-SDK-Name": "@aui.io/aui-client",
|
|
12
|
-
"X-Fern-SDK-Version": "1.2.
|
|
13
|
-
"User-Agent": "@aui.io/aui-client/1.2.
|
|
12
|
+
"X-Fern-SDK-Version": "1.2.2",
|
|
13
|
+
"User-Agent": "@aui.io/aui-client/1.2.2",
|
|
14
14
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
15
15
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
16
16
|
}, _options === null || _options === void 0 ? void 0 : _options.headers) });
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.2.
|
|
1
|
+
export declare const SDK_VERSION = "1.2.2";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "1.2.
|
|
1
|
+
export const SDK_VERSION = "1.2.2";
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aui.io/aui-client",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"private": false,
|
|
5
|
-
"repository": "github:aui-io/aui-client",
|
|
5
|
+
"repository": "github:aui-io/aui-client-typescript",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"main": "./dist/cjs/index.js",
|
|
8
8
|
"module": "./dist/esm/index.mjs",
|