telnyx-mcp 6.37.0 → 6.38.0

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.
@@ -13329,15 +13329,15 @@ const EMBEDDED_METHODS = [
13329
13329
  },
13330
13330
  {
13331
13331
  name: 'update',
13332
- endpoint: '/wireless_blocklists',
13332
+ endpoint: '/wireless_blocklists/{id}',
13333
13333
  httpMethod: 'patch',
13334
13334
  summary: 'Update a Wireless Blocklist',
13335
13335
  description: 'Update a Wireless Blocklist.',
13336
13336
  stainlessPath: '(resource) wireless_blocklists > (method) update',
13337
13337
  qualified: 'client.wirelessBlocklists.update',
13338
- params: ['name?: string;', "type?: 'country' | 'mcc' | 'plmn';", 'values?: string[];'],
13338
+ params: ['id: string;', 'name?: string;', 'values?: string[];'],
13339
13339
  response: "{ data?: { id?: string; created_at?: string; name?: string; record_type?: string; type?: 'country' | 'mcc' | 'plmn'; updated_at?: string; values?: string[]; }; }",
13340
- markdown: "## update\n\n`client.wirelessBlocklists.update(name?: string, type?: 'country' | 'mcc' | 'plmn', values?: string[]): { data?: wireless_blocklist; }`\n\n**patch** `/wireless_blocklists`\n\nUpdate a Wireless Blocklist.\n\n### Parameters\n\n- `name?: string`\n The name of the Wireless Blocklist.\n\n- `type?: 'country' | 'mcc' | 'plmn'`\n The type of wireless blocklist.\n\n- `values?: string[]`\n Values to block. The values here depend on the `type` of Wireless Blocklist.\n\n### Returns\n\n- `{ data?: { id?: string; created_at?: string; name?: string; record_type?: string; type?: 'country' | 'mcc' | 'plmn'; updated_at?: string; values?: string[]; }; }`\n\n - `data?: { id?: string; created_at?: string; name?: string; record_type?: string; type?: 'country' | 'mcc' | 'plmn'; updated_at?: string; values?: string[]; }`\n\n### Example\n\n```typescript\nimport Telnyx from 'telnyx';\n\nconst client = new Telnyx();\n\nconst wirelessBlocklist = await client.wirelessBlocklists.update();\n\nconsole.log(wirelessBlocklist);\n```",
13340
+ markdown: "## update\n\n`client.wirelessBlocklists.update(id: string, name?: string, values?: string[]): { data?: wireless_blocklist; }`\n\n**patch** `/wireless_blocklists/{id}`\n\nUpdate a Wireless Blocklist.\n\n### Parameters\n\n- `id: string`\n\n- `name?: string`\n The name of the Wireless Blocklist.\n\n- `values?: string[]`\n Values to block. The values here depend on the `type` of Wireless Blocklist.\n\n### Returns\n\n- `{ data?: { id?: string; created_at?: string; name?: string; record_type?: string; type?: 'country' | 'mcc' | 'plmn'; updated_at?: string; values?: string[]; }; }`\n\n - `data?: { id?: string; created_at?: string; name?: string; record_type?: string; type?: 'country' | 'mcc' | 'plmn'; updated_at?: string; values?: string[]; }`\n\n### Example\n\n```typescript\nimport Telnyx from 'telnyx';\n\nconst client = new Telnyx();\n\nconst wirelessBlocklist = await client.wirelessBlocklists.update('6a09cdc3-8948-47f0-aa62-74ac943d6c58');\n\nconsole.log(wirelessBlocklist);\n```",
13341
13341
  },
13342
13342
  {
13343
13343
  name: 'list',