@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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. 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. Inputs and responses are validated with [Zod](https://zod.dev).
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).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oleanderhq/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "TypeScript SDK for oleander: query lake, list and launch Spark jobs",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",