@smartytalent/mcp-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
|
@@ -845,10 +845,26 @@
|
|
|
845
845
|
"type": "string",
|
|
846
846
|
"enum": [
|
|
847
847
|
"twilio",
|
|
848
|
+
"telnyx",
|
|
848
849
|
"external"
|
|
849
850
|
],
|
|
850
851
|
"default": "twilio",
|
|
851
852
|
"description": "Where the number is hosted"
|
|
853
|
+
},
|
|
854
|
+
"capabilities": {
|
|
855
|
+
"type": "object",
|
|
856
|
+
"description": "Channel capabilities of the number. Only honored for provider external (twilio/telnyx read them from the provider); undeclared fields default to false.",
|
|
857
|
+
"properties": {
|
|
858
|
+
"voice": {
|
|
859
|
+
"type": "boolean"
|
|
860
|
+
},
|
|
861
|
+
"sms": {
|
|
862
|
+
"type": "boolean"
|
|
863
|
+
},
|
|
864
|
+
"mms": {
|
|
865
|
+
"type": "boolean"
|
|
866
|
+
}
|
|
867
|
+
}
|
|
852
868
|
}
|
|
853
869
|
},
|
|
854
870
|
"required": [
|