@smartytalent/mcp-tools 0.1.33-dev.21 → 0.1.33-dev.23

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 +156 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -2168,6 +2168,10 @@
2168
2168
  "type": "string",
2169
2169
  "description": "Specifies the email address to filter the results."
2170
2170
  },
2171
+ "filterPhone": {
2172
+ "type": "string",
2173
+ "description": "Filter results by exact phone number. Numbers should be in E.164 format\n(e.g. `+48123456789`). Phone-based principal lookup is the SMS channel's\nidentity check, so listing candidates / talents by phone aligns admin\nUI views with what the SMS inbound gate sees. Backed by the PhoneIndex\nGSI on each table."
2174
+ },
2171
2175
  "filterCreatedFrom": {
2172
2176
  "type": "string",
2173
2177
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -4650,6 +4654,14 @@
4650
4654
  "type": "string",
4651
4655
  "description": "Filter candidates by exact shortCode value."
4652
4656
  },
4657
+ "filterEmail": {
4658
+ "type": "string",
4659
+ "description": "Specifies the email address to filter the results."
4660
+ },
4661
+ "filterPhone": {
4662
+ "type": "string",
4663
+ "description": "Filter results by exact phone number. Numbers should be in E.164 format\n(e.g. `+48123456789`). Phone-based principal lookup is the SMS channel's\nidentity check, so listing candidates / talents by phone aligns admin\nUI views with what the SMS inbound gate sees. Backed by the PhoneIndex\nGSI on each table."
4664
+ },
4653
4665
  "filterCreatedFrom": {
4654
4666
  "type": "string",
4655
4667
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -11405,6 +11417,28 @@
11405
11417
  }
11406
11418
  }
11407
11419
  }
11420
+ },
11421
+ "conversations": {
11422
+ "title": "ChatRelationshipsConversationsSchema",
11423
+ "description": "Thread the chat row belongs to. SMS replies on the same boe\nnumber share a conversation; the workflow engine parks runs\non the conversation's meta and reads parkedRunContext to\nresume on inbound. Mirror of EmailRelationshipsConversations.\nThe conversation id is also denormalised onto the chat row's\ninternal `conversationId` attribute (indexed by\nConversationIdIndex) for cheap per-thread history queries -\nAPI consumers should read it from this relationship, not\nfrom attributes.",
11424
+ "type": "object",
11425
+ "properties": {
11426
+ "data": {
11427
+ "type": "array",
11428
+ "items": {
11429
+ "title": "ChatRelationshipsConversationsDataSchema",
11430
+ "type": "object",
11431
+ "properties": {
11432
+ "type": {
11433
+ "type": "string"
11434
+ },
11435
+ "id": {
11436
+ "type": "string"
11437
+ }
11438
+ }
11439
+ }
11440
+ }
11441
+ }
11408
11442
  }
11409
11443
  }
11410
11444
  },
@@ -12752,6 +12786,128 @@
12752
12786
  "operationId": "aggregateOptions"
12753
12787
  }
12754
12788
  },
12789
+ {
12790
+ "name": "list_signals",
12791
+ "description": "List Signals",
12792
+ "inputSchema": {
12793
+ "type": "object",
12794
+ "properties": {
12795
+ "filterCategory": {
12796
+ "type": "string",
12797
+ "description": "filterCategory parameter",
12798
+ "enum": [
12799
+ "inbound_email",
12800
+ "inbound_chat",
12801
+ "inbound_call",
12802
+ "inbound_webapp",
12803
+ "outbound_email",
12804
+ "integration",
12805
+ "auth",
12806
+ "data_access"
12807
+ ]
12808
+ },
12809
+ "filterAction": {
12810
+ "type": "string",
12811
+ "description": "filterAction parameter",
12812
+ "enum": [
12813
+ "rejected_unknown_principal",
12814
+ "rejected_language",
12815
+ "rejected_intent",
12816
+ "rejected_closed_context",
12817
+ "rejected_rate_limit",
12818
+ "accepted",
12819
+ "delivery_failed",
12820
+ "integration_error",
12821
+ "data_exported"
12822
+ ]
12823
+ },
12824
+ "filterActorIdentifier": {
12825
+ "type": "string",
12826
+ "description": "filterActorIdentifier parameter"
12827
+ },
12828
+ "filterSeverity": {
12829
+ "type": "string",
12830
+ "description": "filterSeverity parameter",
12831
+ "enum": [
12832
+ "info",
12833
+ "warning",
12834
+ "error"
12835
+ ]
12836
+ },
12837
+ "filterActorType": {
12838
+ "type": "string",
12839
+ "description": "filterActorType parameter",
12840
+ "enum": [
12841
+ "user",
12842
+ "candidate",
12843
+ "talent",
12844
+ "guest",
12845
+ "system"
12846
+ ]
12847
+ },
12848
+ "sort": {
12849
+ "type": "string",
12850
+ "description": "sort parameter"
12851
+ },
12852
+ "pageSize": {
12853
+ "type": "integer",
12854
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
12855
+ },
12856
+ "pageAfter": {
12857
+ "type": "string",
12858
+ "description": "Opaque base64-encoded cursor returned by a previous list response, used for forward cursor-based pagination. Pass the value verbatim; do not decode or mutate it."
12859
+ },
12860
+ "pageBefore": {
12861
+ "type": "string",
12862
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
12863
+ }
12864
+ }
12865
+ },
12866
+ "_meta": {
12867
+ "method": "GET",
12868
+ "path": "/v1/signals",
12869
+ "operationId": "listSignals"
12870
+ }
12871
+ },
12872
+ {
12873
+ "name": "signals_options",
12874
+ "description": "Signals Options",
12875
+ "inputSchema": {
12876
+ "type": "object",
12877
+ "properties": {}
12878
+ },
12879
+ "_meta": {
12880
+ "method": "OPTIONS",
12881
+ "path": "/v1/signals",
12882
+ "operationId": "signalsOptions"
12883
+ }
12884
+ },
12885
+ {
12886
+ "name": "show_signal",
12887
+ "description": "Show Signal",
12888
+ "inputSchema": {
12889
+ "type": "object",
12890
+ "properties": {}
12891
+ },
12892
+ "_meta": {
12893
+ "method": "GET",
12894
+ "path": "/v1/signals/{signalId}",
12895
+ "operationId": "showSignal"
12896
+ }
12897
+ },
12898
+ {
12899
+ "name": "signal_options",
12900
+ "description": "Signal Options",
12901
+ "inputSchema": {
12902
+ "type": "object",
12903
+ "properties": {}
12904
+ },
12905
+ "_meta": {
12906
+ "method": "OPTIONS",
12907
+ "path": "/v1/signals/{signalId}",
12908
+ "operationId": "signalOptions"
12909
+ }
12910
+ },
12755
12911
  {
12756
12912
  "name": "list_labels",
12757
12913
  "description": "List Labels",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.33-dev.21",
3
+ "version": "0.1.33-dev.23",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",