@smartytalent/openai-tools 0.4.6 → 0.4.8
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/tools.json +16 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -825,10 +825,26 @@
|
|
|
825
825
|
"type": "string",
|
|
826
826
|
"enum": [
|
|
827
827
|
"twilio",
|
|
828
|
+
"telnyx",
|
|
828
829
|
"external"
|
|
829
830
|
],
|
|
830
831
|
"default": "twilio",
|
|
831
832
|
"description": "Where the number is hosted"
|
|
833
|
+
},
|
|
834
|
+
"capabilities": {
|
|
835
|
+
"type": "object",
|
|
836
|
+
"description": "Channel capabilities of the number. Only honored for provider external (twilio/telnyx read them from the provider); undeclared fields default to false.",
|
|
837
|
+
"properties": {
|
|
838
|
+
"voice": {
|
|
839
|
+
"type": "boolean"
|
|
840
|
+
},
|
|
841
|
+
"sms": {
|
|
842
|
+
"type": "boolean"
|
|
843
|
+
},
|
|
844
|
+
"mms": {
|
|
845
|
+
"type": "boolean"
|
|
846
|
+
}
|
|
847
|
+
}
|
|
832
848
|
}
|
|
833
849
|
},
|
|
834
850
|
"required": [
|