@smartytalent/mcp-tools 0.1.33-dev.71 → 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 +68 -10
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -11241,7 +11241,20 @@
11241
11241
  },
11242
11242
  "systemPrompt": {
11243
11243
  "type": "string",
11244
- "description": "Operator-editable agent instructions used as the OpenAI Realtime session's system prompt at fire time. Mirror of email body in the operator review window: edit before fire, the dialed call uses the latest version."
11244
+ "description": "Operator-editable agent instructions used as the OpenAI Realtime session's system prompt at fire time. Mirror of email body in the operator review window: edit before fire, the dialed call uses the latest version. Wins over `boeRole`/`boeContext` when both are set."
11245
+ },
11246
+ "boeRole": {
11247
+ "type": "string",
11248
+ "enum": [
11249
+ "sales",
11250
+ "interviewer"
11251
+ ],
11252
+ "description": "Prompt template selector. Picks `service/call/container/outbound/prompt/<role>.md` and renders it with `boeContext` placeholders at dial time. `systemPrompt` overrides if also set. Mutually exclusive with `systemPrompt` in effect."
11253
+ },
11254
+ "boeContext": {
11255
+ "type": "object",
11256
+ "additionalProperties": true,
11257
+ "description": "Placeholder map for the `boeRole` prompt template. Keys depend on the role: for `interviewer` typically `candidateName`, `roleName`, `language`, `applicationUnits`, `employmentOptions`, `nextStepDescription`; for `sales` typically `prospectName`, `prospectCompany`, `language`, `leadSource`. Missing keys render as `not provided`."
11245
11258
  },
11246
11259
  "recording": {
11247
11260
  "type": "object",
@@ -11338,10 +11351,13 @@
11338
11351
  }
11339
11352
  },
11340
11353
  "keyNotes": {
11341
- "type": "array",
11342
- "description": "AI-generated bullet points distilled from the transcript. In `languageCode` (NOT multilingual - single shape; FE renders as-is).",
11343
- "items": {
11344
- "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
+ }
11345
11361
  }
11346
11362
  },
11347
11363
  "topicsDiscussed": {
@@ -11760,7 +11776,20 @@
11760
11776
  },
11761
11777
  "systemPrompt": {
11762
11778
  "type": "string",
11763
- "description": "Operator-editable agent instructions used as the OpenAI Realtime session's system prompt at fire time. Mirror of email body in the operator review window: edit before fire, the dialed call uses the latest version."
11779
+ "description": "Operator-editable agent instructions used as the OpenAI Realtime session's system prompt at fire time. Mirror of email body in the operator review window: edit before fire, the dialed call uses the latest version. Wins over `boeRole`/`boeContext` when both are set."
11780
+ },
11781
+ "boeRole": {
11782
+ "type": "string",
11783
+ "enum": [
11784
+ "sales",
11785
+ "interviewer"
11786
+ ],
11787
+ "description": "Prompt template selector. Picks `service/call/container/outbound/prompt/<role>.md` and renders it with `boeContext` placeholders at dial time. `systemPrompt` overrides if also set. Mutually exclusive with `systemPrompt` in effect."
11788
+ },
11789
+ "boeContext": {
11790
+ "type": "object",
11791
+ "additionalProperties": true,
11792
+ "description": "Placeholder map for the `boeRole` prompt template. Keys depend on the role: for `interviewer` typically `candidateName`, `roleName`, `language`, `applicationUnits`, `employmentOptions`, `nextStepDescription`; for `sales` typically `prospectName`, `prospectCompany`, `language`, `leadSource`. Missing keys render as `not provided`."
11764
11793
  },
11765
11794
  "recording": {
11766
11795
  "type": "object",
@@ -11857,10 +11886,13 @@
11857
11886
  }
11858
11887
  },
11859
11888
  "keyNotes": {
11860
- "type": "array",
11861
- "description": "AI-generated bullet points distilled from the transcript. In `languageCode` (NOT multilingual - single shape; FE renders as-is).",
11862
- "items": {
11863
- "type": "string"
11889
+ "type": "object",
11890
+ "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.",
11891
+ "additionalProperties": {
11892
+ "type": "array",
11893
+ "items": {
11894
+ "type": "string"
11895
+ }
11864
11896
  }
11865
11897
  },
11866
11898
  "topicsDiscussed": {
@@ -11948,6 +11980,32 @@
11948
11980
  "operationId": "callOptions"
11949
11981
  }
11950
11982
  },
11983
+ {
11984
+ "name": "dial_call",
11985
+ "description": "Dial Call",
11986
+ "inputSchema": {
11987
+ "type": "object",
11988
+ "properties": {}
11989
+ },
11990
+ "_meta": {
11991
+ "method": "POST",
11992
+ "path": "/v1/calls/{callId}/dial",
11993
+ "operationId": "dialCall"
11994
+ }
11995
+ },
11996
+ {
11997
+ "name": "dial_call_options",
11998
+ "description": "Dial Call Options",
11999
+ "inputSchema": {
12000
+ "type": "object",
12001
+ "properties": {}
12002
+ },
12003
+ "_meta": {
12004
+ "method": "OPTIONS",
12005
+ "path": "/v1/calls/{callId}/dial",
12006
+ "operationId": "dialCallOptions"
12007
+ }
12008
+ },
11951
12009
  {
11952
12010
  "name": "list_comments",
11953
12011
  "description": "List Comments",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.71",
3
+ "version": "0.1.33-dev.73",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",