freeclimb 4.1.1 → 4.1.3

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
  SHA256:
3
- metadata.gz: 7bb5cdc38af489a7db09467441e19ccbe8e6e65c313483457088a2b298eb4b86
4
- data.tar.gz: 3e39fb4188c87aad783a757b2d759db679c4bfec9ca58ee53f2fc6236a294289
3
+ metadata.gz: 6478ad1652831cea81595098617c0c74fb6d2f1697d09098b87b2c7131ab3a02
4
+ data.tar.gz: 254f990d422aa7d1fee557e78ffd328cc6800aea723c0841169803cf8ece059d
5
5
  SHA512:
6
- metadata.gz: '090fee4604a999068a210f52978e7f18a225c60e6128974570a1308b0f067f058d7307d5e791d6815d6a8849ff303db8f8299ca4f216bb33bdab0e419add8c15'
7
- data.tar.gz: 3ef9f065eb9710551ce9174eb73fc45fda075045fabd970d584caf2301c816581b060c0707f2c794f86d044d5ce83c66ef9620d7cfb461dd7fda987fd69b9790
6
+ metadata.gz: 304c8351ee2b95fbb8b306dc410f065dfc80237b0018d9ba123ba4b6101ed7130f2aa067012afd453439a990e9360f8e30a419861cafbea72ffed16a239b1e8e
7
+ data.tar.gz: 99a2e12550a6b7ba9e8927e1e87354755870466ddc602d5b728803ea104ff2ac25267d427cdeacf3b242fcc313663ff400f570b695a1686edaa89f1520d3a13e
data/CHANGELOG.md CHANGED
@@ -9,6 +9,22 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
9
9
 
10
10
  None
11
11
 
12
+ <a name="4.1.3"></a>
13
+
14
+ ## [4.1.3] - 2023-03-13
15
+
16
+ ### Changed
17
+
18
+ - callStatus variable of CallResult is now processing and returning correct data back
19
+
20
+ <a name="4.1.2"></a>
21
+
22
+ ## [4.1.2] - 2023-02-21
23
+
24
+ ### Changed
25
+
26
+ - OutDial PerCL command callingNumber and destination types fixed
27
+
12
28
  <a name="4.1.1"></a>
13
29
 
14
30
  ## [4.1.1] - 2023-02-14
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- freeclimb (4.1.1)
4
+ freeclimb (4.1.3)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -7,7 +7,7 @@ FreeClimb is a cloud-based application programming interface (API) that puts the
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 1.0.0
10
- - Package version: 4.1.1
10
+ - Package version: 4.1.3
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://www.freeclimb.com/support/](https://www.freeclimb.com/support/)
13
13
 
@@ -15,7 +15,7 @@ For more information, please visit [https://www.freeclimb.com/support/](https://
15
15
 
16
16
  Add this to the Gemfile:
17
17
 
18
- gem 'freeclimb', '~> 4.1.1'
18
+ gem 'freeclimb', '~> 4.1.3'
19
19
 
20
20
  and run from your terminal
21
21
 
@@ -44,9 +44,9 @@ gem build freeclimb.gemspec
44
44
  Then either install the gem locally:
45
45
 
46
46
  ```shell
47
- gem install ./freeclimb-4.1.1.gem
47
+ gem install ./freeclimb-4.1.3.gem
48
48
  ```
49
- (for development, run `gem install --dev ./freeclimb-4.1.1.gem` to install the development dependencies)
49
+ (for development, run `gem install --dev ./freeclimb-4.1.3.gem` to install the development dependencies)
50
50
 
51
51
  ## Getting Started
52
52
 
data/docs/CallResult.md CHANGED
@@ -14,7 +14,7 @@
14
14
  | **from** | **String** | Phone number that initiated this Call. | [optional] |
15
15
  | **to** | **String** | Phone number that received this Call. | [optional] |
16
16
  | **phone_number_id** | **String** | If the Call was inbound, this is the ID of the IncomingPhoneNumber that received the Call (DNIS). If the Call was outbound, this is the ID of the phone number from which the Call was placed (ANI). | [optional] |
17
- | **status** | [**CallStatus**](CallStatus.md) | | [optional] |
17
+ | **call_status** | [**CallStatus**](CallStatus.md) | | [optional] |
18
18
  | **start_time** | **String** | Start time of the Call (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call has not yet been dialed. | [optional] |
19
19
  | **connect_time** | **String** | Time the Call was answered (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call has not yet been dialed. | [optional] |
20
20
  | **end_time** | **String** | End time of the Call (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call did not complete successfully. | [optional] |
@@ -40,7 +40,7 @@ instance = Freeclimb::CallResult.new(
40
40
  from: null,
41
41
  to: null,
42
42
  phone_number_id: null,
43
- status: null,
43
+ call_status: null,
44
44
  start_time: null,
45
45
  connect_time: null,
46
46
  end_time: null,
@@ -10,7 +10,7 @@
10
10
  | **from** | **String** | Phone number that initiated this Call. | [optional] |
11
11
  | **to** | **String** | Phone number that received this Call. | [optional] |
12
12
  | **phone_number_id** | **String** | If the Call was inbound, this is the ID of the IncomingPhoneNumber that received the Call (DNIS). If the Call was outbound, this is the ID of the phone number from which the Call was placed (ANI). | [optional] |
13
- | **status** | [**CallStatus**](CallStatus.md) | | [optional] |
13
+ | **call_status** | [**CallStatus**](CallStatus.md) | | [optional] |
14
14
  | **start_time** | **String** | Start time of the Call (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call has not yet been dialed. | [optional] |
15
15
  | **connect_time** | **String** | Time the Call was answered (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call has not yet been dialed. | [optional] |
16
16
  | **end_time** | **String** | End time of the Call (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call did not complete successfully. | [optional] |
@@ -32,7 +32,7 @@ instance = Freeclimb::CallResultAllOf.new(
32
32
  from: null,
33
33
  to: null,
34
34
  phone_number_id: null,
35
- status: null,
35
+ call_status: null,
36
36
  start_time: null,
37
37
  connect_time: null,
38
38
  end_time: null,
data/docs/OutDial.md CHANGED
@@ -6,8 +6,8 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **action_url** | **String** | URL to which FreeClimb sends an HTTP POST request. | |
8
8
  | **call_connect_url** | **String** | URL to which FreeClimb makes an HTTP POST request informing the result of the OutDial. | |
9
- | **calling_number** | **Float** | he caller ID to show to the called party when FreeClimb calls. This can be one of the following: The To or From number provided in the first Webhook to your webserver. Any phone number you have purchased from FreeClimb. | |
10
- | **destination** | **Float** | E.164 representation of the phone number to Call. | |
9
+ | **calling_number** | **String** | he caller ID to show to the called party when FreeClimb calls. This can be one of the following: The To or From number provided in the first Webhook to your webserver. Any phone number you have purchased from FreeClimb. | |
10
+ | **destination** | **String** | E.164 representation of the phone number to Call. | |
11
11
  | **if_machine** | [**IfMachine**](IfMachine.md) | | [optional] |
12
12
  | **if_machine_url** | **String** | When the &#x60;ifMachine&#x60; flag is set to &#x60;redirect&#x60;, this attribute specifies a URL to which FreeClimb makes a POST request when an answering machine or a fax machine is detected. This URL is required if the &#x60;ifMachine&#x60; flag is set to &#x60;redirect&#x60;. Otherwise, it should not be included. | [optional] |
13
13
  | **send_digits** | **String** | DTMF tones to play to the outdialed Call. This is typically used to dial a number and then dial an extension. | [optional] |
data/docs/OutDialAllOf.md CHANGED
@@ -6,8 +6,8 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **action_url** | **String** | URL to which FreeClimb sends an HTTP POST request. | |
8
8
  | **call_connect_url** | **String** | URL to which FreeClimb makes an HTTP POST request informing the result of the OutDial. | |
9
- | **calling_number** | **Float** | he caller ID to show to the called party when FreeClimb calls. This can be one of the following: The To or From number provided in the first Webhook to your webserver. Any phone number you have purchased from FreeClimb. | |
10
- | **destination** | **Float** | E.164 representation of the phone number to Call. | |
9
+ | **calling_number** | **String** | he caller ID to show to the called party when FreeClimb calls. This can be one of the following: The To or From number provided in the first Webhook to your webserver. Any phone number you have purchased from FreeClimb. | |
10
+ | **destination** | **String** | E.164 representation of the phone number to Call. | |
11
11
  | **if_machine** | [**IfMachine**](IfMachine.md) | | [optional] |
12
12
  | **if_machine_url** | **String** | When the &#x60;ifMachine&#x60; flag is set to &#x60;redirect&#x60;, this attribute specifies a URL to which FreeClimb makes a POST request when an answering machine or a fax machine is detected. This URL is required if the &#x60;ifMachine&#x60; flag is set to &#x60;redirect&#x60;. Otherwise, it should not be included. | [optional] |
13
13
  | **send_digits** | **String** | DTMF tones to play to the outdialed Call. This is typically used to dial a number and then dial an extension. | [optional] |
@@ -45,7 +45,7 @@ module Freeclimb
45
45
  # If the Call was inbound, this is the ID of the IncomingPhoneNumber that received the Call (DNIS). If the Call was outbound, this is the ID of the phone number from which the Call was placed (ANI).
46
46
  attr_accessor :phone_number_id
47
47
 
48
- attr_accessor :status
48
+ attr_accessor :call_status
49
49
 
50
50
  # Start time of the Call (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call has not yet been dialed.
51
51
  attr_accessor :start_time
@@ -82,7 +82,7 @@ module Freeclimb
82
82
  :'from' => :'from',
83
83
  :'to' => :'to',
84
84
  :'phone_number_id' => :'phoneNumberId',
85
- :'status' => :'status',
85
+ :'call_status' => :'callStatus',
86
86
  :'start_time' => :'startTime',
87
87
  :'connect_time' => :'connectTime',
88
88
  :'end_time' => :'endTime',
@@ -112,7 +112,7 @@ module Freeclimb
112
112
  :'from' => :'String',
113
113
  :'to' => :'String',
114
114
  :'phone_number_id' => :'String',
115
- :'status' => :'CallStatus',
115
+ :'call_status' => :'CallStatus',
116
116
  :'start_time' => :'String',
117
117
  :'connect_time' => :'String',
118
118
  :'end_time' => :'String',
@@ -205,8 +205,8 @@ module Freeclimb
205
205
  self.phone_number_id = attributes[:'phone_number_id']
206
206
  end
207
207
 
208
- if attributes.key?(:'status')
209
- self.status = attributes[:'status']
208
+ if attributes.key?(:'call_status')
209
+ self.call_status = attributes[:'call_status']
210
210
  end
211
211
 
212
212
  if attributes.key?(:'start_time')
@@ -270,7 +270,7 @@ module Freeclimb
270
270
  from == o.from &&
271
271
  to == o.to &&
272
272
  phone_number_id == o.phone_number_id &&
273
- status == o.status &&
273
+ call_status == o.call_status &&
274
274
  start_time == o.start_time &&
275
275
  connect_time == o.connect_time &&
276
276
  end_time == o.end_time &&
@@ -290,7 +290,7 @@ module Freeclimb
290
290
  # Calculates hash code according to all attributes.
291
291
  # @return [Integer] Hash code
292
292
  def hash
293
- [uri, date_created, date_updated, revision, call_id, parent_call_id, account_id, from, to, phone_number_id, status, start_time, connect_time, end_time, duration, connect_duration, direction, answered_by, subresource_uris].hash
293
+ [uri, date_created, date_updated, revision, call_id, parent_call_id, account_id, from, to, phone_number_id, call_status, start_time, connect_time, end_time, duration, connect_duration, direction, answered_by, subresource_uris].hash
294
294
  end
295
295
 
296
296
  # Builds the object from hash
@@ -33,7 +33,7 @@ module Freeclimb
33
33
  # If the Call was inbound, this is the ID of the IncomingPhoneNumber that received the Call (DNIS). If the Call was outbound, this is the ID of the phone number from which the Call was placed (ANI).
34
34
  attr_accessor :phone_number_id
35
35
 
36
- attr_accessor :status
36
+ attr_accessor :call_status
37
37
 
38
38
  # Start time of the Call (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call has not yet been dialed.
39
39
  attr_accessor :start_time
@@ -66,7 +66,7 @@ module Freeclimb
66
66
  :'from' => :'from',
67
67
  :'to' => :'to',
68
68
  :'phone_number_id' => :'phoneNumberId',
69
- :'status' => :'status',
69
+ :'call_status' => :'callStatus',
70
70
  :'start_time' => :'startTime',
71
71
  :'connect_time' => :'connectTime',
72
72
  :'end_time' => :'endTime',
@@ -92,7 +92,7 @@ module Freeclimb
92
92
  :'from' => :'String',
93
93
  :'to' => :'String',
94
94
  :'phone_number_id' => :'String',
95
- :'status' => :'CallStatus',
95
+ :'call_status' => :'CallStatus',
96
96
  :'start_time' => :'String',
97
97
  :'connect_time' => :'String',
98
98
  :'end_time' => :'String',
@@ -161,8 +161,8 @@ module Freeclimb
161
161
  self.phone_number_id = attributes[:'phone_number_id']
162
162
  end
163
163
 
164
- if attributes.key?(:'status')
165
- self.status = attributes[:'status']
164
+ if attributes.key?(:'call_status')
165
+ self.call_status = attributes[:'call_status']
166
166
  end
167
167
 
168
168
  if attributes.key?(:'start_time')
@@ -222,7 +222,7 @@ module Freeclimb
222
222
  from == o.from &&
223
223
  to == o.to &&
224
224
  phone_number_id == o.phone_number_id &&
225
- status == o.status &&
225
+ call_status == o.call_status &&
226
226
  start_time == o.start_time &&
227
227
  connect_time == o.connect_time &&
228
228
  end_time == o.end_time &&
@@ -242,7 +242,7 @@ module Freeclimb
242
242
  # Calculates hash code according to all attributes.
243
243
  # @return [Integer] Hash code
244
244
  def hash
245
- [call_id, parent_call_id, account_id, from, to, phone_number_id, status, start_time, connect_time, end_time, duration, connect_duration, direction, answered_by, subresource_uris].hash
245
+ [call_id, parent_call_id, account_id, from, to, phone_number_id, call_status, start_time, connect_time, end_time, duration, connect_duration, direction, answered_by, subresource_uris].hash
246
246
  end
247
247
 
248
248
  # Builds the object from hash
@@ -71,8 +71,8 @@ module Freeclimb
71
71
  {
72
72
  :'action_url' => :'String',
73
73
  :'call_connect_url' => :'String',
74
- :'calling_number' => :'Float',
75
- :'destination' => :'Float',
74
+ :'calling_number' => :'String',
75
+ :'destination' => :'String',
76
76
  :'if_machine' => :'IfMachine',
77
77
  :'if_machine_url' => :'String',
78
78
  :'send_digits' => :'String',
@@ -70,8 +70,8 @@ module Freeclimb
70
70
  {
71
71
  :'action_url' => :'String',
72
72
  :'call_connect_url' => :'String',
73
- :'calling_number' => :'Float',
74
- :'destination' => :'Float',
73
+ :'calling_number' => :'String',
74
+ :'destination' => :'String',
75
75
  :'if_machine' => :'IfMachine',
76
76
  :'if_machine_url' => :'String',
77
77
  :'send_digits' => :'String',
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.4.0
11
11
  =end
12
12
 
13
13
  module Freeclimb
14
- VERSION = '4.1.1'
14
+ VERSION = '4.1.3'
15
15
  end
data/openapi.json CHANGED
@@ -751,11 +751,11 @@
751
751
  },
752
752
  "callingNumber": {
753
753
  "description": "he caller ID to show to the called party when FreeClimb calls. This can be one of the following: The To or From number provided in the first Webhook to your webserver. Any phone number you have purchased from FreeClimb.",
754
- "type": "number"
754
+ "type": "string"
755
755
  },
756
756
  "destination": {
757
757
  "description": "E.164 representation of the phone number to Call. ",
758
- "type": "number"
758
+ "type": "string"
759
759
  },
760
760
  "ifMachine": {
761
761
  "$ref": "#/components/schemas/IfMachine"
@@ -1647,7 +1647,7 @@
1647
1647
  "description": "If the Call was inbound, this is the ID of the IncomingPhoneNumber that received the Call (DNIS). If the Call was outbound, this is the ID of the phone number from which the Call was placed (ANI).",
1648
1648
  "nullable": true
1649
1649
  },
1650
- "status": {
1650
+ "callStatus": {
1651
1651
  "$ref": "#/components/schemas/CallStatus",
1652
1652
  "nullable": true
1653
1653
  },
@@ -1835,7 +1835,7 @@
1835
1835
  },
1836
1836
  "level": {
1837
1837
  "$ref": "#/components/schemas/LogLevel",
1838
-
1838
+
1839
1839
  "nullable": true
1840
1840
  },
1841
1841
  "requestId": {
@@ -85,7 +85,7 @@ describe Freeclimb::CallResult do
85
85
  end
86
86
  end
87
87
 
88
- describe 'test attribute "status"' do
88
+ describe 'test attribute "call_status"' do
89
89
  it 'should work' do
90
90
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
91
91
  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: 4.1.1
4
+ version: 4.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-16 00:00:00.000000000 Z
11
+ date: 2023-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -451,90 +451,90 @@ test_files:
451
451
  - spec/api_client_spec.rb
452
452
  - spec/configuration_spec.rb
453
453
  - spec/factories.rb
454
+ - spec/models/update_conference_participant_request_spec.rb
455
+ - spec/models/request_type_spec.rb
456
+ - spec/models/message_status_spec.rb
457
+ - spec/models/available_number_list_spec.rb
458
+ - spec/models/mutable_resource_model_spec.rb
454
459
  - spec/models/add_to_conference_spec.rb
455
- - spec/models/call_list_spec.rb
456
- - spec/models/record_utterance_term_reason_spec.rb
457
- - spec/models/set_talk_spec.rb
458
- - spec/models/get_speech_reason_spec.rb
459
- - spec/models/unpark_spec.rb
460
- - spec/models/conference_participant_result_spec.rb
461
- - spec/models/recording_list_spec.rb
460
+ - spec/models/account_type_spec.rb
461
+ - spec/models/queue_request_spec.rb
462
+ - spec/models/language_spec.rb
463
+ - spec/models/start_record_call_spec.rb
464
+ - spec/models/remove_from_conference_spec.rb
465
+ - spec/models/message_direction_spec.rb
466
+ - spec/models/application_result_spec.rb
462
467
  - spec/models/log_result_spec.rb
463
- - spec/models/update_conference_request_spec.rb
468
+ - spec/models/terminate_conference_spec.rb
464
469
  - spec/models/create_conference_request_spec.rb
465
- - spec/models/record_utterance_spec.rb
466
- - spec/models/update_call_request_spec.rb
467
- - spec/models/pause_spec.rb
468
- - spec/models/hangup_spec.rb
469
- - spec/models/create_conference_spec.rb
470
- - spec/models/message_status_spec.rb
471
- - spec/models/account_status_spec.rb
472
- - spec/models/message_request_spec.rb
473
- - spec/models/get_digits_spec.rb
474
- - spec/models/update_conference_participant_request_spec.rb
475
- - spec/models/queue_result_status_spec.rb
476
- - spec/models/conference_status_spec.rb
477
- - spec/models/log_list_spec.rb
478
- - spec/models/play_spec.rb
479
- - spec/models/incoming_number_result_spec.rb
480
- - spec/models/set_listen_spec.rb
481
- - spec/models/conference_participant_list_spec.rb
482
- - spec/models/say_spec.rb
483
- - spec/models/application_list_spec.rb
484
- - spec/models/language_spec.rb
485
- - spec/models/account_type_spec.rb
486
- - spec/models/get_speech_spec.rb
487
- - spec/models/answered_by_spec.rb
488
470
  - spec/models/enqueue_spec.rb
489
- - spec/models/queue_member_list_spec.rb
471
+ - spec/models/out_dial_spec.rb
490
472
  - spec/models/redirect_spec.rb
491
- - spec/models/pagination_model_spec.rb
473
+ - spec/models/conference_list_spec.rb
474
+ - spec/models/call_list_spec.rb
492
475
  - spec/models/incoming_number_list_spec.rb
493
- - spec/models/send_digits_spec.rb
494
- - spec/models/application_request_spec.rb
495
- - spec/models/out_dial_spec.rb
496
- - spec/models/sms_spec.rb
497
- - spec/models/buy_incoming_number_request_spec.rb
498
- - spec/models/park_spec.rb
499
- - spec/models/message_result_spec.rb
500
- - spec/models/update_conference_request_status_spec.rb
501
- - spec/models/grammar_file_built_in_spec.rb
476
+ - spec/models/record_utterance_spec.rb
477
+ - spec/models/set_talk_spec.rb
502
478
  - spec/models/log_level_spec.rb
503
- - spec/models/account_result_spec.rb
504
- - spec/models/available_number_list_spec.rb
505
- - spec/models/filter_logs_request_spec.rb
506
- - spec/models/remove_from_conference_spec.rb
507
- - spec/models/reject_spec.rb
479
+ - spec/models/log_list_spec.rb
508
480
  - spec/models/percl_script_spec.rb
509
- - spec/models/update_call_request_status_spec.rb
510
- - spec/models/machine_type_spec.rb
481
+ - spec/models/answered_by_spec.rb
482
+ - spec/models/reject_spec.rb
483
+ - spec/models/grammar_file_built_in_spec.rb
511
484
  - spec/models/grammar_type_spec.rb
512
- - spec/models/incoming_number_request_spec.rb
513
- - spec/models/queue_request_spec.rb
514
- - spec/models/make_call_request_spec.rb
515
- - spec/models/application_result_spec.rb
485
+ - spec/models/if_machine_spec.rb
486
+ - spec/models/account_result_spec.rb
487
+ - spec/models/get_speech_spec.rb
488
+ - spec/models/get_digits_spec.rb
489
+ - spec/models/get_speech_reason_spec.rb
490
+ - spec/models/queue_result_spec.rb
491
+ - spec/models/message_result_spec.rb
516
492
  - spec/models/available_number_spec.rb
517
- - spec/models/conference_list_spec.rb
518
- - spec/models/call_status_spec.rb
519
- - spec/models/play_early_media_spec.rb
520
- - spec/models/terminate_conference_spec.rb
521
493
  - spec/models/call_direction_spec.rb
494
+ - spec/models/account_status_spec.rb
495
+ - spec/models/pause_spec.rb
496
+ - spec/models/message_request_spec.rb
497
+ - spec/models/park_spec.rb
498
+ - spec/models/update_conference_request_status_spec.rb
499
+ - spec/models/unpark_spec.rb
500
+ - spec/models/call_status_spec.rb
501
+ - spec/models/application_request_spec.rb
502
+ - spec/models/application_list_spec.rb
503
+ - spec/models/filter_logs_request_spec.rb
504
+ - spec/models/hangup_spec.rb
505
+ - spec/models/percl_command_spec.rb
506
+ - spec/models/update_call_request_status_spec.rb
507
+ - spec/models/messages_list_spec.rb
508
+ - spec/models/recording_result_spec.rb
509
+ - spec/models/buy_incoming_number_request_spec.rb
510
+ - spec/models/update_call_request_spec.rb
511
+ - spec/models/conference_status_spec.rb
512
+ - spec/models/make_call_request_spec.rb
513
+ - spec/models/conference_participant_result_spec.rb
514
+ - spec/models/conference_result_spec.rb
515
+ - spec/models/queue_result_status_spec.rb
516
+ - spec/models/send_digits_spec.rb
522
517
  - spec/models/account_request_spec.rb
523
- - spec/models/call_result_spec.rb
518
+ - spec/models/queue_list_spec.rb
524
519
  - spec/models/queue_member_spec.rb
525
- - spec/models/dequeue_spec.rb
520
+ - spec/models/play_early_media_spec.rb
521
+ - spec/models/machine_type_spec.rb
526
522
  - spec/models/capabilities_spec.rb
527
- - spec/models/if_machine_spec.rb
523
+ - spec/models/create_conference_spec.rb
524
+ - spec/models/record_utterance_term_reason_spec.rb
525
+ - spec/models/pagination_model_spec.rb
528
526
  - spec/models/play_beep_spec.rb
529
- - spec/models/mutable_resource_model_spec.rb
530
- - spec/models/queue_list_spec.rb
531
- - spec/models/messages_list_spec.rb
532
- - spec/models/request_type_spec.rb
533
- - spec/models/recording_result_spec.rb
534
- - spec/models/queue_result_spec.rb
535
- - spec/models/conference_result_spec.rb
536
- - spec/models/message_direction_spec.rb
537
- - spec/models/start_record_call_spec.rb
538
- - spec/models/percl_command_spec.rb
527
+ - spec/models/sms_spec.rb
528
+ - spec/models/conference_participant_list_spec.rb
529
+ - spec/models/update_conference_request_spec.rb
530
+ - spec/models/play_spec.rb
531
+ - spec/models/incoming_number_request_spec.rb
532
+ - spec/models/say_spec.rb
533
+ - spec/models/dequeue_spec.rb
534
+ - spec/models/incoming_number_result_spec.rb
535
+ - spec/models/call_result_spec.rb
536
+ - spec/models/queue_member_list_spec.rb
537
+ - spec/models/set_listen_spec.rb
538
+ - spec/models/recording_list_spec.rb
539
539
  - spec/quickstart_spec.rb
540
540
  - spec/spec_helper.rb