@smartytalent/openai-tools 0.1.23 → 0.1.24

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 +16 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -7464,9 +7464,15 @@
7464
7464
  "language": {
7465
7465
  "type": "string"
7466
7466
  },
7467
+ "qualityScore": {
7468
+ "type": "integer",
7469
+ "minimum": 1,
7470
+ "maximum": 5,
7471
+ "description": "Aggregate quality score (1-5 stars) based on answer relevance, clarity, and completeness. AI-generated, recruiter-overridable."
7472
+ },
7467
7473
  "fields": {
7468
7474
  "type": "object",
7469
- "description": "Custom form field answers keyed by field identifier"
7475
+ "description": "Form fields keyed by field identifier. Each field contains localized content grouped by language code. Structure: {fieldKey: {langCode: {label, description, value, type, relevance, clarity, completeness, confidence, reasoning}}}."
7470
7476
  },
7471
7477
  "files": {
7472
7478
  "type": "array",
@@ -7737,7 +7743,8 @@
7737
7743
  }
7738
7744
  },
7739
7745
  "fields": {
7740
- "type": "object"
7746
+ "type": "object",
7747
+ "description": "Form fields keyed by identifier. Each field: {label: string, description: string, value: string, type: 'text'|'number'|'date'|'select'|'checkbox'}."
7741
7748
  },
7742
7749
  "language": {
7743
7750
  "type": "string"
@@ -7934,9 +7941,15 @@
7934
7941
  "language": {
7935
7942
  "type": "string"
7936
7943
  },
7944
+ "qualityScore": {
7945
+ "type": "integer",
7946
+ "minimum": 1,
7947
+ "maximum": 5,
7948
+ "description": "Aggregate quality score (1-5 stars) based on answer relevance, clarity, and completeness. AI-generated, recruiter-overridable."
7949
+ },
7937
7950
  "fields": {
7938
7951
  "type": "object",
7939
- "description": "Custom form field answers keyed by field identifier"
7952
+ "description": "Form fields keyed by field identifier. Each field contains localized content grouped by language code. Structure: {fieldKey: {langCode: {label, description, value, type, relevance, clarity, completeness, confidence, reasoning}}}."
7940
7953
  },
7941
7954
  "files": {
7942
7955
  "type": "array",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",