@smartytalent/openai-tools 0.1.13 → 0.1.15

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 +37 -7
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -5536,9 +5536,7 @@
5536
5536
  "meta": {
5537
5537
  "title": "ResourceMetaSchema",
5538
5538
  "type": "object",
5539
- "additionalProperties": {
5540
- "type": "string"
5541
- }
5539
+ "additionalProperties": true
5542
5540
  }
5543
5541
  }
5544
5542
  }
@@ -6315,10 +6313,26 @@
6315
6313
  "type": "string"
6316
6314
  },
6317
6315
  "subject": {
6318
- "type": "string"
6316
+ "oneOf": [
6317
+ {
6318
+ "type": "string"
6319
+ },
6320
+ {
6321
+ "type": "object",
6322
+ "additionalProperties": true
6323
+ }
6324
+ ]
6319
6325
  },
6320
6326
  "body": {
6321
- "type": "string"
6327
+ "oneOf": [
6328
+ {
6329
+ "type": "string"
6330
+ },
6331
+ {
6332
+ "type": "object",
6333
+ "additionalProperties": true
6334
+ }
6335
+ ]
6322
6336
  },
6323
6337
  "shortCode": {
6324
6338
  "type": "string"
@@ -6542,10 +6556,26 @@
6542
6556
  "type": "string"
6543
6557
  },
6544
6558
  "subject": {
6545
- "type": "string"
6559
+ "oneOf": [
6560
+ {
6561
+ "type": "string"
6562
+ },
6563
+ {
6564
+ "type": "object",
6565
+ "additionalProperties": true
6566
+ }
6567
+ ]
6546
6568
  },
6547
6569
  "body": {
6548
- "type": "string"
6570
+ "oneOf": [
6571
+ {
6572
+ "type": "string"
6573
+ },
6574
+ {
6575
+ "type": "object",
6576
+ "additionalProperties": true
6577
+ }
6578
+ ]
6549
6579
  },
6550
6580
  "shortCode": {
6551
6581
  "type": "string"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",