telnyx-mcp 6.74.0 → 6.74.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.
@@ -50476,13 +50476,13 @@ const EMBEDDED_METHODS = [
50476
50476
  name: 'retrieve',
50477
50477
  endpoint: '/sip_registration_status',
50478
50478
  httpMethod: 'get',
50479
- summary: 'Check SIP registration status',
50479
+ summary: 'SIP Registration Status',
50480
50480
  description: 'Returns 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.',
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: "{ 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; sipUriUserHost?: 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; sipUriUserHost?: 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; sipUriUserHost?: 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```",
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',