@squidcloud/backend 1.0.150 → 1.0.152

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.
@@ -100,7 +100,7 @@ export declare function trigger(id: TriggerId, collectionName: CollectionName, i
100
100
  * {@link https://docs.squid.cloud/docs/development-tools/backend/schedulers documentation}.
101
101
  *
102
102
  * @param id The ID of the scheduler. Should be unique.
103
- * @param cronExpression The cron expression to schedule the function on.
103
+ * @param cronExpression The cron expression (in UTC) to schedule the function on.
104
104
  * @param exclusive Whether the scheduler should be exclusive. If set to true, the scheduler will not trigger if the
105
105
  * previous scheduler is still running.
106
106
  */
@@ -154,7 +154,7 @@ export declare function secureDistributedLock(mutex?: string): ActionMethodDecor
154
154
  * whether the action is allowed.
155
155
  * The function takes a context object as a parameter. The context object contains information about the action.
156
156
  *
157
- * To read more about named queries, see the
157
+ * To read more about securing an AI chatbot, see the
158
158
  * {@link https://docs.squid.cloud/docs/development-tools/backend/security-rules/secure-ai-chatbot documentation}.
159
159
  *
160
160
  @param integrationId The ID of the integration to secure.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/backend",
3
- "version": "1.0.150",
3
+ "version": "1.0.152",
4
4
  "description": "Squid Cloud's backend SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/backend/src/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "author": "",
18
18
  "license": "ISC",
19
19
  "peerDependencies": {
20
- "@squidcloud/client": "1.0.150",
21
- "@squidcloud/common": "1.0.150"
20
+ "@squidcloud/client": "1.0.152",
21
+ "@squidcloud/common": "1.0.152"
22
22
  }
23
23
  }