@smartytalent/openai-tools 0.1.33-dev.63 → 0.1.33-dev.64
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 +20 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -914,7 +914,16 @@
|
|
|
914
914
|
"type": "string"
|
|
915
915
|
},
|
|
916
916
|
"isSystem": {
|
|
917
|
-
"type": "boolean"
|
|
917
|
+
"type": "boolean",
|
|
918
|
+
"description": "Marks tenant-internal system users (admins, integrations, the Boe bot). Distinct from `type` - `isSystem=true` only means 'not a regular end-user'; the human-vs-bot split lives in `type`."
|
|
919
|
+
},
|
|
920
|
+
"type": {
|
|
921
|
+
"type": "string",
|
|
922
|
+
"enum": [
|
|
923
|
+
"human",
|
|
924
|
+
"ai"
|
|
925
|
+
],
|
|
926
|
+
"description": "Discriminator for human-vs-bot users.\n 'ai' - Boe bot user. tenant.relationships.boeUser points at one\n of these per tenant. Drives the createMeetingAttendee\n AI-dispatch decision: principalType=user + user.type='ai'\n makes the meeting service spawn a Fargate bot instead of\n returning Chime join credentials.\n 'human' - regular user (recruiter, observer, candidate-with-account).\n null - legacy rows without the field; treated as 'human' by the\n server (safer default - we'd rather miss a bot dispatch\n than accidentally dispatch a Fargate task for a real human)."
|
|
918
927
|
},
|
|
919
928
|
"address": {
|
|
920
929
|
"type": "object",
|
|
@@ -1173,7 +1182,16 @@
|
|
|
1173
1182
|
"type": "string"
|
|
1174
1183
|
},
|
|
1175
1184
|
"isSystem": {
|
|
1176
|
-
"type": "boolean"
|
|
1185
|
+
"type": "boolean",
|
|
1186
|
+
"description": "Marks tenant-internal system users (admins, integrations, the Boe bot). Distinct from `type` - `isSystem=true` only means 'not a regular end-user'; the human-vs-bot split lives in `type`."
|
|
1187
|
+
},
|
|
1188
|
+
"type": {
|
|
1189
|
+
"type": "string",
|
|
1190
|
+
"enum": [
|
|
1191
|
+
"human",
|
|
1192
|
+
"ai"
|
|
1193
|
+
],
|
|
1194
|
+
"description": "Discriminator for human-vs-bot users.\n 'ai' - Boe bot user. tenant.relationships.boeUser points at one\n of these per tenant. Drives the createMeetingAttendee\n AI-dispatch decision: principalType=user + user.type='ai'\n makes the meeting service spawn a Fargate bot instead of\n returning Chime join credentials.\n 'human' - regular user (recruiter, observer, candidate-with-account).\n null - legacy rows without the field; treated as 'human' by the\n server (safer default - we'd rather miss a bot dispatch\n than accidentally dispatch a Fargate task for a real human)."
|
|
1177
1195
|
},
|
|
1178
1196
|
"address": {
|
|
1179
1197
|
"type": "object",
|