@upstash/qstash 0.3.1 → 0.3.2

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 CHANGED
@@ -95,6 +95,10 @@ const r = new Receiver({
95
95
  const isValid = await r.verify({
96
96
  /**
97
97
  * The signature from the `Upstash-Signature` header.
98
+ *
99
+ * Please note that on some platforms (e.g. Vercel or Netlify) you might
100
+ * receive the header in lower case: `upstash-signature`
101
+ *
98
102
  */
99
103
  signature: "string";
100
104
 
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.3.1",
6
+ "version": "v0.3.2",
7
7
  "description": "Official Deno/Typescript client for QStash",
8
8
  "repository": {
9
9
  "type": "git",
@@ -38,7 +38,7 @@ export declare type ListTasksRequest = {
38
38
  };
39
39
  export declare type ListTasksResponse = {
40
40
  cursor?: number;
41
- logs: Task[];
41
+ tasks: Task[];
42
42
  };
43
43
  export declare class Messages {
44
44
  private readonly http;