@smartytalent/openai-tools 0.1.26 → 0.1.28

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 +29 -20
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -12651,6 +12651,18 @@
12651
12651
  "type": "string",
12652
12652
  "description": "Filter by workflow name."
12653
12653
  },
12654
+ "filterCategory": {
12655
+ "type": "string",
12656
+ "description": "Filter by category (sourcing, screening, assessment, onboarding, operational, general). Uses CategoryIndex GSI — efficient at scale.",
12657
+ "enum": [
12658
+ "sourcing",
12659
+ "screening",
12660
+ "assessment",
12661
+ "onboarding",
12662
+ "operational",
12663
+ "general"
12664
+ ]
12665
+ },
12654
12666
  "filterCreatedFrom": {
12655
12667
  "type": "string",
12656
12668
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -12900,31 +12912,28 @@
12900
12912
  "title": "RunRelationshipsSchema",
12901
12913
  "type": "object",
12902
12914
  "required": [
12903
- "workflows"
12915
+ "workflow"
12904
12916
  ],
12905
12917
  "properties": {
12906
- "workflows": {
12918
+ "workflow": {
12907
12919
  "type": "object",
12908
12920
  "properties": {
12909
12921
  "data": {
12910
- "type": "array",
12911
- "items": {
12912
- "type": "object",
12913
- "required": [
12914
- "type",
12915
- "id"
12916
- ],
12917
- "properties": {
12918
- "type": {
12919
- "type": "string",
12920
- "enum": [
12921
- "workflows"
12922
- ]
12923
- },
12924
- "id": {
12925
- "type": "string",
12926
- "description": "The workflow ID to run."
12927
- }
12922
+ "type": "object",
12923
+ "required": [
12924
+ "type",
12925
+ "id"
12926
+ ],
12927
+ "properties": {
12928
+ "type": {
12929
+ "type": "string",
12930
+ "enum": [
12931
+ "workflows"
12932
+ ]
12933
+ },
12934
+ "id": {
12935
+ "type": "string",
12936
+ "description": "The workflow ID to run."
12928
12937
  }
12929
12938
  }
12930
12939
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",