@lssm/lib.jobs 0.0.0-canary-20251207150805 → 0.0.0-canary-20251207150924

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 +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,7 +27,7 @@ bun add @lssm/lib.jobs
27
27
 
28
28
  ```typescript
29
29
  import { defineJobType } from '@lssm/lib.jobs';
30
- import { z } from 'zod';
30
+ import * as z from "zod";
31
31
 
32
32
  const SendEmailJob = defineJobType({
33
33
  type: 'email.send',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/lib.jobs",
3
- "version": "0.0.0-canary-20251207150805",
3
+ "version": "0.0.0-canary-20251207150924",
4
4
  "description": "Background jobs and scheduler module for ContractSpec applications",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",