@iblai/iblai-api 4.289.1-ai → 4.290.0-ai
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.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -2611,7 +2611,7 @@ export declare class AiMentorService {
|
|
|
2611
2611
|
* @throws ApiError
|
|
2612
2612
|
*/
|
|
2613
2613
|
static aiMentorOrgsUsersChatMessagesTtsRetrieve({ chatMessageId, org, userId, }: {
|
|
2614
|
-
chatMessageId:
|
|
2614
|
+
chatMessageId: string;
|
|
2615
2615
|
org: string;
|
|
2616
2616
|
}): CancelablePromise<Blob>;
|
|
2617
2617
|
/**
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ibl-data-manager
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.290.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/api/ai-account/connected-services/callback/:
|
|
@@ -20928,7 +20928,7 @@ paths:
|
|
|
20928
20928
|
- in: path
|
|
20929
20929
|
name: chat_message_id
|
|
20930
20930
|
schema:
|
|
20931
|
-
type:
|
|
20931
|
+
type: string
|
|
20932
20932
|
required: true
|
|
20933
20933
|
- in: path
|
|
20934
20934
|
name: org
|
package/src/core/OpenAPI.ts
CHANGED