@smartytalent/mcp-tools 0.1.33-dev.72 → 0.1.33-dev.74

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 +98 -8
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -11351,10 +11351,13 @@
11351
11351
  }
11352
11352
  },
11353
11353
  "keyNotes": {
11354
- "type": "array",
11355
- "description": "AI-generated bullet points distilled from the transcript. In `languageCode` (NOT multilingual - single shape; FE renders as-is).",
11356
- "items": {
11357
- "type": "string"
11354
+ "type": "object",
11355
+ "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.",
11356
+ "additionalProperties": {
11357
+ "type": "array",
11358
+ "items": {
11359
+ "type": "string"
11360
+ }
11358
11361
  }
11359
11362
  },
11360
11363
  "topicsDiscussed": {
@@ -11374,6 +11377,48 @@
11374
11377
  ],
11375
11378
  "description": "AI-derived sentiment of the conversation as a whole."
11376
11379
  },
11380
+ "delivery": {
11381
+ "type": "object",
11382
+ "description": "Vocal delivery cues from the audio model (judged from voice, not the\nwords alone). One Map attribute, NOT localized - FE renders each as a\nlabel/meter. Null until the post-call AI Step Function completes.",
11383
+ "properties": {
11384
+ "confidence": {
11385
+ "type": "string",
11386
+ "enum": [
11387
+ "low",
11388
+ "medium",
11389
+ "high"
11390
+ ],
11391
+ "description": "How composed/assured the candidate sounded."
11392
+ },
11393
+ "engagement": {
11394
+ "type": "string",
11395
+ "enum": [
11396
+ "low",
11397
+ "medium",
11398
+ "high"
11399
+ ],
11400
+ "description": "Energy / interest level."
11401
+ },
11402
+ "clarity": {
11403
+ "type": "string",
11404
+ "enum": [
11405
+ "low",
11406
+ "medium",
11407
+ "high"
11408
+ ],
11409
+ "description": "How clearly/structured the candidate spoke."
11410
+ },
11411
+ "pace": {
11412
+ "type": "string",
11413
+ "enum": [
11414
+ "slow",
11415
+ "steady",
11416
+ "fast"
11417
+ ],
11418
+ "description": "Speaking speed."
11419
+ }
11420
+ }
11421
+ },
11377
11422
  "summaryGeneratedAt": {
11378
11423
  "type": "string",
11379
11424
  "description": "ISO 8601 timestamp when the AI summary pipeline (keyNotes + topicsDiscussed + sentiment + summary) finalized. Null until the post-call AI Step Function completes."
@@ -11883,10 +11928,13 @@
11883
11928
  }
11884
11929
  },
11885
11930
  "keyNotes": {
11886
- "type": "array",
11887
- "description": "AI-generated bullet points distilled from the transcript. In `languageCode` (NOT multilingual - single shape; FE renders as-is).",
11888
- "items": {
11889
- "type": "string"
11931
+ "type": "object",
11932
+ "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.",
11933
+ "additionalProperties": {
11934
+ "type": "array",
11935
+ "items": {
11936
+ "type": "string"
11937
+ }
11890
11938
  }
11891
11939
  },
11892
11940
  "topicsDiscussed": {
@@ -11906,6 +11954,48 @@
11906
11954
  ],
11907
11955
  "description": "AI-derived sentiment of the conversation as a whole."
11908
11956
  },
11957
+ "delivery": {
11958
+ "type": "object",
11959
+ "description": "Vocal delivery cues from the audio model (judged from voice, not the\nwords alone). One Map attribute, NOT localized - FE renders each as a\nlabel/meter. Null until the post-call AI Step Function completes.",
11960
+ "properties": {
11961
+ "confidence": {
11962
+ "type": "string",
11963
+ "enum": [
11964
+ "low",
11965
+ "medium",
11966
+ "high"
11967
+ ],
11968
+ "description": "How composed/assured the candidate sounded."
11969
+ },
11970
+ "engagement": {
11971
+ "type": "string",
11972
+ "enum": [
11973
+ "low",
11974
+ "medium",
11975
+ "high"
11976
+ ],
11977
+ "description": "Energy / interest level."
11978
+ },
11979
+ "clarity": {
11980
+ "type": "string",
11981
+ "enum": [
11982
+ "low",
11983
+ "medium",
11984
+ "high"
11985
+ ],
11986
+ "description": "How clearly/structured the candidate spoke."
11987
+ },
11988
+ "pace": {
11989
+ "type": "string",
11990
+ "enum": [
11991
+ "slow",
11992
+ "steady",
11993
+ "fast"
11994
+ ],
11995
+ "description": "Speaking speed."
11996
+ }
11997
+ }
11998
+ },
11909
11999
  "summaryGeneratedAt": {
11910
12000
  "type": "string",
11911
12001
  "description": "ISO 8601 timestamp when the AI summary pipeline (keyNotes + topicsDiscussed + sentiment + summary) finalized. Null until the post-call AI Step Function completes."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.72",
3
+ "version": "0.1.33-dev.74",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",