@smartytalent/openai-tools 0.9.20 → 0.9.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.
Files changed (2) hide show
  1. package/dist/tools.json +26 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -4616,6 +4616,17 @@
4616
4616
  "type": "string"
4617
4617
  }
4618
4618
  },
4619
+ "reportUrl": {
4620
+ "type": "string",
4621
+ "description": "READ side only (showJob): a signed GET for the job's project PDF in the job's own language, valid 2 hours, present only when the file exists (the CRUD checks before signing). The PDF is rendered by the job AI pipeline (Create Job From Brief and, since 2026-09-02, the update mode of jobs:apply); an older job whose pipeline ran before the per-language split keeps its single file here."
4622
+ },
4623
+ "reportUrls": {
4624
+ "type": "object",
4625
+ "additionalProperties": {
4626
+ "type": "string"
4627
+ },
4628
+ "description": "READ side only (showJob, 2026-09-02): signed GET per language - the job's own language and en-US, deduped for an English job - e.g. {\"pl-PL\": \"https://...\", \"en-US\": \"https://...\"}. null when no file exists yet. `reportUrl` is the job-language entry of this map, kept for clients that predate it. Same contract as ConversationAttributesSchema.reportUrls."
4629
+ },
4619
4630
  "titleInclusive": {
4620
4631
  "title": "JobAttributesTitleInclusiveSchema",
4621
4632
  "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.",
@@ -5446,6 +5457,17 @@
5446
5457
  "type": "string"
5447
5458
  }
5448
5459
  },
5460
+ "reportUrl": {
5461
+ "type": "string",
5462
+ "description": "READ side only (showJob): a signed GET for the job's project PDF in the job's own language, valid 2 hours, present only when the file exists (the CRUD checks before signing). The PDF is rendered by the job AI pipeline (Create Job From Brief and, since 2026-09-02, the update mode of jobs:apply); an older job whose pipeline ran before the per-language split keeps its single file here."
5463
+ },
5464
+ "reportUrls": {
5465
+ "type": "object",
5466
+ "additionalProperties": {
5467
+ "type": "string"
5468
+ },
5469
+ "description": "READ side only (showJob, 2026-09-02): signed GET per language - the job's own language and en-US, deduped for an English job - e.g. {\"pl-PL\": \"https://...\", \"en-US\": \"https://...\"}. null when no file exists yet. `reportUrl` is the job-language entry of this map, kept for clients that predate it. Same contract as ConversationAttributesSchema.reportUrls."
5470
+ },
5449
5471
  "titleInclusive": {
5450
5472
  "title": "JobAttributesTitleInclusiveSchema",
5451
5473
  "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.",
@@ -16913,6 +16935,10 @@
16913
16935
  "type": "string",
16914
16936
  "description": "Recops board: \"this project's orders\" - the tasks whose\n`relationships.jobs` names this job (jobs:* orders and escalations\ncaptured on the project). Served by JobIdIndex, the link flattened\nat create and when it arrives on PATCH; older rows backfilled.\nCombine with `sort=-created`. Mutually exclusive with the other\nequality filters."
16915
16937
  },
16938
+ "filterTalentId": {
16939
+ "type": "string",
16940
+ "description": "Recops board: \"this person's orders\" - the tasks whose\n`relationships.talents` names this talent (talents:update /\ntalents:apply orders). Served by TalentIdIndex, the link flattened\nat create and when it arrives on PATCH; older rows backfilled\n(2026-09-03, wave 2). Combine with `sort=-created`. Mutually\nexclusive with the other equality filters."
16941
+ },
16916
16942
  "filterClaimedBy": {
16917
16943
  "type": "string",
16918
16944
  "description": "Recops board: \"mine in progress\" - the tasks whose `meta.claimedBy`\nis this user. The claim is written by the client (`meta.claimedBy`\n+ `meta.claimedAt` merged per key; `null` releases) and mirrored\ninto the index key on every PATCH that names it. Served by\nClaimedByIndex. Combine with `sort=-created`. Mutually exclusive\nwith the other equality filters."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.9.20",
3
+ "version": "0.9.22",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",