@smartytalent/openai-tools 0.1.30 → 0.1.32
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 +78 -3
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -237,6 +237,24 @@
|
|
|
237
237
|
"title": "TenantRelationshipsSchema",
|
|
238
238
|
"type": "object",
|
|
239
239
|
"properties": {
|
|
240
|
+
"boeUser": {
|
|
241
|
+
"title": "TenantRelationshipsBoeUserSchema",
|
|
242
|
+
"type": "object",
|
|
243
|
+
"description": "The Boe AI user account for this tenant. Used as the system principal for guest-initiated workflows (apply forms, inbound emails, inbound calls) where no authenticated user exists. Set during tenant onboarding; not client-writable via tenant PATCH.",
|
|
244
|
+
"properties": {
|
|
245
|
+
"data": {
|
|
246
|
+
"type": "object",
|
|
247
|
+
"properties": {
|
|
248
|
+
"type": {
|
|
249
|
+
"type": "string"
|
|
250
|
+
},
|
|
251
|
+
"id": {
|
|
252
|
+
"type": "string"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
},
|
|
240
258
|
"feedbacks": {
|
|
241
259
|
"title": "TenantRelationshipsFeedbacksSchema",
|
|
242
260
|
"type": "object",
|
|
@@ -285,7 +303,19 @@
|
|
|
285
303
|
"description": "Show Tenant",
|
|
286
304
|
"parameters": {
|
|
287
305
|
"type": "object",
|
|
288
|
-
"properties": {
|
|
306
|
+
"properties": {
|
|
307
|
+
"tenantId": {
|
|
308
|
+
"type": "string",
|
|
309
|
+
"description": "The tenant's identifier"
|
|
310
|
+
},
|
|
311
|
+
"include": {
|
|
312
|
+
"type": "string",
|
|
313
|
+
"description": "JSON:API compound document request — comma-separated list of relationship paths to include in the response (e.g. `feedbacks`, `feedbacks,boeUser`). Currently advisory: the service always returns all declared relationships with empty defaults."
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
"required": [
|
|
317
|
+
"tenantId"
|
|
318
|
+
]
|
|
289
319
|
}
|
|
290
320
|
}
|
|
291
321
|
},
|
|
@@ -306,8 +336,7 @@
|
|
|
306
336
|
"type": "object",
|
|
307
337
|
"required": [
|
|
308
338
|
"type",
|
|
309
|
-
"id"
|
|
310
|
-
"attributes"
|
|
339
|
+
"id"
|
|
311
340
|
],
|
|
312
341
|
"properties": {
|
|
313
342
|
"type": {
|
|
@@ -466,6 +495,52 @@
|
|
|
466
495
|
"description": "Tenant-wide default form used for guest submissions when no job-specific form is configured. Set to null to clear."
|
|
467
496
|
}
|
|
468
497
|
}
|
|
498
|
+
},
|
|
499
|
+
"relationships": {
|
|
500
|
+
"title": "TenantRelationshipsSchema",
|
|
501
|
+
"type": "object",
|
|
502
|
+
"properties": {
|
|
503
|
+
"boeUser": {
|
|
504
|
+
"title": "TenantRelationshipsBoeUserSchema",
|
|
505
|
+
"type": "object",
|
|
506
|
+
"description": "The Boe AI user account for this tenant. Used as the system principal for guest-initiated workflows (apply forms, inbound emails, inbound calls) where no authenticated user exists. Set during tenant onboarding; not client-writable via tenant PATCH.",
|
|
507
|
+
"properties": {
|
|
508
|
+
"data": {
|
|
509
|
+
"type": "object",
|
|
510
|
+
"properties": {
|
|
511
|
+
"type": {
|
|
512
|
+
"type": "string"
|
|
513
|
+
},
|
|
514
|
+
"id": {
|
|
515
|
+
"type": "string"
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
},
|
|
521
|
+
"feedbacks": {
|
|
522
|
+
"title": "TenantRelationshipsFeedbacksSchema",
|
|
523
|
+
"type": "object",
|
|
524
|
+
"description": "Tenant-wide default feedback configurations. Up to one per stage (screening, assessment). Used when the job has no stage-specific feedback override.",
|
|
525
|
+
"properties": {
|
|
526
|
+
"data": {
|
|
527
|
+
"type": "array",
|
|
528
|
+
"items": {
|
|
529
|
+
"title": "TenantRelationshipsFeedbacksDataSchema",
|
|
530
|
+
"type": "object",
|
|
531
|
+
"properties": {
|
|
532
|
+
"type": {
|
|
533
|
+
"type": "string"
|
|
534
|
+
},
|
|
535
|
+
"id": {
|
|
536
|
+
"type": "string"
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
}
|
|
469
544
|
}
|
|
470
545
|
}
|
|
471
546
|
}
|