@l7mp/tivadar-ai-api-sdk 0.1.2 → 0.1.3
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/README.md +1213 -172
- package/dist/esm/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInner.d.ts +6 -5
- package/dist/esm/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInner.js +7 -6
- package/dist/esm/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner.d.ts +56 -0
- package/dist/esm/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner.js +49 -0
- package/dist/esm/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInner.d.ts +6 -6
- package/dist/esm/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInner.js +7 -7
- package/dist/esm/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner.d.ts +51 -0
- package/dist/esm/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner.js +48 -0
- package/dist/esm/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner.d.ts +50 -0
- package/dist/esm/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner.js +47 -0
- package/dist/esm/models/index.d.ts +3 -1
- package/dist/esm/models/index.js +3 -1
- package/dist/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInner.d.ts +6 -5
- package/dist/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInner.js +7 -6
- package/dist/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner.d.ts +56 -0
- package/dist/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner.js +56 -0
- package/dist/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInner.d.ts +6 -6
- package/dist/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInner.js +7 -7
- package/dist/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner.d.ts +51 -0
- package/dist/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner.js +55 -0
- package/dist/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner.d.ts +50 -0
- package/dist/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner.js +54 -0
- package/dist/models/index.d.ts +3 -1
- package/dist/models/index.js +3 -1
- package/package.json +1 -1
- package/src/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInner.ts +19 -11
- package/src/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner.ts +97 -0
- package/src/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInner.ts +17 -17
- package/src/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner.ts +97 -0
- package/src/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner.ts +89 -0
- package/src/models/index.ts +3 -1
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner } from './OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -20,19 +21,19 @@ export interface OrganizationsOrganizationIdSttProvidersGet200ResponseInner {
|
|
|
20
21
|
* @type {string}
|
|
21
22
|
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInner
|
|
22
23
|
*/
|
|
23
|
-
|
|
24
|
+
id?: string;
|
|
24
25
|
/**
|
|
25
26
|
*
|
|
26
|
-
* @type {
|
|
27
|
+
* @type {string}
|
|
27
28
|
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInner
|
|
28
29
|
*/
|
|
29
|
-
|
|
30
|
+
label?: string;
|
|
30
31
|
/**
|
|
31
32
|
*
|
|
32
|
-
* @type {Array<
|
|
33
|
+
* @type {Array<OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner>}
|
|
33
34
|
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInner
|
|
34
35
|
*/
|
|
35
|
-
|
|
36
|
+
models?: Array<OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner>;
|
|
36
37
|
}
|
|
37
38
|
/**
|
|
38
39
|
* Check if a given object implements the OrganizationsOrganizationIdSttProvidersGet200ResponseInner interface.
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
+
import { OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSON, OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSON, } from './OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner';
|
|
14
15
|
/**
|
|
15
16
|
* Check if a given object implements the OrganizationsOrganizationIdSttProvidersGet200ResponseInner interface.
|
|
16
17
|
*/
|
|
@@ -25,9 +26,9 @@ export function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerFromJS
|
|
|
25
26
|
return json;
|
|
26
27
|
}
|
|
27
28
|
return {
|
|
28
|
-
'
|
|
29
|
-
'
|
|
30
|
-
'
|
|
29
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
30
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
31
|
+
'models': json['models'] == null ? undefined : (json['models'].map(OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSON)),
|
|
31
32
|
};
|
|
32
33
|
}
|
|
33
34
|
export function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerToJSON(json) {
|
|
@@ -38,8 +39,8 @@ export function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerToJSON
|
|
|
38
39
|
return value;
|
|
39
40
|
}
|
|
40
41
|
return {
|
|
41
|
-
'
|
|
42
|
-
'
|
|
43
|
-
'
|
|
42
|
+
'id': value['id'],
|
|
43
|
+
'label': value['label'],
|
|
44
|
+
'models': value['models'] == null ? undefined : (value['models'].map(OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSON)),
|
|
44
45
|
};
|
|
45
46
|
}
|
package/dist/esm/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner.d.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
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 OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
16
|
+
*/
|
|
17
|
+
export interface OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
22
|
+
*/
|
|
23
|
+
id?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
28
|
+
*/
|
|
29
|
+
label?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Array<string>}
|
|
33
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
34
|
+
*/
|
|
35
|
+
supportedLanguages?: Array<string>;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
40
|
+
*/
|
|
41
|
+
streaming?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
46
|
+
*/
|
|
47
|
+
batch?: boolean;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if a given object implements the OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner interface.
|
|
51
|
+
*/
|
|
52
|
+
export declare function instanceOfOrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner(value: object): value is OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner;
|
|
53
|
+
export declare function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSON(json: any): OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner;
|
|
54
|
+
export declare function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner;
|
|
55
|
+
export declare function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSON(json: any): OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner;
|
|
56
|
+
export declare function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSONTyped(value?: OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner | null, ignoreDiscriminator?: boolean): any;
|
package/dist/esm/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner.js
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Tivadar AI Backend API
|
|
5
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Check if a given object implements the OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfOrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner(value) {
|
|
18
|
+
return true;
|
|
19
|
+
}
|
|
20
|
+
export function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSON(json) {
|
|
21
|
+
return OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSONTyped(json, false);
|
|
22
|
+
}
|
|
23
|
+
export function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
24
|
+
if (json == null) {
|
|
25
|
+
return json;
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
29
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
30
|
+
'supportedLanguages': json['supportedLanguages'] == null ? undefined : json['supportedLanguages'],
|
|
31
|
+
'streaming': json['streaming'] == null ? undefined : json['streaming'],
|
|
32
|
+
'batch': json['batch'] == null ? undefined : json['batch'],
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
export function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSON(json) {
|
|
36
|
+
return OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSONTyped(json, false);
|
|
37
|
+
}
|
|
38
|
+
export function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSONTyped(value, ignoreDiscriminator = false) {
|
|
39
|
+
if (value == null) {
|
|
40
|
+
return value;
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
'id': value['id'],
|
|
44
|
+
'label': value['label'],
|
|
45
|
+
'supportedLanguages': value['supportedLanguages'],
|
|
46
|
+
'streaming': value['streaming'],
|
|
47
|
+
'batch': value['batch'],
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type {
|
|
12
|
+
import type { OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner } from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -21,19 +21,19 @@ export interface OrganizationsOrganizationIdTtsProvidersGet200ResponseInner {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInner
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
id?: string;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {string}
|
|
28
28
|
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInner
|
|
29
29
|
*/
|
|
30
|
-
|
|
30
|
+
label?: string;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
|
-
* @type {Array<
|
|
33
|
+
* @type {Array<OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner>}
|
|
34
34
|
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInner
|
|
35
35
|
*/
|
|
36
|
-
|
|
36
|
+
models?: Array<OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner>;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
39
|
* Check if a given object implements the OrganizationsOrganizationIdTtsProvidersGet200ResponseInner interface.
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
-
import {
|
|
14
|
+
import { OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerFromJSON, OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerToJSON, } from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner';
|
|
15
15
|
/**
|
|
16
16
|
* Check if a given object implements the OrganizationsOrganizationIdTtsProvidersGet200ResponseInner interface.
|
|
17
17
|
*/
|
|
@@ -26,9 +26,9 @@ export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerFromJS
|
|
|
26
26
|
return json;
|
|
27
27
|
}
|
|
28
28
|
return {
|
|
29
|
-
'
|
|
30
|
-
'
|
|
31
|
-
'
|
|
29
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
30
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
31
|
+
'models': json['models'] == null ? undefined : (json['models'].map(OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerFromJSON)),
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
34
|
export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerToJSON(json) {
|
|
@@ -39,8 +39,8 @@ export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerToJSON
|
|
|
39
39
|
return value;
|
|
40
40
|
}
|
|
41
41
|
return {
|
|
42
|
-
'
|
|
43
|
-
'
|
|
44
|
-
'
|
|
42
|
+
'id': value['id'],
|
|
43
|
+
'label': value['label'],
|
|
44
|
+
'models': value['models'] == null ? undefined : (value['models'].map(OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerToJSON)),
|
|
45
45
|
};
|
|
46
46
|
}
|
package/dist/esm/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner.d.ts
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
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
|
+
import type { OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner } from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner
|
|
17
|
+
*/
|
|
18
|
+
export interface OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner
|
|
23
|
+
*/
|
|
24
|
+
id?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner
|
|
29
|
+
*/
|
|
30
|
+
label?: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<string>}
|
|
34
|
+
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner
|
|
35
|
+
*/
|
|
36
|
+
supportedLanguages?: Array<string>;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {Array<OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner>}
|
|
40
|
+
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner
|
|
41
|
+
*/
|
|
42
|
+
voices?: Array<OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner>;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Check if a given object implements the OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner interface.
|
|
46
|
+
*/
|
|
47
|
+
export declare function instanceOfOrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner(value: object): value is OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner;
|
|
48
|
+
export declare function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerFromJSON(json: any): OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner;
|
|
49
|
+
export declare function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner;
|
|
50
|
+
export declare function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerToJSON(json: any): OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner;
|
|
51
|
+
export declare function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerToJSONTyped(value?: OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner | null, ignoreDiscriminator?: boolean): any;
|
package/dist/esm/models/OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Tivadar AI Backend API
|
|
5
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerFromJSON, OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerToJSON, } from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner';
|
|
15
|
+
/**
|
|
16
|
+
* Check if a given object implements the OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner interface.
|
|
17
|
+
*/
|
|
18
|
+
export function instanceOfOrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner(value) {
|
|
19
|
+
return true;
|
|
20
|
+
}
|
|
21
|
+
export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerFromJSON(json) {
|
|
22
|
+
return OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerFromJSONTyped(json, false);
|
|
23
|
+
}
|
|
24
|
+
export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
25
|
+
if (json == null) {
|
|
26
|
+
return json;
|
|
27
|
+
}
|
|
28
|
+
return {
|
|
29
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
30
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
31
|
+
'supportedLanguages': json['supportedLanguages'] == null ? undefined : json['supportedLanguages'],
|
|
32
|
+
'voices': json['voices'] == null ? undefined : (json['voices'].map(OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerFromJSON)),
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerToJSON(json) {
|
|
36
|
+
return OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerToJSONTyped(json, false);
|
|
37
|
+
}
|
|
38
|
+
export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerToJSONTyped(value, ignoreDiscriminator = false) {
|
|
39
|
+
if (value == null) {
|
|
40
|
+
return value;
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
'id': value['id'],
|
|
44
|
+
'label': value['label'],
|
|
45
|
+
'supportedLanguages': value['supportedLanguages'],
|
|
46
|
+
'voices': value['voices'] == null ? undefined : (value['voices'].map(OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerToJSON)),
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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 OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner
|
|
16
|
+
*/
|
|
17
|
+
export interface OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner
|
|
22
|
+
*/
|
|
23
|
+
id?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner
|
|
28
|
+
*/
|
|
29
|
+
label?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner
|
|
34
|
+
*/
|
|
35
|
+
gender?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner
|
|
40
|
+
*/
|
|
41
|
+
previewUrl?: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Check if a given object implements the OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner interface.
|
|
45
|
+
*/
|
|
46
|
+
export declare function instanceOfOrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner(value: object): value is OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner;
|
|
47
|
+
export declare function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerFromJSON(json: any): OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner;
|
|
48
|
+
export declare function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner;
|
|
49
|
+
export declare function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerToJSON(json: any): OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner;
|
|
50
|
+
export declare function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerToJSONTyped(value?: OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Tivadar AI Backend API
|
|
5
|
+
* Unified REST API for Tivadar AI Voice Agents platform
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Check if a given object implements the OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfOrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner(value) {
|
|
18
|
+
return true;
|
|
19
|
+
}
|
|
20
|
+
export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerFromJSON(json) {
|
|
21
|
+
return OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerFromJSONTyped(json, false);
|
|
22
|
+
}
|
|
23
|
+
export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
24
|
+
if (json == null) {
|
|
25
|
+
return json;
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
29
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
30
|
+
'gender': json['gender'] == null ? undefined : json['gender'],
|
|
31
|
+
'previewUrl': json['previewUrl'] == null ? undefined : json['previewUrl'],
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerToJSON(json) {
|
|
35
|
+
return OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerToJSONTyped(json, false);
|
|
36
|
+
}
|
|
37
|
+
export function OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInnerToJSONTyped(value, ignoreDiscriminator = false) {
|
|
38
|
+
if (value == null) {
|
|
39
|
+
return value;
|
|
40
|
+
}
|
|
41
|
+
return {
|
|
42
|
+
'id': value['id'],
|
|
43
|
+
'label': value['label'],
|
|
44
|
+
'gender': value['gender'],
|
|
45
|
+
'previewUrl': value['previewUrl'],
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,8 +36,10 @@ export * from './OrganizationsOrganizationIdEmbeddingProvidersGet200ResponseInne
|
|
|
36
36
|
export * from './OrganizationsOrganizationIdLlmProvidersGet200ResponseInner';
|
|
37
37
|
export * from './OrganizationsOrganizationIdSipDispatchRulesPost200Response';
|
|
38
38
|
export * from './OrganizationsOrganizationIdSttProvidersGet200ResponseInner';
|
|
39
|
+
export * from './OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner';
|
|
39
40
|
export * from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInner';
|
|
40
|
-
export * from './
|
|
41
|
+
export * from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner';
|
|
42
|
+
export * from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner';
|
|
41
43
|
export * from './OrganizationsOrganizationIdVoiceAgentsBasicGet200ResponseInner';
|
|
42
44
|
export * from './PauseSubscriptionRequest';
|
|
43
45
|
export * from './PauseSubscriptionResponse';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -38,8 +38,10 @@ export * from './OrganizationsOrganizationIdEmbeddingProvidersGet200ResponseInne
|
|
|
38
38
|
export * from './OrganizationsOrganizationIdLlmProvidersGet200ResponseInner';
|
|
39
39
|
export * from './OrganizationsOrganizationIdSipDispatchRulesPost200Response';
|
|
40
40
|
export * from './OrganizationsOrganizationIdSttProvidersGet200ResponseInner';
|
|
41
|
+
export * from './OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner';
|
|
41
42
|
export * from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInner';
|
|
42
|
-
export * from './
|
|
43
|
+
export * from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInner';
|
|
44
|
+
export * from './OrganizationsOrganizationIdTtsProvidersGet200ResponseInnerModelsInnerVoicesInner';
|
|
43
45
|
export * from './OrganizationsOrganizationIdVoiceAgentsBasicGet200ResponseInner';
|
|
44
46
|
export * from './PauseSubscriptionRequest';
|
|
45
47
|
export * from './PauseSubscriptionResponse';
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner } from './OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -20,19 +21,19 @@ export interface OrganizationsOrganizationIdSttProvidersGet200ResponseInner {
|
|
|
20
21
|
* @type {string}
|
|
21
22
|
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInner
|
|
22
23
|
*/
|
|
23
|
-
|
|
24
|
+
id?: string;
|
|
24
25
|
/**
|
|
25
26
|
*
|
|
26
|
-
* @type {
|
|
27
|
+
* @type {string}
|
|
27
28
|
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInner
|
|
28
29
|
*/
|
|
29
|
-
|
|
30
|
+
label?: string;
|
|
30
31
|
/**
|
|
31
32
|
*
|
|
32
|
-
* @type {Array<
|
|
33
|
+
* @type {Array<OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner>}
|
|
33
34
|
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInner
|
|
34
35
|
*/
|
|
35
|
-
|
|
36
|
+
models?: Array<OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner>;
|
|
36
37
|
}
|
|
37
38
|
/**
|
|
38
39
|
* Check if a given object implements the OrganizationsOrganizationIdSttProvidersGet200ResponseInner interface.
|
|
@@ -18,6 +18,7 @@ exports.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerFromJSON = Org
|
|
|
18
18
|
exports.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerFromJSONTyped = OrganizationsOrganizationIdSttProvidersGet200ResponseInnerFromJSONTyped;
|
|
19
19
|
exports.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerToJSON = OrganizationsOrganizationIdSttProvidersGet200ResponseInnerToJSON;
|
|
20
20
|
exports.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerToJSONTyped = OrganizationsOrganizationIdSttProvidersGet200ResponseInnerToJSONTyped;
|
|
21
|
+
const OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner_1 = require("./OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner");
|
|
21
22
|
/**
|
|
22
23
|
* Check if a given object implements the OrganizationsOrganizationIdSttProvidersGet200ResponseInner interface.
|
|
23
24
|
*/
|
|
@@ -32,9 +33,9 @@ function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerFromJSONTyped
|
|
|
32
33
|
return json;
|
|
33
34
|
}
|
|
34
35
|
return {
|
|
35
|
-
'
|
|
36
|
-
'
|
|
37
|
-
'
|
|
36
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
37
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
38
|
+
'models': json['models'] == null ? undefined : (json['models'].map(OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner_1.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSON)),
|
|
38
39
|
};
|
|
39
40
|
}
|
|
40
41
|
function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerToJSON(json) {
|
|
@@ -45,8 +46,8 @@ function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerToJSONTyped(v
|
|
|
45
46
|
return value;
|
|
46
47
|
}
|
|
47
48
|
return {
|
|
48
|
-
'
|
|
49
|
-
'
|
|
50
|
-
'
|
|
49
|
+
'id': value['id'],
|
|
50
|
+
'label': value['label'],
|
|
51
|
+
'models': value['models'] == null ? undefined : (value['models'].map(OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner_1.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSON)),
|
|
51
52
|
};
|
|
52
53
|
}
|
package/dist/models/OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner.d.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
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 OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
16
|
+
*/
|
|
17
|
+
export interface OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
22
|
+
*/
|
|
23
|
+
id?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
28
|
+
*/
|
|
29
|
+
label?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Array<string>}
|
|
33
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
34
|
+
*/
|
|
35
|
+
supportedLanguages?: Array<string>;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
40
|
+
*/
|
|
41
|
+
streaming?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner
|
|
46
|
+
*/
|
|
47
|
+
batch?: boolean;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if a given object implements the OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner interface.
|
|
51
|
+
*/
|
|
52
|
+
export declare function instanceOfOrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner(value: object): value is OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner;
|
|
53
|
+
export declare function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSON(json: any): OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner;
|
|
54
|
+
export declare function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner;
|
|
55
|
+
export declare function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSON(json: any): OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner;
|
|
56
|
+
export declare function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSONTyped(value?: OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,56 @@
|
|
|
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.instanceOfOrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner = instanceOfOrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner;
|
|
17
|
+
exports.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSON = OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSON;
|
|
18
|
+
exports.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSONTyped = OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSONTyped;
|
|
19
|
+
exports.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSON = OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSON;
|
|
20
|
+
exports.OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSONTyped = OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfOrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInner(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSON(json) {
|
|
28
|
+
return OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
36
|
+
'label': json['label'] == null ? undefined : json['label'],
|
|
37
|
+
'supportedLanguages': json['supportedLanguages'] == null ? undefined : json['supportedLanguages'],
|
|
38
|
+
'streaming': json['streaming'] == null ? undefined : json['streaming'],
|
|
39
|
+
'batch': json['batch'] == null ? undefined : json['batch'],
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSON(json) {
|
|
43
|
+
return OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
function OrganizationsOrganizationIdSttProvidersGet200ResponseInnerModelsInnerToJSONTyped(value, ignoreDiscriminator = false) {
|
|
46
|
+
if (value == null) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'id': value['id'],
|
|
51
|
+
'label': value['label'],
|
|
52
|
+
'supportedLanguages': value['supportedLanguages'],
|
|
53
|
+
'streaming': value['streaming'],
|
|
54
|
+
'batch': value['batch'],
|
|
55
|
+
};
|
|
56
|
+
}
|