@botpress/sdk 4.12.0 → 4.13.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.
@@ -8,6 +8,12 @@ export * from './types';
8
8
  export declare class IntegrationSpecificClient<TIntegration extends common.BaseIntegration> implements types.ClientOperations<TIntegration> {
9
9
  private readonly _client;
10
10
  constructor(_client: client.Client);
11
+ /**
12
+ * Access the underlying Botpress client.
13
+ * This is useful for operations that are not available in the BotSpecificClient.
14
+ * You probably shouldn't use this directly if you don't know what you're doing.
15
+ */
16
+ get _inner(): client.Client;
11
17
  createConversation: types.CreateConversation<TIntegration>;
12
18
  getConversation: types.GetConversation<TIntegration>;
13
19
  listConversations: types.ListConversations<TIntegration>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/sdk",
3
- "version": "4.12.0",
3
+ "version": "4.13.0",
4
4
  "description": "Botpress SDK",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -16,7 +16,7 @@
16
16
  "author": "",
17
17
  "license": "MIT",
18
18
  "dependencies": {
19
- "@botpress/client": "1.16.0",
19
+ "@botpress/client": "1.16.1",
20
20
  "browser-or-node": "^2.1.1"
21
21
  },
22
22
  "devDependencies": {