twilio-ruby 7.4.4 → 7.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3052de4c2fd8bfb5bb0970f38e72a95b7e79c15c
4
- data.tar.gz: 568c38a60c149a631b1d61a70f237fdc0361743b
3
+ metadata.gz: 932484fd792c75c2d29c62c1c8962dc0c5c40520
4
+ data.tar.gz: 3170c41d518dac105b26dc928f3921b0c0ed4916
5
5
  SHA512:
6
- metadata.gz: 19a33d317d692b6bfefc92c964f581e03f819bc7ad0ec962db9fe328637ec939fb82d8d0b4c57d3e5d8980692bbff09b5e98d1620380104f9c67d07b2d72a649
7
- data.tar.gz: bf7d58379d89208d557cf735d8d8f15b8b2bc3f39b5d7141c843919b27ab0f0239450b2d73dc428229ed9059ce3c6c935f9851206a388912acad2971a68da845
6
+ metadata.gz: 18f81f4d3b8d1fa95c7fea25cc2ed52b1e2ab9f92985ea94ce89999ef0608e1791725b0ea8939eff28a53fd0cfec5138a10c14224d7260e3cfb74d44cb9064d8
7
+ data.tar.gz: baa1cb4cd8f6930c2518c2226e9ea2ee4967468570a3c5af2c3b8ae3eae5ca20f58817f33e34a4ba39e83810eac58f0468acb1bf30c527c0079b0be08b19cca4
data/.dockerignore CHANGED
@@ -1 +1 @@
1
- Gemfile.lock
1
+ Gemfile.lock
data/CHANGES.md CHANGED
@@ -1,6 +1,39 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2025-03-11] Version 7.5.0
5
+ --------------------------
6
+ **Library - Feature**
7
+ - [PR #745](https://github.com/twilio/twilio-ruby/pull/745): MVR ready. Thanks to [@manisha1997](https://github.com/manisha1997)!
8
+
9
+ **Library - Chore**
10
+ - [PR #744](https://github.com/twilio/twilio-ruby/pull/744): create image with required files. Thanks to [@sbansla](https://github.com/sbansla)!
11
+
12
+ **Api**
13
+ - Add the missing `emergency_enabled` field for `Address Service` endpoints
14
+
15
+ **Messaging**
16
+ - Add missing enums for A2P and TF
17
+
18
+ **Numbers**
19
+ - add missing enum values to hosted_number_order_status
20
+
21
+ **Twiml**
22
+ - Convert Twiml Attribute `speechModel` of type enum to string **(breaking change)**
23
+
24
+
25
+ [2025-02-20] Version 7.4.5
26
+ --------------------------
27
+ **Flex**
28
+ - Adding Digital Transfers APIs under v1/Interactions
29
+
30
+ **Numbers**
31
+ - Convert webhook_type to ienum type in v1/Porting/Configuration/Webhook/{webhook_type}
32
+
33
+ **Trusthub**
34
+ - Changing TrustHub SupportingDocument status enum from lowercase to uppercase since kyc-orch returns status capitalized and rest proxy requires strict casing
35
+
36
+
4
37
  [2025-02-11] Version 7.4.4
5
38
  --------------------------
6
39
  **Api**
data/Dockerfile CHANGED
@@ -3,7 +3,8 @@ FROM ruby:2.4
3
3
  RUN mkdir /twilio
4
4
  WORKDIR /twilio
5
5
 
6
- COPY . .
6
+ COPY Rakefile Gemfile LICENSE README.md twilio-ruby.gemspec ./
7
+ COPY lib ./lib
7
8
 
8
9
  RUN bundle install
9
10
  RUN bundle exec rake install
data/README.md CHANGED
@@ -39,13 +39,13 @@ This library supports the following Ruby implementations:
39
39
  To install using [Bundler][bundler] grab the latest stable version:
40
40
 
41
41
  ```ruby
42
- gem 'twilio-ruby', '~> 7.4.4'
42
+ gem 'twilio-ruby', '~> 7.5.0'
43
43
  ```
44
44
 
45
45
  To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install:
46
46
 
47
47
  ```bash
48
- gem install twilio-ruby -v 7.4.4
48
+ gem install twilio-ruby -v 7.5.0
49
49
  ```
50
50
 
51
51
  To build and install the development branch yourself from the latest source:
@@ -92,6 +92,7 @@ module Twilio
92
92
  # memory before returning.
93
93
  # @param [String] customer_name The `customer_name` of the Address resources to read.
94
94
  # @param [String] friendly_name The string that identifies the Address resources to read.
95
+ # @param [Boolean] emergency_enabled Whether the address can be associated to a number for emergency calling.
95
96
  # @param [String] iso_country The ISO country code of the Address resources to read.
96
97
  # @param [Integer] limit Upper limit for the number of records to return. stream()
97
98
  # guarantees to never return more than limit. Default is no limit
@@ -100,10 +101,11 @@ module Twilio
100
101
  # but a limit is defined, stream() will attempt to read the limit with the most
101
102
  # efficient page size, i.e. min(limit, 1000)
102
103
  # @return [Array] Array of up to limit results
103
- def list(customer_name: :unset, friendly_name: :unset, iso_country: :unset, limit: nil, page_size: nil)
104
+ def list(customer_name: :unset, friendly_name: :unset, emergency_enabled: :unset, iso_country: :unset, limit: nil, page_size: nil)
104
105
  self.stream(
105
106
  customer_name: customer_name,
106
107
  friendly_name: friendly_name,
108
+ emergency_enabled: emergency_enabled,
107
109
  iso_country: iso_country,
108
110
  limit: limit,
109
111
  page_size: page_size
@@ -116,6 +118,7 @@ module Twilio
116
118
  # is reached.
117
119
  # @param [String] customer_name The `customer_name` of the Address resources to read.
118
120
  # @param [String] friendly_name The string that identifies the Address resources to read.
121
+ # @param [Boolean] emergency_enabled Whether the address can be associated to a number for emergency calling.
119
122
  # @param [String] iso_country The ISO country code of the Address resources to read.
120
123
  # @param [Integer] limit Upper limit for the number of records to return. stream()
121
124
  # guarantees to never return more than limit. Default is no limit
@@ -124,12 +127,13 @@ module Twilio
124
127
  # but a limit is defined, stream() will attempt to read the limit with the most
125
128
  # efficient page size, i.e. min(limit, 1000)
126
129
  # @return [Enumerable] Enumerable that will yield up to limit results
127
- def stream(customer_name: :unset, friendly_name: :unset, iso_country: :unset, limit: nil, page_size: nil)
130
+ def stream(customer_name: :unset, friendly_name: :unset, emergency_enabled: :unset, iso_country: :unset, limit: nil, page_size: nil)
128
131
  limits = @version.read_limits(limit, page_size)
129
132
 
130
133
  page = self.page(
131
134
  customer_name: customer_name,
132
135
  friendly_name: friendly_name,
136
+ emergency_enabled: emergency_enabled,
133
137
  iso_country: iso_country,
134
138
  page_size: limits[:page_size], )
135
139
 
@@ -155,15 +159,17 @@ module Twilio
155
159
  # Request is executed immediately.
156
160
  # @param [String] customer_name The `customer_name` of the Address resources to read.
157
161
  # @param [String] friendly_name The string that identifies the Address resources to read.
162
+ # @param [Boolean] emergency_enabled Whether the address can be associated to a number for emergency calling.
158
163
  # @param [String] iso_country The ISO country code of the Address resources to read.
159
164
  # @param [String] page_token PageToken provided by the API
160
165
  # @param [Integer] page_number Page Number, this value is simply for client state
161
166
  # @param [Integer] page_size Number of records to return, defaults to 50
162
167
  # @return [Page] Page of AddressInstance
163
- def page(customer_name: :unset, friendly_name: :unset, iso_country: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
168
+ def page(customer_name: :unset, friendly_name: :unset, emergency_enabled: :unset, iso_country: :unset, page_token: :unset, page_number: :unset, page_size: :unset)
164
169
  params = Twilio::Values.of({
165
170
  'CustomerName' => customer_name,
166
171
  'FriendlyName' => friendly_name,
172
+ 'EmergencyEnabled' => emergency_enabled,
167
173
  'IsoCountry' => iso_country,
168
174
  'PageToken' => page_token,
169
175
  'Page' => page_number,
@@ -48,7 +48,7 @@ module Twilio
48
48
  # @param [String] speech_model Recognition model used by the transcription engine, among those supported by the provider
49
49
  # @param [String] hints A Phrase contains words and phrase \\\"hints\\\" so that the speech recognition engine is more likely to recognize them.
50
50
  # @param [Boolean] enable_automatic_punctuation The provider will add punctuation to recognition result
51
- # @param [String] intelligence_service The SID of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
51
+ # @param [String] intelligence_service The SID or unique name of the [Voice Intelligence Service](https://www.twilio.com/docs/voice/intelligence/api/service-resource) for persisting transcripts and running post-call Language Operators .
52
52
  # @return [TranscriptionInstance] Created TranscriptionInstance
53
53
  def create(
54
54
  name: :unset,
@@ -0,0 +1,352 @@
1
+ ##
2
+ # This code was generated by
3
+ # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
4
+ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
5
+ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
6
+ #
7
+ # Twilio - Flex
8
+ # This is the public Twilio REST API.
9
+ #
10
+ # NOTE: This class is auto generated by OpenAPI Generator.
11
+ # https://openapi-generator.tech
12
+ # Do not edit the class manually.
13
+ #
14
+
15
+
16
+ module Twilio
17
+ module REST
18
+ class FlexApi < FlexApiBase
19
+ class V1 < Version
20
+ class InteractionContext < InstanceContext
21
+ class InteractionChannelContext < InstanceContext
22
+
23
+ class InteractionTransferList < ListResource
24
+
25
+ ##
26
+ # Initialize the InteractionTransferList
27
+ # @param [Version] version Version that contains the resource
28
+ # @return [InteractionTransferList] InteractionTransferList
29
+ def initialize(version, interaction_sid: nil, channel_sid: nil)
30
+ super(version)
31
+ # Path Solution
32
+ @solution = { interaction_sid: interaction_sid, channel_sid: channel_sid }
33
+ @uri = "/Interactions/#{@solution[:interaction_sid]}/Channels/#{@solution[:channel_sid]}/Transfers"
34
+
35
+ end
36
+ ##
37
+ # Create the InteractionTransferInstance
38
+ # @param [Object] body
39
+ # @return [InteractionTransferInstance] Created InteractionTransferInstance
40
+ def create(body: :unset
41
+ )
42
+
43
+ headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
44
+ headers['Content-Type'] = 'application/json'
45
+
46
+
47
+
48
+
49
+ payload = @version.create('POST', @uri, headers: headers, data: body.to_json)
50
+ InteractionTransferInstance.new(
51
+ @version,
52
+ payload,
53
+ interaction_sid: @solution[:interaction_sid],
54
+ channel_sid: @solution[:channel_sid],
55
+ )
56
+ end
57
+
58
+
59
+
60
+
61
+ # Provide a user friendly representation
62
+ def to_s
63
+ '#<Twilio.FlexApi.V1.InteractionTransferList>'
64
+ end
65
+ end
66
+
67
+
68
+ class InteractionTransferContext < InstanceContext
69
+ ##
70
+ # Initialize the InteractionTransferContext
71
+ # @param [Version] version Version that contains the resource
72
+ # @param [String] interaction_sid The Interaction Sid for this channel.
73
+ # @param [String] channel_sid The Channel Sid for this Transfer.
74
+ # @param [String] sid The unique string created by Twilio to identify a Transfer resource.
75
+ # @return [InteractionTransferContext] InteractionTransferContext
76
+ def initialize(version, interaction_sid, channel_sid, sid)
77
+ super(version)
78
+
79
+ # Path Solution
80
+ @solution = { interaction_sid: interaction_sid, channel_sid: channel_sid, sid: sid, }
81
+ @uri = "/Interactions/#{@solution[:interaction_sid]}/Channels/#{@solution[:channel_sid]}/Transfers/#{@solution[:sid]}"
82
+
83
+
84
+ end
85
+ ##
86
+ # Fetch the InteractionTransferInstance
87
+ # @return [InteractionTransferInstance] Fetched InteractionTransferInstance
88
+ def fetch
89
+
90
+ headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
91
+
92
+
93
+
94
+
95
+
96
+ payload = @version.fetch('GET', @uri, headers: headers)
97
+ InteractionTransferInstance.new(
98
+ @version,
99
+ payload,
100
+ interaction_sid: @solution[:interaction_sid],
101
+ channel_sid: @solution[:channel_sid],
102
+ sid: @solution[:sid],
103
+ )
104
+ end
105
+
106
+ ##
107
+ # Update the InteractionTransferInstance
108
+ # @param [Object] body
109
+ # @return [InteractionTransferInstance] Updated InteractionTransferInstance
110
+ def update(body: :unset
111
+ )
112
+
113
+ headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
114
+ headers['Content-Type'] = 'application/json'
115
+
116
+
117
+
118
+
119
+ payload = @version.update('POST', @uri, headers: headers, data: body.to_json)
120
+ InteractionTransferInstance.new(
121
+ @version,
122
+ payload,
123
+ interaction_sid: @solution[:interaction_sid],
124
+ channel_sid: @solution[:channel_sid],
125
+ sid: @solution[:sid],
126
+ )
127
+ end
128
+
129
+
130
+ ##
131
+ # Provide a user friendly representation
132
+ def to_s
133
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
134
+ "#<Twilio.FlexApi.V1.InteractionTransferContext #{context}>"
135
+ end
136
+
137
+ ##
138
+ # Provide a detailed, user friendly representation
139
+ def inspect
140
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
141
+ "#<Twilio.FlexApi.V1.InteractionTransferContext #{context}>"
142
+ end
143
+ end
144
+
145
+ class InteractionTransferPage < Page
146
+ ##
147
+ # Initialize the InteractionTransferPage
148
+ # @param [Version] version Version that contains the resource
149
+ # @param [Response] response Response from the API
150
+ # @param [Hash] solution Path solution for the resource
151
+ # @return [InteractionTransferPage] InteractionTransferPage
152
+ def initialize(version, response, solution)
153
+ super(version, response)
154
+
155
+ # Path Solution
156
+ @solution = solution
157
+ end
158
+
159
+ ##
160
+ # Build an instance of InteractionTransferInstance
161
+ # @param [Hash] payload Payload response from the API
162
+ # @return [InteractionTransferInstance] InteractionTransferInstance
163
+ def get_instance(payload)
164
+ InteractionTransferInstance.new(@version, payload, interaction_sid: @solution[:interaction_sid], channel_sid: @solution[:channel_sid])
165
+ end
166
+
167
+ ##
168
+ # Provide a user friendly representation
169
+ def to_s
170
+ '<Twilio.FlexApi.V1.InteractionTransferPage>'
171
+ end
172
+ end
173
+ class InteractionTransferInstance < InstanceResource
174
+ ##
175
+ # Initialize the InteractionTransferInstance
176
+ # @param [Version] version Version that contains the resource
177
+ # @param [Hash] payload payload that contains response from Twilio
178
+ # @param [String] account_sid The SID of the
179
+ # {Account}[https://www.twilio.com/docs/iam/api/account] that created this InteractionTransfer
180
+ # resource.
181
+ # @param [String] sid The SID of the Call resource to fetch.
182
+ # @return [InteractionTransferInstance] InteractionTransferInstance
183
+ def initialize(version, payload , interaction_sid: nil, channel_sid: nil, sid: nil)
184
+ super(version)
185
+
186
+ # Marshaled Properties
187
+ @properties = {
188
+ 'sid' => payload['sid'],
189
+ 'instance_sid' => payload['instance_sid'],
190
+ 'account_sid' => payload['account_sid'],
191
+ 'interaction_sid' => payload['interaction_sid'],
192
+ 'channel_sid' => payload['channel_sid'],
193
+ 'execution_sid' => payload['execution_sid'],
194
+ 'type' => payload['type'],
195
+ 'status' => payload['status'],
196
+ 'from' => payload['from'],
197
+ 'to' => payload['to'],
198
+ 'note_sid' => payload['note_sid'],
199
+ 'summary_sid' => payload['summary_sid'],
200
+ 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
201
+ 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
202
+ 'url' => payload['url'],
203
+ }
204
+
205
+ # Context
206
+ @instance_context = nil
207
+ @params = { 'interaction_sid' => interaction_sid || @properties['interaction_sid'] ,'channel_sid' => channel_sid || @properties['channel_sid'] ,'sid' => sid || @properties['sid'] , }
208
+ end
209
+
210
+ ##
211
+ # Generate an instance context for the instance, the context is capable of
212
+ # performing various actions. All instance actions are proxied to the context
213
+ # @return [InteractionTransferContext] CallContext for this CallInstance
214
+ def context
215
+ unless @instance_context
216
+ @instance_context = InteractionTransferContext.new(@version , @params['interaction_sid'], @params['channel_sid'], @params['sid'])
217
+ end
218
+ @instance_context
219
+ end
220
+
221
+ ##
222
+ # @return [String] The unique string created by Twilio to identify an Interaction Transfer resource.
223
+ def sid
224
+ @properties['sid']
225
+ end
226
+
227
+ ##
228
+ # @return [String] The SID of the Instance associated with the Transfer.
229
+ def instance_sid
230
+ @properties['instance_sid']
231
+ end
232
+
233
+ ##
234
+ # @return [String] The SID of the Account that created the Transfer.
235
+ def account_sid
236
+ @properties['account_sid']
237
+ end
238
+
239
+ ##
240
+ # @return [String] The Interaction Sid for this channel.
241
+ def interaction_sid
242
+ @properties['interaction_sid']
243
+ end
244
+
245
+ ##
246
+ # @return [String] The Channel Sid for this Transfer.
247
+ def channel_sid
248
+ @properties['channel_sid']
249
+ end
250
+
251
+ ##
252
+ # @return [String] The Execution SID associated with the Transfer.
253
+ def execution_sid
254
+ @properties['execution_sid']
255
+ end
256
+
257
+ ##
258
+ # @return [TransferType]
259
+ def type
260
+ @properties['type']
261
+ end
262
+
263
+ ##
264
+ # @return [TransferStatus]
265
+ def status
266
+ @properties['status']
267
+ end
268
+
269
+ ##
270
+ # @return [String] The SID of the Participant initiating the Transfer.
271
+ def from
272
+ @properties['from']
273
+ end
274
+
275
+ ##
276
+ # @return [String] The SID of the Participant receiving the Transfer.
277
+ def to
278
+ @properties['to']
279
+ end
280
+
281
+ ##
282
+ # @return [String] The SID of the Note associated with the Transfer.
283
+ def note_sid
284
+ @properties['note_sid']
285
+ end
286
+
287
+ ##
288
+ # @return [String] The SID of the Summary associated with the Transfer.
289
+ def summary_sid
290
+ @properties['summary_sid']
291
+ end
292
+
293
+ ##
294
+ # @return [Time] The date and time when the Transfer was created.
295
+ def date_created
296
+ @properties['date_created']
297
+ end
298
+
299
+ ##
300
+ # @return [Time] The date and time when the Transfer was last updated.
301
+ def date_updated
302
+ @properties['date_updated']
303
+ end
304
+
305
+ ##
306
+ # @return [String]
307
+ def url
308
+ @properties['url']
309
+ end
310
+
311
+ ##
312
+ # Fetch the InteractionTransferInstance
313
+ # @return [InteractionTransferInstance] Fetched InteractionTransferInstance
314
+ def fetch
315
+
316
+ context.fetch
317
+ end
318
+
319
+ ##
320
+ # Update the InteractionTransferInstance
321
+ # @param [Object] body
322
+ # @return [InteractionTransferInstance] Updated InteractionTransferInstance
323
+ def update(body: :unset
324
+ )
325
+
326
+ context.update(
327
+ )
328
+ end
329
+
330
+ ##
331
+ # Provide a user friendly representation
332
+ def to_s
333
+ values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
334
+ "<Twilio.FlexApi.V1.InteractionTransferInstance #{values}>"
335
+ end
336
+
337
+ ##
338
+ # Provide a detailed, user friendly representation
339
+ def inspect
340
+ values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
341
+ "<Twilio.FlexApi.V1.InteractionTransferInstance #{values}>"
342
+ end
343
+ end
344
+
345
+ end
346
+ end
347
+ end
348
+ end
349
+ end
350
+ end
351
+
352
+
@@ -145,6 +145,7 @@ module Twilio
145
145
 
146
146
  # Dependents
147
147
  @invites = nil
148
+ @transfers = nil
148
149
  @participants = nil
149
150
  end
150
151
  ##
@@ -209,6 +210,25 @@ module Twilio
209
210
  @invites
210
211
  end
211
212
  ##
213
+ # Access the transfers
214
+ # @return [InteractionTransferList]
215
+ # @return [InteractionTransferContext] if sid was passed.
216
+ def transfers(sid=:unset)
217
+
218
+ raise ArgumentError, 'sid cannot be nil' if sid.nil?
219
+
220
+ if sid != :unset
221
+ return InteractionTransferContext.new(@version, @solution[:interaction_sid], @solution[:sid],sid )
222
+ end
223
+
224
+ unless @transfers
225
+ @transfers = InteractionTransferList.new(
226
+ @version, interaction_sid: @solution[:interaction_sid], channel_sid: @solution[:sid], )
227
+ end
228
+
229
+ @transfers
230
+ end
231
+ ##
212
232
  # Access the participants
213
233
  # @return [InteractionChannelParticipantList]
214
234
  # @return [InteractionChannelParticipantContext] if sid was passed.
@@ -391,6 +411,13 @@ module Twilio
391
411
  context.invites
392
412
  end
393
413
 
414
+ ##
415
+ # Access the transfers
416
+ # @return [transfers] transfers
417
+ def transfers
418
+ context.transfers
419
+ end
420
+
394
421
  ##
395
422
  # Access the participants
396
423
  # @return [participants] participants
@@ -17,12 +17,12 @@ module Twilio
17
17
  module REST
18
18
  class Numbers < NumbersBase
19
19
  class V1 < Version
20
- class PortingWebhookConfigurationFetchList < ListResource
20
+ class WebhookList < ListResource
21
21
 
22
22
  ##
23
- # Initialize the PortingWebhookConfigurationFetchList
23
+ # Initialize the WebhookList
24
24
  # @param [Version] version Version that contains the resource
25
- # @return [PortingWebhookConfigurationFetchList] PortingWebhookConfigurationFetchList
25
+ # @return [WebhookList] WebhookList
26
26
  def initialize(version)
27
27
  super(version)
28
28
  # Path Solution
@@ -31,8 +31,8 @@ module Twilio
31
31
 
32
32
  end
33
33
  ##
34
- # Fetch the PortingWebhookConfigurationFetchInstance
35
- # @return [PortingWebhookConfigurationFetchInstance] Fetched PortingWebhookConfigurationFetchInstance
34
+ # Fetch the WebhookInstance
35
+ # @return [WebhookInstance] Fetched WebhookInstance
36
36
  def fetch
37
37
 
38
38
  headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
@@ -42,7 +42,7 @@ module Twilio
42
42
 
43
43
 
44
44
  payload = @version.fetch('GET', @uri, headers: headers)
45
- PortingWebhookConfigurationFetchInstance.new(
45
+ WebhookInstance.new(
46
46
  @version,
47
47
  payload,
48
48
  )
@@ -53,17 +53,17 @@ module Twilio
53
53
 
54
54
  # Provide a user friendly representation
55
55
  def to_s
56
- '#<Twilio.Numbers.V1.PortingWebhookConfigurationFetchList>'
56
+ '#<Twilio.Numbers.V1.WebhookList>'
57
57
  end
58
58
  end
59
59
 
60
- class PortingWebhookConfigurationFetchPage < Page
60
+ class WebhookPage < Page
61
61
  ##
62
- # Initialize the PortingWebhookConfigurationFetchPage
62
+ # Initialize the WebhookPage
63
63
  # @param [Version] version Version that contains the resource
64
64
  # @param [Response] response Response from the API
65
65
  # @param [Hash] solution Path solution for the resource
66
- # @return [PortingWebhookConfigurationFetchPage] PortingWebhookConfigurationFetchPage
66
+ # @return [WebhookPage] WebhookPage
67
67
  def initialize(version, response, solution)
68
68
  super(version, response)
69
69
 
@@ -72,29 +72,29 @@ module Twilio
72
72
  end
73
73
 
74
74
  ##
75
- # Build an instance of PortingWebhookConfigurationFetchInstance
75
+ # Build an instance of WebhookInstance
76
76
  # @param [Hash] payload Payload response from the API
77
- # @return [PortingWebhookConfigurationFetchInstance] PortingWebhookConfigurationFetchInstance
77
+ # @return [WebhookInstance] WebhookInstance
78
78
  def get_instance(payload)
79
- PortingWebhookConfigurationFetchInstance.new(@version, payload)
79
+ WebhookInstance.new(@version, payload)
80
80
  end
81
81
 
82
82
  ##
83
83
  # Provide a user friendly representation
84
84
  def to_s
85
- '<Twilio.Numbers.V1.PortingWebhookConfigurationFetchPage>'
85
+ '<Twilio.Numbers.V1.WebhookPage>'
86
86
  end
87
87
  end
88
- class PortingWebhookConfigurationFetchInstance < InstanceResource
88
+ class WebhookInstance < InstanceResource
89
89
  ##
90
- # Initialize the PortingWebhookConfigurationFetchInstance
90
+ # Initialize the WebhookInstance
91
91
  # @param [Version] version Version that contains the resource
92
92
  # @param [Hash] payload payload that contains response from Twilio
93
93
  # @param [String] account_sid The SID of the
94
- # {Account}[https://www.twilio.com/docs/iam/api/account] that created this PortingWebhookConfigurationFetch
94
+ # {Account}[https://www.twilio.com/docs/iam/api/account] that created this Webhook
95
95
  # resource.
96
96
  # @param [String] sid The SID of the Call resource to fetch.
97
- # @return [PortingWebhookConfigurationFetchInstance] PortingWebhookConfigurationFetchInstance
97
+ # @return [WebhookInstance] WebhookInstance
98
98
  def initialize(version, payload )
99
99
  super(version)
100
100
 
@@ -149,13 +149,13 @@ module Twilio
149
149
  ##
150
150
  # Provide a user friendly representation
151
151
  def to_s
152
- "<Twilio.Numbers.V1.PortingWebhookConfigurationFetchInstance>"
152
+ "<Twilio.Numbers.V1.WebhookInstance>"
153
153
  end
154
154
 
155
155
  ##
156
156
  # Provide a detailed, user friendly representation
157
157
  def inspect
158
- "<Twilio.Numbers.V1.PortingWebhookConfigurationFetchInstance>"
158
+ "<Twilio.Numbers.V1.WebhookInstance>"
159
159
  end
160
160
  end
161
161
 
@@ -28,8 +28,8 @@ module Twilio
28
28
  @porting_portabilities = nil
29
29
  @porting_webhook_configurations = nil
30
30
  @porting_webhook_configurations_delete = nil
31
- @porting_webhook_configuration_fetch = nil
32
31
  @signing_request_configurations = nil
32
+ @webhook = nil
33
33
  end
34
34
 
35
35
  ##
@@ -135,16 +135,16 @@ module Twilio
135
135
  end
136
136
  end
137
137
  ##
138
- # @return [Twilio::REST::Numbers::V1::PortingWebhookConfigurationFetchList]
139
- def porting_webhook_configuration_fetch
140
- @porting_webhook_configuration_fetch ||= PortingWebhookConfigurationFetchList.new self
141
- end
142
- ##
143
138
  # @return [Twilio::REST::Numbers::V1::SigningRequestConfigurationList]
144
139
  def signing_request_configurations
145
140
  @signing_request_configurations ||= SigningRequestConfigurationList.new self
146
141
  end
147
142
  ##
143
+ # @return [Twilio::REST::Numbers::V1::WebhookList]
144
+ def webhook
145
+ @webhook ||= WebhookList.new self
146
+ end
147
+ ##
148
148
  # Provide a user friendly representation
149
149
  def to_s
150
150
  '<Twilio::REST::Numbers::V1>';
@@ -1,3 +1,3 @@
1
1
  module Twilio
2
- VERSION = '7.4.4'
2
+ VERSION = '7.5.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twilio-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.4.4
4
+ version: 7.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twilio API Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-11 00:00:00.000000000 Z
11
+ date: 2025-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -502,6 +502,7 @@ files:
502
502
  - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel.rb
503
503
  - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_invite.rb
504
504
  - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_channel_participant.rb
505
+ - lib/twilio-ruby/rest/flex_api/v1/interaction/interaction_channel/interaction_transfer.rb
505
506
  - lib/twilio-ruby/rest/flex_api/v1/plugin.rb
506
507
  - lib/twilio-ruby/rest/flex_api/v1/plugin/plugin_versions.rb
507
508
  - lib/twilio-ruby/rest/flex_api/v1/plugin_archive.rb
@@ -651,8 +652,8 @@ files:
651
652
  - lib/twilio-ruby/rest/numbers/v1/porting_portability.rb
652
653
  - lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration.rb
653
654
  - lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_delete.rb
654
- - lib/twilio-ruby/rest/numbers/v1/porting_webhook_configuration_fetch.rb
655
655
  - lib/twilio-ruby/rest/numbers/v1/signing_request_configuration.rb
656
+ - lib/twilio-ruby/rest/numbers/v1/webhook.rb
656
657
  - lib/twilio-ruby/rest/numbers/v2.rb
657
658
  - lib/twilio-ruby/rest/numbers/v2/authorization_document.rb
658
659
  - lib/twilio-ruby/rest/numbers/v2/authorization_document/dependent_hosted_number_order.rb