@upstash/qstash 0.1.2 → 0.1.5

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 +2 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -86,9 +86,8 @@ console.log(res);
86
86
 
87
87
  ### Receiving a message
88
88
 
89
- How to consume a message depends on your http server. QStash does not receive
90
- the http request directly, but should be called by you as the first step in your
91
- handler function.
89
+ How to receive a message depends on your http server. The `Receiver.verify`
90
+ method should be called by you as the first step in your handler function.
92
91
 
93
92
  ```ts
94
93
  import { Receiver } from "@upstash/qstash";
@@ -108,11 +107,6 @@ const isValid = await r.verify({
108
107
  * The raw request body.
109
108
  */
110
109
  body: "string";
111
-
112
- /**
113
- * URL of the endpoint where the request was sent to.
114
- */
115
- url: "string";
116
110
  })
117
111
  ```
118
112
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "main": "./script/entrypoints/nodejs.js",
4
4
  "types": "./types/entrypoints/nodejs.d.ts",
5
5
  "name": "@upstash/qstash",
6
- "version": "v0.1.2",
6
+ "version": "v0.1.5",
7
7
  "description": "Official Deno/Typescript client for qStash",
8
8
  "repository": {
9
9
  "type": "git",