@smartytalent/openai-tools 0.1.33-dev.32 → 0.1.33-dev.34

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