@smartytalent/openai-tools 0.4.9 → 0.4.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.
- package/dist/tools.json +148 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -203,12 +203,86 @@
|
|
|
203
203
|
"type": "string",
|
|
204
204
|
"description": "Twilio phone number SID"
|
|
205
205
|
},
|
|
206
|
+
"phoneNumber": {
|
|
207
|
+
"type": "string",
|
|
208
|
+
"description": "Provisioned phone number for non-twilio providers (telnyx/external)"
|
|
209
|
+
},
|
|
210
|
+
"telnyxPhoneNumberId": {
|
|
211
|
+
"type": "string",
|
|
212
|
+
"description": "Telnyx phone number id (provider telnyx)"
|
|
213
|
+
},
|
|
214
|
+
"provider": {
|
|
215
|
+
"type": "string",
|
|
216
|
+
"enum": [
|
|
217
|
+
"twilio",
|
|
218
|
+
"telnyx",
|
|
219
|
+
"external"
|
|
220
|
+
],
|
|
221
|
+
"description": "Which provider hosts the calling number"
|
|
222
|
+
},
|
|
223
|
+
"capabilities": {
|
|
224
|
+
"type": "object",
|
|
225
|
+
"description": "Capability snapshot of the calling number, stamped at assign. Absent on pre-capability assignments.",
|
|
226
|
+
"properties": {
|
|
227
|
+
"voice": {
|
|
228
|
+
"type": "boolean"
|
|
229
|
+
},
|
|
230
|
+
"sms": {
|
|
231
|
+
"type": "boolean"
|
|
232
|
+
},
|
|
233
|
+
"mms": {
|
|
234
|
+
"type": "boolean"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
},
|
|
206
238
|
"provisionedAt": {
|
|
207
239
|
"type": "string",
|
|
208
240
|
"format": "date-time",
|
|
209
241
|
"description": "When calling was provisioned"
|
|
210
242
|
}
|
|
211
243
|
}
|
|
244
|
+
},
|
|
245
|
+
"messaging": {
|
|
246
|
+
"type": "object",
|
|
247
|
+
"description": "Optional dedicated SMS number (messaging slot). Absent = SMS rides the calling number. Outbound SMS prefers this number; it is never a voice caller-ID and never the virtual employee's phone.",
|
|
248
|
+
"properties": {
|
|
249
|
+
"phoneNumber": {
|
|
250
|
+
"type": "string",
|
|
251
|
+
"description": "The dedicated SMS number (E.164)"
|
|
252
|
+
},
|
|
253
|
+
"provider": {
|
|
254
|
+
"type": "string",
|
|
255
|
+
"enum": [
|
|
256
|
+
"twilio",
|
|
257
|
+
"telnyx",
|
|
258
|
+
"external"
|
|
259
|
+
]
|
|
260
|
+
},
|
|
261
|
+
"twilioPhoneSid": {
|
|
262
|
+
"type": "string"
|
|
263
|
+
},
|
|
264
|
+
"telnyxPhoneNumberId": {
|
|
265
|
+
"type": "string"
|
|
266
|
+
},
|
|
267
|
+
"enabled": {
|
|
268
|
+
"type": "boolean"
|
|
269
|
+
},
|
|
270
|
+
"capabilities": {
|
|
271
|
+
"type": "object",
|
|
272
|
+
"description": "Capability snapshot stamped at assign",
|
|
273
|
+
"properties": {
|
|
274
|
+
"voice": {
|
|
275
|
+
"type": "boolean"
|
|
276
|
+
},
|
|
277
|
+
"sms": {
|
|
278
|
+
"type": "boolean"
|
|
279
|
+
},
|
|
280
|
+
"mms": {
|
|
281
|
+
"type": "boolean"
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
212
286
|
}
|
|
213
287
|
}
|
|
214
288
|
},
|
|
@@ -523,12 +597,86 @@
|
|
|
523
597
|
"type": "string",
|
|
524
598
|
"description": "Twilio phone number SID"
|
|
525
599
|
},
|
|
600
|
+
"phoneNumber": {
|
|
601
|
+
"type": "string",
|
|
602
|
+
"description": "Provisioned phone number for non-twilio providers (telnyx/external)"
|
|
603
|
+
},
|
|
604
|
+
"telnyxPhoneNumberId": {
|
|
605
|
+
"type": "string",
|
|
606
|
+
"description": "Telnyx phone number id (provider telnyx)"
|
|
607
|
+
},
|
|
608
|
+
"provider": {
|
|
609
|
+
"type": "string",
|
|
610
|
+
"enum": [
|
|
611
|
+
"twilio",
|
|
612
|
+
"telnyx",
|
|
613
|
+
"external"
|
|
614
|
+
],
|
|
615
|
+
"description": "Which provider hosts the calling number"
|
|
616
|
+
},
|
|
617
|
+
"capabilities": {
|
|
618
|
+
"type": "object",
|
|
619
|
+
"description": "Capability snapshot of the calling number, stamped at assign. Absent on pre-capability assignments.",
|
|
620
|
+
"properties": {
|
|
621
|
+
"voice": {
|
|
622
|
+
"type": "boolean"
|
|
623
|
+
},
|
|
624
|
+
"sms": {
|
|
625
|
+
"type": "boolean"
|
|
626
|
+
},
|
|
627
|
+
"mms": {
|
|
628
|
+
"type": "boolean"
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
},
|
|
526
632
|
"provisionedAt": {
|
|
527
633
|
"type": "string",
|
|
528
634
|
"format": "date-time",
|
|
529
635
|
"description": "When calling was provisioned"
|
|
530
636
|
}
|
|
531
637
|
}
|
|
638
|
+
},
|
|
639
|
+
"messaging": {
|
|
640
|
+
"type": "object",
|
|
641
|
+
"description": "Optional dedicated SMS number (messaging slot). Absent = SMS rides the calling number. Outbound SMS prefers this number; it is never a voice caller-ID and never the virtual employee's phone.",
|
|
642
|
+
"properties": {
|
|
643
|
+
"phoneNumber": {
|
|
644
|
+
"type": "string",
|
|
645
|
+
"description": "The dedicated SMS number (E.164)"
|
|
646
|
+
},
|
|
647
|
+
"provider": {
|
|
648
|
+
"type": "string",
|
|
649
|
+
"enum": [
|
|
650
|
+
"twilio",
|
|
651
|
+
"telnyx",
|
|
652
|
+
"external"
|
|
653
|
+
]
|
|
654
|
+
},
|
|
655
|
+
"twilioPhoneSid": {
|
|
656
|
+
"type": "string"
|
|
657
|
+
},
|
|
658
|
+
"telnyxPhoneNumberId": {
|
|
659
|
+
"type": "string"
|
|
660
|
+
},
|
|
661
|
+
"enabled": {
|
|
662
|
+
"type": "boolean"
|
|
663
|
+
},
|
|
664
|
+
"capabilities": {
|
|
665
|
+
"type": "object",
|
|
666
|
+
"description": "Capability snapshot stamped at assign",
|
|
667
|
+
"properties": {
|
|
668
|
+
"voice": {
|
|
669
|
+
"type": "boolean"
|
|
670
|
+
},
|
|
671
|
+
"sms": {
|
|
672
|
+
"type": "boolean"
|
|
673
|
+
},
|
|
674
|
+
"mms": {
|
|
675
|
+
"type": "boolean"
|
|
676
|
+
}
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
}
|
|
532
680
|
}
|
|
533
681
|
}
|
|
534
682
|
},
|