freeclimb 5.2.0 → 5.3.0
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/CHANGELOG.md +13 -1
- data/Gemfile.lock +3 -3
- data/README.md +17 -4
- data/docs/CallResult.md +2 -2
- data/docs/CreateConference.md +4 -2
- data/docs/DefaultApi.md +368 -1
- data/docs/ExportList.md +32 -0
- data/docs/ExportOutputType.md +16 -0
- data/docs/ExportRequest.md +24 -0
- data/docs/ExportRequestOutput.md +18 -0
- data/docs/ExportResourceType.md +17 -0
- data/docs/ExportResult.md +40 -0
- data/docs/ExportResultOutput.md +18 -0
- data/docs/ExportStatus.md +21 -0
- data/lib/freeclimb/api/default_api.rb +313 -0
- data/lib/freeclimb/models/call_result.rb +8 -8
- data/lib/freeclimb/models/create_conference.rb +15 -5
- data/lib/freeclimb/models/export_list.rb +304 -0
- data/lib/freeclimb/models/export_output_type.rb +34 -0
- data/lib/freeclimb/models/export_request.rb +276 -0
- data/lib/freeclimb/models/export_request_output.rb +243 -0
- data/lib/freeclimb/models/export_resource_type.rb +35 -0
- data/lib/freeclimb/models/export_result.rb +405 -0
- data/lib/freeclimb/models/export_result_output.rb +243 -0
- data/lib/freeclimb/models/export_status.rb +39 -0
- data/lib/freeclimb/version.rb +1 -1
- data/lib/freeclimb.rb +8 -0
- data/openapi.json +370 -2
- data/spec/api/default_api_spec.rb +141 -2
- data/spec/models/call_result_spec.rb +36 -36
- data/spec/models/create_conference_spec.rb +83 -35
- data/spec/models/export_list_spec.rb +502 -0
- data/spec/models/export_output_type_spec.rb +43 -0
- data/spec/models/export_request_output_spec.rb +162 -0
- data/spec/models/export_request_spec.rb +320 -0
- data/spec/models/export_resource_type_spec.rb +59 -0
- data/spec/models/export_result_output_spec.rb +162 -0
- data/spec/models/export_result_spec.rb +718 -0
- data/spec/models/export_status_spec.rb +123 -0
- data/yarn.lock +29 -29
- metadata +26 -2
@@ -0,0 +1,123 @@
|
|
1
|
+
# #FreeClimb API
|
2
|
+
#
|
3
|
+
# 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.
|
4
|
+
#
|
5
|
+
# The version of the OpenAPI document: 1.0.0
|
6
|
+
# Contact: support@freeclimb.com
|
7
|
+
# Generated by: https://openapi-generator.tech
|
8
|
+
# OpenAPI Generator version: 7.9.0
|
9
|
+
#
|
10
|
+
|
11
|
+
require "spec_helper"
|
12
|
+
require "json"
|
13
|
+
require "date"
|
14
|
+
include Freeclimb
|
15
|
+
|
16
|
+
# Unit tests for Freeclimb::ExportStatus
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe Freeclimb::ExportStatus do
|
20
|
+
let(:instance) { Freeclimb::ExportStatus.new }
|
21
|
+
|
22
|
+
describe "test an instance of ExportStatus" do
|
23
|
+
it "should create an instance of ExportStatus" do
|
24
|
+
expect(instance).to be_instance_of(Freeclimb::ExportStatus)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "INTAKING"' do
|
29
|
+
it "should work" do
|
30
|
+
expect { Freeclimb::ExportStatus::INTAKING = "intaking" }.not_to raise_error
|
31
|
+
end
|
32
|
+
it "should serialize to enum" do
|
33
|
+
expectedValue = Freeclimb::ExportStatus::INTAKING
|
34
|
+
calculatedValue = Freeclimb::ExportStatus.build_from_hash("intaking")
|
35
|
+
expect(expectedValue).to eq(calculatedValue)
|
36
|
+
end
|
37
|
+
it "should deserialize to string" do
|
38
|
+
expectedValue = "intaking"
|
39
|
+
calculatedValue = Freeclimb::ExportStatus::INTAKING
|
40
|
+
expect(expectedValue).to eq(calculatedValue)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
describe 'test attribute "QUEUED"' do
|
45
|
+
it "should work" do
|
46
|
+
expect { Freeclimb::ExportStatus::QUEUED = "queued" }.not_to raise_error
|
47
|
+
end
|
48
|
+
it "should serialize to enum" do
|
49
|
+
expectedValue = Freeclimb::ExportStatus::QUEUED
|
50
|
+
calculatedValue = Freeclimb::ExportStatus.build_from_hash("queued")
|
51
|
+
expect(expectedValue).to eq(calculatedValue)
|
52
|
+
end
|
53
|
+
it "should deserialize to string" do
|
54
|
+
expectedValue = "queued"
|
55
|
+
calculatedValue = Freeclimb::ExportStatus::QUEUED
|
56
|
+
expect(expectedValue).to eq(calculatedValue)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe 'test attribute "IN_PROGRESS"' do
|
61
|
+
it "should work" do
|
62
|
+
expect { Freeclimb::ExportStatus::IN_PROGRESS = "inProgress" }.not_to raise_error
|
63
|
+
end
|
64
|
+
it "should serialize to enum" do
|
65
|
+
expectedValue = Freeclimb::ExportStatus::IN_PROGRESS
|
66
|
+
calculatedValue = Freeclimb::ExportStatus.build_from_hash("inProgress")
|
67
|
+
expect(expectedValue).to eq(calculatedValue)
|
68
|
+
end
|
69
|
+
it "should deserialize to string" do
|
70
|
+
expectedValue = "inProgress"
|
71
|
+
calculatedValue = Freeclimb::ExportStatus::IN_PROGRESS
|
72
|
+
expect(expectedValue).to eq(calculatedValue)
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "COMPLETED"' do
|
77
|
+
it "should work" do
|
78
|
+
expect { Freeclimb::ExportStatus::COMPLETED = "completed" }.not_to raise_error
|
79
|
+
end
|
80
|
+
it "should serialize to enum" do
|
81
|
+
expectedValue = Freeclimb::ExportStatus::COMPLETED
|
82
|
+
calculatedValue = Freeclimb::ExportStatus.build_from_hash("completed")
|
83
|
+
expect(expectedValue).to eq(calculatedValue)
|
84
|
+
end
|
85
|
+
it "should deserialize to string" do
|
86
|
+
expectedValue = "completed"
|
87
|
+
calculatedValue = Freeclimb::ExportStatus::COMPLETED
|
88
|
+
expect(expectedValue).to eq(calculatedValue)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
describe 'test attribute "FAILED"' do
|
93
|
+
it "should work" do
|
94
|
+
expect { Freeclimb::ExportStatus::FAILED = "failed" }.not_to raise_error
|
95
|
+
end
|
96
|
+
it "should serialize to enum" do
|
97
|
+
expectedValue = Freeclimb::ExportStatus::FAILED
|
98
|
+
calculatedValue = Freeclimb::ExportStatus.build_from_hash("failed")
|
99
|
+
expect(expectedValue).to eq(calculatedValue)
|
100
|
+
end
|
101
|
+
it "should deserialize to string" do
|
102
|
+
expectedValue = "failed"
|
103
|
+
calculatedValue = Freeclimb::ExportStatus::FAILED
|
104
|
+
expect(expectedValue).to eq(calculatedValue)
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
describe 'test attribute "DELETED"' do
|
109
|
+
it "should work" do
|
110
|
+
expect { Freeclimb::ExportStatus::DELETED = "deleted" }.not_to raise_error
|
111
|
+
end
|
112
|
+
it "should serialize to enum" do
|
113
|
+
expectedValue = Freeclimb::ExportStatus::DELETED
|
114
|
+
calculatedValue = Freeclimb::ExportStatus.build_from_hash("deleted")
|
115
|
+
expect(expectedValue).to eq(calculatedValue)
|
116
|
+
end
|
117
|
+
it "should deserialize to string" do
|
118
|
+
expectedValue = "deleted"
|
119
|
+
calculatedValue = Freeclimb::ExportStatus::DELETED
|
120
|
+
expect(expectedValue).to eq(calculatedValue)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
data/yarn.lock
CHANGED
@@ -145,9 +145,9 @@
|
|
145
145
|
tslib "^2.3.1"
|
146
146
|
|
147
147
|
"@stoplight/prism-http-server@^5.6.0":
|
148
|
-
version "5.12.
|
149
|
-
resolved "https://registry.yarnpkg.com/@stoplight/prism-http-server/-/prism-http-server-5.12.
|
150
|
-
integrity sha512-
|
148
|
+
version "5.12.2"
|
149
|
+
resolved "https://registry.yarnpkg.com/@stoplight/prism-http-server/-/prism-http-server-5.12.2.tgz#d8de94f6b3506b464a5c89ff049b1e0fc9822ef9"
|
150
|
+
integrity sha512-h7MpOuv/WPvf4MhQmXw3CygAZp64Ts0SOM4BdoafcgAOJZyvRAOjUNJeelGJsHYdPK0aB9NZsqsaKBtNfkYj+A==
|
151
151
|
dependencies:
|
152
152
|
"@stoplight/prism-core" "^5.8.0"
|
153
153
|
"@stoplight/prism-http" "^5.12.0"
|
@@ -252,11 +252,11 @@
|
|
252
252
|
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
|
253
253
|
|
254
254
|
"@types/node@*":
|
255
|
-
version "
|
256
|
-
resolved "https://registry.yarnpkg.com/@types/node/-/node-
|
257
|
-
integrity sha512-
|
255
|
+
version "24.5.2"
|
256
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-24.5.2.tgz#52ceb83f50fe0fcfdfbd2a9fab6db2e9e7ef6446"
|
257
|
+
integrity sha512-FYxk1I7wPv3K2XBaoyH2cTnocQEu8AOZ60hPbsyukMPLv5/5qr7V1i8PLHdl6Zf87I+xZXFvPCXYjiTFq+YSDQ==
|
258
258
|
dependencies:
|
259
|
-
undici-types "~
|
259
|
+
undici-types "~7.12.0"
|
260
260
|
|
261
261
|
"@types/swagger-schema-official@~2.0.22":
|
262
262
|
version "2.0.25"
|
@@ -264,9 +264,9 @@
|
|
264
264
|
integrity sha512-T92Xav+Gf/Ik1uPW581nA+JftmjWPgskw/WBf4TJzxRG/SJ+DfNnNE+WuZ4mrXuzflQMqMkm1LSYjzYW7MB1Cg==
|
265
265
|
|
266
266
|
"@types/type-is@^1.6.3":
|
267
|
-
version "1.6.
|
268
|
-
resolved "https://registry.yarnpkg.com/@types/type-is/-/type-is-1.6.
|
269
|
-
integrity sha512-
|
267
|
+
version "1.6.7"
|
268
|
+
resolved "https://registry.yarnpkg.com/@types/type-is/-/type-is-1.6.7.tgz#4d7934d2c795749800e767cd9af7ffbd4f16cf1c"
|
269
|
+
integrity sha512-gEsh7n8824nusZ2Sidh6POxNsIdTSvIAl5gXbeFj+TUaD1CO2r4i7MQYNMfEQkChU42s2bVWAda6x6BzIhtFbQ==
|
270
270
|
dependencies:
|
271
271
|
"@types/node" "*"
|
272
272
|
|
@@ -475,9 +475,9 @@ cross-fetch@^3.1.5:
|
|
475
475
|
node-fetch "^2.7.0"
|
476
476
|
|
477
477
|
debug@4:
|
478
|
-
version "4.4.
|
479
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.
|
480
|
-
integrity sha512-
|
478
|
+
version "4.4.3"
|
479
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a"
|
480
|
+
integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==
|
481
481
|
dependencies:
|
482
482
|
ms "^2.1.3"
|
483
483
|
|
@@ -487,9 +487,9 @@ emoji-regex@^8.0.0:
|
|
487
487
|
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
|
488
488
|
|
489
489
|
error-ex@^1.3.1:
|
490
|
-
version "1.3.
|
491
|
-
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.
|
492
|
-
integrity sha512-
|
490
|
+
version "1.3.4"
|
491
|
+
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz#b3a8d8bb6f92eecc1629e3e27d3c8607a8a32414"
|
492
|
+
integrity sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==
|
493
493
|
dependencies:
|
494
494
|
is-arrayish "^0.2.1"
|
495
495
|
|
@@ -524,9 +524,9 @@ fast-safe-stringify@^2.0.8:
|
|
524
524
|
integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==
|
525
525
|
|
526
526
|
fast-uri@^3.0.1:
|
527
|
-
version "3.0
|
528
|
-
resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.
|
529
|
-
integrity sha512-
|
527
|
+
version "3.1.0"
|
528
|
+
resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.1.0.tgz#66eecff6c764c0df9b762e62ca7edcfb53b4edfa"
|
529
|
+
integrity sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==
|
530
530
|
|
531
531
|
fast-xml-parser@^4.2.0, fast-xml-parser@^4.5.0:
|
532
532
|
version "4.5.1"
|
@@ -587,9 +587,9 @@ format-util@^1.0.3:
|
|
587
587
|
integrity sha512-varLbTj0e0yVyRpqQhuWV+8hlePAgaoFRhNFj50BNjEIrw1/DphHSObtqwskVCPWNgzwPoQrZAbfa/SBiicNeg==
|
588
588
|
|
589
589
|
fp-ts@^2.11.5:
|
590
|
-
version "2.16.
|
591
|
-
resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-2.16.
|
592
|
-
integrity sha512
|
590
|
+
version "2.16.11"
|
591
|
+
resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-2.16.11.tgz#831a10514bf4e22adf12065732fc5a20c85d9623"
|
592
|
+
integrity sha512-LaI+KaX2NFkfn1ZGHoKCmcfv7yrZsC3b8NtWsTVQeHkq4F27vI5igUuO53sxqDEa2gNQMHFPmpojDw/1zmUK7w==
|
593
593
|
|
594
594
|
fsevents@~2.3.2:
|
595
595
|
version "2.3.3"
|
@@ -1156,9 +1156,9 @@ strip-bom@^3.0.0:
|
|
1156
1156
|
integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
|
1157
1157
|
|
1158
1158
|
strnum@^1.0.5:
|
1159
|
-
version "1.
|
1160
|
-
resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.
|
1161
|
-
integrity sha512-
|
1159
|
+
version "1.1.2"
|
1160
|
+
resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.1.2.tgz#57bca4fbaa6f271081715dbc9ed7cee5493e28e4"
|
1161
|
+
integrity sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==
|
1162
1162
|
|
1163
1163
|
supports-color@^5.3.0:
|
1164
1164
|
version "5.5.0"
|
@@ -1199,10 +1199,10 @@ type-is@^1.6.18:
|
|
1199
1199
|
media-typer "0.3.0"
|
1200
1200
|
mime-types "~2.1.24"
|
1201
1201
|
|
1202
|
-
undici-types@~
|
1203
|
-
version "
|
1204
|
-
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-
|
1205
|
-
integrity sha512-
|
1202
|
+
undici-types@~7.12.0:
|
1203
|
+
version "7.12.0"
|
1204
|
+
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.12.0.tgz#15c5c7475c2a3ba30659529f5cdb4674b622fafb"
|
1205
|
+
integrity sha512-goOacqME2GYyOZZfb5Lgtu+1IDmAlAEu5xnD3+xTzS10hT0vzpf0SPjkXwAw9Jm+4n/mQGDP3LO8CPbYROeBfQ==
|
1206
1206
|
|
1207
1207
|
uri-template-lite@^22.9.0:
|
1208
1208
|
version "22.9.0"
|
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: 5.
|
4
|
+
version: 5.3.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: 2025-
|
11
|
+
date: 2025-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -111,6 +111,14 @@ files:
|
|
111
111
|
- docs/Dequeue.md
|
112
112
|
- docs/DequeueWebhook.md
|
113
113
|
- docs/Enqueue.md
|
114
|
+
- docs/ExportList.md
|
115
|
+
- docs/ExportOutputType.md
|
116
|
+
- docs/ExportRequest.md
|
117
|
+
- docs/ExportRequestOutput.md
|
118
|
+
- docs/ExportResourceType.md
|
119
|
+
- docs/ExportResult.md
|
120
|
+
- docs/ExportResultOutput.md
|
121
|
+
- docs/ExportStatus.md
|
114
122
|
- docs/FilterLogsRequest.md
|
115
123
|
- docs/GetDigits.md
|
116
124
|
- docs/GetDigitsReason.md
|
@@ -257,6 +265,14 @@ files:
|
|
257
265
|
- lib/freeclimb/models/dequeue.rb
|
258
266
|
- lib/freeclimb/models/dequeue_webhook.rb
|
259
267
|
- lib/freeclimb/models/enqueue.rb
|
268
|
+
- lib/freeclimb/models/export_list.rb
|
269
|
+
- lib/freeclimb/models/export_output_type.rb
|
270
|
+
- lib/freeclimb/models/export_request.rb
|
271
|
+
- lib/freeclimb/models/export_request_output.rb
|
272
|
+
- lib/freeclimb/models/export_resource_type.rb
|
273
|
+
- lib/freeclimb/models/export_result.rb
|
274
|
+
- lib/freeclimb/models/export_result_output.rb
|
275
|
+
- lib/freeclimb/models/export_status.rb
|
260
276
|
- lib/freeclimb/models/filter_logs_request.rb
|
261
277
|
- lib/freeclimb/models/get_digits.rb
|
262
278
|
- lib/freeclimb/models/get_digits_reason.rb
|
@@ -406,6 +422,14 @@ files:
|
|
406
422
|
- spec/models/dequeue_spec.rb
|
407
423
|
- spec/models/dequeue_webhook_spec.rb
|
408
424
|
- spec/models/enqueue_spec.rb
|
425
|
+
- spec/models/export_list_spec.rb
|
426
|
+
- spec/models/export_output_type_spec.rb
|
427
|
+
- spec/models/export_request_output_spec.rb
|
428
|
+
- spec/models/export_request_spec.rb
|
429
|
+
- spec/models/export_resource_type_spec.rb
|
430
|
+
- spec/models/export_result_output_spec.rb
|
431
|
+
- spec/models/export_result_spec.rb
|
432
|
+
- spec/models/export_status_spec.rb
|
409
433
|
- spec/models/filter_logs_request_spec.rb
|
410
434
|
- spec/models/get_digits_reason_spec.rb
|
411
435
|
- spec/models/get_digits_spec.rb
|