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.
- package/local-docs-search.js +3 -3
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +3 -3
- package/local-docs-search.mjs.map +1 -1
- package/methods.js +1 -1
- package/methods.js.map +1 -1
- package/methods.mjs +1 -1
- package/methods.mjs.map +1 -1
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/local-docs-search.ts +3 -3
- package/src/methods.ts +1 -1
- package/src/server.ts +1 -1
package/local-docs-search.js
CHANGED
|
@@ -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: ['
|
|
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(
|
|
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',
|