@rainfall-devkit/sdk 0.1.1 → 0.1.4
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 +5 -5
- package/dist/chunk-OT6N7K6Q.mjs +772 -0
- package/dist/chunk-PUYYL2BZ.mjs +753 -0
- package/dist/chunk-PXSDTG55.mjs +764 -0
- package/dist/chunk-U776PJWT.mjs +731 -0
- package/dist/cli/index.js +52 -11
- package/dist/cli/index.mjs +7 -7
- package/dist/errors-COkXMRZk.d.mts +818 -0
- package/dist/errors-COkXMRZk.d.ts +818 -0
- package/dist/errors-DnNhMfS6.d.mts +814 -0
- package/dist/errors-DnNhMfS6.d.ts +814 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +46 -5
- package/dist/index.mjs +1 -1
- package/dist/mcp.d.mts +2 -2
- package/dist/mcp.d.ts +2 -2
- package/dist/mcp.js +46 -5
- package/dist/mcp.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -19,17 +19,17 @@ Utilities to leverage the backend tools we use for our own applications like [Ha
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npm install @rainfall/sdk
|
|
22
|
+
npm install @rainfall-devkit/sdk
|
|
23
23
|
# or
|
|
24
|
-
yarn add @rainfall/sdk
|
|
24
|
+
yarn add @rainfall-devkit/sdk
|
|
25
25
|
# or
|
|
26
|
-
bun add @rainfall/sdk
|
|
26
|
+
bun add @rainfall-devkit/sdk
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## Quick Start
|
|
30
30
|
|
|
31
31
|
```typescript
|
|
32
|
-
import { Rainfall } from '@rainfall/sdk';
|
|
32
|
+
import { Rainfall } from '@rainfall-devkit/sdk';
|
|
33
33
|
|
|
34
34
|
const rainfall = new Rainfall({
|
|
35
35
|
apiKey: process.env.RAINFALL_API_KEY!
|
|
@@ -65,7 +65,7 @@ const memories = await rainfall.memory.recall({
|
|
|
65
65
|
Install globally to use the CLI:
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
|
|
68
|
+
bun add -g @rainfall-devkit/sdk
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
### Authentication
|