@smartytalent/openai-tools 0.8.17 → 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 +48 -2
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -4453,7 +4453,7 @@
4453
4453
  },
4454
4454
  "titleInclusive": {
4455
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. Absent on jobs created before this field existed, and on locales the pipeline declined to inflect - fall back to `title` per locale.",
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
4457
  "type": "object",
4458
4458
  "additionalProperties": {
4459
4459
  "type": "string"
@@ -5089,6 +5089,48 @@
5089
5089
  }
5090
5090
  }
5091
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
+ }
5092
5134
  }
5093
5135
  }
5094
5136
  },
@@ -5185,7 +5227,7 @@
5185
5227
  },
5186
5228
  "titleInclusive": {
5187
5229
  "title": "JobAttributesTitleInclusiveSchema",
5188
- "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. Absent on jobs created before this field existed, and on locales the pipeline declined to inflect - fall back to `title` per locale.",
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.",
5189
5231
  "type": "object",
5190
5232
  "additionalProperties": {
5191
5233
  "type": "string"
@@ -5721,6 +5763,10 @@
5721
5763
  "type": "string",
5722
5764
  "description": "Filter candidates by exact shortCode value."
5723
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
+ },
5724
5770
  "filterEmail": {
5725
5771
  "type": "string",
5726
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.17",
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",