freeclimb 2.0.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +95 -0
  3. data/Gemfile.lock +1 -1
  4. data/README.md +11 -4
  5. data/docs/DefaultApi.md +16 -24
  6. data/docs/GetDigits.md +3 -1
  7. data/docs/GetDigitsAllOf.md +3 -1
  8. data/docs/GetSpeech.md +2 -2
  9. data/docs/GetSpeechAllOf.md +2 -2
  10. data/docs/Hangup.md +17 -0
  11. data/docs/HangupAllOf.md +17 -0
  12. data/docs/MakeCallRequest.md +3 -1
  13. data/docs/MessageResult.md +1 -1
  14. data/docs/MessageResultAllOf.md +1 -1
  15. data/docs/OutDial.md +3 -1
  16. data/docs/OutDialAllOf.md +3 -1
  17. data/docs/Play.md +3 -1
  18. data/docs/PlayAllOf.md +3 -1
  19. data/docs/RecordUtterance.md +3 -1
  20. data/docs/RecordUtteranceAllOf.md +3 -1
  21. data/docs/Redirect.md +1 -1
  22. data/docs/RedirectAllOf.md +1 -1
  23. data/docs/Reject.md +17 -0
  24. data/docs/RejectAllOf.md +17 -0
  25. data/docs/Say.md +2 -2
  26. data/docs/SayAllOf.md +2 -2
  27. data/docs/SendDigits.md +3 -1
  28. data/docs/SendDigitsAllOf.md +3 -1
  29. data/freeclimb-2.0.3.gem +0 -0
  30. data/freeclimb-2.1.0.gem +0 -0
  31. data/lib/freeclimb.rb +4 -0
  32. data/lib/freeclimb/api/default_api.rb +40 -24
  33. data/lib/freeclimb/api_client.rb +1 -1
  34. data/lib/freeclimb/models/get_digits.rb +14 -4
  35. data/lib/freeclimb/models/get_digits_all_of.rb +14 -4
  36. data/lib/freeclimb/models/get_speech.rb +8 -8
  37. data/lib/freeclimb/models/get_speech_all_of.rb +8 -8
  38. data/lib/freeclimb/models/hangup.rb +220 -0
  39. data/lib/freeclimb/models/hangup_all_of.rb +207 -0
  40. data/lib/freeclimb/models/make_call_request.rb +14 -4
  41. data/lib/freeclimb/models/message_result.rb +3 -3
  42. data/lib/freeclimb/models/message_result_all_of.rb +3 -3
  43. data/lib/freeclimb/models/out_dial.rb +14 -4
  44. data/lib/freeclimb/models/out_dial_all_of.rb +14 -4
  45. data/lib/freeclimb/models/play.rb +14 -4
  46. data/lib/freeclimb/models/play_all_of.rb +14 -4
  47. data/lib/freeclimb/models/record_utterance.rb +14 -4
  48. data/lib/freeclimb/models/record_utterance_all_of.rb +14 -4
  49. data/lib/freeclimb/models/redirect.rb +7 -2
  50. data/lib/freeclimb/models/redirect_all_of.rb +6 -1
  51. data/lib/freeclimb/models/reject.rb +220 -0
  52. data/lib/freeclimb/models/reject_all_of.rb +207 -0
  53. data/lib/freeclimb/models/say.rb +8 -8
  54. data/lib/freeclimb/models/say_all_of.rb +8 -8
  55. data/lib/freeclimb/models/send_digits.rb +14 -4
  56. data/lib/freeclimb/models/send_digits_all_of.rb +14 -4
  57. data/lib/freeclimb/version.rb +1 -1
  58. data/spec/api/default_api_spec.rb +7 -14
  59. data/spec/models/hangup_spec.rb +41 -0
  60. data/spec/models/reject_spec.rb +41 -0
  61. metadata +17 -2
@@ -27,8 +27,8 @@ module Freeclimb
27
27
  # D of the Conference the speech should be rendered to. If this is not specified, the speech is by default rendered to the Caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error.
28
28
  attr_accessor :conference_id
29
29
 
30
- # Parameter `enforcePCI` will not log the `text` as required by PCI compliance.
31
- attr_accessor :enforce_pci
30
+ # Parameter `privacyMode` will not log the `text` as required by PCI compliance.
31
+ attr_accessor :privacy_mode
32
32
 
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
@@ -37,7 +37,7 @@ module Freeclimb
37
37
  :'language' => :'language',
38
38
  :'loop' => :'loop',
39
39
  :'conference_id' => :'conferenceId',
40
- :'enforce_pci' => :'enforcePCI'
40
+ :'privacy_mode' => :'privacyMode'
41
41
  }
42
42
  end
43
43
 
@@ -48,7 +48,7 @@ module Freeclimb
48
48
  :'language' => :'String',
49
49
  :'loop' => :'Integer',
50
50
  :'conference_id' => :'String',
51
- :'enforce_pci' => :'Boolean'
51
+ :'privacy_mode' => :'Boolean'
52
52
  }
53
53
  end
54
54
 
@@ -100,8 +100,8 @@ module Freeclimb
100
100
  self.conference_id = attributes[:'conference_id']
101
101
  end
102
102
 
103
- if attributes.key?(:'enforce_pci')
104
- self.enforce_pci = attributes[:'enforce_pci']
103
+ if attributes.key?(:'privacy_mode')
104
+ self.privacy_mode = attributes[:'privacy_mode']
105
105
  end
106
106
  end
107
107
 
@@ -132,7 +132,7 @@ module Freeclimb
132
132
  language == o.language &&
133
133
  loop == o.loop &&
134
134
  conference_id == o.conference_id &&
135
- enforce_pci == o.enforce_pci && super(o)
135
+ privacy_mode == o.privacy_mode && super(o)
136
136
  end
137
137
 
138
138
  # @see the `==` method
@@ -144,7 +144,7 @@ module Freeclimb
144
144
  # Calculates hash code according to all attributes.
145
145
  # @return [Integer] Hash code
146
146
  def hash
147
- [text, language, loop, conference_id, enforce_pci].hash
147
+ [text, language, loop, conference_id, privacy_mode].hash
148
148
  end
149
149
 
150
150
  # Builds the object from hash
@@ -26,8 +26,8 @@ module Freeclimb
26
26
  # D of the Conference the speech should be rendered to. If this is not specified, the speech is by default rendered to the Caller associated with the call leg that corresponds to the current PerCL execution context. The call leg associated with this command must be in the specified Conference or the command will return an error.
27
27
  attr_accessor :conference_id
28
28
 
29
- # Parameter `enforcePCI` will not log the `text` as required by PCI compliance.
30
- attr_accessor :enforce_pci
29
+ # Parameter `privacyMode` will not log the `text` as required by PCI compliance.
30
+ attr_accessor :privacy_mode
31
31
 
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
@@ -36,7 +36,7 @@ module Freeclimb
36
36
  :'language' => :'language',
37
37
  :'loop' => :'loop',
38
38
  :'conference_id' => :'conferenceId',
39
- :'enforce_pci' => :'enforcePCI'
39
+ :'privacy_mode' => :'privacyMode'
40
40
  }
41
41
  end
42
42
 
@@ -47,7 +47,7 @@ module Freeclimb
47
47
  :'language' => :'String',
48
48
  :'loop' => :'Integer',
49
49
  :'conference_id' => :'String',
50
- :'enforce_pci' => :'Boolean'
50
+ :'privacy_mode' => :'Boolean'
51
51
  }
52
52
  end
53
53
 
@@ -88,8 +88,8 @@ module Freeclimb
88
88
  self.conference_id = attributes[:'conference_id']
89
89
  end
90
90
 
91
- if attributes.key?(:'enforce_pci')
92
- self.enforce_pci = attributes[:'enforce_pci']
91
+ if attributes.key?(:'privacy_mode')
92
+ self.privacy_mode = attributes[:'privacy_mode']
93
93
  end
94
94
  end
95
95
 
@@ -120,7 +120,7 @@ module Freeclimb
120
120
  language == o.language &&
121
121
  loop == o.loop &&
122
122
  conference_id == o.conference_id &&
123
- enforce_pci == o.enforce_pci
123
+ privacy_mode == o.privacy_mode
124
124
  end
125
125
 
126
126
  # @see the `==` method
@@ -132,7 +132,7 @@ module Freeclimb
132
132
  # Calculates hash code according to all attributes.
133
133
  # @return [Integer] Hash code
134
134
  def hash
135
- [text, language, loop, conference_id, enforce_pci].hash
135
+ [text, language, loop, conference_id, privacy_mode].hash
136
136
  end
137
137
 
138
138
  # Builds the object from hash
@@ -21,11 +21,15 @@ module Freeclimb
21
21
  # Pause between digits in milliseconds. Valid values are 100-1000 milliseconds and will be adjusted by FreeClimb to satisfy the constraint.
22
22
  attr_accessor :pause_ms
23
23
 
24
+ # Parameter `privacyMode` will not log the `text` as required by PCI compliance.
25
+ attr_accessor :privacy_mode
26
+
24
27
  # Attribute mapping from ruby-style variable name to JSON key.
25
28
  def self.attribute_map
26
29
  {
27
30
  :'digits' => :'digits',
28
- :'pause_ms' => :'pauseMs'
31
+ :'pause_ms' => :'pauseMs',
32
+ :'privacy_mode' => :'privacyMode'
29
33
  }
30
34
  end
31
35
 
@@ -33,7 +37,8 @@ module Freeclimb
33
37
  def self.openapi_types
34
38
  {
35
39
  :'digits' => :'String',
36
- :'pause_ms' => :'Integer'
40
+ :'pause_ms' => :'Integer',
41
+ :'privacy_mode' => :'Boolean'
37
42
  }
38
43
  end
39
44
 
@@ -76,6 +81,10 @@ module Freeclimb
76
81
  if attributes.key?(:'pause_ms')
77
82
  self.pause_ms = attributes[:'pause_ms']
78
83
  end
84
+
85
+ if attributes.key?(:'privacy_mode')
86
+ self.privacy_mode = attributes[:'privacy_mode']
87
+ end
79
88
  end
80
89
 
81
90
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -102,7 +111,8 @@ module Freeclimb
102
111
  return true if self.equal?(o)
103
112
  self.class == o.class &&
104
113
  digits == o.digits &&
105
- pause_ms == o.pause_ms && super(o)
114
+ pause_ms == o.pause_ms &&
115
+ privacy_mode == o.privacy_mode && super(o)
106
116
  end
107
117
 
108
118
  # @see the `==` method
@@ -114,7 +124,7 @@ module Freeclimb
114
124
  # Calculates hash code according to all attributes.
115
125
  # @return [Integer] Hash code
116
126
  def hash
117
- [digits, pause_ms].hash
127
+ [digits, pause_ms, privacy_mode].hash
118
128
  end
119
129
 
120
130
  # Builds the object from hash
@@ -20,11 +20,15 @@ module Freeclimb
20
20
  # Pause between digits in milliseconds. Valid values are 100-1000 milliseconds and will be adjusted by FreeClimb to satisfy the constraint.
21
21
  attr_accessor :pause_ms
22
22
 
23
+ # Parameter `privacyMode` will not log the `text` as required by PCI compliance.
24
+ attr_accessor :privacy_mode
25
+
23
26
  # Attribute mapping from ruby-style variable name to JSON key.
24
27
  def self.attribute_map
25
28
  {
26
29
  :'digits' => :'digits',
27
- :'pause_ms' => :'pauseMs'
30
+ :'pause_ms' => :'pauseMs',
31
+ :'privacy_mode' => :'privacyMode'
28
32
  }
29
33
  end
30
34
 
@@ -32,7 +36,8 @@ module Freeclimb
32
36
  def self.openapi_types
33
37
  {
34
38
  :'digits' => :'String',
35
- :'pause_ms' => :'Integer'
39
+ :'pause_ms' => :'Integer',
40
+ :'privacy_mode' => :'Boolean'
36
41
  }
37
42
  end
38
43
 
@@ -64,6 +69,10 @@ module Freeclimb
64
69
  if attributes.key?(:'pause_ms')
65
70
  self.pause_ms = attributes[:'pause_ms']
66
71
  end
72
+
73
+ if attributes.key?(:'privacy_mode')
74
+ self.privacy_mode = attributes[:'privacy_mode']
75
+ end
67
76
  end
68
77
 
69
78
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -90,7 +99,8 @@ module Freeclimb
90
99
  return true if self.equal?(o)
91
100
  self.class == o.class &&
92
101
  digits == o.digits &&
93
- pause_ms == o.pause_ms
102
+ pause_ms == o.pause_ms &&
103
+ privacy_mode == o.privacy_mode
94
104
  end
95
105
 
96
106
  # @see the `==` method
@@ -102,7 +112,7 @@ module Freeclimb
102
112
  # Calculates hash code according to all attributes.
103
113
  # @return [Integer] Hash code
104
114
  def hash
105
- [digits, pause_ms].hash
115
+ [digits, pause_ms, privacy_mode].hash
106
116
  end
107
117
 
108
118
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module Freeclimb
14
- VERSION = '2.0.0'
14
+ VERSION = '2.1.1'
15
15
  end
@@ -52,11 +52,9 @@ describe 'DefaultApi' do
52
52
  before do
53
53
  uri_template = Addressable::Template.new "#{API_SERVER}/Accounts/{accountId}/IncomingPhoneNumbers"
54
54
  @stub = stub_request(:post, uri_template).to_return(:body => ResponseMocks::INCOMING_PHONE_NUMBER, :status => 200, :headers => {})
55
- opts = {
56
- buy_incoming_number_request: Freeclimb::BuyIncomingNumberRequest.new # BuyIncomingNumberRequest | Incoming Number transaction details
57
- }
55
+ buy_incoming_number_request = Freeclimb::BuyIncomingNumberRequest.new # BuyIncomingNumberRequest | Incoming Number transaction details
58
56
  #Buy a Phone Number
59
- @result = @api_instance.buy_a_phone_number(opts)
57
+ @result = @api_instance.buy_a_phone_number(buy_incoming_number_request)
60
58
  end
61
59
 
62
60
 
@@ -292,11 +290,9 @@ describe 'DefaultApi' do
292
290
  before do
293
291
  uri_template = Addressable::Template.new "#{API_SERVER}/Accounts/{accountId}/Logs"
294
292
  @stub = stub_request(:post, uri_template).to_return(:body => ResponseMocks::LOG_LIST_RESULT, :status => 200, :headers => {})
295
- opts = {
296
- filter_logs_request: Freeclimb::FilterLogsRequest.new # FilterLogsRequest | Filter logs request paramters
297
- }
293
+ filter_logs_request = Freeclimb::FilterLogsRequest.new # FilterLogsRequest | Filter logs request paramters
298
294
 
299
- @result = @api_instance.filter_logs(opts)
295
+ @result = @api_instance.filter_logs(filter_logs_request)
300
296
  end
301
297
 
302
298
  it 'should respond with a list of logs' do
@@ -941,11 +937,7 @@ describe 'DefaultApi' do
941
937
  request_body.from ='MOCK_FROM_NUMBER'
942
938
  request_body.text = 'MOCK_TEXT'
943
939
 
944
- opts = {
945
- message_request: request_body # MessageRequest | Details to create a message
946
- }
947
-
948
- @result = @api_instance.send_an_sms_message(opts)
940
+ @result = @api_instance.send_an_sms_message(request_body)
949
941
  end
950
942
 
951
943
  it 'should respond with Message result' do
@@ -1012,7 +1004,8 @@ describe 'DefaultApi' do
1012
1004
  @stub = stub_request(:post, uri_template).to_return(:body => '{}', :status => 202, :headers => {})
1013
1005
 
1014
1006
  call_id = 'MOCK_CALL_ID'
1015
- @result = @api_instance.update_a_live_call(call_id)
1007
+ call_request = Freeclimb::UpdateCallRequest.new
1008
+ @result = @api_instance.update_a_live_call(call_id, call_request)
1016
1009
  end
1017
1010
 
1018
1011
  it 'should make a POST request to /Accounts/{accountId}/Calls/{callId}' do
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #FreeClimb API
3
+
4
+ #FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Freeclimb::Hangup
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'Hangup' do
21
+ before do
22
+ # run before each test
23
+ @instance = Freeclimb::Hangup.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of Hangup' do
31
+ it 'should create an instance of Hangup' do
32
+ expect(@instance).to be_instance_of(Freeclimb::Hangup)
33
+ end
34
+ end
35
+ describe 'test attribute "reason"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1,41 @@
1
+ =begin
2
+ #FreeClimb API
3
+
4
+ #FreeClimb is a cloud-based application programming interface (API) that puts the power of the Vail platform in your hands. FreeClimb simplifies the process of creating applications that can use a full range of telephony features without requiring specialized or on-site telephony equipment. Using the FreeClimb REST API to write applications is easy! You have the option to use the language of your choice or hit the API directly. Your application can execute a command by issuing a RESTful request to the FreeClimb API. The base URL to send HTTP requests to the FreeClimb REST API is: /apiserver. FreeClimb authenticates and processes your request.
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Freeclimb::Reject
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'Reject' do
21
+ before do
22
+ # run before each test
23
+ @instance = Freeclimb::Reject.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of Reject' do
31
+ it 'should create an instance of Reject' do
32
+ expect(@instance).to be_instance_of(Freeclimb::Reject)
33
+ end
34
+ end
35
+ describe 'test attribute "reason"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: freeclimb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-09 00:00:00.000000000 Z
11
+ date: 2021-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -84,6 +84,7 @@ executables: []
84
84
  extensions: []
85
85
  extra_rdoc_files: []
86
86
  files:
87
+ - CHANGELOG.md
87
88
  - Gemfile
88
89
  - Gemfile.lock
89
90
  - README.md
@@ -126,6 +127,8 @@ files:
126
127
  - docs/GetDigitsAllOf.md
127
128
  - docs/GetSpeech.md
128
129
  - docs/GetSpeechAllOf.md
130
+ - docs/Hangup.md
131
+ - docs/HangupAllOf.md
129
132
  - docs/IncomingNumberList.md
130
133
  - docs/IncomingNumberListAllOf.md
131
134
  - docs/IncomingNumberRequest.md
@@ -169,6 +172,8 @@ files:
169
172
  - docs/RecordingResultAllOf.md
170
173
  - docs/Redirect.md
171
174
  - docs/RedirectAllOf.md
175
+ - docs/Reject.md
176
+ - docs/RejectAllOf.md
172
177
  - docs/RemoveFromConference.md
173
178
  - docs/RemoveFromConferenceAllOf.md
174
179
  - docs/Say.md
@@ -187,6 +192,8 @@ files:
187
192
  - docs/UpdateCallRequest.md
188
193
  - docs/UpdateConferenceParticipantRequest.md
189
194
  - docs/UpdateConferenceRequest.md
195
+ - freeclimb-2.0.3.gem
196
+ - freeclimb-2.1.0.gem
190
197
  - freeclimb.gemspec
191
198
  - lib/freeclimb.rb
192
199
  - lib/freeclimb/api/default_api.rb
@@ -230,6 +237,8 @@ files:
230
237
  - lib/freeclimb/models/get_digits_all_of.rb
231
238
  - lib/freeclimb/models/get_speech.rb
232
239
  - lib/freeclimb/models/get_speech_all_of.rb
240
+ - lib/freeclimb/models/hangup.rb
241
+ - lib/freeclimb/models/hangup_all_of.rb
233
242
  - lib/freeclimb/models/incoming_number_list.rb
234
243
  - lib/freeclimb/models/incoming_number_list_all_of.rb
235
244
  - lib/freeclimb/models/incoming_number_request.rb
@@ -273,6 +282,8 @@ files:
273
282
  - lib/freeclimb/models/recording_result_all_of.rb
274
283
  - lib/freeclimb/models/redirect.rb
275
284
  - lib/freeclimb/models/redirect_all_of.rb
285
+ - lib/freeclimb/models/reject.rb
286
+ - lib/freeclimb/models/reject_all_of.rb
276
287
  - lib/freeclimb/models/remove_from_conference.rb
277
288
  - lib/freeclimb/models/remove_from_conference_all_of.rb
278
289
  - lib/freeclimb/models/say.rb
@@ -318,6 +329,7 @@ files:
318
329
  - spec/models/filter_logs_request_spec.rb
319
330
  - spec/models/get_digits_spec.rb
320
331
  - spec/models/get_speech_spec.rb
332
+ - spec/models/hangup_spec.rb
321
333
  - spec/models/incoming_number_list_spec.rb
322
334
  - spec/models/incoming_number_request_spec.rb
323
335
  - spec/models/incoming_number_result_spec.rb
@@ -344,6 +356,7 @@ files:
344
356
  - spec/models/recording_list_spec.rb
345
357
  - spec/models/recording_result_spec.rb
346
358
  - spec/models/redirect_spec.rb
359
+ - spec/models/reject_spec.rb
347
360
  - spec/models/remove_from_conference_spec.rb
348
361
  - spec/models/say_spec.rb
349
362
  - spec/models/send_digits_spec.rb
@@ -385,6 +398,7 @@ test_files:
385
398
  - spec/api_client_spec.rb
386
399
  - spec/configuration_spec.rb
387
400
  - spec/models/play_spec.rb
401
+ - spec/models/hangup_spec.rb
388
402
  - spec/models/set_listen_spec.rb
389
403
  - spec/models/recording_list_spec.rb
390
404
  - spec/models/pagination_model_spec.rb
@@ -396,6 +410,7 @@ test_files:
396
410
  - spec/models/queue_result_spec.rb
397
411
  - spec/models/queue_member_list_spec.rb
398
412
  - spec/models/filter_logs_request_spec.rb
413
+ - spec/models/reject_spec.rb
399
414
  - spec/models/account_request_spec.rb
400
415
  - spec/models/incoming_number_request_spec.rb
401
416
  - spec/models/record_utterance_spec.rb