@l7mp/tivadar-ai-api-sdk 0.2.5 → 0.2.6
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/api-client.d.ts +10 -2
- package/dist/api-client.js +9 -1
- package/dist/apis/RAGApi.d.ts +15 -13
- package/dist/apis/RAGApi.js +47 -45
- package/dist/apis/ToolsApi.d.ts +68 -0
- package/dist/apis/ToolsApi.js +205 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/esm/api-client.d.ts +10 -2
- package/dist/esm/api-client.js +9 -1
- package/dist/esm/apis/RAGApi.d.ts +15 -13
- package/dist/esm/apis/RAGApi.js +47 -45
- package/dist/esm/apis/ToolsApi.d.ts +68 -0
- package/dist/esm/apis/ToolsApi.js +201 -0
- package/dist/esm/apis/index.d.ts +1 -0
- package/dist/esm/apis/index.js +1 -0
- package/dist/esm/models/AgentTool.d.ts +79 -0
- package/dist/esm/models/AgentTool.js +66 -0
- package/dist/esm/models/AgentToolUpsert.d.ts +40 -0
- package/dist/esm/models/AgentToolUpsert.js +45 -0
- package/dist/esm/models/Notification.d.ts +16 -17
- package/dist/esm/models/Notification.js +8 -8
- package/dist/esm/models/NotificationCreate.d.ts +3 -4
- package/dist/esm/models/NotificationCreate.js +4 -2
- package/dist/esm/models/NotificationLocalizedContentValue.d.ts +38 -0
- package/dist/esm/models/NotificationLocalizedContentValue.js +47 -0
- package/dist/esm/models/NotificationUpdate.d.ts +3 -4
- package/dist/esm/models/NotificationUpdate.js +4 -2
- package/dist/esm/models/Tool.d.ts +102 -0
- package/dist/esm/models/Tool.js +77 -0
- package/dist/esm/models/ToolCreate.d.ts +84 -0
- package/dist/esm/models/ToolCreate.js +63 -0
- package/dist/esm/models/ToolUpdate.d.ts +78 -0
- package/dist/esm/models/ToolUpdate.js +55 -0
- package/dist/esm/models/UserPreferences.d.ts +1 -1
- package/dist/esm/models/UserPreferences.js +3 -1
- package/dist/esm/models/UserPreferencesUpdate.d.ts +1 -1
- package/dist/esm/models/UserPreferencesUpdate.js +3 -1
- package/dist/esm/models/index.d.ts +6 -0
- package/dist/esm/models/index.js +6 -0
- package/dist/models/AgentTool.d.ts +79 -0
- package/dist/models/AgentTool.js +73 -0
- package/dist/models/AgentToolUpsert.d.ts +40 -0
- package/dist/models/AgentToolUpsert.js +52 -0
- package/dist/models/Notification.d.ts +16 -17
- package/dist/models/Notification.js +8 -8
- package/dist/models/NotificationCreate.d.ts +3 -4
- package/dist/models/NotificationCreate.js +4 -2
- package/dist/models/NotificationLocalizedContentValue.d.ts +38 -0
- package/dist/models/NotificationLocalizedContentValue.js +54 -0
- package/dist/models/NotificationUpdate.d.ts +3 -4
- package/dist/models/NotificationUpdate.js +4 -2
- package/dist/models/Tool.d.ts +102 -0
- package/dist/models/Tool.js +84 -0
- package/dist/models/ToolCreate.d.ts +84 -0
- package/dist/models/ToolCreate.js +70 -0
- package/dist/models/ToolUpdate.d.ts +78 -0
- package/dist/models/ToolUpdate.js +62 -0
- package/dist/models/UserPreferences.d.ts +1 -1
- package/dist/models/UserPreferences.js +3 -1
- package/dist/models/UserPreferencesUpdate.d.ts +1 -1
- package/dist/models/UserPreferencesUpdate.js +3 -1
- package/dist/models/index.d.ts +6 -0
- package/dist/models/index.js +6 -0
- package/package.json +1 -1
- package/src/api-client.ts +21 -2
- package/src/apis/RAGApi.ts +69 -67
- package/src/apis/ToolsApi.ts +287 -0
- package/src/apis/index.ts +1 -0
- package/src/models/AgentTool.ts +134 -0
- package/src/models/AgentToolUpsert.ts +74 -0
- package/src/models/CalendarEvent.ts +1 -0
- package/src/models/CalendarEventCreate.ts +1 -0
- package/src/models/CalendarEventUpdate.ts +1 -0
- package/src/models/Call.ts +1 -0
- package/src/models/CallCreate.ts +1 -0
- package/src/models/CallUpdate.ts +1 -0
- package/src/models/Notification.ts +29 -22
- package/src/models/NotificationCreate.ts +12 -4
- package/src/models/NotificationLocalizedContentValue.ts +75 -0
- package/src/models/NotificationUpdate.ts +12 -4
- package/src/models/Tool.ts +160 -0
- package/src/models/ToolCreate.ts +132 -0
- package/src/models/ToolUpdate.ts +121 -0
- package/src/models/UserPreferences.ts +4 -4
- package/src/models/UserPreferencesUpdate.ts +4 -4
- package/src/models/index.ts +6 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tivadar AI Backend API
|
|
3
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface NotificationLocalizedContentValue
|
|
16
|
+
*/
|
|
17
|
+
export interface NotificationLocalizedContentValue {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof NotificationLocalizedContentValue
|
|
22
|
+
*/
|
|
23
|
+
title: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof NotificationLocalizedContentValue
|
|
28
|
+
*/
|
|
29
|
+
content: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the NotificationLocalizedContentValue interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfNotificationLocalizedContentValue(value: object): value is NotificationLocalizedContentValue;
|
|
35
|
+
export declare function NotificationLocalizedContentValueFromJSON(json: any): NotificationLocalizedContentValue;
|
|
36
|
+
export declare function NotificationLocalizedContentValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationLocalizedContentValue;
|
|
37
|
+
export declare function NotificationLocalizedContentValueToJSON(json: any): NotificationLocalizedContentValue;
|
|
38
|
+
export declare function NotificationLocalizedContentValueToJSONTyped(value?: NotificationLocalizedContentValue | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Tivadar AI Backend API
|
|
6
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfNotificationLocalizedContentValue = instanceOfNotificationLocalizedContentValue;
|
|
17
|
+
exports.NotificationLocalizedContentValueFromJSON = NotificationLocalizedContentValueFromJSON;
|
|
18
|
+
exports.NotificationLocalizedContentValueFromJSONTyped = NotificationLocalizedContentValueFromJSONTyped;
|
|
19
|
+
exports.NotificationLocalizedContentValueToJSON = NotificationLocalizedContentValueToJSON;
|
|
20
|
+
exports.NotificationLocalizedContentValueToJSONTyped = NotificationLocalizedContentValueToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the NotificationLocalizedContentValue interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfNotificationLocalizedContentValue(value) {
|
|
25
|
+
if (!('title' in value) || value['title'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('content' in value) || value['content'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function NotificationLocalizedContentValueFromJSON(json) {
|
|
32
|
+
return NotificationLocalizedContentValueFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function NotificationLocalizedContentValueFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'title': json['title'],
|
|
40
|
+
'content': json['content'],
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function NotificationLocalizedContentValueToJSON(json) {
|
|
44
|
+
return NotificationLocalizedContentValueToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function NotificationLocalizedContentValueToJSONTyped(value, ignoreDiscriminator = false) {
|
|
47
|
+
if (value == null) {
|
|
48
|
+
return value;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'title': value['title'],
|
|
52
|
+
'content': value['content'],
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { NotificationChannel } from './NotificationChannel';
|
|
13
|
+
import type { NotificationLocalizedContentValue } from './NotificationLocalizedContentValue';
|
|
13
14
|
import type { NotificationSeverity } from './NotificationSeverity';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
@@ -55,13 +56,11 @@ export interface NotificationUpdate {
|
|
|
55
56
|
send_email?: boolean;
|
|
56
57
|
/**
|
|
57
58
|
*
|
|
58
|
-
* @type {{ [key: string]:
|
|
59
|
+
* @type {{ [key: string]: NotificationLocalizedContentValue; }}
|
|
59
60
|
* @memberof NotificationUpdate
|
|
60
61
|
*/
|
|
61
62
|
localized_content?: {
|
|
62
|
-
[key: string]:
|
|
63
|
-
[key: string]: any;
|
|
64
|
-
};
|
|
63
|
+
[key: string]: NotificationLocalizedContentValue;
|
|
65
64
|
} | null;
|
|
66
65
|
/**
|
|
67
66
|
*
|
|
@@ -18,7 +18,9 @@ exports.NotificationUpdateFromJSON = NotificationUpdateFromJSON;
|
|
|
18
18
|
exports.NotificationUpdateFromJSONTyped = NotificationUpdateFromJSONTyped;
|
|
19
19
|
exports.NotificationUpdateToJSON = NotificationUpdateToJSON;
|
|
20
20
|
exports.NotificationUpdateToJSONTyped = NotificationUpdateToJSONTyped;
|
|
21
|
+
const runtime_1 = require("../runtime");
|
|
21
22
|
const NotificationChannel_1 = require("./NotificationChannel");
|
|
23
|
+
const NotificationLocalizedContentValue_1 = require("./NotificationLocalizedContentValue");
|
|
22
24
|
const NotificationSeverity_1 = require("./NotificationSeverity");
|
|
23
25
|
/**
|
|
24
26
|
* Check if a given object implements the NotificationUpdate interface.
|
|
@@ -40,7 +42,7 @@ function NotificationUpdateFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
40
42
|
'content': json['content'] == null ? undefined : json['content'],
|
|
41
43
|
'expires_at': json['expires_at'] == null ? undefined : (new Date(json['expires_at'])),
|
|
42
44
|
'send_email': json['send_email'] == null ? undefined : json['send_email'],
|
|
43
|
-
'localized_content': json['localized_content'] == null ? undefined : json['localized_content'],
|
|
45
|
+
'localized_content': json['localized_content'] == null ? undefined : ((0, runtime_1.mapValues)(json['localized_content'], NotificationLocalizedContentValue_1.NotificationLocalizedContentValueFromJSON)),
|
|
44
46
|
'default_language': json['default_language'] == null ? undefined : json['default_language'],
|
|
45
47
|
};
|
|
46
48
|
}
|
|
@@ -58,7 +60,7 @@ function NotificationUpdateToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
58
60
|
'content': value['content'],
|
|
59
61
|
'expires_at': value['expires_at'] == null ? value['expires_at'] : value['expires_at'].toISOString(),
|
|
60
62
|
'send_email': value['send_email'],
|
|
61
|
-
'localized_content': value['localized_content'],
|
|
63
|
+
'localized_content': value['localized_content'] == null ? undefined : ((0, runtime_1.mapValues)(value['localized_content'], NotificationLocalizedContentValue_1.NotificationLocalizedContentValueToJSON)),
|
|
62
64
|
'default_language': value['default_language'],
|
|
63
65
|
};
|
|
64
66
|
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tivadar AI Backend API
|
|
3
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface Tool
|
|
16
|
+
*/
|
|
17
|
+
export interface Tool {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof Tool
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique tool identifier matching the LangChain function name.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof Tool
|
|
28
|
+
*/
|
|
29
|
+
name: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof Tool
|
|
34
|
+
*/
|
|
35
|
+
label: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof Tool
|
|
40
|
+
*/
|
|
41
|
+
description?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof Tool
|
|
46
|
+
*/
|
|
47
|
+
icon?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
* Subscription feature key gating this tool (e.g. `tools.call_redirect`).
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof Tool
|
|
52
|
+
*/
|
|
53
|
+
feature_key: string;
|
|
54
|
+
/**
|
|
55
|
+
* JSON Schema (draft-07) describing the tool's config fields.
|
|
56
|
+
* @type {{ [key: string]: any; }}
|
|
57
|
+
* @memberof Tool
|
|
58
|
+
*/
|
|
59
|
+
config_schema: {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* Optional react-jsonschema-form UI Schema for widget hints.
|
|
64
|
+
* @type {{ [key: string]: any; }}
|
|
65
|
+
* @memberof Tool
|
|
66
|
+
*/
|
|
67
|
+
ui_schema: {
|
|
68
|
+
[key: string]: any;
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* Names of fields that should be stored encrypted and never echoed back.
|
|
72
|
+
* @type {Array<string>}
|
|
73
|
+
* @memberof Tool
|
|
74
|
+
*/
|
|
75
|
+
secret_fields: Array<string>;
|
|
76
|
+
/**
|
|
77
|
+
*
|
|
78
|
+
* @type {boolean}
|
|
79
|
+
* @memberof Tool
|
|
80
|
+
*/
|
|
81
|
+
enabled_globally?: boolean;
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
* @type {Date}
|
|
85
|
+
* @memberof Tool
|
|
86
|
+
*/
|
|
87
|
+
created_at?: Date;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @type {Date}
|
|
91
|
+
* @memberof Tool
|
|
92
|
+
*/
|
|
93
|
+
updated_at?: Date;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Check if a given object implements the Tool interface.
|
|
97
|
+
*/
|
|
98
|
+
export declare function instanceOfTool(value: object): value is Tool;
|
|
99
|
+
export declare function ToolFromJSON(json: any): Tool;
|
|
100
|
+
export declare function ToolFromJSONTyped(json: any, ignoreDiscriminator: boolean): Tool;
|
|
101
|
+
export declare function ToolToJSON(json: any): Tool;
|
|
102
|
+
export declare function ToolToJSONTyped(value?: Tool | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Tivadar AI Backend API
|
|
6
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfTool = instanceOfTool;
|
|
17
|
+
exports.ToolFromJSON = ToolFromJSON;
|
|
18
|
+
exports.ToolFromJSONTyped = ToolFromJSONTyped;
|
|
19
|
+
exports.ToolToJSON = ToolToJSON;
|
|
20
|
+
exports.ToolToJSONTyped = ToolToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the Tool interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfTool(value) {
|
|
25
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('label' in value) || value['label'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('feature_key' in value) || value['feature_key'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('config_schema' in value) || value['config_schema'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('ui_schema' in value) || value['ui_schema'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('secret_fields' in value) || value['secret_fields'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
return true;
|
|
40
|
+
}
|
|
41
|
+
function ToolFromJSON(json) {
|
|
42
|
+
return ToolFromJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
function ToolFromJSONTyped(json, ignoreDiscriminator) {
|
|
45
|
+
if (json == null) {
|
|
46
|
+
return json;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'id': json['id'],
|
|
50
|
+
'name': json['name'],
|
|
51
|
+
'label': json['label'],
|
|
52
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
53
|
+
'icon': json['icon'] == null ? undefined : json['icon'],
|
|
54
|
+
'feature_key': json['feature_key'],
|
|
55
|
+
'config_schema': json['config_schema'],
|
|
56
|
+
'ui_schema': json['ui_schema'],
|
|
57
|
+
'secret_fields': json['secret_fields'],
|
|
58
|
+
'enabled_globally': json['enabled_globally'] == null ? undefined : json['enabled_globally'],
|
|
59
|
+
'created_at': json['created_at'] == null ? undefined : (new Date(json['created_at'])),
|
|
60
|
+
'updated_at': json['updated_at'] == null ? undefined : (new Date(json['updated_at'])),
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
function ToolToJSON(json) {
|
|
64
|
+
return ToolToJSONTyped(json, false);
|
|
65
|
+
}
|
|
66
|
+
function ToolToJSONTyped(value, ignoreDiscriminator = false) {
|
|
67
|
+
if (value == null) {
|
|
68
|
+
return value;
|
|
69
|
+
}
|
|
70
|
+
return {
|
|
71
|
+
'id': value['id'],
|
|
72
|
+
'name': value['name'],
|
|
73
|
+
'label': value['label'],
|
|
74
|
+
'description': value['description'],
|
|
75
|
+
'icon': value['icon'],
|
|
76
|
+
'feature_key': value['feature_key'],
|
|
77
|
+
'config_schema': value['config_schema'],
|
|
78
|
+
'ui_schema': value['ui_schema'],
|
|
79
|
+
'secret_fields': value['secret_fields'],
|
|
80
|
+
'enabled_globally': value['enabled_globally'],
|
|
81
|
+
'created_at': value['created_at'] == null ? value['created_at'] : value['created_at'].toISOString(),
|
|
82
|
+
'updated_at': value['updated_at'] == null ? value['updated_at'] : value['updated_at'].toISOString(),
|
|
83
|
+
};
|
|
84
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tivadar AI Backend API
|
|
3
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ToolCreate
|
|
16
|
+
*/
|
|
17
|
+
export interface ToolCreate {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ToolCreate
|
|
22
|
+
*/
|
|
23
|
+
name: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ToolCreate
|
|
28
|
+
*/
|
|
29
|
+
label: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ToolCreate
|
|
34
|
+
*/
|
|
35
|
+
description?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ToolCreate
|
|
40
|
+
*/
|
|
41
|
+
icon?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ToolCreate
|
|
46
|
+
*/
|
|
47
|
+
feature_key: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {{ [key: string]: any; }}
|
|
51
|
+
* @memberof ToolCreate
|
|
52
|
+
*/
|
|
53
|
+
config_schema?: {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {{ [key: string]: any; }}
|
|
59
|
+
* @memberof ToolCreate
|
|
60
|
+
*/
|
|
61
|
+
ui_schema?: {
|
|
62
|
+
[key: string]: any;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {Array<string>}
|
|
67
|
+
* @memberof ToolCreate
|
|
68
|
+
*/
|
|
69
|
+
secret_fields?: Array<string>;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @type {boolean}
|
|
73
|
+
* @memberof ToolCreate
|
|
74
|
+
*/
|
|
75
|
+
enabled_globally?: boolean;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Check if a given object implements the ToolCreate interface.
|
|
79
|
+
*/
|
|
80
|
+
export declare function instanceOfToolCreate(value: object): value is ToolCreate;
|
|
81
|
+
export declare function ToolCreateFromJSON(json: any): ToolCreate;
|
|
82
|
+
export declare function ToolCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ToolCreate;
|
|
83
|
+
export declare function ToolCreateToJSON(json: any): ToolCreate;
|
|
84
|
+
export declare function ToolCreateToJSONTyped(value?: ToolCreate | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Tivadar AI Backend API
|
|
6
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfToolCreate = instanceOfToolCreate;
|
|
17
|
+
exports.ToolCreateFromJSON = ToolCreateFromJSON;
|
|
18
|
+
exports.ToolCreateFromJSONTyped = ToolCreateFromJSONTyped;
|
|
19
|
+
exports.ToolCreateToJSON = ToolCreateToJSON;
|
|
20
|
+
exports.ToolCreateToJSONTyped = ToolCreateToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ToolCreate interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfToolCreate(value) {
|
|
25
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('label' in value) || value['label'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('feature_key' in value) || value['feature_key'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
function ToolCreateFromJSON(json) {
|
|
34
|
+
return ToolCreateFromJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
function ToolCreateFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
+
if (json == null) {
|
|
38
|
+
return json;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'name': json['name'],
|
|
42
|
+
'label': json['label'],
|
|
43
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
44
|
+
'icon': json['icon'] == null ? undefined : json['icon'],
|
|
45
|
+
'feature_key': json['feature_key'],
|
|
46
|
+
'config_schema': json['config_schema'] == null ? undefined : json['config_schema'],
|
|
47
|
+
'ui_schema': json['ui_schema'] == null ? undefined : json['ui_schema'],
|
|
48
|
+
'secret_fields': json['secret_fields'] == null ? undefined : json['secret_fields'],
|
|
49
|
+
'enabled_globally': json['enabled_globally'] == null ? undefined : json['enabled_globally'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
function ToolCreateToJSON(json) {
|
|
53
|
+
return ToolCreateToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
function ToolCreateToJSONTyped(value, ignoreDiscriminator = false) {
|
|
56
|
+
if (value == null) {
|
|
57
|
+
return value;
|
|
58
|
+
}
|
|
59
|
+
return {
|
|
60
|
+
'name': value['name'],
|
|
61
|
+
'label': value['label'],
|
|
62
|
+
'description': value['description'],
|
|
63
|
+
'icon': value['icon'],
|
|
64
|
+
'feature_key': value['feature_key'],
|
|
65
|
+
'config_schema': value['config_schema'],
|
|
66
|
+
'ui_schema': value['ui_schema'],
|
|
67
|
+
'secret_fields': value['secret_fields'],
|
|
68
|
+
'enabled_globally': value['enabled_globally'],
|
|
69
|
+
};
|
|
70
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tivadar AI Backend API
|
|
3
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ToolUpdate
|
|
16
|
+
*/
|
|
17
|
+
export interface ToolUpdate {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ToolUpdate
|
|
22
|
+
*/
|
|
23
|
+
label?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ToolUpdate
|
|
28
|
+
*/
|
|
29
|
+
description?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ToolUpdate
|
|
34
|
+
*/
|
|
35
|
+
icon?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ToolUpdate
|
|
40
|
+
*/
|
|
41
|
+
feature_key?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {{ [key: string]: any; }}
|
|
45
|
+
* @memberof ToolUpdate
|
|
46
|
+
*/
|
|
47
|
+
config_schema?: {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {{ [key: string]: any; }}
|
|
53
|
+
* @memberof ToolUpdate
|
|
54
|
+
*/
|
|
55
|
+
ui_schema?: {
|
|
56
|
+
[key: string]: any;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {Array<string>}
|
|
61
|
+
* @memberof ToolUpdate
|
|
62
|
+
*/
|
|
63
|
+
secret_fields?: Array<string>;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {boolean}
|
|
67
|
+
* @memberof ToolUpdate
|
|
68
|
+
*/
|
|
69
|
+
enabled_globally?: boolean;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Check if a given object implements the ToolUpdate interface.
|
|
73
|
+
*/
|
|
74
|
+
export declare function instanceOfToolUpdate(value: object): value is ToolUpdate;
|
|
75
|
+
export declare function ToolUpdateFromJSON(json: any): ToolUpdate;
|
|
76
|
+
export declare function ToolUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ToolUpdate;
|
|
77
|
+
export declare function ToolUpdateToJSON(json: any): ToolUpdate;
|
|
78
|
+
export declare function ToolUpdateToJSONTyped(value?: ToolUpdate | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Tivadar AI Backend API
|
|
6
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfToolUpdate = instanceOfToolUpdate;
|
|
17
|
+
exports.ToolUpdateFromJSON = ToolUpdateFromJSON;
|
|
18
|
+
exports.ToolUpdateFromJSONTyped = ToolUpdateFromJSONTyped;
|
|
19
|
+
exports.ToolUpdateToJSON = ToolUpdateToJSON;
|
|
20
|
+
exports.ToolUpdateToJSONTyped = ToolUpdateToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ToolUpdate interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfToolUpdate(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function ToolUpdateFromJSON(json) {
|
|
28
|
+
return ToolUpdateFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function ToolUpdateFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
36
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
37
|
+
'icon': json['icon'] == null ? undefined : json['icon'],
|
|
38
|
+
'feature_key': json['feature_key'] == null ? undefined : json['feature_key'],
|
|
39
|
+
'config_schema': json['config_schema'] == null ? undefined : json['config_schema'],
|
|
40
|
+
'ui_schema': json['ui_schema'] == null ? undefined : json['ui_schema'],
|
|
41
|
+
'secret_fields': json['secret_fields'] == null ? undefined : json['secret_fields'],
|
|
42
|
+
'enabled_globally': json['enabled_globally'] == null ? undefined : json['enabled_globally'],
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function ToolUpdateToJSON(json) {
|
|
46
|
+
return ToolUpdateToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function ToolUpdateToJSONTyped(value, ignoreDiscriminator = false) {
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'label': value['label'],
|
|
54
|
+
'description': value['description'],
|
|
55
|
+
'icon': value['icon'],
|
|
56
|
+
'feature_key': value['feature_key'],
|
|
57
|
+
'config_schema': value['config_schema'],
|
|
58
|
+
'ui_schema': value['ui_schema'],
|
|
59
|
+
'secret_fields': value['secret_fields'],
|
|
60
|
+
'enabled_globally': value['enabled_globally'],
|
|
61
|
+
};
|
|
62
|
+
}
|
|
@@ -24,6 +24,8 @@ exports.UserPreferencesToJSONTyped = UserPreferencesToJSONTyped;
|
|
|
24
24
|
function instanceOfUserPreferences(value) {
|
|
25
25
|
if (!('user_id' in value) || value['user_id'] === undefined)
|
|
26
26
|
return false;
|
|
27
|
+
if (!('preferred_language' in value) || value['preferred_language'] === undefined)
|
|
28
|
+
return false;
|
|
27
29
|
return true;
|
|
28
30
|
}
|
|
29
31
|
function UserPreferencesFromJSON(json) {
|
|
@@ -35,7 +37,7 @@ function UserPreferencesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
37
|
}
|
|
36
38
|
return {
|
|
37
39
|
'user_id': json['user_id'],
|
|
38
|
-
'preferred_language': json['preferred_language']
|
|
40
|
+
'preferred_language': json['preferred_language'],
|
|
39
41
|
};
|
|
40
42
|
}
|
|
41
43
|
function UserPreferencesToJSON(json) {
|
|
@@ -20,7 +20,7 @@ export interface UserPreferencesUpdate {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof UserPreferencesUpdate
|
|
22
22
|
*/
|
|
23
|
-
preferred_language
|
|
23
|
+
preferred_language: string | null;
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
26
|
* Check if a given object implements the UserPreferencesUpdate interface.
|
|
@@ -22,6 +22,8 @@ exports.UserPreferencesUpdateToJSONTyped = UserPreferencesUpdateToJSONTyped;
|
|
|
22
22
|
* Check if a given object implements the UserPreferencesUpdate interface.
|
|
23
23
|
*/
|
|
24
24
|
function instanceOfUserPreferencesUpdate(value) {
|
|
25
|
+
if (!('preferred_language' in value) || value['preferred_language'] === undefined)
|
|
26
|
+
return false;
|
|
25
27
|
return true;
|
|
26
28
|
}
|
|
27
29
|
function UserPreferencesUpdateFromJSON(json) {
|
|
@@ -32,7 +34,7 @@ function UserPreferencesUpdateFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
34
|
return json;
|
|
33
35
|
}
|
|
34
36
|
return {
|
|
35
|
-
'preferred_language': json['preferred_language']
|
|
37
|
+
'preferred_language': json['preferred_language'],
|
|
36
38
|
};
|
|
37
39
|
}
|
|
38
40
|
function UserPreferencesUpdateToJSON(json) {
|