@botpress/client 1.14.0 → 1.15.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/bundle.cjs +11 -11
- package/dist/bundle.cjs.map +4 -4
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +4 -4
- package/dist/index.d.ts +30 -0
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6925,6 +6925,20 @@ interface GetIntegrationShareableIdResponse$1 {
|
|
|
6925
6925
|
isExpired: boolean;
|
|
6926
6926
|
}
|
|
6927
6927
|
|
|
6928
|
+
interface UnlinkSandboxedConversationsRequestHeaders$1 {
|
|
6929
|
+
}
|
|
6930
|
+
interface UnlinkSandboxedConversationsRequestQuery$1 {
|
|
6931
|
+
}
|
|
6932
|
+
interface UnlinkSandboxedConversationsRequestParams$1 {
|
|
6933
|
+
botId: string;
|
|
6934
|
+
integrationId: string;
|
|
6935
|
+
}
|
|
6936
|
+
interface UnlinkSandboxedConversationsRequestBody$1 {
|
|
6937
|
+
}
|
|
6938
|
+
type UnlinkSandboxedConversationsInput$1 = UnlinkSandboxedConversationsRequestBody$1 & UnlinkSandboxedConversationsRequestHeaders$1 & UnlinkSandboxedConversationsRequestQuery$1 & UnlinkSandboxedConversationsRequestParams$1;
|
|
6939
|
+
interface UnlinkSandboxedConversationsResponse$1 {
|
|
6940
|
+
}
|
|
6941
|
+
|
|
6928
6942
|
interface ListBotApiKeysRequestHeaders$1 {
|
|
6929
6943
|
}
|
|
6930
6944
|
interface ListBotApiKeysRequestQuery$1 {
|
|
@@ -13248,6 +13262,7 @@ declare class Client$7 {
|
|
|
13248
13262
|
readonly createIntegrationShareableId: (input: CreateIntegrationShareableIdInput$1) => Promise<CreateIntegrationShareableIdResponse$1>;
|
|
13249
13263
|
readonly deleteIntegrationShareableId: (input: DeleteIntegrationShareableIdInput$1) => Promise<DeleteIntegrationShareableIdResponse$1>;
|
|
13250
13264
|
readonly getIntegrationShareableId: (input: GetIntegrationShareableIdInput$1) => Promise<GetIntegrationShareableIdResponse$1>;
|
|
13265
|
+
readonly unlinkSandboxedConversations: (input: UnlinkSandboxedConversationsInput$1) => Promise<UnlinkSandboxedConversationsResponse$1>;
|
|
13251
13266
|
readonly listBotApiKeys: (input: ListBotApiKeysInput$1) => Promise<ListBotApiKeysResponse$1>;
|
|
13252
13267
|
readonly createBotApiKey: (input: CreateBotApiKeyInput$1) => Promise<CreateBotApiKeyResponse$1>;
|
|
13253
13268
|
readonly deleteBotApiKey: (input: DeleteBotApiKeyInput$1) => Promise<DeleteBotApiKeyResponse$1>;
|
|
@@ -22931,6 +22946,20 @@ interface GetIntegrationShareableIdResponse {
|
|
|
22931
22946
|
isExpired: boolean;
|
|
22932
22947
|
}
|
|
22933
22948
|
|
|
22949
|
+
interface UnlinkSandboxedConversationsRequestHeaders {
|
|
22950
|
+
}
|
|
22951
|
+
interface UnlinkSandboxedConversationsRequestQuery {
|
|
22952
|
+
}
|
|
22953
|
+
interface UnlinkSandboxedConversationsRequestParams {
|
|
22954
|
+
botId: string;
|
|
22955
|
+
integrationId: string;
|
|
22956
|
+
}
|
|
22957
|
+
interface UnlinkSandboxedConversationsRequestBody {
|
|
22958
|
+
}
|
|
22959
|
+
type UnlinkSandboxedConversationsInput = UnlinkSandboxedConversationsRequestBody & UnlinkSandboxedConversationsRequestHeaders & UnlinkSandboxedConversationsRequestQuery & UnlinkSandboxedConversationsRequestParams;
|
|
22960
|
+
interface UnlinkSandboxedConversationsResponse {
|
|
22961
|
+
}
|
|
22962
|
+
|
|
22934
22963
|
interface ListBotApiKeysRequestHeaders {
|
|
22935
22964
|
}
|
|
22936
22965
|
interface ListBotApiKeysRequestQuery {
|
|
@@ -33701,6 +33730,7 @@ declare class Client$1 {
|
|
|
33701
33730
|
readonly createIntegrationShareableId: (input: CreateIntegrationShareableIdInput) => Promise<CreateIntegrationShareableIdResponse>;
|
|
33702
33731
|
readonly deleteIntegrationShareableId: (input: DeleteIntegrationShareableIdInput) => Promise<DeleteIntegrationShareableIdResponse>;
|
|
33703
33732
|
readonly getIntegrationShareableId: (input: GetIntegrationShareableIdInput) => Promise<GetIntegrationShareableIdResponse>;
|
|
33733
|
+
readonly unlinkSandboxedConversations: (input: UnlinkSandboxedConversationsInput) => Promise<UnlinkSandboxedConversationsResponse>;
|
|
33704
33734
|
readonly listBotApiKeys: (input: ListBotApiKeysInput) => Promise<ListBotApiKeysResponse>;
|
|
33705
33735
|
readonly createBotApiKey: (input: CreateBotApiKeyInput) => Promise<CreateBotApiKeyResponse>;
|
|
33706
33736
|
readonly deleteBotApiKey: (input: DeleteBotApiKeyInput) => Promise<DeleteBotApiKeyResponse>;
|