@botpress/sdk 6.11.1 → 6.12.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.
@@ -31,5 +31,6 @@ export declare class IntegrationLogger extends BaseLogger<IntegrationLogOptions>
31
31
  */
32
32
  forBotOnly(): IntegrationLogger;
33
33
  protected getJsonMessage(level: LogLevel, msg: string): string;
34
+ protected getIssueContext(): Record<string, string>;
34
35
  }
35
36
  export {};
@@ -80,6 +80,7 @@ export type PluginDefinitionProps<TName extends string = string, TVersion extend
80
80
  events?: {
81
81
  [K in keyof TEvents]: GenericDefinition<TInterfaces, EventDefinition<TEvents[K]>>;
82
82
  };
83
+ /** @deprecated Use the `recurrence` field on each event in `events` instead. */
83
84
  recurringEvents?: Record<string, RecurringEventDefinition<TEvents>>;
84
85
  actions?: {
85
86
  [K in keyof TActions]: GenericNestedDefinition<TInterfaces, ActionDefinition<TActions[K]>, 'input' | 'output'>;
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/sdk",
3
- "version": "6.11.1",
3
+ "version": "6.12.0",
4
4
  "description": "Botpress SDK",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -27,11 +27,10 @@
27
27
  "devDependencies": {
28
28
  "@types/semver": "^7.3.11",
29
29
  "esbuild": "^0.25.10",
30
- "esbuild-plugin-polyfill-node": "^0.3.0",
31
- "tsup": "^8.0.2"
30
+ "esbuild-plugin-polyfill-node": "^0.3.0"
32
31
  },
33
32
  "peerDependencies": {
34
- "@bpinternal/zui": "^2.1.1",
33
+ "@bpinternal/zui": "^2.3.0",
35
34
  "esbuild": "^0.16.12"
36
35
  },
37
36
  "peerDependenciesMeta": {
@@ -42,5 +41,5 @@
42
41
  "engines": {
43
42
  "node": ">=18.0.0"
44
43
  },
45
- "packageManager": "pnpm@10.12.4"
44
+ "packageManager": "pnpm@10.29.3"
46
45
  }