@smartytalent/openai-tools 0.9.0 → 0.9.2
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.
- package/dist/tools.json +46 -0
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -4941,6 +4941,48 @@
|
|
|
4941
4941
|
}
|
|
4942
4942
|
}
|
|
4943
4943
|
}
|
|
4944
|
+
},
|
|
4945
|
+
"meta": {
|
|
4946
|
+
"title": "JobRelationshipsCandidatesMetaSchema",
|
|
4947
|
+
"type": "object",
|
|
4948
|
+
"description": "Live candidate counters maintained on the job row by the candidate\nlifecycle events (created/stage-changed/deleted), clamped to >= 0.\nPresent on both list and show responses. Server-maintained: any\nvalue sent in a request body is ignored. The scalable companion to\n`GET /v1/candidates?filterJobId=` - render badges from here, rows\nfrom the list.",
|
|
4949
|
+
"properties": {
|
|
4950
|
+
"total": {
|
|
4951
|
+
"type": "integer",
|
|
4952
|
+
"description": "Number of candidates on this job."
|
|
4953
|
+
},
|
|
4954
|
+
"byStage": {
|
|
4955
|
+
"title": "JobRelationshipsCandidatesMetaByStageSchema",
|
|
4956
|
+
"type": "object",
|
|
4957
|
+
"description": "Candidate count per v2 pipeline stage, in funnel order.\nDeprecated v1 stage values still stored on older candidate\nrows are folded into their v2 bucket by the counter\n(screened -> screening, interviewed -> interview, ...), so\nthese eight keys are the complete vocabulary. A missing key\nmeans zero. The values are designed to sum to `total`; a\npersistent mismatch means counter drift and is worth\nsurfacing, not hiding.",
|
|
4958
|
+
"properties": {
|
|
4959
|
+
"sourcing": {
|
|
4960
|
+
"type": "integer"
|
|
4961
|
+
},
|
|
4962
|
+
"screening": {
|
|
4963
|
+
"type": "integer"
|
|
4964
|
+
},
|
|
4965
|
+
"assessment": {
|
|
4966
|
+
"type": "integer"
|
|
4967
|
+
},
|
|
4968
|
+
"interview": {
|
|
4969
|
+
"type": "integer"
|
|
4970
|
+
},
|
|
4971
|
+
"offer": {
|
|
4972
|
+
"type": "integer"
|
|
4973
|
+
},
|
|
4974
|
+
"hired": {
|
|
4975
|
+
"type": "integer"
|
|
4976
|
+
},
|
|
4977
|
+
"onboarding": {
|
|
4978
|
+
"type": "integer"
|
|
4979
|
+
},
|
|
4980
|
+
"evaluation": {
|
|
4981
|
+
"type": "integer"
|
|
4982
|
+
}
|
|
4983
|
+
}
|
|
4984
|
+
}
|
|
4985
|
+
}
|
|
4944
4986
|
}
|
|
4945
4987
|
}
|
|
4946
4988
|
},
|
|
@@ -20456,6 +20498,10 @@
|
|
|
20456
20498
|
"archived"
|
|
20457
20499
|
]
|
|
20458
20500
|
},
|
|
20501
|
+
"filterJobId": {
|
|
20502
|
+
"type": "string",
|
|
20503
|
+
"description": "Returns the ads generated for the given job (JobIndex lookup)."
|
|
20504
|
+
},
|
|
20459
20505
|
"filterCreatedFrom": {
|
|
20460
20506
|
"type": "string",
|
|
20461
20507
|
"description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
|