@equos/node-sdk 3.0.2-rc.11 → 3.0.2-rc.13
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/client.d.ts +2 -1
- package/dist/client.js +2 -0
- package/package.json +2 -2
package/dist/client.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BrainApi, CharacterApi, ConversationApi, FaceApi, HealthApi, KnowledgeBaseApi, VoiceApi } from '@equos/core';
|
|
1
|
+
import { BrainApi, CharacterApi, ConversationApi, FaceApi, HealthApi, KnowledgeBaseApi, OrganizationApi, VoiceApi } from '@equos/core';
|
|
2
2
|
export interface EquosOptions {
|
|
3
3
|
/**
|
|
4
4
|
* API endpoint to use (default: https://api.equos.ai)
|
|
@@ -19,6 +19,7 @@ export declare class EquosClient {
|
|
|
19
19
|
readonly knowledgeBases: KnowledgeBaseApi;
|
|
20
20
|
readonly voices: VoiceApi;
|
|
21
21
|
readonly conversations: ConversationApi;
|
|
22
|
+
readonly organizations: OrganizationApi;
|
|
22
23
|
private constructor();
|
|
23
24
|
/**
|
|
24
25
|
* Create a new Equos client instance
|
package/dist/client.js
CHANGED
|
@@ -16,6 +16,7 @@ class EquosClient {
|
|
|
16
16
|
knowledgeBases;
|
|
17
17
|
voices;
|
|
18
18
|
conversations;
|
|
19
|
+
organizations;
|
|
19
20
|
constructor(apiKey, options) {
|
|
20
21
|
const endpoint = options?.endpoint || 'https://api.equos.ai';
|
|
21
22
|
// Construct the base path
|
|
@@ -33,6 +34,7 @@ class EquosClient {
|
|
|
33
34
|
this.knowledgeBases = new core_1.KnowledgeBaseApi(this.configuration);
|
|
34
35
|
this.voices = new core_1.VoiceApi(this.configuration);
|
|
35
36
|
this.conversations = new core_1.ConversationApi(this.configuration);
|
|
37
|
+
this.organizations = new core_1.OrganizationApi(this.configuration);
|
|
36
38
|
}
|
|
37
39
|
/**
|
|
38
40
|
* Create a new Equos client instance
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equos/node-sdk",
|
|
3
|
-
"version": "3.0.2-rc.
|
|
3
|
+
"version": "3.0.2-rc.13",
|
|
4
4
|
"description": "Equos.ai node.js official SDK.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"prepare": "npm run build"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@equos/core": "^3.0.2-rc.
|
|
45
|
+
"@equos/core": "^3.0.2-rc.4",
|
|
46
46
|
"axios": "^1.11.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|