phonic 0.31.3 → 0.31.4
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 +3 -1
- package/package.json +1 -1
- package/reference.md +12 -4
package/README.md
CHANGED
|
@@ -65,7 +65,9 @@ await client.agents.create({
|
|
|
65
65
|
generate_no_input_poke_text: false,
|
|
66
66
|
no_input_poke_sec: 30,
|
|
67
67
|
no_input_poke_text: "Are you still there?",
|
|
68
|
-
|
|
68
|
+
default_language: "en",
|
|
69
|
+
additional_languages: ["es"],
|
|
70
|
+
multilingual_mode: "request",
|
|
69
71
|
boosted_keywords: ["Load ID", "dispatch"],
|
|
70
72
|
configuration_endpoint: {
|
|
71
73
|
url: "https://api.example.com/config",
|
package/package.json
CHANGED
package/reference.md
CHANGED
|
@@ -113,7 +113,9 @@ await client.agents.create({
|
|
|
113
113
|
generate_no_input_poke_text: false,
|
|
114
114
|
no_input_poke_sec: 30,
|
|
115
115
|
no_input_poke_text: "Are you still there?",
|
|
116
|
-
|
|
116
|
+
default_language: "en",
|
|
117
|
+
additional_languages: ["es"],
|
|
118
|
+
multilingual_mode: "request",
|
|
117
119
|
boosted_keywords: ["Load ID", "dispatch"],
|
|
118
120
|
configuration_endpoint: {
|
|
119
121
|
url: "https://api.example.com/config",
|
|
@@ -208,7 +210,9 @@ await client.agents.upsert({
|
|
|
208
210
|
generate_no_input_poke_text: false,
|
|
209
211
|
no_input_poke_sec: 30,
|
|
210
212
|
no_input_poke_text: "Are you still there?",
|
|
211
|
-
|
|
213
|
+
default_language: "en",
|
|
214
|
+
additional_languages: ["es"],
|
|
215
|
+
multilingual_mode: "request",
|
|
212
216
|
boosted_keywords: ["Load ID", "dispatch"],
|
|
213
217
|
configuration_endpoint: {
|
|
214
218
|
url: "https://api.example.com/config",
|
|
@@ -449,7 +453,9 @@ await client.agents.update("nameOrId", {
|
|
|
449
453
|
generate_no_input_poke_text: false,
|
|
450
454
|
no_input_poke_sec: 30,
|
|
451
455
|
no_input_poke_text: "Are you still there?",
|
|
452
|
-
|
|
456
|
+
default_language: "en",
|
|
457
|
+
additional_languages: ["es"],
|
|
458
|
+
multilingual_mode: "request",
|
|
453
459
|
boosted_keywords: ["Load ID", "dispatch"],
|
|
454
460
|
configuration_endpoint: {
|
|
455
461
|
url: "https://api.example.com/config",
|
|
@@ -2178,7 +2184,9 @@ await client.conversations.outboundCall({
|
|
|
2178
2184
|
no_input_poke_sec: 30,
|
|
2179
2185
|
no_input_poke_text: "Are you still there?",
|
|
2180
2186
|
no_input_end_conversation_sec: 180,
|
|
2181
|
-
|
|
2187
|
+
default_language: "en",
|
|
2188
|
+
additional_languages: ["es"],
|
|
2189
|
+
multilingual_mode: "request",
|
|
2182
2190
|
boosted_keywords: ["Load ID", "dispatch"],
|
|
2183
2191
|
tools: ["keypad_input"]
|
|
2184
2192
|
}
|