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.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -1
  3. data/Gemfile.lock +3 -3
  4. data/README.md +17 -4
  5. data/docs/CallResult.md +2 -2
  6. data/docs/CreateConference.md +4 -2
  7. data/docs/DefaultApi.md +368 -1
  8. data/docs/ExportList.md +32 -0
  9. data/docs/ExportOutputType.md +16 -0
  10. data/docs/ExportRequest.md +24 -0
  11. data/docs/ExportRequestOutput.md +18 -0
  12. data/docs/ExportResourceType.md +17 -0
  13. data/docs/ExportResult.md +40 -0
  14. data/docs/ExportResultOutput.md +18 -0
  15. data/docs/ExportStatus.md +21 -0
  16. data/lib/freeclimb/api/default_api.rb +313 -0
  17. data/lib/freeclimb/models/call_result.rb +8 -8
  18. data/lib/freeclimb/models/create_conference.rb +15 -5
  19. data/lib/freeclimb/models/export_list.rb +304 -0
  20. data/lib/freeclimb/models/export_output_type.rb +34 -0
  21. data/lib/freeclimb/models/export_request.rb +276 -0
  22. data/lib/freeclimb/models/export_request_output.rb +243 -0
  23. data/lib/freeclimb/models/export_resource_type.rb +35 -0
  24. data/lib/freeclimb/models/export_result.rb +405 -0
  25. data/lib/freeclimb/models/export_result_output.rb +243 -0
  26. data/lib/freeclimb/models/export_status.rb +39 -0
  27. data/lib/freeclimb/version.rb +1 -1
  28. data/lib/freeclimb.rb +8 -0
  29. data/openapi.json +370 -2
  30. data/spec/api/default_api_spec.rb +141 -2
  31. data/spec/models/call_result_spec.rb +36 -36
  32. data/spec/models/create_conference_spec.rb +83 -35
  33. data/spec/models/export_list_spec.rb +502 -0
  34. data/spec/models/export_output_type_spec.rb +43 -0
  35. data/spec/models/export_request_output_spec.rb +162 -0
  36. data/spec/models/export_request_spec.rb +320 -0
  37. data/spec/models/export_resource_type_spec.rb +59 -0
  38. data/spec/models/export_result_output_spec.rb +162 -0
  39. data/spec/models/export_result_spec.rb +718 -0
  40. data/spec/models/export_status_spec.rb +123 -0
  41. data/yarn.lock +29 -29
  42. 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.0"
149
- resolved "https://registry.yarnpkg.com/@stoplight/prism-http-server/-/prism-http-server-5.12.0.tgz#c1fdc86bcb7d42d3420b9b84f05f9ae8977bc953"
150
- integrity sha512-rnACUB950kvgDGXk1MsVk1v8nAZNCRaxdrTlACoJpQA0qzF8eBszYikoDsVmx2BbGsOrCC/49+nQc+HyFFpMdQ==
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 "22.10.5"
256
- resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.5.tgz#95af89a3fb74a2bb41ef9927f206e6472026e48b"
257
- integrity sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==
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 "~6.20.0"
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.6"
268
- resolved "https://registry.yarnpkg.com/@types/type-is/-/type-is-1.6.6.tgz#0adeafa0d6879f0ce17c81228d487270e8b80d7d"
269
- integrity sha512-fs1KHv/f9OvmTMsu4sBNaUu32oyda9Y9uK25naJG8gayxNrfqGIjPQsbLIYyfe7xFkppnPlJB+BuTldOaX9bXw==
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.0"
479
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a"
480
- integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==
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.2"
491
- resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
492
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
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.5"
528
- resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.5.tgz#19f5f9691d0dab9b85861a7bb5d98fca961da9cd"
529
- integrity sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==
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.9"
591
- resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-2.16.9.tgz#99628fc5e0bb3b432c4a16d8f4455247380bae8a"
592
- integrity sha512-+I2+FnVB+tVaxcYyQkHUq7ZdKScaBlX53A41mxQtpIccsfyv8PzdzP7fzp2AY832T4aoK6UZ5WRX/ebGd8uZuQ==
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.0.5"
1160
- resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db"
1161
- integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==
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@~6.20.0:
1203
- version "6.20.0"
1204
- resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.20.0.tgz#8171bf22c1f588d1554d55bf204bc624af388433"
1205
- integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==
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.2.0
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-03-07 00:00:00.000000000 Z
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