@smartytalent/openai-tools 0.1.33-dev.72 → 0.1.33-dev.73

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 +14 -8
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -11023,10 +11023,13 @@
11023
11023
  }
11024
11024
  },
11025
11025
  "keyNotes": {
11026
- "type": "array",
11027
- "description": "AI-generated bullet points distilled from the transcript. In `languageCode` (NOT multilingual - single shape; FE renders as-is).",
11028
- "items": {
11029
- "type": "string"
11026
+ "type": "object",
11027
+ "description": "AI-generated fact bullets per locale, distilled from the transcript.\nKeyed by BCP-47 locale (e.g. `en-US`, `pl-PL`); values are arrays of\nstrings. The source language (matches `languageCode`) is always\npresent; tenant target locales are added by the AI translate step.\nFE selects the locale to render (no auto-flatten on read). Same shape\nas `summary`/`transcript` - one object, NOT separate columns.",
11028
+ "additionalProperties": {
11029
+ "type": "array",
11030
+ "items": {
11031
+ "type": "string"
11032
+ }
11030
11033
  }
11031
11034
  },
11032
11035
  "topicsDiscussed": {
@@ -11549,10 +11552,13 @@
11549
11552
  }
11550
11553
  },
11551
11554
  "keyNotes": {
11552
- "type": "array",
11553
- "description": "AI-generated bullet points distilled from the transcript. In `languageCode` (NOT multilingual - single shape; FE renders as-is).",
11554
- "items": {
11555
- "type": "string"
11555
+ "type": "object",
11556
+ "description": "AI-generated fact bullets per locale, distilled from the transcript.\nKeyed by BCP-47 locale (e.g. `en-US`, `pl-PL`); values are arrays of\nstrings. The source language (matches `languageCode`) is always\npresent; tenant target locales are added by the AI translate step.\nFE selects the locale to render (no auto-flatten on read). Same shape\nas `summary`/`transcript` - one object, NOT separate columns.",
11557
+ "additionalProperties": {
11558
+ "type": "array",
11559
+ "items": {
11560
+ "type": "string"
11561
+ }
11556
11562
  }
11557
11563
  },
11558
11564
  "topicsDiscussed": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/openai-tools",
3
- "version": "0.1.33-dev.72",
3
+ "version": "0.1.33-dev.73",
4
4
  "description": "OpenAI function/tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",