@smartytalent/openai-tools 0.1.33-dev.77 → 0.1.33-dev.79

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 +82 -6
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -9825,10 +9825,18 @@
9825
9825
  ],
9826
9826
  "properties": {
9827
9827
  "title": {
9828
- "type": "string"
9828
+ "type": "object",
9829
+ "additionalProperties": {
9830
+ "type": "string"
9831
+ },
9832
+ "description": "Role title. Language-keyed object (keys are locale codes, e.g. en-US, pl-PL)."
9829
9833
  },
9830
9834
  "description": {
9831
- "type": "string"
9835
+ "type": "object",
9836
+ "additionalProperties": {
9837
+ "type": "string"
9838
+ },
9839
+ "description": "Brief narrative. Language-keyed object (keys are locale codes, e.g. en-US, pl-PL)."
9832
9840
  },
9833
9841
  "source": {
9834
9842
  "type": "string",
@@ -9853,9 +9861,39 @@
9853
9861
  "language": {
9854
9862
  "type": "string"
9855
9863
  },
9864
+ "location": {
9865
+ "type": "object",
9866
+ "additionalProperties": {
9867
+ "type": "string"
9868
+ },
9869
+ "description": "Role location. Language-keyed object (keys are locale codes, e.g. en-US, pl-PL)."
9870
+ },
9871
+ "salary": {
9872
+ "type": "string",
9873
+ "description": "Salary / budget (free text, e.g. '22-26k PLN B2B')"
9874
+ },
9875
+ "employmentType": {
9876
+ "type": "string",
9877
+ "description": "Employment type (e.g. B2B, employment contract)"
9878
+ },
9879
+ "seniority": {
9880
+ "type": "string",
9881
+ "description": "Seniority level for the role (e.g. junior, mid, senior)"
9882
+ },
9883
+ "criteria": {
9884
+ "type": "object",
9885
+ "description": "Recruitment criteria captured from the brief"
9886
+ },
9887
+ "links": {
9888
+ "type": "array",
9889
+ "description": "Link references captured for the brief (status / finalUrl / markdownS3Key)",
9890
+ "items": {
9891
+ "type": "object"
9892
+ }
9893
+ },
9856
9894
  "fields": {
9857
9895
  "type": "object",
9858
- "description": "Custom form field answers keyed by field identifier"
9896
+ "description": "DEPRECATED transitional envelope; content is migrating to top-level fields"
9859
9897
  },
9860
9898
  "files": {
9861
9899
  "type": "array",
@@ -10106,10 +10144,18 @@
10106
10144
  ],
10107
10145
  "properties": {
10108
10146
  "title": {
10109
- "type": "string"
10147
+ "type": "object",
10148
+ "additionalProperties": {
10149
+ "type": "string"
10150
+ },
10151
+ "description": "Role title. Language-keyed object (keys are locale codes, e.g. en-US, pl-PL)."
10110
10152
  },
10111
10153
  "description": {
10112
- "type": "string"
10154
+ "type": "object",
10155
+ "additionalProperties": {
10156
+ "type": "string"
10157
+ },
10158
+ "description": "Brief narrative. Language-keyed object (keys are locale codes, e.g. en-US, pl-PL)."
10113
10159
  },
10114
10160
  "source": {
10115
10161
  "type": "string",
@@ -10134,9 +10180,39 @@
10134
10180
  "language": {
10135
10181
  "type": "string"
10136
10182
  },
10183
+ "location": {
10184
+ "type": "object",
10185
+ "additionalProperties": {
10186
+ "type": "string"
10187
+ },
10188
+ "description": "Role location. Language-keyed object (keys are locale codes, e.g. en-US, pl-PL)."
10189
+ },
10190
+ "salary": {
10191
+ "type": "string",
10192
+ "description": "Salary / budget (free text, e.g. '22-26k PLN B2B')"
10193
+ },
10194
+ "employmentType": {
10195
+ "type": "string",
10196
+ "description": "Employment type (e.g. B2B, employment contract)"
10197
+ },
10198
+ "seniority": {
10199
+ "type": "string",
10200
+ "description": "Seniority level for the role (e.g. junior, mid, senior)"
10201
+ },
10202
+ "criteria": {
10203
+ "type": "object",
10204
+ "description": "Recruitment criteria captured from the brief"
10205
+ },
10206
+ "links": {
10207
+ "type": "array",
10208
+ "description": "Link references captured for the brief (status / finalUrl / markdownS3Key)",
10209
+ "items": {
10210
+ "type": "object"
10211
+ }
10212
+ },
10137
10213
  "fields": {
10138
10214
  "type": "object",
10139
- "description": "Custom form field answers keyed by field identifier"
10215
+ "description": "DEPRECATED transitional envelope; content is migrating to top-level fields"
10140
10216
  },
10141
10217
  "files": {
10142
10218
  "type": "array",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.77",
3
+ "version": "0.1.33-dev.79",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",