twilio-ruby 6.7.0 → 6.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 129f3f488da064d58d4cc92b0f152ac957fb345a
4
- data.tar.gz: 72729eea0c5b03eb3fb1631db76e8ea3ee320667
3
+ metadata.gz: 82c2bcdb93cad6d5bc90e2883ad05277f43b5f0b
4
+ data.tar.gz: d990c513639de4b750de151fc9a9c0c69b31fc7a
5
5
  SHA512:
6
- metadata.gz: 6c652832fc2dff52251346d42d0f34dac860c3bb47cebb08012b4e49905e87a84d727cf35ff0e9255665aa1393f7fb28a2c85d72f035d234746ef381a9ab5302
7
- data.tar.gz: ceee9433dc8c8d706c85d31b5c40cbe10fba6575a9543b37ccb121a44e4d4ab93d6148ab03fea0e0184c02ec430f0579485c26f256bb7b30204103128905d022
6
+ metadata.gz: fec5d354d99ba5d54fc03c144156df521e81ac6c23cdb51c099e8e343fb7bd85bd4b3b1c0607d22f7b21c341b94cca9d28d266f5294d83ce275747369fcb64c9
7
+ data.tar.gz: '09b109c1d3df8e5548cfd0a0006d111933f51ba8164e13fa6a3f960e8541c34c62f7a9b6eadef1237871ac87af14490da9e883b5a3d84332cb3cb4e435f17503'
data/CHANGES.md CHANGED
@@ -1,6 +1,49 @@
1
1
  twilio-ruby changelog
2
2
  =====================
3
3
 
4
+ [2023-10-19] Version 6.8.0
5
+ --------------------------
6
+ **Library - Chore**
7
+ - [PR #682](https://github.com/twilio/twilio-ruby/pull/682): Removing Test Related To Deprecated Endpoint - OAuth. Thanks to [@KobeBrooks](https://github.com/KobeBrooks)!
8
+
9
+ **Library - Fix**
10
+ - [PR #680](https://github.com/twilio/twilio-ruby/pull/680): update validate ssl method with new endpoint. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
11
+
12
+ **Accounts**
13
+ - Updated Safelist metadata to correct the docs.
14
+ - Add Global SafeList API changes
15
+
16
+ **Api**
17
+ - Added optional parameter `CallToken` for create participant api
18
+
19
+ **Flex**
20
+ - Adding `offline_config` to Flex Configuration
21
+
22
+ **Intelligence**
23
+ - Deleted `redacted` parameter from fetching transcript in v2 **(breaking change)**
24
+
25
+ **Lookups**
26
+ - Add new `phone_number_quality_score` package to the lookup response
27
+ - Remove `disposable_phone_number_risk` package **(breaking change)**
28
+
29
+ **Messaging**
30
+ - Update US App To Person documentation with current `message_samples` requirements
31
+
32
+ **Taskrouter**
33
+ - Remove beta_feature check on task_queue_bulk_real_time_statistics endpoint
34
+ - Add `virtual_start_time` property to tasks
35
+ - Updating `task_queue_data` format from `map` to `array` in the response of bulk get endpoint of TaskQueue Real Time Statistics API **(breaking change)**
36
+
37
+
38
+ [2023-10-05] Version 6.7.1
39
+ --------------------------
40
+ **Library - Chore**
41
+ - [PR #678](https://github.com/twilio/twilio-ruby/pull/678): twilio help changes. Thanks to [@kridai](https://github.com/kridai)!
42
+
43
+ **Lookups**
44
+ - Add test api support for Lookup v2
45
+
46
+
4
47
  [2023-09-21] Version 6.7.0
5
48
  --------------------------
6
49
  **Conversations**
data/CONTRIBUTING.md CHANGED
@@ -22,7 +22,7 @@ it can be.
22
22
 
23
23
  If you have questions about how to use `twilio-ruby`, please see our
24
24
  [docs](./README.md), and if you don't find the answer there, please contact
25
- [help@twilio.com](mailto:help@twilio.com) with any issues you have.
25
+ [Twilio Support](https://www.twilio.com/help/contact) with any issues you have.
26
26
 
27
27
  ## <a name="issue"></a> Found an Issue?
28
28
 
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (C) 2023, Twilio, Inc. <help@twilio.com>
3
+ Copyright (C) 2023, Twilio, Inc. <https://www.twilio.com/help/contact>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
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', '~> 6.7.0'
42
+ gem 'twilio-ruby', '~> 6.8.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 6.7.0
48
+ gem install twilio-ruby -v 6.8.0
49
49
  ```
50
50
 
51
51
  To build and install the development branch yourself from the latest source:
@@ -95,9 +95,9 @@ module Twilio
95
95
  end
96
96
 
97
97
  ##
98
- # Validate the new SSL certificate for the Twilio API
98
+ # Validate the SSL certificates for the Twilio API
99
99
  def validate_ssl_certificate
100
- response = request('api.twilio.com', '8443', 'GET', 'https://api.twilio.com:8443/.json')
100
+ response = request('tls-test.twilio.com', '443', 'GET', 'https://tls-test.twilio.com')
101
101
  return unless response.status_code < 200 || response.status_code >= 300
102
102
 
103
103
  raise RestError.new 'Unexpected response from certificate endpoint', response
@@ -4,7 +4,7 @@
4
4
  # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
5
5
  # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
6
6
  #
7
- # Twilio - Api
7
+ # Twilio - Accounts
8
8
  # This is the public Twilio REST API.
9
9
  #
10
10
  # NOTE: This class is auto generated by OpenAPI Generator.
@@ -15,8 +15,8 @@
15
15
 
16
16
  module Twilio
17
17
  module REST
18
- class Api < ApiBase
19
- class V2010 < Version
18
+ class Accounts < AccountsBase
19
+ class V1 < Version
20
20
  class SafelistList < ListResource
21
21
  ##
22
22
  # Initialize the SafelistList
@@ -26,7 +26,7 @@ module Twilio
26
26
  super(version)
27
27
  # Path Solution
28
28
  @solution = { }
29
- @uri = "/SafeList/Numbers.json"
29
+ @uri = "/SafeList/Numbers"
30
30
 
31
31
  end
32
32
  ##
@@ -85,7 +85,7 @@ module Twilio
85
85
 
86
86
  # Provide a user friendly representation
87
87
  def to_s
88
- '#<Twilio.Api.V2010.SafelistList>'
88
+ '#<Twilio.Accounts.V1.SafelistList>'
89
89
  end
90
90
  end
91
91
 
@@ -114,7 +114,7 @@ module Twilio
114
114
  ##
115
115
  # Provide a user friendly representation
116
116
  def to_s
117
- '<Twilio.Api.V2010.SafelistPage>'
117
+ '<Twilio.Accounts.V1.SafelistPage>'
118
118
  end
119
119
  end
120
120
  class SafelistInstance < InstanceResource
@@ -153,13 +153,13 @@ module Twilio
153
153
  ##
154
154
  # Provide a user friendly representation
155
155
  def to_s
156
- "<Twilio.Api.V2010.SafelistInstance>"
156
+ "<Twilio.Accounts.V1.SafelistInstance>"
157
157
  end
158
158
 
159
159
  ##
160
160
  # Provide a detailed, user friendly representation
161
161
  def inspect
162
- "<Twilio.Api.V2010.SafelistInstance>"
162
+ "<Twilio.Accounts.V1.SafelistInstance>"
163
163
  end
164
164
  end
165
165
 
@@ -23,6 +23,7 @@ module Twilio
23
23
  @version = 'v1'
24
24
  @auth_token_promotion = nil
25
25
  @credentials = nil
26
+ @safelist = nil
26
27
  @secondary_auth_token = nil
27
28
  end
28
29
 
@@ -37,6 +38,11 @@ module Twilio
37
38
  @credentials ||= CredentialList.new self
38
39
  end
39
40
  ##
41
+ # @return [Twilio::REST::Accounts::V1::SafelistList]
42
+ def safelist
43
+ @safelist ||= SafelistList.new self
44
+ end
45
+ ##
40
46
  # @return [Twilio::REST::Accounts::V1::secondaryAuthTokenContext]
41
47
  def secondary_auth_token
42
48
  @secondary_auth_token ||= SecondaryAuthTokenContext.new self
@@ -81,6 +81,7 @@ module Twilio
81
81
  # @param [String] amd_status_callback The URL that we should call using the `amd_status_callback_method` to notify customer application whether the call was answered by human, machine or fax.
82
82
  # @param [String] amd_status_callback_method The HTTP method we should use when calling the `amd_status_callback` URL. Can be: `GET` or `POST` and the default is `POST`.
83
83
  # @param [String] trim Whether to trim any leading and trailing silence from the participant recording. Can be: `trim-silence` or `do-not-trim` and the default is `trim-silence`.
84
+ # @param [String] call_token A token string needed to invoke a forwarded call. A call_token is generated when an incoming call is received on a Twilio number. Pass an incoming call's call_token value to a forwarded call via the call_token parameter when creating a new call. A forwarded call should bear the same CallerID of the original incoming call.
84
85
  # @return [ParticipantInstance] Created ParticipantInstance
85
86
  def create(
86
87
  from: nil,
@@ -129,7 +130,8 @@ module Twilio
129
130
  machine_detection_silence_timeout: :unset,
130
131
  amd_status_callback: :unset,
131
132
  amd_status_callback_method: :unset,
132
- trim: :unset
133
+ trim: :unset,
134
+ call_token: :unset
133
135
  )
134
136
 
135
137
  data = Twilio::Values.of({
@@ -180,6 +182,7 @@ module Twilio
180
182
  'AmdStatusCallback' => amd_status_callback,
181
183
  'AmdStatusCallbackMethod' => amd_status_callback_method,
182
184
  'Trim' => trim,
185
+ 'CallToken' => call_token,
183
186
  })
184
187
 
185
188
  payload = @version.create('POST', @uri, data: data)
@@ -50,7 +50,6 @@ module Twilio
50
50
  # @param [Time] send_at The time that Twilio will send the message. Must be in ISO 8601 format.
51
51
  # @param [Boolean] send_as_mms If set to `true`, Twilio delivers the message as a single MMS message, regardless of the presence of media.
52
52
  # @param [String] content_variables For [Content Editor/API](https://www.twilio.com/docs/content) only: Key-value pairs of [Template variables](https://www.twilio.com/docs/content/using-variables-with-content-api) and their substitution values. `content_sid` parameter must also be provided. If values are not defined in the `content_variables` parameter, the [Template's default placeholder values](https://www.twilio.com/docs/content/content-api-resources#create-templates) are used.
53
- # @param [String] tags A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message. The object may contain up to 10 tags. Keys and values can each be up to 128 characters in length.
54
53
  # @param [RiskCheck] risk_check
55
54
  # @param [String] from The sender's Twilio phone number (in [E.164](https://en.wikipedia.org/wiki/E.164) format), [alphanumeric sender ID](https://www.twilio.com/docs/sms/send-messages#use-an-alphanumeric-sender-id), [Wireless SIM](https://www.twilio.com/docs/iot/wireless/programmable-wireless-send-machine-machine-sms-commands), [short code](https://www.twilio.com/docs/sms/api/short-code), or [channel address](https://www.twilio.com/docs/messaging/channels) (e.g., `whatsapp:+15554449999`). The value of the `from` parameter must be a sender that is hosted within Twilio and belongs to the Account creating the Message. If you are using `messaging_service_sid`, this parameter can be empty (Twilio assigns a `from` value from the Messaging Service's Sender Pool) or you can provide a specific sender from your Sender Pool.
56
55
  # @param [String] messaging_service_sid The SID of the [Messaging Service](https://www.twilio.com/docs/messaging/services) you want to associate with the Message. When this parameter is provided and the `from` parameter is omitted, Twilio selects the optimal sender from the Messaging Service's Sender Pool. You may also provide a `from` parameter if you want to use a specific Sender from the Sender Pool.
@@ -76,7 +75,6 @@ module Twilio
76
75
  send_at: :unset,
77
76
  send_as_mms: :unset,
78
77
  content_variables: :unset,
79
- tags: :unset,
80
78
  risk_check: :unset,
81
79
  from: :unset,
82
80
  messaging_service_sid: :unset,
@@ -103,7 +101,6 @@ module Twilio
103
101
  'SendAt' => Twilio.serialize_iso8601_datetime(send_at),
104
102
  'SendAsMms' => send_as_mms,
105
103
  'ContentVariables' => content_variables,
106
- 'Tags' => tags,
107
104
  'RiskCheck' => risk_check,
108
105
  'From' => from,
109
106
  'MessagingServiceSid' => messaging_service_sid,
@@ -417,7 +414,6 @@ module Twilio
417
414
  'price_unit' => payload['price_unit'],
418
415
  'api_version' => payload['api_version'],
419
416
  'subresource_uris' => payload['subresource_uris'],
420
- 'tags' => payload['tags'],
421
417
  }
422
418
 
423
419
  # Context
@@ -556,12 +552,6 @@ module Twilio
556
552
  @properties['subresource_uris']
557
553
  end
558
554
 
559
- ##
560
- # @return [Hash] A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message.
561
- def tags
562
- @properties['tags']
563
- end
564
-
565
555
  ##
566
556
  # Delete the MessageInstance
567
557
  # @return [Boolean] True if delete succeeds, false otherwise
@@ -22,7 +22,6 @@ module Twilio
22
22
  super
23
23
  @version = '2010-04-01'
24
24
  @accounts = nil
25
- @safelist = nil
26
25
  end
27
26
 
28
27
  ##
@@ -123,11 +122,6 @@ module Twilio
123
122
  end
124
123
  end
125
124
  ##
126
- # @return [Twilio::REST::Api::V2010::SafelistList]
127
- def safelist
128
- @safelist ||= SafelistList.new self
129
- end
130
- ##
131
125
  # Provide a user friendly representation
132
126
  def to_s
133
127
  '<Twilio::REST::Api::V2010>';
@@ -177,6 +177,7 @@ module Twilio
177
177
  'flex_ui_status_report' => payload['flex_ui_status_report'],
178
178
  'agent_conv_end_methods' => payload['agent_conv_end_methods'],
179
179
  'citrix_voice_vdi' => payload['citrix_voice_vdi'],
180
+ 'offline_config' => payload['offline_config'],
180
181
  }
181
182
 
182
183
  # Context
@@ -477,6 +478,12 @@ module Twilio
477
478
  @properties['citrix_voice_vdi']
478
479
  end
479
480
 
481
+ ##
482
+ # @return [Hash] Presence and presence ttl configuration
483
+ def offline_config
484
+ @properties['offline_config']
485
+ end
486
+
480
487
  ##
481
488
  # Fetch the ConfigurationInstance
482
489
  # @param [String] ui_version The Pinned UI version of the Configuration resource to fetch.
@@ -60,7 +60,7 @@ module Twilio
60
60
  end
61
61
  ##
62
62
  # Fetch the MediaInstance
63
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Media. The default is `true` to access redacted media.
63
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Media. If redaction is enabled, the default is `true` to access redacted media.
64
64
  # @return [MediaInstance] Fetched MediaInstance
65
65
  def fetch(
66
66
  redacted: :unset
@@ -191,7 +191,7 @@ module Twilio
191
191
 
192
192
  ##
193
193
  # Fetch the MediaInstance
194
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Media. The default is `true` to access redacted media.
194
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Media. If redaction is enabled, the default is `true` to access redacted media.
195
195
  # @return [MediaInstance] Fetched MediaInstance
196
196
  def fetch(
197
197
  redacted: :unset
@@ -36,7 +36,7 @@ module Twilio
36
36
  # Lists OperatorResultInstance records from the API as a list.
37
37
  # Unlike stream(), this operation is eager and will load `limit` records into
38
38
  # memory before returning.
39
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
39
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
40
40
  # @param [Integer] limit Upper limit for the number of records to return. stream()
41
41
  # guarantees to never return more than limit. Default is no limit
42
42
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -56,7 +56,7 @@ module Twilio
56
56
  # Streams Instance records from the API as an Enumerable.
57
57
  # This operation lazily loads records as efficiently as possible until the limit
58
58
  # is reached.
59
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
59
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
60
60
  # @param [Integer] limit Upper limit for the number of records to return. stream()
61
61
  # guarantees to never return more than limit. Default is no limit
62
62
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -91,7 +91,7 @@ module Twilio
91
91
  ##
92
92
  # Retrieve a single page of OperatorResultInstance records from the API.
93
93
  # Request is executed immediately.
94
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
94
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
95
95
  # @param [String] page_token PageToken provided by the API
96
96
  # @param [Integer] page_number Page Number, this value is simply for client state
97
97
  # @param [Integer] page_size Number of records to return, defaults to 50
@@ -151,7 +151,7 @@ module Twilio
151
151
  end
152
152
  ##
153
153
  # Fetch the OperatorResultInstance
154
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
154
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
155
155
  # @return [OperatorResultInstance] Fetched OperatorResultInstance
156
156
  def fetch(
157
157
  redacted: :unset
@@ -346,7 +346,7 @@ module Twilio
346
346
 
347
347
  ##
348
348
  # Fetch the OperatorResultInstance
349
- # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. The default is True.
349
+ # @param [Boolean] redacted Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True.
350
350
  # @return [OperatorResultInstance] Fetched OperatorResultInstance
351
351
  def fetch(
352
352
  redacted: :unset
@@ -36,7 +36,7 @@ module Twilio
36
36
  # Lists SentenceInstance records from the API as a list.
37
37
  # Unlike stream(), this operation is eager and will load `limit` records into
38
38
  # memory before returning.
39
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. The default is `true` to access redacted sentences.
39
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. If redaction is enabled, the default is `true` to access redacted sentences.
40
40
  # @param [Integer] limit Upper limit for the number of records to return. stream()
41
41
  # guarantees to never return more than limit. Default is no limit
42
42
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -56,7 +56,7 @@ module Twilio
56
56
  # Streams Instance records from the API as an Enumerable.
57
57
  # This operation lazily loads records as efficiently as possible until the limit
58
58
  # is reached.
59
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. The default is `true` to access redacted sentences.
59
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. If redaction is enabled, the default is `true` to access redacted sentences.
60
60
  # @param [Integer] limit Upper limit for the number of records to return. stream()
61
61
  # guarantees to never return more than limit. Default is no limit
62
62
  # @param [Integer] page_size Number of records to fetch per request, when
@@ -91,7 +91,7 @@ module Twilio
91
91
  ##
92
92
  # Retrieve a single page of SentenceInstance records from the API.
93
93
  # Request is executed immediately.
94
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. The default is `true` to access redacted sentences.
94
+ # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Sentences. If redaction is enabled, the default is `true` to access redacted sentences.
95
95
  # @param [String] page_token PageToken provided by the API
96
96
  # @param [Integer] page_number Page Number, this value is simply for client state
97
97
  # @param [Integer] page_size Number of records to return, defaults to 50
@@ -229,16 +229,10 @@ module Twilio
229
229
 
230
230
  ##
231
231
  # Fetch the TranscriptInstance
232
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Transcript. The default is `true` to access redacted Transcript.
233
232
  # @return [TranscriptInstance] Fetched TranscriptInstance
234
- def fetch(
235
- redacted: :unset
236
- )
233
+ def fetch
237
234
 
238
- params = Twilio::Values.of({
239
- 'Redacted' => redacted,
240
- })
241
- payload = @version.fetch('GET', @uri, params: params)
235
+ payload = @version.fetch('GET', @uri)
242
236
  TranscriptInstance.new(
243
237
  @version,
244
238
  payload,
@@ -478,15 +472,10 @@ module Twilio
478
472
 
479
473
  ##
480
474
  # Fetch the TranscriptInstance
481
- # @param [Boolean] redacted Grant access to PII Redacted/Unredacted Transcript. The default is `true` to access redacted Transcript.
482
475
  # @return [TranscriptInstance] Fetched TranscriptInstance
483
- def fetch(
484
- redacted: :unset
485
- )
476
+ def fetch
486
477
 
487
- context.fetch(
488
- redacted: redacted,
489
- )
478
+ context.fetch
490
479
  end
491
480
 
492
481
  ##
@@ -184,7 +184,7 @@ module Twilio
184
184
  'identity_match' => payload['identity_match'],
185
185
  'reassigned_number' => payload['reassigned_number'],
186
186
  'sms_pumping_risk' => payload['sms_pumping_risk'],
187
- 'disposable_phone_number_risk' => payload['disposable_phone_number_risk'],
187
+ 'phone_number_quality_score' => payload['phone_number_quality_score'],
188
188
  'url' => payload['url'],
189
189
  }
190
190
 
@@ -289,9 +289,9 @@ module Twilio
289
289
  end
290
290
 
291
291
  ##
292
- # @return [Hash] An object that contains information on if a mobile phone number could be a disposable or burner number.
293
- def disposable_phone_number_risk
294
- @properties['disposable_phone_number_risk']
292
+ # @return [Hash] An object that contains information of a mobile phone number quality score. Quality score will return a risk score about the phone number.
293
+ def phone_number_quality_score
294
+ @properties['phone_number_quality_score']
295
295
  end
296
296
 
297
297
  ##
@@ -36,7 +36,7 @@ module Twilio
36
36
  # @param [String] brand_registration_sid A2P Brand Registration SID
37
37
  # @param [String] description A short description of what this SMS campaign does. Min length: 40 characters. Max length: 4096 characters.
38
38
  # @param [String] message_flow Required for all Campaigns. Details around how a consumer opts-in to their campaign, therefore giving consent to receive their messages. If multiple opt-in methods can be used for the same campaign, they must all be listed. 40 character minimum. 2048 character maximum.
39
- # @param [Array[String]] message_samples Message samples, at least 1 and up to 5 sample messages (at least 2 for sole proprietor), >=20 chars, <=1024 chars each.
39
+ # @param [Array[String]] message_samples An array of sample message strings, min two and max five. Min length for each sample: 20 chars. Max length for each sample: 1024 chars.
40
40
  # @param [String] us_app_to_person_usecase A2P Campaign Use Case. Examples: [ 2FA, EMERGENCY, MARKETING..]
41
41
  # @param [Boolean] has_embedded_links Indicates that this SMS campaign will send messages that contain links.
42
42
  # @param [Boolean] has_embedded_phone Indicates that this SMS campaign will send messages that contain phone numbers.
@@ -354,7 +354,7 @@ module Twilio
354
354
  end
355
355
 
356
356
  ##
357
- # @return [Array<String>] Message samples, at least 1 and up to 5 sample messages (at least 2 for starter/sole proprietor), >=20 chars, <=1024 chars each.
357
+ # @return [Array<String>] An array of sample message strings, min two and max five. Min length for each sample: 20 chars. Max length for each sample: 1024 chars.
358
358
  def message_samples
359
359
  @properties['message_samples']
360
360
  end
@@ -38,13 +38,15 @@ module Twilio
38
38
  # @param [String] task_channel When MultiTasking is enabled, specify the TaskChannel by passing either its `unique_name` or `sid`. Default value is `default`.
39
39
  # @param [String] workflow_sid The SID of the Workflow that you would like to handle routing for the new Task. If there is only one Workflow defined for the Workspace that you are posting the new task to, this parameter is optional.
40
40
  # @param [String] attributes A URL-encoded JSON string with the attributes of the new task. This value is passed to the Workflow's `assignment_callback_url` when the Task is assigned to a Worker. For example: `{ \\\"task_type\\\": \\\"call\\\", \\\"twilio_call_sid\\\": \\\"CAxxx\\\", \\\"customer_ticket_number\\\": \\\"12345\\\" }`.
41
+ # @param [Time] virtual_start_time The virtual start time to assign the new task and override the default. When supplied, the new task will have this virtual start time. When not supplied, the new task will have the virtual start time equal to `date_created`. Value can't be in the future.
41
42
  # @return [TaskInstance] Created TaskInstance
42
43
  def create(
43
44
  timeout: :unset,
44
45
  priority: :unset,
45
46
  task_channel: :unset,
46
47
  workflow_sid: :unset,
47
- attributes: :unset
48
+ attributes: :unset,
49
+ virtual_start_time: :unset
48
50
  )
49
51
 
50
52
  data = Twilio::Values.of({
@@ -53,6 +55,7 @@ module Twilio
53
55
  'TaskChannel' => task_channel,
54
56
  'WorkflowSid' => workflow_sid,
55
57
  'Attributes' => attributes,
58
+ 'VirtualStartTime' => Twilio.serialize_iso8601_datetime(virtual_start_time),
56
59
  })
57
60
 
58
61
  payload = @version.create('POST', @uri, data: data)
@@ -75,7 +78,7 @@ module Twilio
75
78
  # @param [String] task_queue_sid The SID of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this SID.
76
79
  # @param [String] task_queue_name The `friendly_name` of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this friendly name.
77
80
  # @param [String] evaluate_task_attributes The attributes of the Tasks to read. Returns the Tasks that match the attributes specified in this parameter.
78
- # @param [String] ordering How to order the returned Task resources. y default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `Priority` or `DateCreated` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Multiple sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order.
81
+ # @param [String] ordering How to order the returned Task resources. By default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `DateCreated`, `Priority`, or `VirtualStartTime` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Pairings of sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order. The only ordering pairing not allowed is DateCreated and VirtualStartTime.
79
82
  # @param [Boolean] has_addons Whether to read Tasks with addons. If `true`, returns only Tasks with addons. If `false`, returns only Tasks without addons.
80
83
  # @param [Integer] limit Upper limit for the number of records to return. stream()
81
84
  # guarantees to never return more than limit. Default is no limit
@@ -111,7 +114,7 @@ module Twilio
111
114
  # @param [String] task_queue_sid The SID of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this SID.
112
115
  # @param [String] task_queue_name The `friendly_name` of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this friendly name.
113
116
  # @param [String] evaluate_task_attributes The attributes of the Tasks to read. Returns the Tasks that match the attributes specified in this parameter.
114
- # @param [String] ordering How to order the returned Task resources. y default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `Priority` or `DateCreated` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Multiple sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order.
117
+ # @param [String] ordering How to order the returned Task resources. By default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `DateCreated`, `Priority`, or `VirtualStartTime` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Pairings of sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order. The only ordering pairing not allowed is DateCreated and VirtualStartTime.
115
118
  # @param [Boolean] has_addons Whether to read Tasks with addons. If `true`, returns only Tasks with addons. If `false`, returns only Tasks without addons.
116
119
  # @param [Integer] limit Upper limit for the number of records to return. stream()
117
120
  # guarantees to never return more than limit. Default is no limit
@@ -162,7 +165,7 @@ module Twilio
162
165
  # @param [String] task_queue_sid The SID of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this SID.
163
166
  # @param [String] task_queue_name The `friendly_name` of the TaskQueue with the Tasks to read. Returns the Tasks waiting in the TaskQueue identified by this friendly name.
164
167
  # @param [String] evaluate_task_attributes The attributes of the Tasks to read. Returns the Tasks that match the attributes specified in this parameter.
165
- # @param [String] ordering How to order the returned Task resources. y default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `Priority` or `DateCreated` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Multiple sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order.
168
+ # @param [String] ordering How to order the returned Task resources. By default, Tasks are sorted by ascending DateCreated. This value is specified as: `Attribute:Order`, where `Attribute` can be either `DateCreated`, `Priority`, or `VirtualStartTime` and `Order` can be either `asc` or `desc`. For example, `Priority:desc` returns Tasks ordered in descending order of their Priority. Pairings of sort orders can be specified in a comma-separated list such as `Priority:desc,DateCreated:asc`, which returns the Tasks in descending Priority order and ascending DateCreated Order. The only ordering pairing not allowed is DateCreated and VirtualStartTime.
166
169
  # @param [Boolean] has_addons Whether to read Tasks with addons. If `true`, returns only Tasks with addons. If `false`, returns only Tasks without addons.
167
170
  # @param [String] page_token PageToken provided by the API
168
171
  # @param [Integer] page_number Page Number, this value is simply for client state
@@ -262,6 +265,7 @@ module Twilio
262
265
  # @param [String] reason The reason that the Task was canceled or completed. This parameter is required only if the Task is canceled or completed. Setting this value queues the task for deletion and logs the reason.
263
266
  # @param [String] priority The Task's new priority value. When supplied, the Task takes on the specified priority unless it matches a Workflow Target with a Priority set. Value can be 0 to 2^31^ (2,147,483,647).
264
267
  # @param [String] task_channel When MultiTasking is enabled, specify the TaskChannel with the task to update. Can be the TaskChannel's SID or its `unique_name`, such as `voice`, `sms`, or `default`.
268
+ # @param [Time] virtual_start_time The task's new virtual start time value. When supplied, the Task takes on the specified virtual start time. Value can't be in the future.
265
269
  # @param [String] if_match If provided, applies this mutation if (and only if) the [ETag](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) header of the Task matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).
266
270
  # @return [TaskInstance] Updated TaskInstance
267
271
  def update(
@@ -270,6 +274,7 @@ module Twilio
270
274
  reason: :unset,
271
275
  priority: :unset,
272
276
  task_channel: :unset,
277
+ virtual_start_time: :unset,
273
278
  if_match: :unset
274
279
  )
275
280
 
@@ -279,6 +284,7 @@ module Twilio
279
284
  'Reason' => reason,
280
285
  'Priority' => priority,
281
286
  'TaskChannel' => task_channel,
287
+ 'VirtualStartTime' => Twilio.serialize_iso8601_datetime(virtual_start_time),
282
288
  })
283
289
 
284
290
  headers = Twilio::Values.of({ 'If-Match' => if_match, })
@@ -390,6 +396,7 @@ module Twilio
390
396
  'workspace_sid' => payload['workspace_sid'],
391
397
  'url' => payload['url'],
392
398
  'links' => payload['links'],
399
+ 'virtual_start_time' => Twilio.deserialize_iso8601_datetime(payload['virtual_start_time']),
393
400
  }
394
401
 
395
402
  # Context
@@ -534,6 +541,12 @@ module Twilio
534
541
  @properties['links']
535
542
  end
536
543
 
544
+ ##
545
+ # @return [Time] The date and time in GMT indicating the ordering for routing of the Task specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
546
+ def virtual_start_time
547
+ @properties['virtual_start_time']
548
+ end
549
+
537
550
  ##
538
551
  # Delete the TaskInstance
539
552
  # @param [String] if_match If provided, deletes this Task if (and only if) the [ETag](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) header of the Task matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).
@@ -562,6 +575,7 @@ module Twilio
562
575
  # @param [String] reason The reason that the Task was canceled or completed. This parameter is required only if the Task is canceled or completed. Setting this value queues the task for deletion and logs the reason.
563
576
  # @param [String] priority The Task's new priority value. When supplied, the Task takes on the specified priority unless it matches a Workflow Target with a Priority set. Value can be 0 to 2^31^ (2,147,483,647).
564
577
  # @param [String] task_channel When MultiTasking is enabled, specify the TaskChannel with the task to update. Can be the TaskChannel's SID or its `unique_name`, such as `voice`, `sms`, or `default`.
578
+ # @param [Time] virtual_start_time The task's new virtual start time value. When supplied, the Task takes on the specified virtual start time. Value can't be in the future.
565
579
  # @param [String] if_match If provided, applies this mutation if (and only if) the [ETag](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) header of the Task matches the provided value. This matches the semantics of (and is implemented with) the HTTP [If-Match header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Match).
566
580
  # @return [TaskInstance] Updated TaskInstance
567
581
  def update(
@@ -570,6 +584,7 @@ module Twilio
570
584
  reason: :unset,
571
585
  priority: :unset,
572
586
  task_channel: :unset,
587
+ virtual_start_time: :unset,
573
588
  if_match: :unset
574
589
  )
575
590
 
@@ -579,6 +594,7 @@ module Twilio
579
594
  reason: reason,
580
595
  priority: priority,
581
596
  task_channel: task_channel,
597
+ virtual_start_time: virtual_start_time,
582
598
  if_match: if_match,
583
599
  )
584
600
  end
@@ -0,0 +1,232 @@
1
+ ##
2
+ # This code was generated by
3
+ # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
4
+ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
5
+ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
6
+ #
7
+ # Twilio - Trusthub
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 Trusthub < TrusthubBase
19
+ class V1 < Version
20
+ class ComplianceInquiriesList < ListResource
21
+ ##
22
+ # Initialize the ComplianceInquiriesList
23
+ # @param [Version] version Version that contains the resource
24
+ # @return [ComplianceInquiriesList] ComplianceInquiriesList
25
+ def initialize(version)
26
+ super(version)
27
+ # Path Solution
28
+ @solution = { }
29
+ @uri = "/ComplianceInquiries/Customers/Initialize"
30
+
31
+ end
32
+ ##
33
+ # Create the ComplianceInquiriesInstance
34
+ # @param [String] primary_profile_sid The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile.
35
+ # @return [ComplianceInquiriesInstance] Created ComplianceInquiriesInstance
36
+ def create(
37
+ primary_profile_sid: nil
38
+ )
39
+
40
+ data = Twilio::Values.of({
41
+ 'PrimaryProfileSid' => primary_profile_sid,
42
+ })
43
+
44
+ payload = @version.create('POST', @uri, data: data)
45
+ ComplianceInquiriesInstance.new(
46
+ @version,
47
+ payload,
48
+ )
49
+ end
50
+
51
+
52
+
53
+
54
+ # Provide a user friendly representation
55
+ def to_s
56
+ '#<Twilio.Trusthub.V1.ComplianceInquiriesList>'
57
+ end
58
+ end
59
+
60
+
61
+ class ComplianceInquiriesContext < InstanceContext
62
+ ##
63
+ # Initialize the ComplianceInquiriesContext
64
+ # @param [Version] version Version that contains the resource
65
+ # @param [String] customer_id The unique CustomerId matching the Customer Profile/Compliance Inquiry that should be resumed or resubmitted. This value will have been returned by the initial Compliance Inquiry creation call.
66
+ # @return [ComplianceInquiriesContext] ComplianceInquiriesContext
67
+ def initialize(version, customer_id)
68
+ super(version)
69
+
70
+ # Path Solution
71
+ @solution = { customer_id: customer_id, }
72
+ @uri = "/ComplianceInquiries/Customers/#{@solution[:customer_id]}/Initialize"
73
+
74
+
75
+ end
76
+ ##
77
+ # Update the ComplianceInquiriesInstance
78
+ # @param [String] primary_profile_sid The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile.
79
+ # @return [ComplianceInquiriesInstance] Updated ComplianceInquiriesInstance
80
+ def update(
81
+ primary_profile_sid: nil
82
+ )
83
+
84
+ data = Twilio::Values.of({
85
+ 'PrimaryProfileSid' => primary_profile_sid,
86
+ })
87
+
88
+ payload = @version.update('POST', @uri, data: data)
89
+ ComplianceInquiriesInstance.new(
90
+ @version,
91
+ payload,
92
+ customer_id: @solution[:customer_id],
93
+ )
94
+ end
95
+
96
+
97
+ ##
98
+ # Provide a user friendly representation
99
+ def to_s
100
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
101
+ "#<Twilio.Trusthub.V1.ComplianceInquiriesContext #{context}>"
102
+ end
103
+
104
+ ##
105
+ # Provide a detailed, user friendly representation
106
+ def inspect
107
+ context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
108
+ "#<Twilio.Trusthub.V1.ComplianceInquiriesContext #{context}>"
109
+ end
110
+ end
111
+
112
+ class ComplianceInquiriesPage < Page
113
+ ##
114
+ # Initialize the ComplianceInquiriesPage
115
+ # @param [Version] version Version that contains the resource
116
+ # @param [Response] response Response from the API
117
+ # @param [Hash] solution Path solution for the resource
118
+ # @return [ComplianceInquiriesPage] ComplianceInquiriesPage
119
+ def initialize(version, response, solution)
120
+ super(version, response)
121
+
122
+ # Path Solution
123
+ @solution = solution
124
+ end
125
+
126
+ ##
127
+ # Build an instance of ComplianceInquiriesInstance
128
+ # @param [Hash] payload Payload response from the API
129
+ # @return [ComplianceInquiriesInstance] ComplianceInquiriesInstance
130
+ def get_instance(payload)
131
+ ComplianceInquiriesInstance.new(@version, payload)
132
+ end
133
+
134
+ ##
135
+ # Provide a user friendly representation
136
+ def to_s
137
+ '<Twilio.Trusthub.V1.ComplianceInquiriesPage>'
138
+ end
139
+ end
140
+ class ComplianceInquiriesInstance < InstanceResource
141
+ ##
142
+ # Initialize the ComplianceInquiriesInstance
143
+ # @param [Version] version Version that contains the resource
144
+ # @param [Hash] payload payload that contains response from Twilio
145
+ # @param [String] account_sid The SID of the
146
+ # {Account}[https://www.twilio.com/docs/iam/api/account] that created this ComplianceInquiries
147
+ # resource.
148
+ # @param [String] sid The SID of the Call resource to fetch.
149
+ # @return [ComplianceInquiriesInstance] ComplianceInquiriesInstance
150
+ def initialize(version, payload , customer_id: nil)
151
+ super(version)
152
+
153
+ # Marshaled Properties
154
+ @properties = {
155
+ 'inquiry_id' => payload['inquiry_id'],
156
+ 'inquiry_session_token' => payload['inquiry_session_token'],
157
+ 'customer_id' => payload['customer_id'],
158
+ 'url' => payload['url'],
159
+ }
160
+
161
+ # Context
162
+ @instance_context = nil
163
+ @params = { 'customer_id' => customer_id || @properties['customer_id'] , }
164
+ end
165
+
166
+ ##
167
+ # Generate an instance context for the instance, the context is capable of
168
+ # performing various actions. All instance actions are proxied to the context
169
+ # @return [ComplianceInquiriesContext] CallContext for this CallInstance
170
+ def context
171
+ unless @instance_context
172
+ @instance_context = ComplianceInquiriesContext.new(@version , @params['customer_id'])
173
+ end
174
+ @instance_context
175
+ end
176
+
177
+ ##
178
+ # @return [String] The unique ID used to start an embedded compliance registration session.
179
+ def inquiry_id
180
+ @properties['inquiry_id']
181
+ end
182
+
183
+ ##
184
+ # @return [String] The session token used to start an embedded compliance registration session.
185
+ def inquiry_session_token
186
+ @properties['inquiry_session_token']
187
+ end
188
+
189
+ ##
190
+ # @return [String] The CustomerID matching the Customer Profile that should be resumed or resubmitted for editing.
191
+ def customer_id
192
+ @properties['customer_id']
193
+ end
194
+
195
+ ##
196
+ # @return [String] The URL of this resource.
197
+ def url
198
+ @properties['url']
199
+ end
200
+
201
+ ##
202
+ # Update the ComplianceInquiriesInstance
203
+ # @param [String] primary_profile_sid The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile.
204
+ # @return [ComplianceInquiriesInstance] Updated ComplianceInquiriesInstance
205
+ def update(
206
+ primary_profile_sid: nil
207
+ )
208
+
209
+ context.update(
210
+ primary_profile_sid: primary_profile_sid,
211
+ )
212
+ end
213
+
214
+ ##
215
+ # Provide a user friendly representation
216
+ def to_s
217
+ values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
218
+ "<Twilio.Trusthub.V1.ComplianceInquiriesInstance #{values}>"
219
+ end
220
+
221
+ ##
222
+ # Provide a detailed, user friendly representation
223
+ def inspect
224
+ values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
225
+ "<Twilio.Trusthub.V1.ComplianceInquiriesInstance #{values}>"
226
+ end
227
+ end
228
+
229
+ end
230
+ end
231
+ end
232
+ end
@@ -21,6 +21,7 @@ module Twilio
21
21
  def initialize(domain)
22
22
  super
23
23
  @version = 'v1'
24
+ @compliance_inquiries = nil
24
25
  @customer_profiles = nil
25
26
  @end_users = nil
26
27
  @end_user_types = nil
@@ -30,6 +31,20 @@ module Twilio
30
31
  @trust_products = nil
31
32
  end
32
33
 
34
+ ##
35
+ # @param [String] customer_id The unique CustomerId matching the Customer Profile/Compliance Inquiry that should be resumed or resubmitted. This value will have been returned by the initial Compliance Inquiry creation call.
36
+ # @return [Twilio::REST::Trusthub::V1::ComplianceInquiriesContext] if customerId was passed.
37
+ # @return [Twilio::REST::Trusthub::V1::ComplianceInquiriesList]
38
+ def compliance_inquiries(customer_id=:unset)
39
+ if customer_id.nil?
40
+ raise ArgumentError, 'customer_id cannot be nil'
41
+ end
42
+ if customer_id == :unset
43
+ @compliance_inquiries ||= ComplianceInquiriesList.new self
44
+ else
45
+ ComplianceInquiriesContext.new(self, customer_id)
46
+ end
47
+ end
33
48
  ##
34
49
  # @param [String] sid The unique string that we created to identify the Customer-Profile resource.
35
50
  # @return [Twilio::REST::Trusthub::V1::CustomerProfilesContext] if sid was passed.
@@ -1,3 +1,3 @@
1
1
  module Twilio
2
- VERSION = '6.7.0'
2
+ VERSION = '6.8.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: 6.7.0
4
+ version: 6.8.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: 2023-09-21 00:00:00.000000000 Z
11
+ date: 2023-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -249,6 +249,7 @@ files:
249
249
  - lib/twilio-ruby/rest/accounts/v1/credential.rb
250
250
  - lib/twilio-ruby/rest/accounts/v1/credential/aws.rb
251
251
  - lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb
252
+ - lib/twilio-ruby/rest/accounts/v1/safelist.rb
252
253
  - lib/twilio-ruby/rest/accounts/v1/secondary_auth_token.rb
253
254
  - lib/twilio-ruby/rest/accounts_base.rb
254
255
  - lib/twilio-ruby/rest/api.rb
@@ -332,7 +333,6 @@ files:
332
333
  - lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb
333
334
  - lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb
334
335
  - lib/twilio-ruby/rest/api/v2010/account/validation_request.rb
335
- - lib/twilio-ruby/rest/api/v2010/safelist.rb
336
336
  - lib/twilio-ruby/rest/api_base.rb
337
337
  - lib/twilio-ruby/rest/autopilot.rb
338
338
  - lib/twilio-ruby/rest/autopilot/v1.rb
@@ -781,6 +781,7 @@ files:
781
781
  - lib/twilio-ruby/rest/trunking_base.rb
782
782
  - lib/twilio-ruby/rest/trusthub.rb
783
783
  - lib/twilio-ruby/rest/trusthub/v1.rb
784
+ - lib/twilio-ruby/rest/trusthub/v1/compliance_inquiries.rb
784
785
  - lib/twilio-ruby/rest/trusthub/v1/customer_profiles.rb
785
786
  - lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb
786
787
  - lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb