queuebear 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 +1 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,9 +13,8 @@ npm install queuebear
13
13
  ```typescript
14
14
  import { QueueBear, serve } from "queuebear";
15
15
 
16
- // Create client
16
+ // Create client (defaults to https://api.queuebear.com)
17
17
  const qb = new QueueBear({
18
- baseUrl: "https://your-queuebear-instance.com",
19
18
  apiKey: "qb_live_xxx",
20
19
  projectId: "proj_xxx",
21
20
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "queuebear",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "QueueBear SDK for message queues, scheduled jobs, and durable workflows",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",