@smartytalent/mcp-tools 0.4.3 → 0.4.5

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 +60 -3
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -3034,7 +3034,9 @@
3034
3034
  "pl-PL",
3035
3035
  "de-DE",
3036
3036
  "it-IT",
3037
- "he-IL"
3037
+ "he-IL",
3038
+ "fr-FR",
3039
+ "cs-CZ"
3038
3040
  ]
3039
3041
  }
3040
3042
  }
@@ -4383,7 +4385,9 @@
4383
4385
  "pl-PL",
4384
4386
  "de-DE",
4385
4387
  "it-IT",
4386
- "he-IL"
4388
+ "he-IL",
4389
+ "fr-FR",
4390
+ "cs-CZ"
4387
4391
  ]
4388
4392
  }
4389
4393
  }
@@ -5547,7 +5551,9 @@
5547
5551
  "pl-PL",
5548
5552
  "de-DE",
5549
5553
  "it-IT",
5550
- "he-IL"
5554
+ "he-IL",
5555
+ "fr-FR",
5556
+ "cs-CZ"
5551
5557
  ]
5552
5558
  }
5553
5559
  }
@@ -11805,6 +11811,57 @@
11805
11811
  }
11806
11812
  }
11807
11813
  }
11814
+ },
11815
+ "meta": {
11816
+ "title": "CallMetaSchema",
11817
+ "type": "object",
11818
+ "description": "Resource-level meta for call rows. Provider-specific identifiers\nlive here (Twilio CallSid is also surfaced top-level for the\nProviderCallSidIndex GSI; this is the canonical record). Forward-\ncompatible (additionalProperties: true) so transport adapters can\nstash protocol-specific fields without schema churn.",
11819
+ "properties": {
11820
+ "providerCallSid": {
11821
+ "type": "string",
11822
+ "description": "Provider-side call id (Twilio CallSid for phone)."
11823
+ },
11824
+ "providerStreamSid": {
11825
+ "type": "string",
11826
+ "description": "Provider-side media stream id (Twilio Media Stream SID)."
11827
+ },
11828
+ "providerStatus": {
11829
+ "type": "string",
11830
+ "description": "Granular provider status, preserved separately from the\nrow's bucket `status`. Drives retry / analytics decisions\n(e.g. `busy` retries faster than `no-answer`; `failed`\ndoesn't retry). Twilio CallStatus values: queued, initiated,\nringing, in-progress, completed, busy, no-answer, failed,\ncanceled."
11831
+ },
11832
+ "reasonCode": {
11833
+ "type": "string",
11834
+ "enum": [
11835
+ "call_already_active",
11836
+ "lockout_window",
11837
+ "not_in_review_window"
11838
+ ],
11839
+ "description": "Set on 409 responses for non-actionable transitions. call_already_active=DELETE on active rows; lockout_window=DELETE within 30s of scheduledFireAt; not_in_review_window=PATCH systemPrompt/plannedTopics/scheduledFireAt outside draft|scheduled."
11840
+ },
11841
+ "intent": {
11842
+ "type": "string",
11843
+ "enum": [
11844
+ "brief_request",
11845
+ "job_application",
11846
+ "talent_pool",
11847
+ "status_inquiry",
11848
+ "wrong_number",
11849
+ "sales_chat",
11850
+ "faq",
11851
+ "other"
11852
+ ],
11853
+ "description": "AI classifier output, inbound calls only - the fast hangup verdict; the accurate pass reruns on the analyzed transcript (Discover Intent From Call on service:call:analyzed). intent=brief_request opens the phone-brief conversation. Not present on outbound rows."
11854
+ },
11855
+ "intentReasoning": {
11856
+ "type": "string",
11857
+ "description": "One-sentence explanation of the intent classifier's choice. Inbound calls only."
11858
+ },
11859
+ "isReply": {
11860
+ "type": "boolean",
11861
+ "description": "True when this call is a workflow-driven follow-up (e.g. boe calling back to clarify a brief)."
11862
+ }
11863
+ },
11864
+ "additionalProperties": true
11808
11865
  }
11809
11866
  }
11810
11867
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.4.3",
3
+ "version": "0.4.5",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",