telnyx-mcp 6.73.2 → 6.74.1
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 +2 -2
- package/local-docs-search.js.map +1 -1
- package/local-docs-search.mjs +2 -2
- package/local-docs-search.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 +2 -2
- package/src/server.ts +1 -1
package/local-docs-search.js
CHANGED
|
@@ -50481,8 +50481,8 @@ const EMBEDDED_METHODS = [
|
|
|
50481
50481
|
stainlessPath: '(resource) sip_registration_status > (method) retrieve',
|
|
50482
50482
|
qualified: 'client.sipRegistrationStatus.retrieve',
|
|
50483
50483
|
params: ['connection_id: string;', "credential_type: 'uac_external_credential';"],
|
|
50484
|
-
response: "{
|
|
50485
|
-
markdown: "## retrieve\n\n`client.sipRegistrationStatus.retrieve(connection_id: string, credential_type: 'uac_external_credential'): {
|
|
50484
|
+
response: "{ connection_id?: string; connection_name?: string; credential_type?: 'uac_external_credential'; credential_username?: string; last_registration_response?: string; registered?: boolean; sip_registration_details?: { auth_retries?: number; expires?: number; failures?: number; next_action_at?: number; sip_uri_user_host?: string; uptime?: number; }; sip_registration_status?: 'unregistering' | 'connection_disabled' | 'standby' | 'failed' | 'trying' | 'registered' | 'unknown'; }",
|
|
50485
|
+
markdown: "## retrieve\n\n`client.sipRegistrationStatus.retrieve(connection_id: string, credential_type: 'uac_external_credential'): { connection_id?: string; connection_name?: string; credential_type?: 'uac_external_credential'; credential_username?: string; last_registration_response?: string; registered?: boolean; sip_registration_details?: object; sip_registration_status?: 'unregistering' | 'connection_disabled' | 'standby' | 'failed' | 'trying' | 'registered' | 'unknown'; }`\n\n**get** `/sip_registration_status`\n\nReturns the live SIP registration state of a UAC connection: whether it is currently registered, when it last registered, and the last response Telnyx received from the registrar. Only `uac_external_credential` is supported today.\n\n### Parameters\n\n- `connection_id: string`\n Identifier of the UAC connection to look up.\n\n- `credential_type: 'uac_external_credential'`\n The kind of credential to look up. Only `uac_external_credential` is supported today.\n\n### Returns\n\n- `{ connection_id?: string; connection_name?: string; credential_type?: 'uac_external_credential'; credential_username?: string; last_registration_response?: string; registered?: boolean; sip_registration_details?: { auth_retries?: number; expires?: number; failures?: number; next_action_at?: number; sip_uri_user_host?: string; uptime?: number; }; sip_registration_status?: 'unregistering' | 'connection_disabled' | 'standby' | 'failed' | 'trying' | 'registered' | 'unknown'; }`\n\n - `connection_id?: string`\n - `connection_name?: string`\n - `credential_type?: 'uac_external_credential'`\n - `credential_username?: string`\n - `last_registration_response?: string`\n - `registered?: boolean`\n - `sip_registration_details?: { auth_retries?: number; expires?: number; failures?: number; next_action_at?: number; sip_uri_user_host?: string; uptime?: number; }`\n - `sip_registration_status?: 'unregistering' | 'connection_disabled' | 'standby' | 'failed' | 'trying' | 'registered' | 'unknown'`\n\n### Example\n\n```typescript\nimport Telnyx from 'telnyx';\n\nconst client = new Telnyx();\n\nconst sipRegistrationStatus = await client.sipRegistrationStatus.retrieve({ connection_id: 'connection_id', credential_type: 'uac_external_credential' });\n\nconsole.log(sipRegistrationStatus);\n```",
|
|
50486
50486
|
perLanguage: {
|
|
50487
50487
|
typescript: {
|
|
50488
50488
|
method: 'client.sipRegistrationStatus.retrieve',
|