@aiqa/sdk 0.0.1 → 0.0.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 -2
- package/dist/browser/browser.d.mts +2 -0
- package/dist/browser/browser.mjs +3398 -0
- package/dist/browser/browser.mjs.map +1 -0
- package/dist/node/node.d.mts +100 -0
- package/dist/node/node.mjs +302 -0
- package/dist/node/node.mjs.map +1 -0
- package/package.json +27 -17
- package/dist/aiqa-sdk.browser.js +0 -3617
- package/dist/package.json +0 -45
- package/dist/src/index.d.ts +0 -29
- package/dist/src/index.js +0 -245
- package/dist/src/types.d.ts +0 -60
- package/dist/src/types.js +0 -26
package/README.md
CHANGED
|
@@ -19,7 +19,9 @@ A TypeScript/JavaScript SDK for interacting with the AIQA WebSocket service. Thi
|
|
|
19
19
|
|
|
20
20
|
## Installation
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
```
|
|
23
|
+
npm install @aiqa/sdk
|
|
24
|
+
```
|
|
23
25
|
|
|
24
26
|
## Getting Started
|
|
25
27
|
|
|
@@ -318,4 +320,4 @@ The server emits an `app_version` payload with `{ min, max }` supported SDK vers
|
|
|
318
320
|
|
|
319
321
|
## License
|
|
320
322
|
|
|
321
|
-
|
|
323
|
+
MIT
|