@smartytalent/mcp-tools 0.3.0 → 0.3.1-dev.2

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 +54 -4
  2. package/package.json +1 -1
package/dist/tools.json CHANGED
@@ -236,11 +236,13 @@
236
236
  },
237
237
  "boePhone": {
238
238
  "type": "string",
239
- "description": "Twilio phone number assigned to the Boe AI agent for this tenant"
239
+ "deprecated": true,
240
+ "description": "DEPRECATED (Arc B B3d): the virtual employee's phone lives on its USER row - read it via the tenant's boeUser relationship. Tenant responses no longer carry this attribute."
240
241
  },
241
242
  "boeEmail": {
242
243
  "type": "string",
243
- "description": "Email address of the tenant's virtual employee (Boe). SERVER-DERIVED at tenant create as boe.{shortCode}@ai.{domain} - client-supplied values on POST are ignored. The user row is becoming the source of truth (Arc B); treat this attribute as read-only."
244
+ "deprecated": true,
245
+ "description": "DEPRECATED (Arc B B3d): the virtual employee's email lives on its USER row - read it via the tenant's boeUser relationship. Tenant responses no longer carry this attribute; client-supplied values are ignored."
244
246
  },
245
247
  "defaultFormId": {
246
248
  "type": "string",
@@ -560,11 +562,13 @@
560
562
  },
561
563
  "boePhone": {
562
564
  "type": "string",
563
- "description": "Twilio phone number assigned to the Boe AI agent for this tenant"
565
+ "deprecated": true,
566
+ "description": "DEPRECATED (Arc B B3d): the virtual employee's phone lives on its USER row - read it via the tenant's boeUser relationship. Tenant responses no longer carry this attribute."
564
567
  },
565
568
  "boeEmail": {
566
569
  "type": "string",
567
- "description": "Email address of the tenant's virtual employee (Boe). SERVER-DERIVED at tenant create as boe.{shortCode}@ai.{domain} - client-supplied values on POST are ignored. The user row is becoming the source of truth (Arc B); treat this attribute as read-only."
570
+ "deprecated": true,
571
+ "description": "DEPRECATED (Arc B B3d): the virtual employee's email lives on its USER row - read it via the tenant's boeUser relationship. Tenant responses no longer carry this attribute; client-supplied values are ignored."
568
572
  },
569
573
  "defaultFormId": {
570
574
  "type": "string",
@@ -815,6 +819,52 @@
815
819
  "operationId": "tenantPhoneNumbersSearchOptions"
816
820
  }
817
821
  },
822
+ {
823
+ "name": "assign_tenant_phone_number",
824
+ "description": "Assign Existing Phone Number",
825
+ "inputSchema": {
826
+ "type": "object",
827
+ "properties": {
828
+ "data": {
829
+ "type": "object",
830
+ "properties": {
831
+ "type": {
832
+ "type": "string",
833
+ "enum": [
834
+ "tenant-phone-numbers"
835
+ ]
836
+ },
837
+ "attributes": {
838
+ "type": "object",
839
+ "properties": {
840
+ "phoneNumber": {
841
+ "type": "string",
842
+ "description": "The phone number to assign (E.164 format)"
843
+ },
844
+ "provider": {
845
+ "type": "string",
846
+ "enum": [
847
+ "twilio",
848
+ "external"
849
+ ],
850
+ "default": "twilio",
851
+ "description": "Where the number is hosted"
852
+ }
853
+ },
854
+ "required": [
855
+ "phoneNumber"
856
+ ]
857
+ }
858
+ }
859
+ }
860
+ }
861
+ },
862
+ "_meta": {
863
+ "method": "POST",
864
+ "path": "/v1/tenants/{tenantId}/phone-numbers/assign",
865
+ "operationId": "assignTenantPhoneNumber"
866
+ }
867
+ },
818
868
  {
819
869
  "name": "purchase_tenant_phone_number",
820
870
  "description": "Purchase Phone Number",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartytalent/mcp-tools",
3
- "version": "0.3.0",
3
+ "version": "0.3.1-dev.2",
4
4
  "description": "MCP tool definitions for SmartyTalent API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",