freeclimb 2.0.2 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +105 -0
  3. data/README.md +12 -5
  4. data/docs/AccountResult.md +2 -2
  5. data/docs/AccountResultAllOf.md +2 -2
  6. data/docs/DefaultApi.md +46 -46
  7. data/docs/Hangup.md +17 -0
  8. data/docs/HangupAllOf.md +17 -0
  9. data/docs/MakeCallRequest.md +5 -3
  10. data/docs/MessageResult.md +1 -1
  11. data/docs/MessageResultAllOf.md +1 -1
  12. data/docs/RecordUtterance.md +3 -1
  13. data/docs/RecordUtteranceAllOf.md +3 -1
  14. data/docs/Redirect.md +1 -1
  15. data/docs/RedirectAllOf.md +1 -1
  16. data/docs/Reject.md +17 -0
  17. data/docs/RejectAllOf.md +17 -0
  18. data/freeclimb-2.0.3.gem +0 -0
  19. data/freeclimb-2.1.0.gem +0 -0
  20. data/freeclimb-2.1.1.gem +0 -0
  21. data/freeclimb-2.1.2.gem +0 -0
  22. data/lib/freeclimb.rb +4 -0
  23. data/lib/freeclimb/api_client.rb +1 -1
  24. data/lib/freeclimb/models/account_result.rb +8 -8
  25. data/lib/freeclimb/models/account_result_all_of.rb +8 -8
  26. data/lib/freeclimb/models/hangup.rb +220 -0
  27. data/lib/freeclimb/models/hangup_all_of.rb +207 -0
  28. data/lib/freeclimb/models/make_call_request.rb +16 -11
  29. data/lib/freeclimb/models/message_result.rb +3 -3
  30. data/lib/freeclimb/models/message_result_all_of.rb +3 -3
  31. data/lib/freeclimb/models/record_utterance.rb +14 -4
  32. data/lib/freeclimb/models/record_utterance_all_of.rb +14 -4
  33. data/lib/freeclimb/models/redirect.rb +7 -2
  34. data/lib/freeclimb/models/redirect_all_of.rb +6 -1
  35. data/lib/freeclimb/models/reject.rb +220 -0
  36. data/lib/freeclimb/models/reject_all_of.rb +207 -0
  37. data/lib/freeclimb/version.rb +1 -1
  38. data/spec/api/web_mocks.rb +1 -1
  39. data/spec/models/hangup_spec.rb +41 -0
  40. data/spec/models/reject_spec.rb +41 -0
  41. metadata +19 -2
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module Freeclimb
14
- VERSION = '2.0.2'
14
+ VERSION = '2.2.0'
15
15
  end
@@ -171,7 +171,7 @@ module ResponseMocks
171
171
  "dateCreated":"Thu, 13 Oct 2019 16:59:34 GMT",
172
172
  "dateUpdated":"Thu, 13 Oct 2019 16:59:34 GMT",
173
173
  "accountId":"{account_id}",
174
- "authToken":"428e487a035b837ac2f47f2236ec553550ed2628",
174
+ "apiKey":"428e487a035b837ac2f47f2236ec553550ed2628",
175
175
  "alias":"boostrap account",
176
176
  "label":"customer service",
177
177
  "type":"trial",
@@ -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.2
4
+ version: 2.2.0
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-08-13 00:00:00.000000000 Z
11
+ date: 2021-05-04 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,10 @@ 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
197
+ - freeclimb-2.1.1.gem
198
+ - freeclimb-2.1.2.gem
190
199
  - freeclimb.gemspec
191
200
  - lib/freeclimb.rb
192
201
  - lib/freeclimb/api/default_api.rb
@@ -230,6 +239,8 @@ files:
230
239
  - lib/freeclimb/models/get_digits_all_of.rb
231
240
  - lib/freeclimb/models/get_speech.rb
232
241
  - lib/freeclimb/models/get_speech_all_of.rb
242
+ - lib/freeclimb/models/hangup.rb
243
+ - lib/freeclimb/models/hangup_all_of.rb
233
244
  - lib/freeclimb/models/incoming_number_list.rb
234
245
  - lib/freeclimb/models/incoming_number_list_all_of.rb
235
246
  - lib/freeclimb/models/incoming_number_request.rb
@@ -273,6 +284,8 @@ files:
273
284
  - lib/freeclimb/models/recording_result_all_of.rb
274
285
  - lib/freeclimb/models/redirect.rb
275
286
  - lib/freeclimb/models/redirect_all_of.rb
287
+ - lib/freeclimb/models/reject.rb
288
+ - lib/freeclimb/models/reject_all_of.rb
276
289
  - lib/freeclimb/models/remove_from_conference.rb
277
290
  - lib/freeclimb/models/remove_from_conference_all_of.rb
278
291
  - lib/freeclimb/models/say.rb
@@ -318,6 +331,7 @@ files:
318
331
  - spec/models/filter_logs_request_spec.rb
319
332
  - spec/models/get_digits_spec.rb
320
333
  - spec/models/get_speech_spec.rb
334
+ - spec/models/hangup_spec.rb
321
335
  - spec/models/incoming_number_list_spec.rb
322
336
  - spec/models/incoming_number_request_spec.rb
323
337
  - spec/models/incoming_number_result_spec.rb
@@ -344,6 +358,7 @@ files:
344
358
  - spec/models/recording_list_spec.rb
345
359
  - spec/models/recording_result_spec.rb
346
360
  - spec/models/redirect_spec.rb
361
+ - spec/models/reject_spec.rb
347
362
  - spec/models/remove_from_conference_spec.rb
348
363
  - spec/models/say_spec.rb
349
364
  - spec/models/send_digits_spec.rb
@@ -385,6 +400,7 @@ test_files:
385
400
  - spec/api_client_spec.rb
386
401
  - spec/configuration_spec.rb
387
402
  - spec/models/play_spec.rb
403
+ - spec/models/hangup_spec.rb
388
404
  - spec/models/set_listen_spec.rb
389
405
  - spec/models/recording_list_spec.rb
390
406
  - spec/models/pagination_model_spec.rb
@@ -396,6 +412,7 @@ test_files:
396
412
  - spec/models/queue_result_spec.rb
397
413
  - spec/models/queue_member_list_spec.rb
398
414
  - spec/models/filter_logs_request_spec.rb
415
+ - spec/models/reject_spec.rb
399
416
  - spec/models/account_request_spec.rb
400
417
  - spec/models/incoming_number_request_spec.rb
401
418
  - spec/models/record_utterance_spec.rb