twilio-ruby 5.25.2 → 5.25.3
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/CHANGES.md +11 -0
- data/README.md +2 -2
- data/lib/twilio-ruby/rest/authy.rb +8 -8
- data/lib/twilio-ruby/rest/authy/v1.rb +15 -15
- data/lib/twilio-ruby/rest/client.rb +7 -0
- data/lib/twilio-ruby/rest/conversations.rb +53 -0
- data/lib/twilio-ruby/rest/conversations/v1.rb +51 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation.rb +471 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/message.rb +416 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb +407 -0
- data/lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb +432 -0
- data/lib/twilio-ruby/rest/conversations/v1/webhook.rb +272 -0
- data/lib/twilio-ruby/rest/flex_api.rb +6 -6
- data/lib/twilio-ruby/rest/flex_api/v1.rb +7 -7
- data/lib/twilio-ruby/rest/messaging.rb +8 -8
- data/lib/twilio-ruby/rest/messaging/v1.rb +14 -14
- data/lib/twilio-ruby/rest/preview.rb +20 -20
- data/lib/twilio-ruby/rest/preview/marketplace.rb +13 -13
- data/lib/twilio-ruby/rest/preview/trusted_comms.rb +14 -14
- data/lib/twilio-ruby/rest/serverless/v1/service/build.rb +14 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment.rb +30 -0
- data/lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb +370 -0
- data/lib/twilio-ruby/rest/video.rb +9 -9
- data/lib/twilio-ruby/rest/video/v1.rb +16 -16
- data/lib/twilio-ruby/rest/wireless.rb +6 -6
- data/lib/twilio-ruby/rest/wireless/v1.rb +9 -8
- data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +27 -18
- data/lib/twilio-ruby/twiml/voice_response.rb +161 -11
- data/lib/twilio-ruby/version.rb +1 -1
- data/spec/integration/conversations/v1/conversation/message_spec.rb +223 -0
- data/spec/integration/conversations/v1/conversation/participant_spec.rb +265 -0
- data/spec/integration/conversations/v1/conversation/webhook_spec.rb +286 -0
- data/spec/integration/conversations/v1/conversation_spec.rb +218 -0
- data/spec/integration/conversations/v1/webhook_spec.rb +88 -0
- data/spec/integration/serverless/v1/service/build_spec.rb +28 -0
- data/spec/integration/serverless/v1/service/environment/log_spec.rb +98 -0
- data/spec/integration/serverless/v1/service/environment_spec.rb +4 -2
- data/spec/integration/verify/v2/service/verification_spec.rb +36 -0
- data/spec/integration/wireless/v1/rate_plan_spec.rb +12 -12
- metadata +22 -2
@@ -0,0 +1,88 @@
|
|
1
|
+
##
|
2
|
+
# This code was generated by
|
3
|
+
# \ / _ _ _| _ _
|
4
|
+
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
+
# / /
|
6
|
+
#
|
7
|
+
# frozen_string_literal: true
|
8
|
+
|
9
|
+
require 'spec_helper.rb'
|
10
|
+
|
11
|
+
describe 'Webhook' do
|
12
|
+
it "can fetch" do
|
13
|
+
@holodeck.mock(Twilio::Response.new(500, ''))
|
14
|
+
|
15
|
+
expect {
|
16
|
+
@client.conversations.v1.webhooks().fetch()
|
17
|
+
}.to raise_exception(Twilio::REST::TwilioError)
|
18
|
+
|
19
|
+
values = {}
|
20
|
+
expect(
|
21
|
+
@holodeck.has_request?(Holodeck::Request.new(
|
22
|
+
method: 'get',
|
23
|
+
url: 'https://conversations.twilio.com/v1/Conversations/Webhooks',
|
24
|
+
))).to eq(true)
|
25
|
+
end
|
26
|
+
|
27
|
+
it "receives fetch responses" do
|
28
|
+
@holodeck.mock(Twilio::Response.new(
|
29
|
+
200,
|
30
|
+
%q[
|
31
|
+
{
|
32
|
+
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
33
|
+
"pre_webhook_url": "https://example.com/pre",
|
34
|
+
"post_webhook_url": "https://example.com/post",
|
35
|
+
"method": "GET",
|
36
|
+
"filters": [
|
37
|
+
"onMessageSend",
|
38
|
+
"onConversationUpdated"
|
39
|
+
],
|
40
|
+
"target": "webhook",
|
41
|
+
"url": "https://conversations.twilio.com/v1/Conversations/Webhooks"
|
42
|
+
}
|
43
|
+
]
|
44
|
+
))
|
45
|
+
|
46
|
+
actual = @client.conversations.v1.webhooks().fetch()
|
47
|
+
|
48
|
+
expect(actual).to_not eq(nil)
|
49
|
+
end
|
50
|
+
|
51
|
+
it "can update" do
|
52
|
+
@holodeck.mock(Twilio::Response.new(500, ''))
|
53
|
+
|
54
|
+
expect {
|
55
|
+
@client.conversations.v1.webhooks().update()
|
56
|
+
}.to raise_exception(Twilio::REST::TwilioError)
|
57
|
+
|
58
|
+
values = {}
|
59
|
+
expect(
|
60
|
+
@holodeck.has_request?(Holodeck::Request.new(
|
61
|
+
method: 'post',
|
62
|
+
url: 'https://conversations.twilio.com/v1/Conversations/Webhooks',
|
63
|
+
))).to eq(true)
|
64
|
+
end
|
65
|
+
|
66
|
+
it "receives update responses" do
|
67
|
+
@holodeck.mock(Twilio::Response.new(
|
68
|
+
200,
|
69
|
+
%q[
|
70
|
+
{
|
71
|
+
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
72
|
+
"pre_webhook_url": "https://example.com/pre",
|
73
|
+
"post_webhook_url": "http://example.com/post",
|
74
|
+
"method": "GET",
|
75
|
+
"filters": [
|
76
|
+
"onConversationUpdated"
|
77
|
+
],
|
78
|
+
"target": "webhook",
|
79
|
+
"url": "https://conversations.twilio.com/v1/Conversations/Webhooks"
|
80
|
+
}
|
81
|
+
]
|
82
|
+
))
|
83
|
+
|
84
|
+
actual = @client.conversations.v1.webhooks().update()
|
85
|
+
|
86
|
+
expect(actual).to_not eq(nil)
|
87
|
+
end
|
88
|
+
end
|
@@ -116,6 +116,34 @@ describe 'Build' do
|
|
116
116
|
expect(actual).to_not eq(nil)
|
117
117
|
end
|
118
118
|
|
119
|
+
it "can delete" do
|
120
|
+
@holodeck.mock(Twilio::Response.new(500, ''))
|
121
|
+
|
122
|
+
expect {
|
123
|
+
@client.serverless.v1.services('ZSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
124
|
+
.builds('ZBXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX').delete()
|
125
|
+
}.to raise_exception(Twilio::REST::TwilioError)
|
126
|
+
|
127
|
+
values = {}
|
128
|
+
expect(
|
129
|
+
@holodeck.has_request?(Holodeck::Request.new(
|
130
|
+
method: 'delete',
|
131
|
+
url: 'https://serverless.twilio.com/v1/Services/ZSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Builds/ZBXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
|
132
|
+
))).to eq(true)
|
133
|
+
end
|
134
|
+
|
135
|
+
it "receives delete responses" do
|
136
|
+
@holodeck.mock(Twilio::Response.new(
|
137
|
+
204,
|
138
|
+
nil,
|
139
|
+
))
|
140
|
+
|
141
|
+
actual = @client.serverless.v1.services('ZSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
142
|
+
.builds('ZBXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX').delete()
|
143
|
+
|
144
|
+
expect(actual).to eq(true)
|
145
|
+
end
|
146
|
+
|
119
147
|
it "can create" do
|
120
148
|
@holodeck.mock(Twilio::Response.new(500, ''))
|
121
149
|
|
@@ -0,0 +1,98 @@
|
|
1
|
+
##
|
2
|
+
# This code was generated by
|
3
|
+
# \ / _ _ _| _ _
|
4
|
+
# | (_)\/(_)(_|\/| |(/_ v1.0.0
|
5
|
+
# / /
|
6
|
+
#
|
7
|
+
# frozen_string_literal: true
|
8
|
+
|
9
|
+
require 'spec_helper.rb'
|
10
|
+
|
11
|
+
describe 'Log' do
|
12
|
+
it "can read" do
|
13
|
+
@holodeck.mock(Twilio::Response.new(500, ''))
|
14
|
+
|
15
|
+
expect {
|
16
|
+
@client.serverless.v1.services('ZSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
17
|
+
.environments('ZEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
18
|
+
.logs.list()
|
19
|
+
}.to raise_exception(Twilio::REST::TwilioError)
|
20
|
+
|
21
|
+
values = {}
|
22
|
+
expect(
|
23
|
+
@holodeck.has_request?(Holodeck::Request.new(
|
24
|
+
method: 'get',
|
25
|
+
url: 'https://serverless.twilio.com/v1/Services/ZSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Environments/ZEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Logs',
|
26
|
+
))).to eq(true)
|
27
|
+
end
|
28
|
+
|
29
|
+
it "receives read_empty responses" do
|
30
|
+
@holodeck.mock(Twilio::Response.new(
|
31
|
+
200,
|
32
|
+
%q[
|
33
|
+
{
|
34
|
+
"logs": [],
|
35
|
+
"meta": {
|
36
|
+
"first_page_url": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Logs?FunctionSid=ZH00000000000000000000000000000000&PageSize=50&Page=0",
|
37
|
+
"key": "logs",
|
38
|
+
"next_page_url": null,
|
39
|
+
"page": 0,
|
40
|
+
"page_size": 50,
|
41
|
+
"previous_page_url": null,
|
42
|
+
"url": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Logs?FunctionSid=ZH00000000000000000000000000000000&PageSize=50&Page=0"
|
43
|
+
}
|
44
|
+
}
|
45
|
+
]
|
46
|
+
))
|
47
|
+
|
48
|
+
actual = @client.serverless.v1.services('ZSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
49
|
+
.environments('ZEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
50
|
+
.logs.list()
|
51
|
+
|
52
|
+
expect(actual).to_not eq(nil)
|
53
|
+
end
|
54
|
+
|
55
|
+
it "can fetch" do
|
56
|
+
@holodeck.mock(Twilio::Response.new(500, ''))
|
57
|
+
|
58
|
+
expect {
|
59
|
+
@client.serverless.v1.services('ZSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
60
|
+
.environments('ZEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
61
|
+
.logs('NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX').fetch()
|
62
|
+
}.to raise_exception(Twilio::REST::TwilioError)
|
63
|
+
|
64
|
+
values = {}
|
65
|
+
expect(
|
66
|
+
@holodeck.has_request?(Holodeck::Request.new(
|
67
|
+
method: 'get',
|
68
|
+
url: 'https://serverless.twilio.com/v1/Services/ZSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Environments/ZEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Logs/NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
|
69
|
+
))).to eq(true)
|
70
|
+
end
|
71
|
+
|
72
|
+
it "receives fetch responses" do
|
73
|
+
@holodeck.mock(Twilio::Response.new(
|
74
|
+
200,
|
75
|
+
%q[
|
76
|
+
{
|
77
|
+
"sid": "NO00000000000000000000000000000000",
|
78
|
+
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
79
|
+
"service_sid": "ZS00000000000000000000000000000000",
|
80
|
+
"environment_sid": "ZE00000000000000000000000000000000",
|
81
|
+
"deployment_sid": "ZD00000000000000000000000000000000",
|
82
|
+
"function_sid": "ZH00000000000000000000000000000000",
|
83
|
+
"request_sid": "RQ00000000000000000000000000000000",
|
84
|
+
"level": "warn",
|
85
|
+
"message": "This is a warning",
|
86
|
+
"date_created": "2018-11-10T20:00:00Z",
|
87
|
+
"url": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Logs/NO00000000000000000000000000000000"
|
88
|
+
}
|
89
|
+
]
|
90
|
+
))
|
91
|
+
|
92
|
+
actual = @client.serverless.v1.services('ZSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
93
|
+
.environments('ZEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
94
|
+
.logs('NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX').fetch()
|
95
|
+
|
96
|
+
expect(actual).to_not eq(nil)
|
97
|
+
end
|
98
|
+
end
|
@@ -83,7 +83,8 @@ describe 'Environment' do
|
|
83
83
|
"url": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000",
|
84
84
|
"links": {
|
85
85
|
"variables": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Variables",
|
86
|
-
"deployments": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Deployments"
|
86
|
+
"deployments": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Deployments",
|
87
|
+
"logs": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Logs"
|
87
88
|
}
|
88
89
|
}
|
89
90
|
]
|
@@ -129,7 +130,8 @@ describe 'Environment' do
|
|
129
130
|
"url": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000",
|
130
131
|
"links": {
|
131
132
|
"variables": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Variables",
|
132
|
-
"deployments": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Deployments"
|
133
|
+
"deployments": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Deployments",
|
134
|
+
"logs": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Environments/ZE00000000000000000000000000000000/Logs"
|
133
135
|
}
|
134
136
|
}
|
135
137
|
]
|
@@ -151,6 +151,42 @@ describe 'Verification' do
|
|
151
151
|
expect(actual).to_not eq(nil)
|
152
152
|
end
|
153
153
|
|
154
|
+
it "receives approve_verification_with_pn responses" do
|
155
|
+
@holodeck.mock(Twilio::Response.new(
|
156
|
+
200,
|
157
|
+
%q[
|
158
|
+
{
|
159
|
+
"sid": "VEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
160
|
+
"service_sid": "VAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
161
|
+
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
162
|
+
"to": "+14159373912",
|
163
|
+
"channel": "sms",
|
164
|
+
"status": "approved",
|
165
|
+
"valid": true,
|
166
|
+
"date_created": "2015-07-30T20:00:00Z",
|
167
|
+
"date_updated": "2015-07-30T20:00:00Z",
|
168
|
+
"lookup": {
|
169
|
+
"carrier": {
|
170
|
+
"error_code": null,
|
171
|
+
"name": "Carrier Name",
|
172
|
+
"mobile_country_code": "310",
|
173
|
+
"mobile_network_code": "150",
|
174
|
+
"type": "mobile"
|
175
|
+
}
|
176
|
+
},
|
177
|
+
"amount": null,
|
178
|
+
"payee": null,
|
179
|
+
"url": "https://verify.twilio.com/v2/Services/VAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Verifications/VEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
|
180
|
+
}
|
181
|
+
]
|
182
|
+
))
|
183
|
+
|
184
|
+
actual = @client.verify.v2.services('VAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX') \
|
185
|
+
.verifications('sid').update(status: 'canceled')
|
186
|
+
|
187
|
+
expect(actual).to_not eq(nil)
|
188
|
+
end
|
189
|
+
|
154
190
|
it "can fetch" do
|
155
191
|
@holodeck.mock(Twilio::Response.new(500, ''))
|
156
192
|
|
@@ -68,9 +68,9 @@ describe 'RatePlan' do
|
|
68
68
|
"unique_name": "unique_name",
|
69
69
|
"data_enabled": true,
|
70
70
|
"data_limit": 1000,
|
71
|
-
"data_metering": "
|
72
|
-
"date_created": "
|
73
|
-
"date_updated": "
|
71
|
+
"data_metering": "payg",
|
72
|
+
"date_created": "2019-07-30T20:00:00Z",
|
73
|
+
"date_updated": "2019-07-30T20:00:00Z",
|
74
74
|
"friendly_name": "friendly_name",
|
75
75
|
"messaging_enabled": true,
|
76
76
|
"voice_enabled": true,
|
@@ -119,9 +119,9 @@ describe 'RatePlan' do
|
|
119
119
|
"unique_name": "unique_name",
|
120
120
|
"data_enabled": true,
|
121
121
|
"data_limit": 1000,
|
122
|
-
"data_metering": "
|
123
|
-
"date_created": "
|
124
|
-
"date_updated": "
|
122
|
+
"data_metering": "payg",
|
123
|
+
"date_created": "2019-07-30T20:00:00Z",
|
124
|
+
"date_updated": "2019-07-30T20:00:00Z",
|
125
125
|
"friendly_name": "friendly_name",
|
126
126
|
"messaging_enabled": true,
|
127
127
|
"voice_enabled": true,
|
@@ -168,9 +168,9 @@ describe 'RatePlan' do
|
|
168
168
|
"unique_name": "unique_name",
|
169
169
|
"data_enabled": true,
|
170
170
|
"data_limit": 1000,
|
171
|
-
"data_metering": "
|
172
|
-
"date_created": "
|
173
|
-
"date_updated": "
|
171
|
+
"data_metering": "payg",
|
172
|
+
"date_created": "2019-07-30T20:00:00Z",
|
173
|
+
"date_updated": "2019-07-30T20:00:00Z",
|
174
174
|
"friendly_name": "friendly_name",
|
175
175
|
"messaging_enabled": true,
|
176
176
|
"voice_enabled": true,
|
@@ -217,9 +217,9 @@ describe 'RatePlan' do
|
|
217
217
|
"unique_name": "unique_name",
|
218
218
|
"data_enabled": true,
|
219
219
|
"data_limit": 1000,
|
220
|
-
"data_metering": "
|
221
|
-
"date_created": "
|
222
|
-
"date_updated": "
|
220
|
+
"data_metering": "payg",
|
221
|
+
"date_created": "2019-07-30T20:00:00Z",
|
222
|
+
"date_updated": "2019-07-30T20:00:00Z",
|
223
223
|
"friendly_name": "friendly_name",
|
224
224
|
"messaging_enabled": true,
|
225
225
|
"voice_enabled": true,
|
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: 5.25.
|
4
|
+
version: 5.25.3
|
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: 2019-
|
11
|
+
date: 2019-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -289,6 +289,13 @@ files:
|
|
289
289
|
- lib/twilio-ruby/rest/chat/v2/service/user/user_binding.rb
|
290
290
|
- lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb
|
291
291
|
- lib/twilio-ruby/rest/client.rb
|
292
|
+
- lib/twilio-ruby/rest/conversations.rb
|
293
|
+
- lib/twilio-ruby/rest/conversations/v1.rb
|
294
|
+
- lib/twilio-ruby/rest/conversations/v1/conversation.rb
|
295
|
+
- lib/twilio-ruby/rest/conversations/v1/conversation/message.rb
|
296
|
+
- lib/twilio-ruby/rest/conversations/v1/conversation/participant.rb
|
297
|
+
- lib/twilio-ruby/rest/conversations/v1/conversation/webhook.rb
|
298
|
+
- lib/twilio-ruby/rest/conversations/v1/webhook.rb
|
292
299
|
- lib/twilio-ruby/rest/fax.rb
|
293
300
|
- lib/twilio-ruby/rest/fax/v1.rb
|
294
301
|
- lib/twilio-ruby/rest/fax/v1/fax.rb
|
@@ -438,6 +445,7 @@ files:
|
|
438
445
|
- lib/twilio-ruby/rest/serverless/v1/service/build.rb
|
439
446
|
- lib/twilio-ruby/rest/serverless/v1/service/environment.rb
|
440
447
|
- lib/twilio-ruby/rest/serverless/v1/service/environment/deployment.rb
|
448
|
+
- lib/twilio-ruby/rest/serverless/v1/service/environment/log.rb
|
441
449
|
- lib/twilio-ruby/rest/serverless/v1/service/environment/variable.rb
|
442
450
|
- lib/twilio-ruby/rest/serverless/v1/service/function.rb
|
443
451
|
- lib/twilio-ruby/rest/serverless/v1/service/function/function_version.rb
|
@@ -665,6 +673,11 @@ files:
|
|
665
673
|
- spec/integration/chat/v2/service/user/user_channel_spec.rb
|
666
674
|
- spec/integration/chat/v2/service/user_spec.rb
|
667
675
|
- spec/integration/chat/v2/service_spec.rb
|
676
|
+
- spec/integration/conversations/v1/conversation/message_spec.rb
|
677
|
+
- spec/integration/conversations/v1/conversation/participant_spec.rb
|
678
|
+
- spec/integration/conversations/v1/conversation/webhook_spec.rb
|
679
|
+
- spec/integration/conversations/v1/conversation_spec.rb
|
680
|
+
- spec/integration/conversations/v1/webhook_spec.rb
|
668
681
|
- spec/integration/fax/v1/fax/fax_media_spec.rb
|
669
682
|
- spec/integration/fax/v1/fax_spec.rb
|
670
683
|
- spec/integration/flex_api/v1/configuration_spec.rb
|
@@ -778,6 +791,7 @@ files:
|
|
778
791
|
- spec/integration/serverless/v1/service/asset_spec.rb
|
779
792
|
- spec/integration/serverless/v1/service/build_spec.rb
|
780
793
|
- spec/integration/serverless/v1/service/environment/deployment_spec.rb
|
794
|
+
- spec/integration/serverless/v1/service/environment/log_spec.rb
|
781
795
|
- spec/integration/serverless/v1/service/environment/variable_spec.rb
|
782
796
|
- spec/integration/serverless/v1/service/environment_spec.rb
|
783
797
|
- spec/integration/serverless/v1/service/function/function_version_spec.rb
|
@@ -1029,6 +1043,11 @@ test_files:
|
|
1029
1043
|
- spec/integration/chat/v2/service/user/user_channel_spec.rb
|
1030
1044
|
- spec/integration/chat/v2/service/user_spec.rb
|
1031
1045
|
- spec/integration/chat/v2/service_spec.rb
|
1046
|
+
- spec/integration/conversations/v1/conversation/message_spec.rb
|
1047
|
+
- spec/integration/conversations/v1/conversation/participant_spec.rb
|
1048
|
+
- spec/integration/conversations/v1/conversation/webhook_spec.rb
|
1049
|
+
- spec/integration/conversations/v1/conversation_spec.rb
|
1050
|
+
- spec/integration/conversations/v1/webhook_spec.rb
|
1032
1051
|
- spec/integration/fax/v1/fax/fax_media_spec.rb
|
1033
1052
|
- spec/integration/fax/v1/fax_spec.rb
|
1034
1053
|
- spec/integration/flex_api/v1/configuration_spec.rb
|
@@ -1142,6 +1161,7 @@ test_files:
|
|
1142
1161
|
- spec/integration/serverless/v1/service/asset_spec.rb
|
1143
1162
|
- spec/integration/serverless/v1/service/build_spec.rb
|
1144
1163
|
- spec/integration/serverless/v1/service/environment/deployment_spec.rb
|
1164
|
+
- spec/integration/serverless/v1/service/environment/log_spec.rb
|
1145
1165
|
- spec/integration/serverless/v1/service/environment/variable_spec.rb
|
1146
1166
|
- spec/integration/serverless/v1/service/environment_spec.rb
|
1147
1167
|
- spec/integration/serverless/v1/service/function/function_version_spec.rb
|