@smartytalent/openai-tools 0.1.33-dev.89 → 0.1.33-dev.90

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 +196 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -10043,6 +10043,104 @@
10043
10043
  }
10044
10044
  }
10045
10045
  },
10046
+ "intakeType": {
10047
+ "type": "string",
10048
+ "enum": [
10049
+ "light",
10050
+ "full"
10051
+ ],
10052
+ "description": "How the brief was built: `full` = the criteria were extracted from\nthe raw intake; `light` = criteria cloned from a baseline job (a\nrecurring role). Drives the intake UI."
10053
+ },
10054
+ "baseline": {
10055
+ "type": "object",
10056
+ "description": "The baseline job a `light` brief was seeded from (the recurring-role\nsource). Null/absent for `full` briefs.",
10057
+ "additionalProperties": true
10058
+ },
10059
+ "intakeContext": {
10060
+ "type": "object",
10061
+ "description": "Rich recruiter-facing brief context the PDF/report is built from -\nthe WHO/intent beyond the flat criteria. Every key is best-effort\n(omitted when its source is absent), and the set evolves as the intake\ngrows, so unknown keys MUST be preserved (additionalProperties).\nKnown keys: process, responsibilities, workModel, team, targetMarket.",
10062
+ "additionalProperties": true,
10063
+ "properties": {
10064
+ "process": {
10065
+ "type": "array",
10066
+ "description": "Recruitment pipeline stages and whether each is enabled.",
10067
+ "items": {
10068
+ "type": "object",
10069
+ "properties": {
10070
+ "stage": {
10071
+ "type": "string"
10072
+ },
10073
+ "enabled": {
10074
+ "type": "boolean"
10075
+ }
10076
+ }
10077
+ }
10078
+ },
10079
+ "responsibilities": {
10080
+ "type": "object",
10081
+ "description": "Multilingual bullet lists: { locale: [string] }.",
10082
+ "additionalProperties": {
10083
+ "type": "array",
10084
+ "items": {
10085
+ "type": "string"
10086
+ }
10087
+ }
10088
+ },
10089
+ "workModel": {
10090
+ "type": "object",
10091
+ "description": "Multilingual work model text: { locale: string }.",
10092
+ "additionalProperties": {
10093
+ "type": "string"
10094
+ }
10095
+ },
10096
+ "team": {
10097
+ "type": "object",
10098
+ "description": "People + feedback SLA around the role.",
10099
+ "additionalProperties": true,
10100
+ "properties": {
10101
+ "hiringManager": {
10102
+ "type": "string"
10103
+ },
10104
+ "decisionMaker": {
10105
+ "type": "string"
10106
+ },
10107
+ "recruiter": {
10108
+ "type": "string"
10109
+ },
10110
+ "organization": {
10111
+ "type": "string"
10112
+ },
10113
+ "department": {
10114
+ "type": "object",
10115
+ "description": "Multilingual: { locale: string }.",
10116
+ "additionalProperties": {
10117
+ "type": "string"
10118
+ }
10119
+ },
10120
+ "sla": {
10121
+ "type": "object",
10122
+ "description": "Multilingual feedback promise: { locale: string }.",
10123
+ "additionalProperties": {
10124
+ "type": "string"
10125
+ }
10126
+ }
10127
+ }
10128
+ },
10129
+ "targetMarket": {
10130
+ "type": "object",
10131
+ "description": "Multilingual lists per facet: { facet: { locale: [string] } }.",
10132
+ "additionalProperties": {
10133
+ "type": "object",
10134
+ "additionalProperties": {
10135
+ "type": "array",
10136
+ "items": {
10137
+ "type": "string"
10138
+ }
10139
+ }
10140
+ }
10141
+ }
10142
+ }
10143
+ },
10046
10144
  "timestamps": {
10047
10145
  "title": "ResourceTimestampsSchema",
10048
10146
  "type": "object",
@@ -10363,6 +10461,104 @@
10363
10461
  }
10364
10462
  }
10365
10463
  },
10464
+ "intakeType": {
10465
+ "type": "string",
10466
+ "enum": [
10467
+ "light",
10468
+ "full"
10469
+ ],
10470
+ "description": "How the brief was built: `full` = the criteria were extracted from\nthe raw intake; `light` = criteria cloned from a baseline job (a\nrecurring role). Drives the intake UI."
10471
+ },
10472
+ "baseline": {
10473
+ "type": "object",
10474
+ "description": "The baseline job a `light` brief was seeded from (the recurring-role\nsource). Null/absent for `full` briefs.",
10475
+ "additionalProperties": true
10476
+ },
10477
+ "intakeContext": {
10478
+ "type": "object",
10479
+ "description": "Rich recruiter-facing brief context the PDF/report is built from -\nthe WHO/intent beyond the flat criteria. Every key is best-effort\n(omitted when its source is absent), and the set evolves as the intake\ngrows, so unknown keys MUST be preserved (additionalProperties).\nKnown keys: process, responsibilities, workModel, team, targetMarket.",
10480
+ "additionalProperties": true,
10481
+ "properties": {
10482
+ "process": {
10483
+ "type": "array",
10484
+ "description": "Recruitment pipeline stages and whether each is enabled.",
10485
+ "items": {
10486
+ "type": "object",
10487
+ "properties": {
10488
+ "stage": {
10489
+ "type": "string"
10490
+ },
10491
+ "enabled": {
10492
+ "type": "boolean"
10493
+ }
10494
+ }
10495
+ }
10496
+ },
10497
+ "responsibilities": {
10498
+ "type": "object",
10499
+ "description": "Multilingual bullet lists: { locale: [string] }.",
10500
+ "additionalProperties": {
10501
+ "type": "array",
10502
+ "items": {
10503
+ "type": "string"
10504
+ }
10505
+ }
10506
+ },
10507
+ "workModel": {
10508
+ "type": "object",
10509
+ "description": "Multilingual work model text: { locale: string }.",
10510
+ "additionalProperties": {
10511
+ "type": "string"
10512
+ }
10513
+ },
10514
+ "team": {
10515
+ "type": "object",
10516
+ "description": "People + feedback SLA around the role.",
10517
+ "additionalProperties": true,
10518
+ "properties": {
10519
+ "hiringManager": {
10520
+ "type": "string"
10521
+ },
10522
+ "decisionMaker": {
10523
+ "type": "string"
10524
+ },
10525
+ "recruiter": {
10526
+ "type": "string"
10527
+ },
10528
+ "organization": {
10529
+ "type": "string"
10530
+ },
10531
+ "department": {
10532
+ "type": "object",
10533
+ "description": "Multilingual: { locale: string }.",
10534
+ "additionalProperties": {
10535
+ "type": "string"
10536
+ }
10537
+ },
10538
+ "sla": {
10539
+ "type": "object",
10540
+ "description": "Multilingual feedback promise: { locale: string }.",
10541
+ "additionalProperties": {
10542
+ "type": "string"
10543
+ }
10544
+ }
10545
+ }
10546
+ },
10547
+ "targetMarket": {
10548
+ "type": "object",
10549
+ "description": "Multilingual lists per facet: { facet: { locale: [string] } }.",
10550
+ "additionalProperties": {
10551
+ "type": "object",
10552
+ "additionalProperties": {
10553
+ "type": "array",
10554
+ "items": {
10555
+ "type": "string"
10556
+ }
10557
+ }
10558
+ }
10559
+ }
10560
+ }
10561
+ },
10366
10562
  "timestamps": {
10367
10563
  "title": "ResourceTimestampsSchema",
10368
10564
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.89",
3
+ "version": "0.1.33-dev.90",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",