@smartytalent/openai-tools 0.4.9 → 0.4.11
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 +189 -2
- 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
|
},
|
|
@@ -17781,7 +17929,7 @@
|
|
|
17781
17929
|
},
|
|
17782
17930
|
"source": {
|
|
17783
17931
|
"type": "string",
|
|
17784
|
-
"description": "Derived server-side from the event prefix (erecruiter, lever). Read-only."
|
|
17932
|
+
"description": "Derived server-side from the event prefix (erecruiter, lever, teamtailor). Read-only."
|
|
17785
17933
|
},
|
|
17786
17934
|
"status": {
|
|
17787
17935
|
"type": "string",
|
|
@@ -17931,7 +18079,7 @@
|
|
|
17931
18079
|
},
|
|
17932
18080
|
"source": {
|
|
17933
18081
|
"type": "string",
|
|
17934
|
-
"description": "Derived server-side from the event prefix (erecruiter, lever). Read-only."
|
|
18082
|
+
"description": "Derived server-side from the event prefix (erecruiter, lever, teamtailor). Read-only."
|
|
17935
18083
|
},
|
|
17936
18084
|
"status": {
|
|
17937
18085
|
"type": "string",
|
|
@@ -17991,6 +18139,45 @@
|
|
|
17991
18139
|
}
|
|
17992
18140
|
}
|
|
17993
18141
|
},
|
|
18142
|
+
{
|
|
18143
|
+
"type": "function",
|
|
18144
|
+
"function": {
|
|
18145
|
+
"name": "teamtailor_webhook",
|
|
18146
|
+
"description": "Teamtailor Company Webhook",
|
|
18147
|
+
"parameters": {
|
|
18148
|
+
"type": "object",
|
|
18149
|
+
"properties": {
|
|
18150
|
+
"payload": {
|
|
18151
|
+
"type": "object",
|
|
18152
|
+
"properties": {
|
|
18153
|
+
"event_name": {
|
|
18154
|
+
"type": "string",
|
|
18155
|
+
"description": "Teamtailor event, e.g. job_application.create."
|
|
18156
|
+
},
|
|
18157
|
+
"data": {
|
|
18158
|
+
"type": "object"
|
|
18159
|
+
}
|
|
18160
|
+
}
|
|
18161
|
+
},
|
|
18162
|
+
"signature": {
|
|
18163
|
+
"type": "string",
|
|
18164
|
+
"description": "Legacy v1 payload signature; verification uses the TT-Signature header (v2)."
|
|
18165
|
+
}
|
|
18166
|
+
}
|
|
18167
|
+
}
|
|
18168
|
+
}
|
|
18169
|
+
},
|
|
18170
|
+
{
|
|
18171
|
+
"type": "function",
|
|
18172
|
+
"function": {
|
|
18173
|
+
"name": "teamtailor_webhook_options",
|
|
18174
|
+
"description": "Teamtailor webhook CORS preflight",
|
|
18175
|
+
"parameters": {
|
|
18176
|
+
"type": "object",
|
|
18177
|
+
"properties": {}
|
|
18178
|
+
}
|
|
18179
|
+
}
|
|
18180
|
+
},
|
|
17994
18181
|
{
|
|
17995
18182
|
"type": "function",
|
|
17996
18183
|
"function": {
|