telnyx 5.122.0 → 5.124.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +28 -0
- data/README.md +1 -1
- data/lib/telnyx/client.rb +5 -0
- data/lib/telnyx/models/ai/assistant_create_params.rb +780 -1
- data/lib/telnyx/models/ai/assistant_update_params.rb +780 -1
- data/lib/telnyx/models/ai/assistants/update_assistant.rb +785 -1
- data/lib/telnyx/models/ai/inference_embedding.rb +767 -1
- data/lib/telnyx/models/{ai_create_response_params.rb → ai_create_response_deprecated_params.rb} +2 -2
- data/lib/telnyx/models/{ai_create_response_response.rb → ai_create_response_deprecated_response.rb} +1 -1
- data/lib/telnyx/models/messaging_profile_update_params.rb +9 -1
- data/lib/telnyx/models/sip_registration_status_retrieve_params.rb +45 -0
- data/lib/telnyx/models/sip_registration_status_retrieve_response.rb +160 -0
- data/lib/telnyx/models/speech_to_text_list_providers_params.rb +16 -5
- data/lib/telnyx/models/speech_to_text_list_providers_response.rb +55 -23
- data/lib/telnyx/models.rb +3 -1
- data/lib/telnyx/resources/ai/assistants/versions.rb +3 -1
- data/lib/telnyx/resources/ai/assistants.rb +6 -2
- data/lib/telnyx/resources/ai.rb +4 -4
- data/lib/telnyx/resources/messaging_profiles.rb +3 -1
- data/lib/telnyx/resources/sip_registration_status.rb +45 -0
- data/lib/telnyx/resources/speech_to_text.rb +6 -5
- data/lib/telnyx/version.rb +1 -1
- data/lib/telnyx.rb +5 -2
- data/rbi/telnyx/client.rbi +4 -0
- data/rbi/telnyx/models/ai/assistant_create_params.rbi +1411 -0
- data/rbi/telnyx/models/ai/assistant_update_params.rbi +1411 -0
- data/rbi/telnyx/models/ai/assistants/update_assistant.rbi +1417 -0
- data/rbi/telnyx/models/ai/inference_embedding.rbi +1454 -0
- data/rbi/telnyx/models/{ai_create_response_params.rbi → ai_create_response_deprecated_params.rbi} +5 -2
- data/rbi/telnyx/models/{ai_create_response_response.rbi → ai_create_response_deprecated_response.rbi} +1 -1
- data/rbi/telnyx/models/messaging_profile_update_params.rbi +8 -0
- data/rbi/telnyx/models/sip_registration_status_retrieve_params.rbi +93 -0
- data/rbi/telnyx/models/sip_registration_status_retrieve_response.rbi +343 -0
- data/rbi/telnyx/models/speech_to_text_list_providers_params.rbi +27 -7
- data/rbi/telnyx/models/speech_to_text_list_providers_response.rbi +107 -43
- data/rbi/telnyx/models.rbi +5 -1
- data/rbi/telnyx/resources/ai/assistants/versions.rbi +8 -0
- data/rbi/telnyx/resources/ai/assistants.rbi +16 -0
- data/rbi/telnyx/resources/ai.rbi +1 -1
- data/rbi/telnyx/resources/messaging_profiles.rbi +3 -0
- data/rbi/telnyx/resources/sip_registration_status.rbi +34 -0
- data/rbi/telnyx/resources/speech_to_text.rbi +11 -5
- data/sig/telnyx/client.rbs +2 -0
- data/sig/telnyx/models/ai/assistant_create_params.rbs +508 -0
- data/sig/telnyx/models/ai/assistant_update_params.rbs +508 -0
- data/sig/telnyx/models/ai/assistants/update_assistant.rbs +511 -0
- data/sig/telnyx/models/ai/inference_embedding.rbs +526 -0
- data/sig/telnyx/models/{ai_create_response_params.rbs → ai_create_response_deprecated_params.rbs} +2 -2
- data/sig/telnyx/models/ai_create_response_deprecated_response.rbs +7 -0
- data/sig/telnyx/models/messaging_profile_update_params.rbs +5 -0
- data/sig/telnyx/models/sip_registration_status_retrieve_params.rbs +41 -0
- data/sig/telnyx/models/sip_registration_status_retrieve_response.rbs +164 -0
- data/sig/telnyx/models/speech_to_text_list_providers_params.rbs +4 -4
- data/sig/telnyx/models/speech_to_text_list_providers_response.rbs +33 -16
- data/sig/telnyx/models.rbs +3 -1
- data/sig/telnyx/resources/ai/assistants/versions.rbs +1 -0
- data/sig/telnyx/resources/ai/assistants.rbs +2 -0
- data/sig/telnyx/resources/ai.rbs +2 -2
- data/sig/telnyx/resources/messaging_profiles.rbs +1 -0
- data/sig/telnyx/resources/sip_registration_status.rbs +13 -0
- metadata +17 -8
- data/sig/telnyx/models/ai_create_response_response.rbs +0 -7
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
module Telnyx
|
|
2
|
+
module Models
|
|
3
|
+
type sip_registration_status_retrieve_response =
|
|
4
|
+
{
|
|
5
|
+
connection_id: String,
|
|
6
|
+
connection_name: String,
|
|
7
|
+
credential_type: Telnyx::Models::SipRegistrationStatusRetrieveResponse::credential_type,
|
|
8
|
+
credential_username: String,
|
|
9
|
+
last_registration_response: String,
|
|
10
|
+
registered: bool,
|
|
11
|
+
sip_registration_details: Telnyx::Models::SipRegistrationStatusRetrieveResponse::SipRegistrationDetails,
|
|
12
|
+
sip_registration_status: Telnyx::Models::SipRegistrationStatusRetrieveResponse::sip_registration_status
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
class SipRegistrationStatusRetrieveResponse < Telnyx::Internal::Type::BaseModel
|
|
16
|
+
attr_reader connection_id: String?
|
|
17
|
+
|
|
18
|
+
def connection_id=: (String) -> String
|
|
19
|
+
|
|
20
|
+
attr_reader connection_name: String?
|
|
21
|
+
|
|
22
|
+
def connection_name=: (String) -> String
|
|
23
|
+
|
|
24
|
+
attr_reader credential_type: Telnyx::Models::SipRegistrationStatusRetrieveResponse::credential_type?
|
|
25
|
+
|
|
26
|
+
def credential_type=: (
|
|
27
|
+
Telnyx::Models::SipRegistrationStatusRetrieveResponse::credential_type
|
|
28
|
+
) -> Telnyx::Models::SipRegistrationStatusRetrieveResponse::credential_type
|
|
29
|
+
|
|
30
|
+
attr_reader credential_username: String?
|
|
31
|
+
|
|
32
|
+
def credential_username=: (String) -> String
|
|
33
|
+
|
|
34
|
+
attr_reader last_registration_response: String?
|
|
35
|
+
|
|
36
|
+
def last_registration_response=: (String) -> String
|
|
37
|
+
|
|
38
|
+
attr_reader registered: bool?
|
|
39
|
+
|
|
40
|
+
def registered=: (bool) -> bool
|
|
41
|
+
|
|
42
|
+
attr_reader sip_registration_details: Telnyx::Models::SipRegistrationStatusRetrieveResponse::SipRegistrationDetails?
|
|
43
|
+
|
|
44
|
+
def sip_registration_details=: (
|
|
45
|
+
Telnyx::Models::SipRegistrationStatusRetrieveResponse::SipRegistrationDetails
|
|
46
|
+
) -> Telnyx::Models::SipRegistrationStatusRetrieveResponse::SipRegistrationDetails
|
|
47
|
+
|
|
48
|
+
attr_reader sip_registration_status: Telnyx::Models::SipRegistrationStatusRetrieveResponse::sip_registration_status?
|
|
49
|
+
|
|
50
|
+
def sip_registration_status=: (
|
|
51
|
+
Telnyx::Models::SipRegistrationStatusRetrieveResponse::sip_registration_status
|
|
52
|
+
) -> Telnyx::Models::SipRegistrationStatusRetrieveResponse::sip_registration_status
|
|
53
|
+
|
|
54
|
+
def initialize: (
|
|
55
|
+
?connection_id: String,
|
|
56
|
+
?connection_name: String,
|
|
57
|
+
?credential_type: Telnyx::Models::SipRegistrationStatusRetrieveResponse::credential_type,
|
|
58
|
+
?credential_username: String,
|
|
59
|
+
?last_registration_response: String,
|
|
60
|
+
?registered: bool,
|
|
61
|
+
?sip_registration_details: Telnyx::Models::SipRegistrationStatusRetrieveResponse::SipRegistrationDetails,
|
|
62
|
+
?sip_registration_status: Telnyx::Models::SipRegistrationStatusRetrieveResponse::sip_registration_status
|
|
63
|
+
) -> void
|
|
64
|
+
|
|
65
|
+
def to_hash: -> {
|
|
66
|
+
connection_id: String,
|
|
67
|
+
connection_name: String,
|
|
68
|
+
credential_type: Telnyx::Models::SipRegistrationStatusRetrieveResponse::credential_type,
|
|
69
|
+
credential_username: String,
|
|
70
|
+
last_registration_response: String,
|
|
71
|
+
registered: bool,
|
|
72
|
+
sip_registration_details: Telnyx::Models::SipRegistrationStatusRetrieveResponse::SipRegistrationDetails,
|
|
73
|
+
sip_registration_status: Telnyx::Models::SipRegistrationStatusRetrieveResponse::sip_registration_status
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
type credential_type = :uac_external_credential
|
|
77
|
+
|
|
78
|
+
module CredentialType
|
|
79
|
+
extend Telnyx::Internal::Type::Enum
|
|
80
|
+
|
|
81
|
+
UAC_EXTERNAL_CREDENTIAL: :uac_external_credential
|
|
82
|
+
|
|
83
|
+
def self?.values: -> ::Array[Telnyx::Models::SipRegistrationStatusRetrieveResponse::credential_type]
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
type sip_registration_details =
|
|
87
|
+
{
|
|
88
|
+
auth_retries: Integer,
|
|
89
|
+
expires: Integer,
|
|
90
|
+
failures: Integer,
|
|
91
|
+
next_action_at: Integer,
|
|
92
|
+
sip_uri_user_host: String,
|
|
93
|
+
uptime: Integer
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
class SipRegistrationDetails < Telnyx::Internal::Type::BaseModel
|
|
97
|
+
attr_reader auth_retries: Integer?
|
|
98
|
+
|
|
99
|
+
def auth_retries=: (Integer) -> Integer
|
|
100
|
+
|
|
101
|
+
attr_reader expires: Integer?
|
|
102
|
+
|
|
103
|
+
def expires=: (Integer) -> Integer
|
|
104
|
+
|
|
105
|
+
attr_reader failures: Integer?
|
|
106
|
+
|
|
107
|
+
def failures=: (Integer) -> Integer
|
|
108
|
+
|
|
109
|
+
attr_reader next_action_at: Integer?
|
|
110
|
+
|
|
111
|
+
def next_action_at=: (Integer) -> Integer
|
|
112
|
+
|
|
113
|
+
attr_reader sip_uri_user_host: String?
|
|
114
|
+
|
|
115
|
+
def sip_uri_user_host=: (String) -> String
|
|
116
|
+
|
|
117
|
+
attr_reader uptime: Integer?
|
|
118
|
+
|
|
119
|
+
def uptime=: (Integer) -> Integer
|
|
120
|
+
|
|
121
|
+
def initialize: (
|
|
122
|
+
?auth_retries: Integer,
|
|
123
|
+
?expires: Integer,
|
|
124
|
+
?failures: Integer,
|
|
125
|
+
?next_action_at: Integer,
|
|
126
|
+
?sip_uri_user_host: String,
|
|
127
|
+
?uptime: Integer
|
|
128
|
+
) -> void
|
|
129
|
+
|
|
130
|
+
def to_hash: -> {
|
|
131
|
+
auth_retries: Integer,
|
|
132
|
+
expires: Integer,
|
|
133
|
+
failures: Integer,
|
|
134
|
+
next_action_at: Integer,
|
|
135
|
+
sip_uri_user_host: String,
|
|
136
|
+
uptime: Integer
|
|
137
|
+
}
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
type sip_registration_status =
|
|
141
|
+
:unregistering
|
|
142
|
+
| :connection_disabled
|
|
143
|
+
| :standby
|
|
144
|
+
| :failed
|
|
145
|
+
| :trying
|
|
146
|
+
| :registered
|
|
147
|
+
| :unknown
|
|
148
|
+
|
|
149
|
+
module SipRegistrationStatus
|
|
150
|
+
extend Telnyx::Internal::Type::Enum
|
|
151
|
+
|
|
152
|
+
UNREGISTERING: :unregistering
|
|
153
|
+
CONNECTION_DISABLED: :connection_disabled
|
|
154
|
+
STANDBY: :standby
|
|
155
|
+
FAILED: :failed
|
|
156
|
+
TRYING: :trying
|
|
157
|
+
REGISTERED: :registered
|
|
158
|
+
UNKNOWN: :unknown
|
|
159
|
+
|
|
160
|
+
def self?.values: -> ::Array[Telnyx::Models::SipRegistrationStatusRetrieveResponse::sip_registration_status]
|
|
161
|
+
end
|
|
162
|
+
end
|
|
163
|
+
end
|
|
164
|
+
end
|
|
@@ -62,15 +62,15 @@ module Telnyx
|
|
|
62
62
|
def self?.values: -> ::Array[Telnyx::Models::SpeechToTextListProvidersParams::provider]
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
-
type service_type =
|
|
66
|
-
:streaming | :file_transcription | :in_call_transcription
|
|
65
|
+
type service_type = :streaming | :file_based | :in_call | :ai_assistant
|
|
67
66
|
|
|
68
67
|
module ServiceType
|
|
69
68
|
extend Telnyx::Internal::Type::Enum
|
|
70
69
|
|
|
71
70
|
STREAMING: :streaming
|
|
72
|
-
|
|
73
|
-
|
|
71
|
+
FILE_BASED: :file_based
|
|
72
|
+
IN_CALL: :in_call
|
|
73
|
+
AI_ASSISTANT: :ai_assistant
|
|
74
74
|
|
|
75
75
|
def self?.values: -> ::Array[Telnyx::Models::SpeechToTextListProvidersParams::service_type]
|
|
76
76
|
end
|
|
@@ -23,46 +23,63 @@ module Telnyx
|
|
|
23
23
|
|
|
24
24
|
type data =
|
|
25
25
|
{
|
|
26
|
-
languages: ::Array[String],
|
|
27
26
|
model: String,
|
|
28
27
|
provider: String,
|
|
29
|
-
service_types: ::Array[Telnyx::Models::SpeechToTextListProvidersResponse::Data::
|
|
28
|
+
service_types: ::Array[Telnyx::Models::SpeechToTextListProvidersResponse::Data::ServiceType]
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
class Data < Telnyx::Internal::Type::BaseModel
|
|
33
|
-
attr_accessor languages: ::Array[String]
|
|
34
|
-
|
|
35
32
|
attr_accessor model: String
|
|
36
33
|
|
|
37
34
|
attr_accessor provider: String
|
|
38
35
|
|
|
39
|
-
attr_accessor service_types: ::Array[Telnyx::Models::SpeechToTextListProvidersResponse::Data::
|
|
36
|
+
attr_accessor service_types: ::Array[Telnyx::Models::SpeechToTextListProvidersResponse::Data::ServiceType]
|
|
40
37
|
|
|
41
38
|
def initialize: (
|
|
42
|
-
languages: ::Array[String],
|
|
43
39
|
model: String,
|
|
44
40
|
provider: String,
|
|
45
|
-
service_types: ::Array[Telnyx::Models::SpeechToTextListProvidersResponse::Data::
|
|
41
|
+
service_types: ::Array[Telnyx::Models::SpeechToTextListProvidersResponse::Data::ServiceType]
|
|
46
42
|
) -> void
|
|
47
43
|
|
|
48
44
|
def to_hash: -> {
|
|
49
|
-
languages: ::Array[String],
|
|
50
45
|
model: String,
|
|
51
46
|
provider: String,
|
|
52
|
-
service_types: ::Array[Telnyx::Models::SpeechToTextListProvidersResponse::Data::
|
|
47
|
+
service_types: ::Array[Telnyx::Models::SpeechToTextListProvidersResponse::Data::ServiceType]
|
|
53
48
|
}
|
|
54
49
|
|
|
55
50
|
type service_type =
|
|
56
|
-
|
|
51
|
+
{
|
|
52
|
+
languages: ::Array[String],
|
|
53
|
+
type: Telnyx::Models::SpeechToTextListProvidersResponse::Data::ServiceType::type_
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
class ServiceType < Telnyx::Internal::Type::BaseModel
|
|
57
|
+
attr_accessor languages: ::Array[String]
|
|
58
|
+
|
|
59
|
+
attr_accessor type: Telnyx::Models::SpeechToTextListProvidersResponse::Data::ServiceType::type_
|
|
60
|
+
|
|
61
|
+
def initialize: (
|
|
62
|
+
languages: ::Array[String],
|
|
63
|
+
type: Telnyx::Models::SpeechToTextListProvidersResponse::Data::ServiceType::type_
|
|
64
|
+
) -> void
|
|
65
|
+
|
|
66
|
+
def to_hash: -> {
|
|
67
|
+
languages: ::Array[String],
|
|
68
|
+
type: Telnyx::Models::SpeechToTextListProvidersResponse::Data::ServiceType::type_
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
type type_ = :streaming | :file_based | :in_call | :ai_assistant
|
|
57
72
|
|
|
58
|
-
|
|
59
|
-
|
|
73
|
+
module Type
|
|
74
|
+
extend Telnyx::Internal::Type::Enum
|
|
60
75
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
76
|
+
STREAMING: :streaming
|
|
77
|
+
FILE_BASED: :file_based
|
|
78
|
+
IN_CALL: :in_call
|
|
79
|
+
AI_ASSISTANT: :ai_assistant
|
|
64
80
|
|
|
65
|
-
|
|
81
|
+
def self?.values: -> ::Array[Telnyx::Models::SpeechToTextListProvidersResponse::Data::ServiceType::type_]
|
|
82
|
+
end
|
|
66
83
|
end
|
|
67
84
|
end
|
|
68
85
|
|
data/sig/telnyx/models.rbs
CHANGED
|
@@ -43,7 +43,7 @@ module Telnyx
|
|
|
43
43
|
|
|
44
44
|
module AI = Telnyx::Models::AI
|
|
45
45
|
|
|
46
|
-
class
|
|
46
|
+
class AICreateResponseDeprecatedParams = Telnyx::Models::AICreateResponseDeprecatedParams
|
|
47
47
|
|
|
48
48
|
class AIRetrieveModelsParams = Telnyx::Models::AIRetrieveModelsParams
|
|
49
49
|
|
|
@@ -1473,6 +1473,8 @@ module Telnyx
|
|
|
1473
1473
|
|
|
1474
1474
|
class SiprecConnectorUpdateParams = Telnyx::Models::SiprecConnectorUpdateParams
|
|
1475
1475
|
|
|
1476
|
+
class SipRegistrationStatusRetrieveParams = Telnyx::Models::SipRegistrationStatusRetrieveParams
|
|
1477
|
+
|
|
1476
1478
|
class SoundModifications = Telnyx::Models::SoundModifications
|
|
1477
1479
|
|
|
1478
1480
|
class SpeechToTextListProvidersParams = Telnyx::Models::SpeechToTextListProvidersParams
|
|
@@ -13,6 +13,7 @@ module Telnyx
|
|
|
13
13
|
def update: (
|
|
14
14
|
String version_id,
|
|
15
15
|
assistant_id: String,
|
|
16
|
+
?conversation_flow: Telnyx::AI::Assistants::UpdateAssistant::ConversationFlow,
|
|
16
17
|
?description: String,
|
|
17
18
|
?dynamic_variables: ::Hash[Symbol, top],
|
|
18
19
|
?dynamic_variables_webhook_timeout_ms: Integer,
|
|
@@ -17,6 +17,7 @@ module Telnyx
|
|
|
17
17
|
def create: (
|
|
18
18
|
instructions: String,
|
|
19
19
|
name: String,
|
|
20
|
+
?conversation_flow: Telnyx::AI::AssistantCreateParams::ConversationFlow,
|
|
20
21
|
?description: String,
|
|
21
22
|
?dynamic_variables: ::Hash[Symbol, top],
|
|
22
23
|
?dynamic_variables_webhook_timeout_ms: Integer,
|
|
@@ -56,6 +57,7 @@ module Telnyx
|
|
|
56
57
|
|
|
57
58
|
def update: (
|
|
58
59
|
String assistant_id,
|
|
60
|
+
?conversation_flow: Telnyx::AI::AssistantUpdateParams::ConversationFlow,
|
|
59
61
|
?description: String,
|
|
60
62
|
?dynamic_variables: ::Hash[Symbol, top],
|
|
61
63
|
?dynamic_variables_webhook_timeout_ms: Integer,
|
data/sig/telnyx/resources/ai.rbs
CHANGED
|
@@ -25,10 +25,10 @@ module Telnyx
|
|
|
25
25
|
|
|
26
26
|
attr_reader tools: Telnyx::Resources::AI::Tools
|
|
27
27
|
|
|
28
|
-
def
|
|
28
|
+
def create_response_deprecated: (
|
|
29
29
|
body: ::Hash[Symbol, top],
|
|
30
30
|
?request_options: Telnyx::request_opts
|
|
31
|
-
) -> Telnyx::Models::
|
|
31
|
+
) -> Telnyx::Models::ai_create_response_deprecated_response
|
|
32
32
|
|
|
33
33
|
def retrieve_models: (
|
|
34
34
|
?request_options: Telnyx::request_opts
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
module Telnyx
|
|
2
|
+
module Resources
|
|
3
|
+
class SipRegistrationStatus
|
|
4
|
+
def retrieve: (
|
|
5
|
+
connection_id: String,
|
|
6
|
+
credential_type: Telnyx::Models::SipRegistrationStatusRetrieveParams::credential_type,
|
|
7
|
+
?request_options: Telnyx::request_opts
|
|
8
|
+
) -> Telnyx::Models::SipRegistrationStatusRetrieveResponse
|
|
9
|
+
|
|
10
|
+
def initialize: (client: Telnyx::Client) -> void
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: telnyx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.
|
|
4
|
+
version: 5.124.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Telnyx
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -429,8 +429,8 @@ files:
|
|
|
429
429
|
- lib/telnyx/models/ai/voice_settings.rb
|
|
430
430
|
- lib/telnyx/models/ai/webhook_tool.rb
|
|
431
431
|
- lib/telnyx/models/ai/widget_settings.rb
|
|
432
|
-
- lib/telnyx/models/
|
|
433
|
-
- lib/telnyx/models/
|
|
432
|
+
- lib/telnyx/models/ai_create_response_deprecated_params.rb
|
|
433
|
+
- lib/telnyx/models/ai_create_response_deprecated_response.rb
|
|
434
434
|
- lib/telnyx/models/ai_retrieve_models_params.rb
|
|
435
435
|
- lib/telnyx/models/ai_retrieve_models_response.rb
|
|
436
436
|
- lib/telnyx/models/ai_summarize_params.rb
|
|
@@ -2089,6 +2089,8 @@ files:
|
|
|
2089
2089
|
- lib/telnyx/models/sim_cards/sim_card_action.rb
|
|
2090
2090
|
- lib/telnyx/models/simple_sim_card.rb
|
|
2091
2091
|
- lib/telnyx/models/sip_header.rb
|
|
2092
|
+
- lib/telnyx/models/sip_registration_status_retrieve_params.rb
|
|
2093
|
+
- lib/telnyx/models/sip_registration_status_retrieve_response.rb
|
|
2092
2094
|
- lib/telnyx/models/siprec_connector_create_params.rb
|
|
2093
2095
|
- lib/telnyx/models/siprec_connector_create_response.rb
|
|
2094
2096
|
- lib/telnyx/models/siprec_connector_delete_params.rb
|
|
@@ -2747,6 +2749,7 @@ files:
|
|
|
2747
2749
|
- lib/telnyx/resources/sim_card_orders.rb
|
|
2748
2750
|
- lib/telnyx/resources/sim_cards.rb
|
|
2749
2751
|
- lib/telnyx/resources/sim_cards/actions.rb
|
|
2752
|
+
- lib/telnyx/resources/sip_registration_status.rb
|
|
2750
2753
|
- lib/telnyx/resources/siprec_connectors.rb
|
|
2751
2754
|
- lib/telnyx/resources/speech_to_text.rb
|
|
2752
2755
|
- lib/telnyx/resources/storage.rb
|
|
@@ -3177,8 +3180,8 @@ files:
|
|
|
3177
3180
|
- rbi/telnyx/models/ai/voice_settings.rbi
|
|
3178
3181
|
- rbi/telnyx/models/ai/webhook_tool.rbi
|
|
3179
3182
|
- rbi/telnyx/models/ai/widget_settings.rbi
|
|
3180
|
-
- rbi/telnyx/models/
|
|
3181
|
-
- rbi/telnyx/models/
|
|
3183
|
+
- rbi/telnyx/models/ai_create_response_deprecated_params.rbi
|
|
3184
|
+
- rbi/telnyx/models/ai_create_response_deprecated_response.rbi
|
|
3182
3185
|
- rbi/telnyx/models/ai_retrieve_models_params.rbi
|
|
3183
3186
|
- rbi/telnyx/models/ai_retrieve_models_response.rbi
|
|
3184
3187
|
- rbi/telnyx/models/ai_summarize_params.rbi
|
|
@@ -4837,6 +4840,8 @@ files:
|
|
|
4837
4840
|
- rbi/telnyx/models/sim_cards/sim_card_action.rbi
|
|
4838
4841
|
- rbi/telnyx/models/simple_sim_card.rbi
|
|
4839
4842
|
- rbi/telnyx/models/sip_header.rbi
|
|
4843
|
+
- rbi/telnyx/models/sip_registration_status_retrieve_params.rbi
|
|
4844
|
+
- rbi/telnyx/models/sip_registration_status_retrieve_response.rbi
|
|
4840
4845
|
- rbi/telnyx/models/siprec_connector_create_params.rbi
|
|
4841
4846
|
- rbi/telnyx/models/siprec_connector_create_response.rbi
|
|
4842
4847
|
- rbi/telnyx/models/siprec_connector_delete_params.rbi
|
|
@@ -5495,6 +5500,7 @@ files:
|
|
|
5495
5500
|
- rbi/telnyx/resources/sim_card_orders.rbi
|
|
5496
5501
|
- rbi/telnyx/resources/sim_cards.rbi
|
|
5497
5502
|
- rbi/telnyx/resources/sim_cards/actions.rbi
|
|
5503
|
+
- rbi/telnyx/resources/sip_registration_status.rbi
|
|
5498
5504
|
- rbi/telnyx/resources/siprec_connectors.rbi
|
|
5499
5505
|
- rbi/telnyx/resources/speech_to_text.rbi
|
|
5500
5506
|
- rbi/telnyx/resources/storage.rbi
|
|
@@ -5916,8 +5922,8 @@ files:
|
|
|
5916
5922
|
- sig/telnyx/models/ai/voice_settings.rbs
|
|
5917
5923
|
- sig/telnyx/models/ai/webhook_tool.rbs
|
|
5918
5924
|
- sig/telnyx/models/ai/widget_settings.rbs
|
|
5919
|
-
- sig/telnyx/models/
|
|
5920
|
-
- sig/telnyx/models/
|
|
5925
|
+
- sig/telnyx/models/ai_create_response_deprecated_params.rbs
|
|
5926
|
+
- sig/telnyx/models/ai_create_response_deprecated_response.rbs
|
|
5921
5927
|
- sig/telnyx/models/ai_retrieve_models_params.rbs
|
|
5922
5928
|
- sig/telnyx/models/ai_retrieve_models_response.rbs
|
|
5923
5929
|
- sig/telnyx/models/ai_summarize_params.rbs
|
|
@@ -7576,6 +7582,8 @@ files:
|
|
|
7576
7582
|
- sig/telnyx/models/sim_cards/sim_card_action.rbs
|
|
7577
7583
|
- sig/telnyx/models/simple_sim_card.rbs
|
|
7578
7584
|
- sig/telnyx/models/sip_header.rbs
|
|
7585
|
+
- sig/telnyx/models/sip_registration_status_retrieve_params.rbs
|
|
7586
|
+
- sig/telnyx/models/sip_registration_status_retrieve_response.rbs
|
|
7579
7587
|
- sig/telnyx/models/siprec_connector_create_params.rbs
|
|
7580
7588
|
- sig/telnyx/models/siprec_connector_create_response.rbs
|
|
7581
7589
|
- sig/telnyx/models/siprec_connector_delete_params.rbs
|
|
@@ -8234,6 +8242,7 @@ files:
|
|
|
8234
8242
|
- sig/telnyx/resources/sim_card_orders.rbs
|
|
8235
8243
|
- sig/telnyx/resources/sim_cards.rbs
|
|
8236
8244
|
- sig/telnyx/resources/sim_cards/actions.rbs
|
|
8245
|
+
- sig/telnyx/resources/sip_registration_status.rbs
|
|
8237
8246
|
- sig/telnyx/resources/siprec_connectors.rbs
|
|
8238
8247
|
- sig/telnyx/resources/speech_to_text.rbs
|
|
8239
8248
|
- sig/telnyx/resources/storage.rbs
|