@smartytalent/mcp-tools 0.4.8 → 0.4.9

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 +36 -1
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -865,6 +865,15 @@
865
865
  "type": "boolean"
866
866
  }
867
867
  }
868
+ },
869
+ "slot": {
870
+ "type": "string",
871
+ "enum": [
872
+ "calling",
873
+ "messaging"
874
+ ],
875
+ "default": "calling",
876
+ "description": "Channel slot: calling = voice identity number (default), messaging = dedicated SMS number (requires SMS capability)"
868
877
  }
869
878
  },
870
879
  "required": [
@@ -899,7 +908,33 @@
899
908
  "description": "Unassign Phone Number",
900
909
  "inputSchema": {
901
910
  "type": "object",
902
- "properties": {}
911
+ "properties": {
912
+ "data": {
913
+ "type": "object",
914
+ "properties": {
915
+ "type": {
916
+ "type": "string",
917
+ "enum": [
918
+ "tenant-phone-numbers"
919
+ ]
920
+ },
921
+ "attributes": {
922
+ "type": "object",
923
+ "properties": {
924
+ "slot": {
925
+ "type": "string",
926
+ "enum": [
927
+ "calling",
928
+ "messaging"
929
+ ],
930
+ "default": "calling",
931
+ "description": "Which slot to detach"
932
+ }
933
+ }
934
+ }
935
+ }
936
+ }
937
+ }
903
938
  },
904
939
  "_meta": {
905
940
  "method": "POST",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",