@smartytalent/mcp-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
|
@@ -942,7 +942,16 @@
|
|
|
942
942
|
"type": "string"
|
|
943
943
|
},
|
|
944
944
|
"isSystem": {
|
|
945
|
-
"type": "boolean"
|
|
945
|
+
"type": "boolean",
|
|
946
|
+
"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`."
|
|
947
|
+
},
|
|
948
|
+
"type": {
|
|
949
|
+
"type": "string",
|
|
950
|
+
"enum": [
|
|
951
|
+
"human",
|
|
952
|
+
"ai"
|
|
953
|
+
],
|
|
954
|
+
"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)."
|
|
946
955
|
},
|
|
947
956
|
"address": {
|
|
948
957
|
"type": "object",
|
|
@@ -1207,7 +1216,16 @@
|
|
|
1207
1216
|
"type": "string"
|
|
1208
1217
|
},
|
|
1209
1218
|
"isSystem": {
|
|
1210
|
-
"type": "boolean"
|
|
1219
|
+
"type": "boolean",
|
|
1220
|
+
"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`."
|
|
1221
|
+
},
|
|
1222
|
+
"type": {
|
|
1223
|
+
"type": "string",
|
|
1224
|
+
"enum": [
|
|
1225
|
+
"human",
|
|
1226
|
+
"ai"
|
|
1227
|
+
],
|
|
1228
|
+
"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)."
|
|
1211
1229
|
},
|
|
1212
1230
|
"address": {
|
|
1213
1231
|
"type": "object",
|