@smartytalent/openai-tools 0.8.16 → 0.8.18

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 +62 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -4451,6 +4451,14 @@
4451
4451
  "type": "string"
4452
4452
  }
4453
4453
  },
4454
+ "titleInclusive": {
4455
+ "title": "JobAttributesTitleInclusiveSchema",
4456
+ "description": "The job title as shown to candidates, marked as open to every gender. Language-keyed, same keys as `title`. Read-only: it is derived from `title` by the build pipeline, not supplied by a client. `title` stays the canonical, unmarked string and is what the ATS and the search index use; this is the one public surfaces display. The shape follows the locale: Polish and Czech restate the whole phrase in the feminine because the adjectives agree with the noun, while German, French and Italian append their market marker. Surfaces with a hard length limit use a short marker instead - on Polish that is \"(K/M/NB)\", which covers MORE than the restated pair, since the pair is binary by construction. Absent on jobs created before this field existed, and on locales the pipeline declined to inflect - fall back to `title` per locale.",
4457
+ "type": "object",
4458
+ "additionalProperties": {
4459
+ "type": "string"
4460
+ }
4461
+ },
4454
4462
  "description": {
4455
4463
  "title": "JobAttributesDescriptionSchema",
4456
4464
  "description": "Detailed job description. Language-keyed object.",
@@ -5081,6 +5089,48 @@
5081
5089
  }
5082
5090
  }
5083
5091
  }
5092
+ },
5093
+ "users": {
5094
+ "title": "JobRelationshipsUsersSchema",
5095
+ "type": "object",
5096
+ "properties": {
5097
+ "data": {
5098
+ "type": "array",
5099
+ "items": {
5100
+ "title": "JobRelationshipsUsersDataSchema",
5101
+ "type": "object",
5102
+ "properties": {
5103
+ "type": {
5104
+ "type": "string"
5105
+ },
5106
+ "id": {
5107
+ "type": "string"
5108
+ }
5109
+ }
5110
+ }
5111
+ }
5112
+ }
5113
+ },
5114
+ "tasks": {
5115
+ "title": "JobRelationshipsTasksSchema",
5116
+ "type": "object",
5117
+ "properties": {
5118
+ "data": {
5119
+ "type": "array",
5120
+ "items": {
5121
+ "title": "JobRelationshipsTasksDataSchema",
5122
+ "type": "object",
5123
+ "properties": {
5124
+ "type": {
5125
+ "type": "string"
5126
+ },
5127
+ "id": {
5128
+ "type": "string"
5129
+ }
5130
+ }
5131
+ }
5132
+ }
5133
+ }
5084
5134
  }
5085
5135
  }
5086
5136
  },
@@ -5175,6 +5225,14 @@
5175
5225
  "type": "string"
5176
5226
  }
5177
5227
  },
5228
+ "titleInclusive": {
5229
+ "title": "JobAttributesTitleInclusiveSchema",
5230
+ "description": "The job title as shown to candidates, marked as open to every gender. Language-keyed, same keys as `title`. Read-only: it is derived from `title` by the build pipeline, not supplied by a client. `title` stays the canonical, unmarked string and is what the ATS and the search index use; this is the one public surfaces display. The shape follows the locale: Polish and Czech restate the whole phrase in the feminine because the adjectives agree with the noun, while German, French and Italian append their market marker. Surfaces with a hard length limit use a short marker instead - on Polish that is \"(K/M/NB)\", which covers MORE than the restated pair, since the pair is binary by construction. Absent on jobs created before this field existed, and on locales the pipeline declined to inflect - fall back to `title` per locale.",
5231
+ "type": "object",
5232
+ "additionalProperties": {
5233
+ "type": "string"
5234
+ }
5235
+ },
5178
5236
  "description": {
5179
5237
  "title": "JobAttributesDescriptionSchema",
5180
5238
  "description": "Detailed job description. Language-keyed object.",
@@ -5705,6 +5763,10 @@
5705
5763
  "type": "string",
5706
5764
  "description": "Filter candidates by exact shortCode value."
5707
5765
  },
5766
+ "filterJobId": {
5767
+ "type": "string",
5768
+ "description": "Returns candidates applied to the given job (JobIndex lookup). The scalable way to list a job's pipeline."
5769
+ },
5708
5770
  "filterEmail": {
5709
5771
  "type": "string",
5710
5772
  "description": "Specifies the email address to filter the results."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.8.16",
3
+ "version": "0.8.18",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",