@smartytalent/openai-tools 0.9.4 → 0.9.6

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 +10 -12
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -404,7 +404,8 @@
404
404
  },
405
405
  "defaultFormId": {
406
406
  "type": "string",
407
- "description": "Tenant-wide default form used for guest submissions when no job-specific form is configured. Set to null to clear."
407
+ "deprecated": true,
408
+ "description": "DEPRECATED (talent-pool arc): no writer exists and the tenant PATCH ignores it - the per-kind default lives in tenant.relationships.forms (talentSubmission pin surfaces publicly as careers.json talentPool). Client-supplied values are ignored."
408
409
  }
409
410
  }
410
411
  },
@@ -882,7 +883,8 @@
882
883
  },
883
884
  "defaultFormId": {
884
885
  "type": "string",
885
- "description": "Tenant-wide default form used for guest submissions when no job-specific form is configured. Set to null to clear."
886
+ "deprecated": true,
887
+ "description": "DEPRECATED (talent-pool arc): no writer exists and the tenant PATCH ignores it - the per-kind default lives in tenant.relationships.forms (talentSubmission pin surfaces publicly as careers.json talentPool). Client-supplied values are ignored."
886
888
  }
887
889
  }
888
890
  },
@@ -8783,7 +8785,7 @@
8783
8785
  "properties": {
8784
8786
  "filterStatus": {
8785
8787
  "type": "string",
8786
- "description": "Returns feedbacks with the given status. No default: omit it to list every status (SLA overrides are draft before gate 2 and accepted after it, so a fixed active default would hide them). One filter at a time: combine with filterStage and the request is a 400.",
8788
+ "description": "Returns feedbacks with the given status. No default: omit it to list every status (SLA overrides are draft before gate 2 and accepted after it, so a fixed active default would hide them). One filter at a time: combine with filterStage or filterJobId and the request is a 400.",
8787
8789
  "enum": [
8788
8790
  "active",
8789
8791
  "draft",
@@ -8801,6 +8803,10 @@
8801
8803
  "interview"
8802
8804
  ]
8803
8805
  },
8806
+ "filterJobId": {
8807
+ "type": "string",
8808
+ "description": "Returns the per-job feedback overrides of the given job (JobIndex lookup on the mirrored jobId; tenant defaults never match). One filter at a time."
8809
+ },
8804
8810
  "filterCreatedFrom": {
8805
8811
  "type": "string",
8806
8812
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -8899,7 +8905,7 @@
8899
8905
  },
8900
8906
  "jobId": {
8901
8907
  "type": "string",
8902
- "description": "Mirror of relationships.jobs[0].id for per-job overrides (server-maintained; absent on tenant defaults). A filterJobId query parameter arrives together with the JobIndex GSI in a later release."
8908
+ "description": "Mirror of relationships.jobs[0].id for per-job overrides (server-maintained; absent on tenant defaults). Filter with filterJobId (JobIndex)."
8903
8909
  },
8904
8910
  "outcomes": {
8905
8911
  "title": "FeedbackOutcomesSchema",
@@ -12240,14 +12246,6 @@
12240
12246
  "jobId": {
12241
12247
  "type": "string"
12242
12248
  },
12243
- "type": {
12244
- "type": "string",
12245
- "enum": [
12246
- "candidate",
12247
- "talent"
12248
- ],
12249
- "description": "Submission type - determines which workflow to trigger. Auto-derived from jobId if omitted."
12250
- },
12251
12249
  "referral": {
12252
12250
  "type": "object",
12253
12251
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.9.4",
3
+ "version": "0.9.6",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",