@l7mp/tivadar-ai-api-sdk 0.2.9 → 0.2.10

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.
@@ -51,6 +51,12 @@ export interface VoiceAgentMetadata {
51
51
  * @memberof VoiceAgentMetadata
52
52
  */
53
53
  runtime_greeting?: string;
54
+ /**
55
+ * TTS playback speed multiplier (1.0 = normal).
56
+ * @type {number}
57
+ * @memberof VoiceAgentMetadata
58
+ */
59
+ playback_speed?: number;
54
60
  }
55
61
  /**
56
62
  * Check if a given object implements the VoiceAgentMetadata interface.
@@ -31,6 +31,7 @@ export function VoiceAgentMetadataFromJSONTyped(json, ignoreDiscriminator) {
31
31
  'runtime_instructions': json['runtime_instructions'] == null ? undefined : json['runtime_instructions'],
32
32
  'display_greeting': json['display_greeting'] == null ? undefined : json['display_greeting'],
33
33
  'runtime_greeting': json['runtime_greeting'] == null ? undefined : json['runtime_greeting'],
34
+ 'playback_speed': json['playback_speed'] == null ? undefined : json['playback_speed'],
34
35
  };
35
36
  }
36
37
  export function VoiceAgentMetadataToJSON(json) {
@@ -47,5 +48,6 @@ export function VoiceAgentMetadataToJSONTyped(value, ignoreDiscriminator = false
47
48
  'runtime_instructions': value['runtime_instructions'],
48
49
  'display_greeting': value['display_greeting'],
49
50
  'runtime_greeting': value['runtime_greeting'],
51
+ 'playback_speed': value['playback_speed'],
50
52
  };
51
53
  }
@@ -51,6 +51,12 @@ export interface VoiceAgentMetadata {
51
51
  * @memberof VoiceAgentMetadata
52
52
  */
53
53
  runtime_greeting?: string;
54
+ /**
55
+ * TTS playback speed multiplier (1.0 = normal).
56
+ * @type {number}
57
+ * @memberof VoiceAgentMetadata
58
+ */
59
+ playback_speed?: number;
54
60
  }
55
61
  /**
56
62
  * Check if a given object implements the VoiceAgentMetadata interface.
@@ -38,6 +38,7 @@ function VoiceAgentMetadataFromJSONTyped(json, ignoreDiscriminator) {
38
38
  'runtime_instructions': json['runtime_instructions'] == null ? undefined : json['runtime_instructions'],
39
39
  'display_greeting': json['display_greeting'] == null ? undefined : json['display_greeting'],
40
40
  'runtime_greeting': json['runtime_greeting'] == null ? undefined : json['runtime_greeting'],
41
+ 'playback_speed': json['playback_speed'] == null ? undefined : json['playback_speed'],
41
42
  };
42
43
  }
43
44
  function VoiceAgentMetadataToJSON(json) {
@@ -54,5 +55,6 @@ function VoiceAgentMetadataToJSONTyped(value, ignoreDiscriminator = false) {
54
55
  'runtime_instructions': value['runtime_instructions'],
55
56
  'display_greeting': value['display_greeting'],
56
57
  'runtime_greeting': value['runtime_greeting'],
58
+ 'playback_speed': value['playback_speed'],
57
59
  };
58
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@l7mp/tivadar-ai-api-sdk",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "TypeScript/JavaScript SDK for Tivadar AI Backend API",
5
5
  "author": "L7mp Technologies",
6
6
  "repository": {
@@ -55,6 +55,12 @@ export interface VoiceAgentMetadata {
55
55
  * @memberof VoiceAgentMetadata
56
56
  */
57
57
  runtime_greeting?: string;
58
+ /**
59
+ * TTS playback speed multiplier (1.0 = normal).
60
+ * @type {number}
61
+ * @memberof VoiceAgentMetadata
62
+ */
63
+ playback_speed?: number;
58
64
  }
59
65
 
60
66
  /**
@@ -80,6 +86,7 @@ export function VoiceAgentMetadataFromJSONTyped(json: any, ignoreDiscriminator:
80
86
  'runtime_instructions': json['runtime_instructions'] == null ? undefined : json['runtime_instructions'],
81
87
  'display_greeting': json['display_greeting'] == null ? undefined : json['display_greeting'],
82
88
  'runtime_greeting': json['runtime_greeting'] == null ? undefined : json['runtime_greeting'],
89
+ 'playback_speed': json['playback_speed'] == null ? undefined : json['playback_speed'],
83
90
  };
84
91
  }
85
92
 
@@ -100,6 +107,7 @@ export function VoiceAgentMetadataToJSONTyped(value?: VoiceAgentMetadata | null,
100
107
  'runtime_instructions': value['runtime_instructions'],
101
108
  'display_greeting': value['display_greeting'],
102
109
  'runtime_greeting': value['runtime_greeting'],
110
+ 'playback_speed': value['playback_speed'],
103
111
  };
104
112
  }
105
113