@smartytalent/openai-tools 0.1.33-dev.102 → 0.1.33-dev.104

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 +57 -14
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -9291,7 +9291,8 @@
9291
9291
  "received",
9292
9292
  "processing",
9293
9293
  "processed",
9294
- "failed"
9294
+ "failed",
9295
+ "waiting"
9295
9296
  ]
9296
9297
  },
9297
9298
  "language": {
@@ -9485,12 +9486,13 @@
9485
9486
  "properties": {
9486
9487
  "filterStatus": {
9487
9488
  "type": "string",
9488
- "description": "Returns submissions with the current status.",
9489
+ "description": "Returns submissions with the current status. `waiting` = parked until the target job activates (released by submission:release).",
9489
9490
  "enum": [
9490
9491
  "received",
9491
9492
  "processing",
9492
9493
  "processed",
9493
- "failed"
9494
+ "failed",
9495
+ "waiting"
9494
9496
  ]
9495
9497
  },
9496
9498
  "filterEmail": {
@@ -9788,7 +9790,8 @@
9788
9790
  "received",
9789
9791
  "processing",
9790
9792
  "processed",
9791
- "failed"
9793
+ "failed",
9794
+ "waiting"
9792
9795
  ]
9793
9796
  },
9794
9797
  "language": {
@@ -17849,15 +17852,35 @@
17849
17852
  "attributes": {
17850
17853
  "title": "OperationAttributesSchema",
17851
17854
  "type": "object",
17852
- "required": [
17853
- "name",
17854
- "email"
17855
- ],
17856
17855
  "properties": {
17857
17856
  "name": {
17858
- "type": "string"
17857
+ "type": "string",
17858
+ "description": "Required on create. Human-readable operation name."
17859
+ },
17860
+ "event": {
17861
+ "type": "string",
17862
+ "description": "Required on create. Colon-notation ATS event code (e.g. rcrt:event:candidate:created); the prefix derives source."
17863
+ },
17864
+ "eventDetails": {
17865
+ "type": "string",
17866
+ "description": "Required on create. JSON STRING (max 4096) carrying the per-event payload, e.g. {\"talent\":{\"shortCode\":\"123\"},\"job\":{\"shortCode\":\"456\"}}. Parsed to an object in the service:operation:created event copy."
17867
+ },
17868
+ "source": {
17869
+ "type": "string",
17870
+ "description": "Derived server-side from the event prefix (erecruiter, lever). Read-only."
17859
17871
  },
17860
17872
  "status": {
17873
+ "type": "string",
17874
+ "enum": [
17875
+ "active",
17876
+ "inactive",
17877
+ "pending",
17878
+ "hold",
17879
+ "archived",
17880
+ "failed"
17881
+ ]
17882
+ },
17883
+ "parentOperationId": {
17861
17884
  "type": "string"
17862
17885
  },
17863
17886
  "timestamps": {
@@ -17979,15 +18002,35 @@
17979
18002
  "attributes": {
17980
18003
  "title": "OperationAttributesSchema",
17981
18004
  "type": "object",
17982
- "required": [
17983
- "name",
17984
- "email"
17985
- ],
17986
18005
  "properties": {
17987
18006
  "name": {
17988
- "type": "string"
18007
+ "type": "string",
18008
+ "description": "Required on create. Human-readable operation name."
18009
+ },
18010
+ "event": {
18011
+ "type": "string",
18012
+ "description": "Required on create. Colon-notation ATS event code (e.g. rcrt:event:candidate:created); the prefix derives source."
18013
+ },
18014
+ "eventDetails": {
18015
+ "type": "string",
18016
+ "description": "Required on create. JSON STRING (max 4096) carrying the per-event payload, e.g. {\"talent\":{\"shortCode\":\"123\"},\"job\":{\"shortCode\":\"456\"}}. Parsed to an object in the service:operation:created event copy."
18017
+ },
18018
+ "source": {
18019
+ "type": "string",
18020
+ "description": "Derived server-side from the event prefix (erecruiter, lever). Read-only."
17989
18021
  },
17990
18022
  "status": {
18023
+ "type": "string",
18024
+ "enum": [
18025
+ "active",
18026
+ "inactive",
18027
+ "pending",
18028
+ "hold",
18029
+ "archived",
18030
+ "failed"
18031
+ ]
18032
+ },
18033
+ "parentOperationId": {
17991
18034
  "type": "string"
17992
18035
  },
17993
18036
  "timestamps": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.102",
3
+ "version": "0.1.33-dev.104",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",