@oleanderhq/sdk 0.1.0 → 0.1.1
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# oleander TypeScript SDK
|
|
2
2
|
|
|
3
|
-
Use the [oleander](https://oleander.dev) API from TypeScript: run lake queries, list Spark jobs, and launch Spark jobs.
|
|
3
|
+
Use the [oleander](https://oleander.dev) API from TypeScript: run lake queries, list Spark jobs, and launch Spark jobs.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npm install @oleanderhq/sdk
|
|
9
|
+
yarn add @oleanderhq/sdk
|
|
10
|
+
pnpm add @oleanderhq/sdk
|
|
9
11
|
```
|
|
10
12
|
|
|
11
|
-
Or: `yarn add @oleanderhq/sdk` / `pnpm add @oleanderhq/sdk`
|
|
12
|
-
|
|
13
13
|
## Get your API key
|
|
14
14
|
|
|
15
15
|
Create an API key in [oleander settings](https://oleander.dev/app/settings), or run `oleander configure` if you use the CLI. You can pass the key when creating the client or set the `OLEANDER_API_KEY` environment variable (Node only).
|