@squidcloud/backend 1.0.456 → 1.0.457

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.
@@ -298,7 +298,7 @@ export interface SchedulerOptions {
298
298
  }
299
299
  /**
300
300
  * Decorator that marks a function as a scheduler. The function will be called according to the provided cron
301
- * expression.
301
+ * expression. Cron expressions are evaluated in UTC.
302
302
  *
303
303
  * To read more about schedulers, see the
304
304
  * {@link https://docs.getsquid.ai/docs/sdk/backend-sdk/schedulers documentation}.
@@ -312,7 +312,7 @@ export interface SchedulerOptions {
312
312
  export declare function scheduler(id: SchedulerId, cronExpression: CronExpression | CronExpressionString, exclusive?: boolean): ActionMethodDecorator<SchedulerAction>;
313
313
  /**
314
314
  * Decorator that marks a function as a scheduler.
315
- * The function will be called according to the provided cron expression.
315
+ * The function will be called according to the provided cron expression. Cron expressions are evaluated in UTC.
316
316
  *
317
317
  * To read more about schedulers, see the
318
318
  * {@link https://docs.getsquid.ai/docs/sdk/backend-sdk/schedulers documentation}.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/backend",
3
- "version": "1.0.456",
3
+ "version": "1.0.457",
4
4
  "description": "Squid Cloud's backend SDK",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -35,7 +35,7 @@
35
35
  "typedoc-plugin-markdown": "^4.8.1"
36
36
  },
37
37
  "peerDependencies": {
38
- "@squidcloud/client": "^1.0.456"
38
+ "@squidcloud/client": "^1.0.457"
39
39
  },
40
40
  "engines": {
41
41
  "node": ">=20.0.0"