@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.
Files changed (57) hide show
  1. package/README.md +6 -11
  2. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv32.js +0 -0
  3. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv64.js +0 -0
  4. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/index.js +0 -0
  5. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/util.js +0 -0
  6. package/esm/deps/deno.land/std@0.161.0/crypto/_wasm_crypto/lib/deno_std_wasm_crypto.generated.mjs +3253 -0
  7. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0/crypto}/_wasm_crypto/mod.js +0 -0
  8. package/esm/deps/deno.land/std@0.161.0/crypto/keystack.js +150 -0
  9. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/mod.js +11 -1
  10. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/timing_safe_equal.js +0 -0
  11. package/esm/deps/deno.land/std@0.161.0/crypto/util.js +27 -0
  12. package/esm/deps/deno.land/std@0.161.0/encoding/base64.js +122 -0
  13. package/esm/deps/deno.land/std@0.161.0/encoding/base64url.js +49 -0
  14. package/esm/deps/deno.land/std@0.161.0/encoding/hex.js +60 -0
  15. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/fmt/colors.js +2 -2
  16. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_diff.js +4 -0
  17. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_format.js +2 -0
  18. package/esm/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/asserts.js +31 -36
  19. package/package.json +2 -2
  20. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv32.js +0 -0
  21. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv64.js +0 -0
  22. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/index.js +0 -0
  23. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/util.js +0 -0
  24. package/script/deps/deno.land/std@0.161.0/crypto/_wasm_crypto/lib/deno_std_wasm_crypto.generated.mjs +3261 -0
  25. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0/crypto}/_wasm_crypto/mod.js +0 -0
  26. package/script/deps/deno.land/std@0.161.0/crypto/keystack.js +177 -0
  27. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/mod.js +14 -2
  28. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/timing_safe_equal.js +0 -0
  29. package/script/deps/deno.land/std@0.161.0/crypto/util.js +54 -0
  30. package/script/deps/deno.land/std@0.161.0/encoding/base64.js +127 -0
  31. package/script/deps/deno.land/std@0.161.0/encoding/base64url.js +77 -0
  32. package/script/deps/deno.land/std@0.161.0/encoding/hex.js +65 -0
  33. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/fmt/colors.js +2 -2
  34. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_diff.js +4 -0
  35. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_format.js +2 -0
  36. package/script/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/asserts.js +33 -37
  37. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv32.d.ts +0 -0
  38. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/fnv64.d.ts +0 -0
  39. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/index.d.ts +0 -0
  40. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/_fnv/util.d.ts +0 -0
  41. 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
  42. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0/crypto}/_wasm_crypto/mod.d.ts +0 -0
  43. package/types/deps/deno.land/std@0.161.0/crypto/keystack.d.ts +47 -0
  44. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/mod.d.ts +11 -6
  45. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/crypto/timing_safe_equal.d.ts +0 -0
  46. package/types/deps/deno.land/std@0.161.0/crypto/util.d.ts +16 -0
  47. package/types/deps/deno.land/std@0.161.0/encoding/base64.d.ts +11 -0
  48. package/types/deps/deno.land/std@0.161.0/encoding/base64url.d.ts +10 -0
  49. package/types/deps/deno.land/std@0.161.0/encoding/hex.d.ts +7 -0
  50. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/fmt/colors.d.ts +2 -2
  51. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_diff.d.ts +0 -0
  52. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/_format.d.ts +0 -0
  53. package/types/deps/deno.land/{std@0.152.0 → std@0.161.0}/testing/asserts.d.ts +13 -13
  54. package/types/pkg/client/messages.d.ts +1 -1
  55. package/types/pkg/receiver.d.ts +1 -1
  56. package/esm/deps/deno.land/std@0.152.0/_wasm_crypto/lib/deno_std_wasm_crypto.generated.mjs +0 -3159
  57. 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 qStash SDK
1
+ # Upstash QStash SDK
2
2
 
3
- [![Tests](https://github.com/upstash/sdk-qstash-ts/actions/workflows/tests.yaml/badge.svg)](https://github.com/upstash/sdk-qstash-ts/actions/workflows/tests.yaml)
4
3
  ![npm (scoped)](https://img.shields.io/npm/v/@upstash/qstash)
5
4
 
6
- **qStash** is an HTTP based messaging and scheduling solution for serverless and
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 qStash work?
27
+ ## How does QStash work?
33
28
 
34
- qStash is the message broker between your serverless apps. You send aa HTTP
35
- request to qStash, that includes a destination, a payload and optional settings.
36
- We store your message durable and will deliver it to the destination API via
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