@smartytalent/mcp-tools 0.1.6 → 0.1.8

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 +135 -0
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -7586,6 +7586,10 @@
7586
7586
  "archived"
7587
7587
  ]
7588
7588
  },
7589
+ "filterSenderNumber": {
7590
+ "type": "string",
7591
+ "description": "Filter chats by sender phone number (e.g. +48535517222)."
7592
+ },
7589
7593
  "filterCreatedFrom": {
7590
7594
  "type": "string",
7591
7595
  "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
@@ -7738,6 +7742,10 @@
7738
7742
  }
7739
7743
  }
7740
7744
  }
7745
+ },
7746
+ "meta": {
7747
+ "type": "object",
7748
+ "additionalProperties": true
7741
7749
  }
7742
7750
  }
7743
7751
  }
@@ -11991,5 +11999,132 @@
11991
11999
  "path": "/v1/notifications/{notificationId}",
11992
12000
  "operationId": "notificationOptions"
11993
12001
  }
12002
+ },
12003
+ {
12004
+ "name": "list_timelines",
12005
+ "description": "List Timelines",
12006
+ "inputSchema": {
12007
+ "type": "object",
12008
+ "properties": {
12009
+ "filterEntityKey": {
12010
+ "type": "string",
12011
+ "description": "Filter timeline entries by entity key prefix (e.g., \"jobs#entityId\")"
12012
+ },
12013
+ "filterUserKey": {
12014
+ "type": "string",
12015
+ "description": "Filter timeline entries by user key prefix (e.g., \"userId\")"
12016
+ },
12017
+ "filterCreatedFrom": {
12018
+ "type": "string",
12019
+ "description": "Filters results to include only those created from the specified date and time. The value must be in ISO 8601 format."
12020
+ },
12021
+ "filterCreatedTo": {
12022
+ "type": "string",
12023
+ "description": "Filters results to include only those created up to the specified date and time. The value must be in ISO 8601 format."
12024
+ },
12025
+ "pageSize": {
12026
+ "type": "integer",
12027
+ "description": "Specifies the number of items to retrieve per page. The maximum value is 100."
12028
+ },
12029
+ "pageNumber": {
12030
+ "type": "integer",
12031
+ "description": "Specifies the page number to retrieve. Used for traditional pagination."
12032
+ },
12033
+ "pageAfter": {
12034
+ "type": "string",
12035
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
12036
+ },
12037
+ "pageBefore": {
12038
+ "type": "string",
12039
+ "description": "Returns the data encoded in Base64 format, used for cursor-based pagination"
12040
+ }
12041
+ }
12042
+ },
12043
+ "_meta": {
12044
+ "method": "GET",
12045
+ "path": "/v1/timelines",
12046
+ "operationId": "listTimelines"
12047
+ }
12048
+ },
12049
+ {
12050
+ "name": "cors_timelines",
12051
+ "description": "CORS support for Timelines",
12052
+ "inputSchema": {
12053
+ "type": "object",
12054
+ "properties": {}
12055
+ },
12056
+ "_meta": {
12057
+ "method": "OPTIONS",
12058
+ "path": "/v1/timelines",
12059
+ "operationId": "corsTimelines"
12060
+ }
12061
+ },
12062
+ {
12063
+ "name": "show_timeline",
12064
+ "description": "Show Timeline Entry",
12065
+ "inputSchema": {
12066
+ "type": "object",
12067
+ "properties": {
12068
+ "timelineId": {
12069
+ "type": "string",
12070
+ "description": "The timeline entry ID"
12071
+ }
12072
+ },
12073
+ "required": [
12074
+ "timelineId"
12075
+ ]
12076
+ },
12077
+ "_meta": {
12078
+ "method": "GET",
12079
+ "path": "/v1/timelines/{timelineId}",
12080
+ "operationId": "showTimeline"
12081
+ }
12082
+ },
12083
+ {
12084
+ "name": "cors_timeline_entry",
12085
+ "description": "CORS support for Timeline Entry",
12086
+ "inputSchema": {
12087
+ "type": "object",
12088
+ "properties": {}
12089
+ },
12090
+ "_meta": {
12091
+ "method": "OPTIONS",
12092
+ "path": "/v1/timelines/{timelineId}",
12093
+ "operationId": "corsTimelineEntry"
12094
+ }
12095
+ },
12096
+ {
12097
+ "name": "rollback_timeline",
12098
+ "description": "Rollback Timeline Entry",
12099
+ "inputSchema": {
12100
+ "type": "object",
12101
+ "properties": {
12102
+ "timelineId": {
12103
+ "type": "string",
12104
+ "description": "The timeline entry ID to rollback to"
12105
+ }
12106
+ },
12107
+ "required": [
12108
+ "timelineId"
12109
+ ]
12110
+ },
12111
+ "_meta": {
12112
+ "method": "POST",
12113
+ "path": "/v1/timelines/{timelineId}/rollback",
12114
+ "operationId": "rollbackTimeline"
12115
+ }
12116
+ },
12117
+ {
12118
+ "name": "cors_timeline_rollback",
12119
+ "description": "CORS support for Timeline Rollback",
12120
+ "inputSchema": {
12121
+ "type": "object",
12122
+ "properties": {}
12123
+ },
12124
+ "_meta": {
12125
+ "method": "OPTIONS",
12126
+ "path": "/v1/timelines/{timelineId}/rollback",
12127
+ "operationId": "corsTimelineRollback"
12128
+ }
11994
12129
  }
11995
12130
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",