@botpress/api 0.61.0 → 0.62.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
@@ -283204,11 +283204,22 @@ var state = {
283204
283204
  "type": "string",
283205
283205
  "maxLength": 200,
283206
283206
  "description": "Unique identifier of the integration that was installed on the bot"
283207
+ },
283208
+ "scheduleRegisterCall": {
283209
+ "type": "string",
283210
+ "enum": [
283211
+ "hourly",
283212
+ "daily",
283213
+ "weekly",
283214
+ "bi-weekly",
283215
+ "monthly",
283216
+ "bi-monthly",
283217
+ "quarterly",
283218
+ "yearly"
283219
+ ],
283220
+ "description": "Recurring schedule on which `register()` will be called on the integration"
283207
283221
  }
283208
283222
  },
283209
- "required": [
283210
- "identifier"
283211
- ],
283212
283223
  "title": "configureIntegrationBody",
283213
283224
  "additionalProperties": false
283214
283225
  }
@@ -295102,7 +295113,7 @@ var state = {
295102
295113
  "title": "Botpress API",
295103
295114
  "description": "API for Botpress Cloud",
295104
295115
  "server": "https://api.botpress.cloud",
295105
- "version": "0.61.0",
295116
+ "version": "0.62.0",
295106
295117
  "prefix": "v1"
295107
295118
  },
295108
295119
  "errors": [
@@ -1568,8 +1568,12 @@ export declare const state: {
1568
1568
  maxLength: number;
1569
1569
  description: string;
1570
1570
  };
1571
+ scheduleRegisterCall: {
1572
+ type: "string";
1573
+ enum: string[];
1574
+ description: string;
1575
+ };
1571
1576
  };
1572
- required: string[];
1573
1577
  title: string;
1574
1578
  additionalProperties: false;
1575
1579
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/api",
3
- "version": "0.61.0",
3
+ "version": "0.62.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/src/index.d.ts",
6
6
  "scripts": {