@smartytalent/openai-tools 0.1.33-dev.31 → 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 +362 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -255,6 +255,24 @@
|
|
|
255
255
|
}
|
|
256
256
|
}
|
|
257
257
|
},
|
|
258
|
+
"boeCalendar": {
|
|
259
|
+
"title": "TenantRelationshipsBoeCalendarSchema",
|
|
260
|
+
"type": "object",
|
|
261
|
+
"description": "Boe's primary calendar. Denormalized here so workflow seeds and FE can resolve it in one tenant fetch instead of a list_calendars round trip. Mirror of boeUser semantics: written by tenant onboarding / workflow seeding, not client-writable via tenant PATCH. May be null on tenants provisioned before boe calendars existed - fall back to GET /v1/calendars?filterOwnerId=boeUserId.",
|
|
262
|
+
"properties": {
|
|
263
|
+
"data": {
|
|
264
|
+
"type": "object",
|
|
265
|
+
"properties": {
|
|
266
|
+
"type": {
|
|
267
|
+
"type": "string"
|
|
268
|
+
},
|
|
269
|
+
"id": {
|
|
270
|
+
"type": "string"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
},
|
|
258
276
|
"feedbacks": {
|
|
259
277
|
"title": "TenantRelationshipsFeedbacksSchema",
|
|
260
278
|
"type": "object",
|
|
@@ -540,6 +558,24 @@
|
|
|
540
558
|
}
|
|
541
559
|
}
|
|
542
560
|
},
|
|
561
|
+
"boeCalendar": {
|
|
562
|
+
"title": "TenantRelationshipsBoeCalendarSchema",
|
|
563
|
+
"type": "object",
|
|
564
|
+
"description": "Boe's primary calendar. Denormalized here so workflow seeds and FE can resolve it in one tenant fetch instead of a list_calendars round trip. Mirror of boeUser semantics: written by tenant onboarding / workflow seeding, not client-writable via tenant PATCH. May be null on tenants provisioned before boe calendars existed - fall back to GET /v1/calendars?filterOwnerId=boeUserId.",
|
|
565
|
+
"properties": {
|
|
566
|
+
"data": {
|
|
567
|
+
"type": "object",
|
|
568
|
+
"properties": {
|
|
569
|
+
"type": {
|
|
570
|
+
"type": "string"
|
|
571
|
+
},
|
|
572
|
+
"id": {
|
|
573
|
+
"type": "string"
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
},
|
|
543
579
|
"feedbacks": {
|
|
544
580
|
"title": "TenantRelationshipsFeedbacksSchema",
|
|
545
581
|
"type": "object",
|
|
@@ -13813,6 +13849,89 @@
|
|
|
13813
13849
|
"duration": {
|
|
13814
13850
|
"type": "integer"
|
|
13815
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
|
+
},
|
|
13816
13935
|
"mediaRegion": {
|
|
13817
13936
|
"type": "string"
|
|
13818
13937
|
},
|
|
@@ -13880,6 +13999,78 @@
|
|
|
13880
13999
|
}
|
|
13881
14000
|
}
|
|
13882
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
|
+
}
|
|
13883
14074
|
}
|
|
13884
14075
|
}
|
|
13885
14076
|
}
|
|
@@ -13958,6 +14149,89 @@
|
|
|
13958
14149
|
"duration": {
|
|
13959
14150
|
"type": "integer"
|
|
13960
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
|
+
},
|
|
13961
14235
|
"mediaRegion": {
|
|
13962
14236
|
"type": "string"
|
|
13963
14237
|
},
|
|
@@ -16488,6 +16762,36 @@
|
|
|
16488
16762
|
}
|
|
16489
16763
|
}
|
|
16490
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
|
+
},
|
|
16491
16795
|
{
|
|
16492
16796
|
"type": "function",
|
|
16493
16797
|
"function": {
|
|
@@ -17502,7 +17806,35 @@
|
|
|
17502
17806
|
"type": "integer"
|
|
17503
17807
|
},
|
|
17504
17808
|
"workingHours": {
|
|
17505
|
-
"
|
|
17809
|
+
"title": "CalendarWorkingHoursSchema",
|
|
17810
|
+
"type": "object",
|
|
17811
|
+
"description": "Recurring weekly schedule. days[] uses tokens (mon/tue/wed/thu/fri/sat/sun); startHour/endHour are local 24h numbers. Single type used by Calendar read/create/update so PATCH callers get the same autocomplete as readers.",
|
|
17812
|
+
"properties": {
|
|
17813
|
+
"timezone": {
|
|
17814
|
+
"type": "string"
|
|
17815
|
+
},
|
|
17816
|
+
"days": {
|
|
17817
|
+
"type": "array",
|
|
17818
|
+
"items": {
|
|
17819
|
+
"type": "string",
|
|
17820
|
+
"enum": [
|
|
17821
|
+
"mon",
|
|
17822
|
+
"tue",
|
|
17823
|
+
"wed",
|
|
17824
|
+
"thu",
|
|
17825
|
+
"fri",
|
|
17826
|
+
"sat",
|
|
17827
|
+
"sun"
|
|
17828
|
+
]
|
|
17829
|
+
}
|
|
17830
|
+
},
|
|
17831
|
+
"startHour": {
|
|
17832
|
+
"type": "integer"
|
|
17833
|
+
},
|
|
17834
|
+
"endHour": {
|
|
17835
|
+
"type": "integer"
|
|
17836
|
+
}
|
|
17837
|
+
}
|
|
17506
17838
|
}
|
|
17507
17839
|
}
|
|
17508
17840
|
}
|
|
@@ -17570,7 +17902,35 @@
|
|
|
17570
17902
|
"type": "integer"
|
|
17571
17903
|
},
|
|
17572
17904
|
"workingHours": {
|
|
17573
|
-
"
|
|
17905
|
+
"title": "CalendarWorkingHoursSchema",
|
|
17906
|
+
"type": "object",
|
|
17907
|
+
"description": "Recurring weekly schedule. days[] uses tokens (mon/tue/wed/thu/fri/sat/sun); startHour/endHour are local 24h numbers. Single type used by Calendar read/create/update so PATCH callers get the same autocomplete as readers.",
|
|
17908
|
+
"properties": {
|
|
17909
|
+
"timezone": {
|
|
17910
|
+
"type": "string"
|
|
17911
|
+
},
|
|
17912
|
+
"days": {
|
|
17913
|
+
"type": "array",
|
|
17914
|
+
"items": {
|
|
17915
|
+
"type": "string",
|
|
17916
|
+
"enum": [
|
|
17917
|
+
"mon",
|
|
17918
|
+
"tue",
|
|
17919
|
+
"wed",
|
|
17920
|
+
"thu",
|
|
17921
|
+
"fri",
|
|
17922
|
+
"sat",
|
|
17923
|
+
"sun"
|
|
17924
|
+
]
|
|
17925
|
+
}
|
|
17926
|
+
},
|
|
17927
|
+
"startHour": {
|
|
17928
|
+
"type": "integer"
|
|
17929
|
+
},
|
|
17930
|
+
"endHour": {
|
|
17931
|
+
"type": "integer"
|
|
17932
|
+
}
|
|
17933
|
+
}
|
|
17574
17934
|
}
|
|
17575
17935
|
}
|
|
17576
17936
|
}
|