@upstash/qstash 0.1.7 → 0.1.8
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 +6 -11
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv32.js +0 -0
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv64.js +0 -0
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/index.js +0 -0
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/util.js +0 -0
- package/esm/deps/deno.land/std@0.161.0/crypto/_wasm_crypto/lib/deno_std_wasm_crypto.generated.mjs +3253 -0
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0/crypto}/_wasm_crypto/mod.js +0 -0
- package/esm/deps/deno.land/std@0.161.0/crypto/keystack.js +150 -0
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/mod.js +11 -1
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/timing_safe_equal.js +0 -0
- package/esm/deps/deno.land/std@0.161.0/crypto/util.js +27 -0
- package/esm/deps/deno.land/std@0.161.0/encoding/base64.js +122 -0
- package/esm/deps/deno.land/std@0.161.0/encoding/base64url.js +49 -0
- package/esm/deps/deno.land/std@0.161.0/encoding/hex.js +60 -0
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/fmt/colors.js +2 -2
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_diff.js +4 -0
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_format.js +2 -0
- package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/asserts.js +31 -36
- package/package.json +2 -2
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv32.js +0 -0
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv64.js +0 -0
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/index.js +0 -0
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/util.js +0 -0
- package/script/deps/deno.land/std@0.161.0/crypto/_wasm_crypto/lib/deno_std_wasm_crypto.generated.mjs +3261 -0
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0/crypto}/_wasm_crypto/mod.js +0 -0
- package/script/deps/deno.land/std@0.161.0/crypto/keystack.js +177 -0
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/mod.js +14 -2
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/timing_safe_equal.js +0 -0
- package/script/deps/deno.land/std@0.161.0/crypto/util.js +54 -0
- package/script/deps/deno.land/std@0.161.0/encoding/base64.js +127 -0
- package/script/deps/deno.land/std@0.161.0/encoding/base64url.js +77 -0
- package/script/deps/deno.land/std@0.161.0/encoding/hex.js +65 -0
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/fmt/colors.js +2 -2
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_diff.js +4 -0
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_format.js +2 -0
- package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/asserts.js +33 -37
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv32.d.ts +0 -0
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv64.d.ts +0 -0
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/index.d.ts +0 -0
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/util.d.ts +0 -0
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0/crypto}/_wasm_crypto/lib/deno_std_wasm_crypto.generated.d.mts +0 -0
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0/crypto}/_wasm_crypto/mod.d.ts +0 -0
- package/types/deps/deno.land/std@0.161.0/crypto/keystack.d.ts +47 -0
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/mod.d.ts +11 -6
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/timing_safe_equal.d.ts +0 -0
- package/types/deps/deno.land/std@0.161.0/crypto/util.d.ts +16 -0
- package/types/deps/deno.land/std@0.161.0/encoding/base64.d.ts +11 -0
- package/types/deps/deno.land/std@0.161.0/encoding/base64url.d.ts +10 -0
- package/types/deps/deno.land/std@0.161.0/encoding/hex.d.ts +7 -0
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/fmt/colors.d.ts +2 -2
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_diff.d.ts +0 -0
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_format.d.ts +0 -0
- package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/asserts.d.ts +13 -13
- package/types/pkg/client/messages.d.ts +1 -1
- package/types/pkg/receiver.d.ts +1 -1
- package/esm/deps/deno.land/std@0.152.0/_wasm_crypto/lib/deno_std_wasm_crypto.generated.mjs +0 -3159
- package/script/deps/deno.land/std@0.152.0/_wasm_crypto/lib/deno_std_wasm_crypto.generated.mjs +0 -3167
package/README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
# Upstash
|
|
1
|
+
# Upstash QStash SDK
|
|
2
2
|
|
|
3
|
-
[](https://github.com/upstash/sdk-qstash-ts/actions/workflows/tests.yaml)
|
|
4
3
|

|
|
5
4
|
|
|
6
|
-
**
|
|
5
|
+
**QStash** is an HTTP based messaging and scheduling solution for serverless and
|
|
7
6
|
edge runtimes.
|
|
8
7
|
|
|
9
8
|
It is 100% built on stateless HTTP requests and designed for:
|
|
@@ -18,10 +17,6 @@ It is 100% built on stateless HTTP requests and designed for:
|
|
|
18
17
|
- WebAssembly
|
|
19
18
|
- and other environments where HTTP is preferred over TCP.
|
|
20
19
|
|
|
21
|
-
See
|
|
22
|
-
[the list of APIs](https://docs.upstash.com/features/restapi#rest---redis-api-compatibility)
|
|
23
|
-
supported.
|
|
24
|
-
|
|
25
20
|
## Status of the SDK
|
|
26
21
|
|
|
27
22
|
It is currently in beta and we are actively collecting feedback from the
|
|
@@ -29,11 +24,11 @@ community. Please report any issues you encounter or feature requests in the
|
|
|
29
24
|
[GitHub issues](https://github.com/upstash/sdk-qstash-ts/issues) or talk to us
|
|
30
25
|
on [Discord](https://discord.gg/w9SenAtbme). Thank you!
|
|
31
26
|
|
|
32
|
-
## How does
|
|
27
|
+
## How does QStash work?
|
|
33
28
|
|
|
34
|
-
|
|
35
|
-
request to
|
|
36
|
-
We store your message
|
|
29
|
+
QStash is the message broker between your serverless apps. You send an HTTP
|
|
30
|
+
request to QStash, that includes a destination, a payload and optional settings.
|
|
31
|
+
We durably store your message and will deliver it to the destination API via
|
|
37
32
|
HTTP. In case the destination is not ready to receive the message, we will retry
|
|
38
33
|
the message later, to guarentee at-least-once delivery.
|
|
39
34
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|