@smartytalent/openai-tools 0.1.33-dev.32 → 0.1.33-dev.33
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 +268 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -13849,6 +13849,89 @@
|
|
|
13849
13849
|
"duration": {
|
|
13850
13850
|
"type": "integer"
|
|
13851
13851
|
},
|
|
13852
|
+
"meetingType": {
|
|
13853
|
+
"type": "string",
|
|
13854
|
+
"enum": [
|
|
13855
|
+
"chime",
|
|
13856
|
+
"recall",
|
|
13857
|
+
"external"
|
|
13858
|
+
],
|
|
13859
|
+
"description": "Meeting kind. `chime` = in-product Chime SDK session; `recall` = third-party meeting (Zoom/Meet/Teams/Webex) where a recall.ai bot joins to record + transcribe; `external` = third-party meeting tracked on calendar without a bot."
|
|
13860
|
+
},
|
|
13861
|
+
"provider": {
|
|
13862
|
+
"type": "string",
|
|
13863
|
+
"enum": [
|
|
13864
|
+
"chime",
|
|
13865
|
+
"zoom",
|
|
13866
|
+
"meet",
|
|
13867
|
+
"teams",
|
|
13868
|
+
"webex",
|
|
13869
|
+
"other"
|
|
13870
|
+
],
|
|
13871
|
+
"description": "Where the meeting actually runs. Drives URL parsing and bot dispatch capability."
|
|
13872
|
+
},
|
|
13873
|
+
"joinUrl": {
|
|
13874
|
+
"type": "string",
|
|
13875
|
+
"description": "Third-party meeting URL (Zoom/Meet/Teams/Webex). Null on chime meetings."
|
|
13876
|
+
},
|
|
13877
|
+
"joinPassword": {
|
|
13878
|
+
"type": "string",
|
|
13879
|
+
"description": "Optional passcode (most often Zoom)."
|
|
13880
|
+
},
|
|
13881
|
+
"sourceType": {
|
|
13882
|
+
"type": "string",
|
|
13883
|
+
"description": "Originating resource type. `emails` when the invite arrived via email; null for manually created meetings."
|
|
13884
|
+
},
|
|
13885
|
+
"sourceId": {
|
|
13886
|
+
"type": "string",
|
|
13887
|
+
"description": "ID of the source resource (e.g. emailId)."
|
|
13888
|
+
},
|
|
13889
|
+
"recall": {
|
|
13890
|
+
"title": "MeetingRecallSchema",
|
|
13891
|
+
"type": "object",
|
|
13892
|
+
"description": "recall.ai bot session metadata. Only populated on meetingType=recall.",
|
|
13893
|
+
"properties": {
|
|
13894
|
+
"botId": {
|
|
13895
|
+
"type": "string",
|
|
13896
|
+
"description": "recall.ai's identifier for the dispatched bot."
|
|
13897
|
+
},
|
|
13898
|
+
"botStatus": {
|
|
13899
|
+
"type": "string",
|
|
13900
|
+
"enum": [
|
|
13901
|
+
"idle",
|
|
13902
|
+
"dispatched",
|
|
13903
|
+
"joined",
|
|
13904
|
+
"recording",
|
|
13905
|
+
"ended",
|
|
13906
|
+
"failed"
|
|
13907
|
+
],
|
|
13908
|
+
"description": "Bot lifecycle. Drives the workflow's wait-for-end step."
|
|
13909
|
+
},
|
|
13910
|
+
"joinedAt": {
|
|
13911
|
+
"type": "string",
|
|
13912
|
+
"format": "date-time"
|
|
13913
|
+
},
|
|
13914
|
+
"endedAt": {
|
|
13915
|
+
"type": "string",
|
|
13916
|
+
"format": "date-time"
|
|
13917
|
+
},
|
|
13918
|
+
"webhookId": {
|
|
13919
|
+
"type": "string",
|
|
13920
|
+
"description": "Identifier returned by recall.ai for the webhook subscription, useful for debugging callback delivery."
|
|
13921
|
+
}
|
|
13922
|
+
}
|
|
13923
|
+
},
|
|
13924
|
+
"recordingUrl": {
|
|
13925
|
+
"type": "string",
|
|
13926
|
+
"description": "Post-meeting recording URL (recall.ai-hosted or copied to S3). Populated by the webhook handler after the bot finishes."
|
|
13927
|
+
},
|
|
13928
|
+
"transcript": {
|
|
13929
|
+
"type": "object",
|
|
13930
|
+
"description": "Post-meeting transcript. Multilingual dict like calls: { langCode: text }.",
|
|
13931
|
+
"additionalProperties": {
|
|
13932
|
+
"type": "string"
|
|
13933
|
+
}
|
|
13934
|
+
},
|
|
13852
13935
|
"mediaRegion": {
|
|
13853
13936
|
"type": "string"
|
|
13854
13937
|
},
|
|
@@ -13916,6 +13999,78 @@
|
|
|
13916
13999
|
}
|
|
13917
14000
|
}
|
|
13918
14001
|
}
|
|
14002
|
+
},
|
|
14003
|
+
"calendar": {
|
|
14004
|
+
"title": "MeetingRelationshipsCalendarSchema",
|
|
14005
|
+
"type": "object",
|
|
14006
|
+
"description": "Calendar this meeting is booked on. Typically boe.calendar for recall meetings, or a shared room calendar for chime.",
|
|
14007
|
+
"properties": {
|
|
14008
|
+
"data": {
|
|
14009
|
+
"type": "object",
|
|
14010
|
+
"properties": {
|
|
14011
|
+
"type": {
|
|
14012
|
+
"type": "string"
|
|
14013
|
+
},
|
|
14014
|
+
"id": {
|
|
14015
|
+
"type": "string"
|
|
14016
|
+
}
|
|
14017
|
+
}
|
|
14018
|
+
}
|
|
14019
|
+
}
|
|
14020
|
+
},
|
|
14021
|
+
"conversation": {
|
|
14022
|
+
"title": "MeetingRelationshipsConversationSchema",
|
|
14023
|
+
"type": "object",
|
|
14024
|
+
"description": "Conversation this meeting is threaded into. The post-meeting AI summary lands as a comment on this conversation.",
|
|
14025
|
+
"properties": {
|
|
14026
|
+
"data": {
|
|
14027
|
+
"type": "object",
|
|
14028
|
+
"properties": {
|
|
14029
|
+
"type": {
|
|
14030
|
+
"type": "string"
|
|
14031
|
+
},
|
|
14032
|
+
"id": {
|
|
14033
|
+
"type": "string"
|
|
14034
|
+
}
|
|
14035
|
+
}
|
|
14036
|
+
}
|
|
14037
|
+
}
|
|
14038
|
+
},
|
|
14039
|
+
"candidate": {
|
|
14040
|
+
"title": "MeetingRelationshipsCandidateSchema",
|
|
14041
|
+
"type": "object",
|
|
14042
|
+
"description": "Candidate the meeting is about, when known (e.g. interview).",
|
|
14043
|
+
"properties": {
|
|
14044
|
+
"data": {
|
|
14045
|
+
"type": "object",
|
|
14046
|
+
"properties": {
|
|
14047
|
+
"type": {
|
|
14048
|
+
"type": "string"
|
|
14049
|
+
},
|
|
14050
|
+
"id": {
|
|
14051
|
+
"type": "string"
|
|
14052
|
+
}
|
|
14053
|
+
}
|
|
14054
|
+
}
|
|
14055
|
+
}
|
|
14056
|
+
},
|
|
14057
|
+
"talent": {
|
|
14058
|
+
"title": "MeetingRelationshipsTalentSchema",
|
|
14059
|
+
"type": "object",
|
|
14060
|
+
"description": "Talent the meeting is about, when known.",
|
|
14061
|
+
"properties": {
|
|
14062
|
+
"data": {
|
|
14063
|
+
"type": "object",
|
|
14064
|
+
"properties": {
|
|
14065
|
+
"type": {
|
|
14066
|
+
"type": "string"
|
|
14067
|
+
},
|
|
14068
|
+
"id": {
|
|
14069
|
+
"type": "string"
|
|
14070
|
+
}
|
|
14071
|
+
}
|
|
14072
|
+
}
|
|
14073
|
+
}
|
|
13919
14074
|
}
|
|
13920
14075
|
}
|
|
13921
14076
|
}
|
|
@@ -13994,6 +14149,89 @@
|
|
|
13994
14149
|
"duration": {
|
|
13995
14150
|
"type": "integer"
|
|
13996
14151
|
},
|
|
14152
|
+
"meetingType": {
|
|
14153
|
+
"type": "string",
|
|
14154
|
+
"enum": [
|
|
14155
|
+
"chime",
|
|
14156
|
+
"recall",
|
|
14157
|
+
"external"
|
|
14158
|
+
],
|
|
14159
|
+
"description": "Meeting kind. `chime` = in-product Chime SDK session; `recall` = third-party meeting (Zoom/Meet/Teams/Webex) where a recall.ai bot joins to record + transcribe; `external` = third-party meeting tracked on calendar without a bot."
|
|
14160
|
+
},
|
|
14161
|
+
"provider": {
|
|
14162
|
+
"type": "string",
|
|
14163
|
+
"enum": [
|
|
14164
|
+
"chime",
|
|
14165
|
+
"zoom",
|
|
14166
|
+
"meet",
|
|
14167
|
+
"teams",
|
|
14168
|
+
"webex",
|
|
14169
|
+
"other"
|
|
14170
|
+
],
|
|
14171
|
+
"description": "Where the meeting actually runs. Drives URL parsing and bot dispatch capability."
|
|
14172
|
+
},
|
|
14173
|
+
"joinUrl": {
|
|
14174
|
+
"type": "string",
|
|
14175
|
+
"description": "Third-party meeting URL (Zoom/Meet/Teams/Webex). Null on chime meetings."
|
|
14176
|
+
},
|
|
14177
|
+
"joinPassword": {
|
|
14178
|
+
"type": "string",
|
|
14179
|
+
"description": "Optional passcode (most often Zoom)."
|
|
14180
|
+
},
|
|
14181
|
+
"sourceType": {
|
|
14182
|
+
"type": "string",
|
|
14183
|
+
"description": "Originating resource type. `emails` when the invite arrived via email; null for manually created meetings."
|
|
14184
|
+
},
|
|
14185
|
+
"sourceId": {
|
|
14186
|
+
"type": "string",
|
|
14187
|
+
"description": "ID of the source resource (e.g. emailId)."
|
|
14188
|
+
},
|
|
14189
|
+
"recall": {
|
|
14190
|
+
"title": "MeetingRecallSchema",
|
|
14191
|
+
"type": "object",
|
|
14192
|
+
"description": "recall.ai bot session metadata. Only populated on meetingType=recall.",
|
|
14193
|
+
"properties": {
|
|
14194
|
+
"botId": {
|
|
14195
|
+
"type": "string",
|
|
14196
|
+
"description": "recall.ai's identifier for the dispatched bot."
|
|
14197
|
+
},
|
|
14198
|
+
"botStatus": {
|
|
14199
|
+
"type": "string",
|
|
14200
|
+
"enum": [
|
|
14201
|
+
"idle",
|
|
14202
|
+
"dispatched",
|
|
14203
|
+
"joined",
|
|
14204
|
+
"recording",
|
|
14205
|
+
"ended",
|
|
14206
|
+
"failed"
|
|
14207
|
+
],
|
|
14208
|
+
"description": "Bot lifecycle. Drives the workflow's wait-for-end step."
|
|
14209
|
+
},
|
|
14210
|
+
"joinedAt": {
|
|
14211
|
+
"type": "string",
|
|
14212
|
+
"format": "date-time"
|
|
14213
|
+
},
|
|
14214
|
+
"endedAt": {
|
|
14215
|
+
"type": "string",
|
|
14216
|
+
"format": "date-time"
|
|
14217
|
+
},
|
|
14218
|
+
"webhookId": {
|
|
14219
|
+
"type": "string",
|
|
14220
|
+
"description": "Identifier returned by recall.ai for the webhook subscription, useful for debugging callback delivery."
|
|
14221
|
+
}
|
|
14222
|
+
}
|
|
14223
|
+
},
|
|
14224
|
+
"recordingUrl": {
|
|
14225
|
+
"type": "string",
|
|
14226
|
+
"description": "Post-meeting recording URL (recall.ai-hosted or copied to S3). Populated by the webhook handler after the bot finishes."
|
|
14227
|
+
},
|
|
14228
|
+
"transcript": {
|
|
14229
|
+
"type": "object",
|
|
14230
|
+
"description": "Post-meeting transcript. Multilingual dict like calls: { langCode: text }.",
|
|
14231
|
+
"additionalProperties": {
|
|
14232
|
+
"type": "string"
|
|
14233
|
+
}
|
|
14234
|
+
},
|
|
13997
14235
|
"mediaRegion": {
|
|
13998
14236
|
"type": "string"
|
|
13999
14237
|
},
|
|
@@ -16524,6 +16762,36 @@
|
|
|
16524
16762
|
}
|
|
16525
16763
|
}
|
|
16526
16764
|
},
|
|
16765
|
+
{
|
|
16766
|
+
"type": "function",
|
|
16767
|
+
"function": {
|
|
16768
|
+
"name": "recall_webhook",
|
|
16769
|
+
"description": "Recall.ai bot lifecycle webhook",
|
|
16770
|
+
"parameters": {
|
|
16771
|
+
"type": "object",
|
|
16772
|
+
"properties": {
|
|
16773
|
+
"event": {
|
|
16774
|
+
"type": "string",
|
|
16775
|
+
"description": "Recall lifecycle event type (e.g. bot.done, bot.in_call_recording, bot.fatal)."
|
|
16776
|
+
},
|
|
16777
|
+
"data": {
|
|
16778
|
+
"type": "object"
|
|
16779
|
+
}
|
|
16780
|
+
}
|
|
16781
|
+
}
|
|
16782
|
+
}
|
|
16783
|
+
},
|
|
16784
|
+
{
|
|
16785
|
+
"type": "function",
|
|
16786
|
+
"function": {
|
|
16787
|
+
"name": "recall_webhook_options",
|
|
16788
|
+
"description": "Recall webhook CORS preflight",
|
|
16789
|
+
"parameters": {
|
|
16790
|
+
"type": "object",
|
|
16791
|
+
"properties": {}
|
|
16792
|
+
}
|
|
16793
|
+
}
|
|
16794
|
+
},
|
|
16527
16795
|
{
|
|
16528
16796
|
"type": "function",
|
|
16529
16797
|
"function": {
|