@smartytalent/openai-tools 0.1.23 → 0.1.25

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 +66 -11
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -4450,20 +4450,30 @@
4450
4450
  "description": "Current status of the candidate",
4451
4451
  "enum": [
4452
4452
  "active",
4453
+ "paused",
4453
4454
  "withdrawn",
4454
4455
  "rejected",
4456
+ "hired",
4457
+ "archived",
4455
4458
  "inactive",
4456
4459
  "onHold",
4457
4460
  "offerExtended",
4458
4461
  "offerDeclined",
4459
- "futureConsideration",
4460
- "archived"
4462
+ "futureConsideration"
4461
4463
  ]
4462
4464
  },
4463
4465
  "stage": {
4464
4466
  "type": "string",
4465
4467
  "description": "Current stage in the recruitment pipeline",
4466
4468
  "enum": [
4469
+ "sourcing",
4470
+ "screening",
4471
+ "assessment",
4472
+ "interview",
4473
+ "offer",
4474
+ "hired",
4475
+ "onboarding",
4476
+ "evaluation",
4467
4477
  "sourced",
4468
4478
  "applied",
4469
4479
  "initial",
@@ -4473,7 +4483,6 @@
4473
4483
  "contacted",
4474
4484
  "interviewed",
4475
4485
  "offered",
4476
- "hired",
4477
4486
  "onboarded",
4478
4487
  "evaluated"
4479
4488
  ]
@@ -4488,7 +4497,19 @@
4488
4497
  },
4489
4498
  "source": {
4490
4499
  "type": "string",
4491
- "description": "Source of the candidate (e.g., referral, job board)"
4500
+ "description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
4501
+ },
4502
+ "channel": {
4503
+ "type": "string",
4504
+ "description": "How the candidate entered the system",
4505
+ "enum": [
4506
+ "form",
4507
+ "email",
4508
+ "call",
4509
+ "chat",
4510
+ "api",
4511
+ "agent"
4512
+ ]
4492
4513
  },
4493
4514
  "shortCode": {
4494
4515
  "type": "string",
@@ -4979,20 +5000,30 @@
4979
5000
  "description": "Current status of the candidate",
4980
5001
  "enum": [
4981
5002
  "active",
5003
+ "paused",
4982
5004
  "withdrawn",
4983
5005
  "rejected",
5006
+ "hired",
5007
+ "archived",
4984
5008
  "inactive",
4985
5009
  "onHold",
4986
5010
  "offerExtended",
4987
5011
  "offerDeclined",
4988
- "futureConsideration",
4989
- "archived"
5012
+ "futureConsideration"
4990
5013
  ]
4991
5014
  },
4992
5015
  "stage": {
4993
5016
  "type": "string",
4994
5017
  "description": "Current stage in the recruitment pipeline",
4995
5018
  "enum": [
5019
+ "sourcing",
5020
+ "screening",
5021
+ "assessment",
5022
+ "interview",
5023
+ "offer",
5024
+ "hired",
5025
+ "onboarding",
5026
+ "evaluation",
4996
5027
  "sourced",
4997
5028
  "applied",
4998
5029
  "initial",
@@ -5002,7 +5033,6 @@
5002
5033
  "contacted",
5003
5034
  "interviewed",
5004
5035
  "offered",
5005
- "hired",
5006
5036
  "onboarded",
5007
5037
  "evaluated"
5008
5038
  ]
@@ -5017,7 +5047,19 @@
5017
5047
  },
5018
5048
  "source": {
5019
5049
  "type": "string",
5020
- "description": "Source of the candidate (e.g., referral, job board)"
5050
+ "description": "Where the candidate originated (e.g., careerPage, jobBoard, linkedin, talentPool)"
5051
+ },
5052
+ "channel": {
5053
+ "type": "string",
5054
+ "description": "How the candidate entered the system",
5055
+ "enum": [
5056
+ "form",
5057
+ "email",
5058
+ "call",
5059
+ "chat",
5060
+ "api",
5061
+ "agent"
5062
+ ]
5021
5063
  },
5022
5064
  "shortCode": {
5023
5065
  "type": "string",
@@ -7464,9 +7506,15 @@
7464
7506
  "language": {
7465
7507
  "type": "string"
7466
7508
  },
7509
+ "qualityScore": {
7510
+ "type": "integer",
7511
+ "minimum": 1,
7512
+ "maximum": 5,
7513
+ "description": "Aggregate quality score (1-5 stars) based on answer relevance, clarity, and completeness. AI-generated, recruiter-overridable."
7514
+ },
7467
7515
  "fields": {
7468
7516
  "type": "object",
7469
- "description": "Custom form field answers keyed by field identifier"
7517
+ "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
7518
  },
7471
7519
  "files": {
7472
7520
  "type": "array",
@@ -7737,7 +7785,8 @@
7737
7785
  }
7738
7786
  },
7739
7787
  "fields": {
7740
- "type": "object"
7788
+ "type": "object",
7789
+ "description": "Form fields keyed by identifier. Each field: {label: string, description: string, value: string, type: 'text'|'number'|'date'|'select'|'checkbox'}."
7741
7790
  },
7742
7791
  "language": {
7743
7792
  "type": "string"
@@ -7934,9 +7983,15 @@
7934
7983
  "language": {
7935
7984
  "type": "string"
7936
7985
  },
7986
+ "qualityScore": {
7987
+ "type": "integer",
7988
+ "minimum": 1,
7989
+ "maximum": 5,
7990
+ "description": "Aggregate quality score (1-5 stars) based on answer relevance, clarity, and completeness. AI-generated, recruiter-overridable."
7991
+ },
7937
7992
  "fields": {
7938
7993
  "type": "object",
7939
- "description": "Custom form field answers keyed by field identifier"
7994
+ "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
7995
  },
7941
7996
  "files": {
7942
7997
  "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.25",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",