@newhomestar/sdk 0.4.8 → 0.4.9

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.
@@ -58,7 +58,7 @@ export declare const WorkerDefSchema: z.ZodObject<{
58
58
  }, z.core.$strip>, z.ZodObject<{
59
59
  type: z.ZodLiteral<"scheduled">;
60
60
  cron: z.ZodString;
61
- timezone: z.ZodDefault<z.ZodString>;
61
+ timezone: z.ZodOptional<z.ZodString>;
62
62
  description: z.ZodOptional<z.ZodString>;
63
63
  }, z.core.$strip>, z.ZodObject<{
64
64
  type: z.ZodLiteral<"queue">;
@@ -49,7 +49,7 @@ export const WorkerDefSchema = z.object({
49
49
  z.object({
50
50
  type: z.literal('scheduled'),
51
51
  cron: z.string(),
52
- timezone: z.string().default('UTC'),
52
+ timezone: z.string().optional(),
53
53
  description: z.string().optional()
54
54
  }),
55
55
  z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newhomestar/sdk",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "description": "Type-safe SDK for building Nova pipelines (workers & functions)",
5
5
  "homepage": "https://github.com/newhomestar/nova-node-sdk#readme",
6
6
  "bugs": {