@smartytalent/openai-tools 0.1.33-dev.20 → 0.1.33-dev.22
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 +180 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -276,6 +276,28 @@
|
|
|
276
276
|
}
|
|
277
277
|
}
|
|
278
278
|
}
|
|
279
|
+
},
|
|
280
|
+
"forms": {
|
|
281
|
+
"title": "TenantRelationshipsFormsSchema",
|
|
282
|
+
"type": "object",
|
|
283
|
+
"description": "Tenant-wide default forms per kind. Up to one form per FormKind value (jobBrief, candidateSubmission, talentSubmission, general). Designates which form's schema is canonical for each intake channel - the inbound email agent reads this to find the form whose fields it should populate when creating a brief.",
|
|
284
|
+
"properties": {
|
|
285
|
+
"data": {
|
|
286
|
+
"type": "array",
|
|
287
|
+
"items": {
|
|
288
|
+
"title": "TenantRelationshipsFormsDataSchema",
|
|
289
|
+
"type": "object",
|
|
290
|
+
"properties": {
|
|
291
|
+
"type": {
|
|
292
|
+
"type": "string"
|
|
293
|
+
},
|
|
294
|
+
"id": {
|
|
295
|
+
"type": "string"
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
}
|
|
279
301
|
}
|
|
280
302
|
}
|
|
281
303
|
}
|
|
@@ -539,6 +561,28 @@
|
|
|
539
561
|
}
|
|
540
562
|
}
|
|
541
563
|
}
|
|
564
|
+
},
|
|
565
|
+
"forms": {
|
|
566
|
+
"title": "TenantRelationshipsFormsSchema",
|
|
567
|
+
"type": "object",
|
|
568
|
+
"description": "Tenant-wide default forms per kind. Up to one form per FormKind value (jobBrief, candidateSubmission, talentSubmission, general). Designates which form's schema is canonical for each intake channel - the inbound email agent reads this to find the form whose fields it should populate when creating a brief.",
|
|
569
|
+
"properties": {
|
|
570
|
+
"data": {
|
|
571
|
+
"type": "array",
|
|
572
|
+
"items": {
|
|
573
|
+
"title": "TenantRelationshipsFormsDataSchema",
|
|
574
|
+
"type": "object",
|
|
575
|
+
"properties": {
|
|
576
|
+
"type": {
|
|
577
|
+
"type": "string"
|
|
578
|
+
},
|
|
579
|
+
"id": {
|
|
580
|
+
"type": "string"
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
}
|
|
542
586
|
}
|
|
543
587
|
}
|
|
544
588
|
}
|
|
@@ -7253,6 +7297,17 @@
|
|
|
7253
7297
|
"status": {
|
|
7254
7298
|
"type": "string"
|
|
7255
7299
|
},
|
|
7300
|
+
"kind": {
|
|
7301
|
+
"type": "string",
|
|
7302
|
+
"enum": [
|
|
7303
|
+
"jobBrief",
|
|
7304
|
+
"candidateSubmission",
|
|
7305
|
+
"talentSubmission",
|
|
7306
|
+
"general"
|
|
7307
|
+
],
|
|
7308
|
+
"default": "general",
|
|
7309
|
+
"description": "Role marker. Identifies which downstream resource this form's\nsubmission becomes:\n - jobBrief: produces a Brief about a Job (email/api intake;\n consumed by the create-job-from-brief workflow).\n - candidateSubmission: produces a Submission about a\n Candidate (apply form intake).\n - talentSubmission: produces a Submission about a Talent.\n - general: catch-all / undecided.\nTenant pins one form per kind as its default via\n`tenant.relationships.forms`. Mirrors the role-marker pattern\nused on Feedback (`stage`)."
|
|
7310
|
+
},
|
|
7256
7311
|
"short_code": {
|
|
7257
7312
|
"type": "string"
|
|
7258
7313
|
},
|
|
@@ -7379,6 +7434,17 @@
|
|
|
7379
7434
|
"status": {
|
|
7380
7435
|
"type": "string"
|
|
7381
7436
|
},
|
|
7437
|
+
"kind": {
|
|
7438
|
+
"type": "string",
|
|
7439
|
+
"enum": [
|
|
7440
|
+
"jobBrief",
|
|
7441
|
+
"candidateSubmission",
|
|
7442
|
+
"talentSubmission",
|
|
7443
|
+
"general"
|
|
7444
|
+
],
|
|
7445
|
+
"default": "general",
|
|
7446
|
+
"description": "Role marker. Identifies which downstream resource this form's\nsubmission becomes:\n - jobBrief: produces a Brief about a Job (email/api intake;\n consumed by the create-job-from-brief workflow).\n - candidateSubmission: produces a Submission about a\n Candidate (apply form intake).\n - talentSubmission: produces a Submission about a Talent.\n - general: catch-all / undecided.\nTenant pins one form per kind as its default via\n`tenant.relationships.forms`. Mirrors the role-marker pattern\nused on Feedback (`stage`)."
|
|
7447
|
+
},
|
|
7382
7448
|
"short_code": {
|
|
7383
7449
|
"type": "string"
|
|
7384
7450
|
},
|
|
@@ -12278,6 +12344,120 @@
|
|
|
12278
12344
|
}
|
|
12279
12345
|
}
|
|
12280
12346
|
},
|
|
12347
|
+
{
|
|
12348
|
+
"type": "function",
|
|
12349
|
+
"function": {
|
|
12350
|
+
"name": "list_signals",
|
|
12351
|
+
"description": "List Signals",
|
|
12352
|
+
"parameters": {
|
|
12353
|
+
"type": "object",
|
|
12354
|
+
"properties": {
|
|
12355
|
+
"filterCategory": {
|
|
12356
|
+
"type": "string",
|
|
12357
|
+
"description": "filterCategory parameter",
|
|
12358
|
+
"enum": [
|
|
12359
|
+
"inbound_email",
|
|
12360
|
+
"inbound_chat",
|
|
12361
|
+
"inbound_call",
|
|
12362
|
+
"inbound_webapp",
|
|
12363
|
+
"outbound_email",
|
|
12364
|
+
"integration",
|
|
12365
|
+
"auth",
|
|
12366
|
+
"data_access"
|
|
12367
|
+
]
|
|
12368
|
+
},
|
|
12369
|
+
"filterAction": {
|
|
12370
|
+
"type": "string",
|
|
12371
|
+
"description": "filterAction parameter",
|
|
12372
|
+
"enum": [
|
|
12373
|
+
"rejected_unknown_principal",
|
|
12374
|
+
"rejected_language",
|
|
12375
|
+
"rejected_intent",
|
|
12376
|
+
"rejected_closed_context",
|
|
12377
|
+
"rejected_rate_limit",
|
|
12378
|
+
"accepted",
|
|
12379
|
+
"delivery_failed",
|
|
12380
|
+
"integration_error",
|
|
12381
|
+
"data_exported"
|
|
12382
|
+
]
|
|
12383
|
+
},
|
|
12384
|
+
"filterActorIdentifier": {
|
|
12385
|
+
"type": "string",
|
|
12386
|
+
"description": "filterActorIdentifier parameter"
|
|
12387
|
+
},
|
|
12388
|
+
"filterSeverity": {
|
|
12389
|
+
"type": "string",
|
|
12390
|
+
"description": "filterSeverity parameter",
|
|
12391
|
+
"enum": [
|
|
12392
|
+
"info",
|
|
12393
|
+
"warning",
|
|
12394
|
+
"error"
|
|
12395
|
+
]
|
|
12396
|
+
},
|
|
12397
|
+
"filterActorType": {
|
|
12398
|
+
"type": "string",
|
|
12399
|
+
"description": "filterActorType parameter",
|
|
12400
|
+
"enum": [
|
|
12401
|
+
"user",
|
|
12402
|
+
"candidate",
|
|
12403
|
+
"talent",
|
|
12404
|
+
"guest",
|
|
12405
|
+
"system"
|
|
12406
|
+
]
|
|
12407
|
+
},
|
|
12408
|
+
"sort": {
|
|
12409
|
+
"type": "string",
|
|
12410
|
+
"description": "sort parameter"
|
|
12411
|
+
},
|
|
12412
|
+
"pageSize": {
|
|
12413
|
+
"type": "integer",
|
|
12414
|
+
"description": "Specifies the number of items to retrieve per page. The maximum value is 100."
|
|
12415
|
+
},
|
|
12416
|
+
"pageAfter": {
|
|
12417
|
+
"type": "string",
|
|
12418
|
+
"description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
|
|
12419
|
+
},
|
|
12420
|
+
"pageBefore": {
|
|
12421
|
+
"type": "string",
|
|
12422
|
+
"description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
|
|
12423
|
+
}
|
|
12424
|
+
}
|
|
12425
|
+
}
|
|
12426
|
+
}
|
|
12427
|
+
},
|
|
12428
|
+
{
|
|
12429
|
+
"type": "function",
|
|
12430
|
+
"function": {
|
|
12431
|
+
"name": "signals_options",
|
|
12432
|
+
"description": "Signals Options",
|
|
12433
|
+
"parameters": {
|
|
12434
|
+
"type": "object",
|
|
12435
|
+
"properties": {}
|
|
12436
|
+
}
|
|
12437
|
+
}
|
|
12438
|
+
},
|
|
12439
|
+
{
|
|
12440
|
+
"type": "function",
|
|
12441
|
+
"function": {
|
|
12442
|
+
"name": "show_signal",
|
|
12443
|
+
"description": "Show Signal",
|
|
12444
|
+
"parameters": {
|
|
12445
|
+
"type": "object",
|
|
12446
|
+
"properties": {}
|
|
12447
|
+
}
|
|
12448
|
+
}
|
|
12449
|
+
},
|
|
12450
|
+
{
|
|
12451
|
+
"type": "function",
|
|
12452
|
+
"function": {
|
|
12453
|
+
"name": "signal_options",
|
|
12454
|
+
"description": "Signal Options",
|
|
12455
|
+
"parameters": {
|
|
12456
|
+
"type": "object",
|
|
12457
|
+
"properties": {}
|
|
12458
|
+
}
|
|
12459
|
+
}
|
|
12460
|
+
},
|
|
12281
12461
|
{
|
|
12282
12462
|
"type": "function",
|
|
12283
12463
|
"function": {
|