@stacksjs/queue 0.62.0 → 0.63.0

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/dist/index.js CHANGED
@@ -23,3 +23,6 @@ class Job {
23
23
  export {
24
24
  Job
25
25
  };
26
+
27
+ //# debugId=421A69BD9490053F64756E2164756E21
28
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,10 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../src/index.ts"],
4
+ "sourcesContent": [
5
+ "import type { JobOptions } from '@stacksjs/types'\n\nexport class Job {\n name: JobOptions['name']\n description: JobOptions['description']\n action?: JobOptions['action']\n handle?: JobOptions['handle']\n rate: JobOptions['rate']\n tries: JobOptions['tries']\n backoff: JobOptions['backoff']\n enabled: JobOptions['enabled']\n\n constructor({ name, description, handle, rate, tries, backoff, action, enabled }: JobOptions) {\n this.name = name\n this.description = description\n this.handle = handle\n this.rate = rate\n this.action = action\n this.tries = tries\n this.backoff = backoff\n this.enabled = enabled\n }\n}\n"
6
+ ],
7
+ "mappings": ";;AAEO,MAAM,IAAI;AAAA,EACf;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EAEA,WAAW,GAAG,MAAM,aAAa,QAAQ,MAAM,OAAO,SAAS,QAAQ,WAAuB;AAC5F,SAAK,OAAO;AACZ,SAAK,cAAc;AACnB,SAAK,SAAS;AACd,SAAK,OAAO;AACZ,SAAK,SAAS;AACd,SAAK,QAAQ;AACb,SAAK,UAAU;AACf,SAAK,UAAU;AAAA;AAEnB;",
8
+ "debugId": "421A69BD9490053F64756E2164756E21",
9
+ "names": []
10
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/queue",
3
3
  "type": "module",
4
- "version": "0.62.0",
4
+ "version": "0.63.0",
5
5
  "description": "The Stacks Queue system.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",