freeclimb 2.0.3 → 3.0.0

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: 8441ccfb1a1178f33d75aeb019d1c354b3f0b99cb8592f6e8cbc5870068468d9
4
- data.tar.gz: eaa2bee445a009ad9d30fe51a3e2bec902dc8457263f109d49c8c74806ca01f6
3
+ metadata.gz: 8822c0cb7172e4c5ff3cab045f98636e7645b842dcc7c17097fec6b2257c10a7
4
+ data.tar.gz: fa3c4ec0294ec97f141a1d58dffd65034f1d664b8e4ea65e62fc4ffffb2c6911
5
5
  SHA512:
6
- metadata.gz: e6c82f19d1740723a8ce1358e565c206acb4981728317feefbe35d831d48cd121f9ba253d728c6be4357b08399d1ac23a8a443ed17f9274515c6361677077a3b
7
- data.tar.gz: e61900739545766eaf9a0c3e7da2357a6bab19811004e4c8bb146514d72946c808015e1769add1d7309d48d5ec9f4218fd25d50876cdfdedfee59f4ff3671f2a
6
+ metadata.gz: 1ad8968cabebe723a38432655e665764a7841aa97bb21a0275f3d6920bdc9c870ef69b922f03c69e79320e567e9f5a39cc2e6a9d521c8e38c684f793cf8dd761
7
+ data.tar.gz: a8b822a510b5bed0bba1b77ea3507becc96efe65259a518a6f45d014ee4c564c24828f28d23f3bb75026ceebd40daeb8c337bb998e19373f807c13e7533c37fb
data/CHANGELOG.md CHANGED
@@ -7,6 +7,36 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
  ## [Unreleased]
8
8
  None
9
9
 
10
+ <a name="3.0.0"></a>
11
+ ## [3.0.0] - 2021-05-03
12
+ ### Added
13
+ - Add `verify_request` utility function
14
+
15
+ <a name="2.2.0"></a>
16
+ ## [2.2.0] - 2021-04-12
17
+ ### Changed
18
+ - Replace any language instance of `auth_token` or similar speech to `api_key`
19
+
20
+ <a name="2.1.2"></a>
21
+ ## [2.1.2] - 2021-03-10
22
+ ### Added
23
+ - Add `callConnectUrl` option to MakeACall Request
24
+
25
+
26
+ <a name="2.1.1"></a>
27
+ ## [2.1.1] - 2020-12-16
28
+ ### Added
29
+ - Add `privacyMode` option to RecordUtterance PerCL command
30
+
31
+ <a name="2.1.0"></a>
32
+ ## [2.1.0] - 2020-12-16
33
+ ### Added
34
+ - Add `Reject` PerCL command
35
+ - Add `Hangup` PerCL command
36
+
37
+ ### Fixed
38
+ - Updated description and requirement of `action_url` attribute of `Redirect` PerCL command
39
+
10
40
  <a name="2.0.3"></a>
11
41
  ## [2.0.3] - 2020-12-16
12
42
  ### Added
data/README.md CHANGED
@@ -5,7 +5,7 @@ FreeClimb is a cloud-based application programming interface (API) that puts the
5
5
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
6
6
 
7
7
  - API version: 1.0.0
8
- - Package version: 2.0.3
8
+ - Package version: 3.0.0
9
9
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
10
10
 
11
11
  ## Installation
@@ -21,16 +21,16 @@ gem build freeclimb.gemspec
21
21
  Then either install the gem locally:
22
22
 
23
23
  ```shell
24
- gem install ./freeclimb-2.0.3.gem
24
+ gem install ./freeclimb-3.0.0.gem
25
25
  ```
26
26
 
27
- (for development, run `gem install --dev ./freeclimb-2.0.3.gem` to install the development dependencies)
27
+ (for development, run `gem install --dev ./freeclimb-3.0.0.gem` to install the development dependencies)
28
28
 
29
29
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
30
30
 
31
31
  Finally add this to the Gemfile:
32
32
 
33
- gem 'freeclimb', '~> 2.0.3'
33
+ gem 'freeclimb', '~> 3.0.0'
34
34
 
35
35
  ### Install from Ruby gems
36
36
  ```shell
@@ -63,7 +63,7 @@ require 'freeclimb'
63
63
  Freeclimb.configure do |config|
64
64
  # Configure HTTP basic authorization: fc
65
65
  config.username = 'ACCOUNT_ID'
66
- config.password = 'AUTH_TOKEN'
66
+ config.password = 'API_KEY'
67
67
  end
68
68
 
69
69
  api_instance = Freeclimb::DefaultApi.new
@@ -185,6 +185,8 @@ Class | Method | HTTP request | Description
185
185
  - [Freeclimb::GetDigitsAllOf](docs/GetDigitsAllOf.md)
186
186
  - [Freeclimb::GetSpeech](docs/GetSpeech.md)
187
187
  - [Freeclimb::GetSpeechAllOf](docs/GetSpeechAllOf.md)
188
+ - [Freeclimb::Hangup](docs/Hangup.md)
189
+ - [Freeclimb::HangupAllOf](docs/HangupAllOf.md)
188
190
  - [Freeclimb::IncomingNumberList](docs/IncomingNumberList.md)
189
191
  - [Freeclimb::IncomingNumberListAllOf](docs/IncomingNumberListAllOf.md)
190
192
  - [Freeclimb::IncomingNumberRequest](docs/IncomingNumberRequest.md)
@@ -228,6 +230,8 @@ Class | Method | HTTP request | Description
228
230
  - [Freeclimb::RecordingResultAllOf](docs/RecordingResultAllOf.md)
229
231
  - [Freeclimb::Redirect](docs/Redirect.md)
230
232
  - [Freeclimb::RedirectAllOf](docs/RedirectAllOf.md)
233
+ - [Freeclimb::Reject](docs/Reject.md)
234
+ - [Freeclimb::RejectAllOf](docs/RejectAllOf.md)
231
235
  - [Freeclimb::RemoveFromConference](docs/RemoveFromConference.md)
232
236
  - [Freeclimb::RemoveFromConferenceAllOf](docs/RemoveFromConferenceAllOf.md)
233
237
  - [Freeclimb::Say](docs/Say.md)
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
9
9
  **date_updated** | **String** | The date that this resource was last updated (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). | [optional]
10
10
  **revision** | **Integer** | Revision count for the resource. This count is set to 1 on creation and is incremented every time it is updated. | [optional]
11
11
  **account_id** | **String** | String that uniquely identifies this account resource. | [optional]
12
- **auth_token** | **String** | The authorization token assigned to this account. This token must be kept a secret by the customer. | [optional]
12
+ **api_key** | **String** | The API key assigned to this account. This token must be kept a secret by the customer. | [optional]
13
13
  **_alias** | **String** | A description for this account. | [optional]
14
14
  **label** | **String** | A string that identifies a category or group to which the account belongs. | [optional]
15
15
  **type** | **String** | The type of this account. It is one of: trial or full. | [optional]
@@ -26,7 +26,7 @@ instance = Freeclimb::AccountResult.new(uri: nil,
26
26
  date_updated: nil,
27
27
  revision: nil,
28
28
  account_id: nil,
29
- auth_token: nil,
29
+ api_key: nil,
30
30
  _alias: nil,
31
31
  label: nil,
32
32
  type: nil,
@@ -5,7 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **account_id** | **String** | String that uniquely identifies this account resource. | [optional]
8
- **auth_token** | **String** | The authorization token assigned to this account. This token must be kept a secret by the customer. | [optional]
8
+ **api_key** | **String** | The API key assigned to this account. This token must be kept a secret by the customer. | [optional]
9
9
  **_alias** | **String** | A description for this account. | [optional]
10
10
  **label** | **String** | A string that identifies a category or group to which the account belongs. | [optional]
11
11
  **type** | **String** | The type of this account. It is one of: trial or full. | [optional]
@@ -18,7 +18,7 @@ Name | Type | Description | Notes
18
18
  require 'freeclimb'
19
19
 
20
20
  instance = Freeclimb::AccountResultAllOf.new(account_id: nil,
21
- auth_token: nil,
21
+ api_key: nil,
22
22
  _alias: nil,
23
23
  label: nil,
24
24
  type: nil,
data/docs/DefaultApi.md CHANGED
@@ -68,7 +68,7 @@ require 'freeclimb'
68
68
  Freeclimb.configure do |config|
69
69
  # Configure HTTP basic authorization: fc
70
70
  config.username = 'ACCOUNT ID'
71
- config.password = 'AUTH TOKEN'
71
+ config.password = 'API KEY'
72
72
  end
73
73
 
74
74
  api_instance = Freeclimb::DefaultApi.new
@@ -115,7 +115,7 @@ require 'freeclimb'
115
115
  Freeclimb.configure do |config|
116
116
  # Configure HTTP basic authorization: fc
117
117
  config.username = 'ACCOUNT ID'
118
- config.password = 'AUTH TOKEN'
118
+ config.password = 'API KEY'
119
119
  end
120
120
 
121
121
  api_instance = Freeclimb::DefaultApi.new
@@ -166,7 +166,7 @@ require 'freeclimb'
166
166
  Freeclimb.configure do |config|
167
167
  # Configure HTTP basic authorization: fc
168
168
  config.username = 'ACCOUNT ID'
169
- config.password = 'AUTH TOKEN'
169
+ config.password = 'API KEY'
170
170
  end
171
171
 
172
172
  api_instance = Freeclimb::DefaultApi.new
@@ -219,7 +219,7 @@ require 'freeclimb'
219
219
  Freeclimb.configure do |config|
220
220
  # Configure HTTP basic authorization: fc
221
221
  config.username = 'ACCOUNT ID'
222
- config.password = 'AUTH TOKEN'
222
+ config.password = 'API KEY'
223
223
  end
224
224
 
225
225
  api_instance = Freeclimb::DefaultApi.new
@@ -272,7 +272,7 @@ require 'freeclimb'
272
272
  Freeclimb.configure do |config|
273
273
  # Configure HTTP basic authorization: fc
274
274
  config.username = 'ACCOUNT ID'
275
- config.password = 'AUTH TOKEN'
275
+ config.password = 'API KEY'
276
276
  end
277
277
 
278
278
  api_instance = Freeclimb::DefaultApi.new
@@ -325,7 +325,7 @@ require 'freeclimb'
325
325
  Freeclimb.configure do |config|
326
326
  # Configure HTTP basic authorization: fc
327
327
  config.username = 'ACCOUNT ID'
328
- config.password = 'AUTH TOKEN'
328
+ config.password = 'API KEY'
329
329
  end
330
330
 
331
331
  api_instance = Freeclimb::DefaultApi.new
@@ -375,7 +375,7 @@ require 'freeclimb'
375
375
  Freeclimb.configure do |config|
376
376
  # Configure HTTP basic authorization: fc
377
377
  config.username = 'ACCOUNT ID'
378
- config.password = 'AUTH TOKEN'
378
+ config.password = 'API KEY'
379
379
  end
380
380
 
381
381
  api_instance = Freeclimb::DefaultApi.new
@@ -425,7 +425,7 @@ require 'freeclimb'
425
425
  Freeclimb.configure do |config|
426
426
  # Configure HTTP basic authorization: fc
427
427
  config.username = 'ACCOUNT ID'
428
- config.password = 'AUTH TOKEN'
428
+ config.password = 'API KEY'
429
429
  end
430
430
 
431
431
  api_instance = Freeclimb::DefaultApi.new
@@ -475,7 +475,7 @@ require 'freeclimb'
475
475
  Freeclimb.configure do |config|
476
476
  # Configure HTTP basic authorization: fc
477
477
  config.username = 'ACCOUNT ID'
478
- config.password = 'AUTH TOKEN'
478
+ config.password = 'API KEY'
479
479
  end
480
480
 
481
481
  api_instance = Freeclimb::DefaultApi.new
@@ -528,7 +528,7 @@ require 'freeclimb'
528
528
  Freeclimb.configure do |config|
529
529
  # Configure HTTP basic authorization: fc
530
530
  config.username = 'ACCOUNT ID'
531
- config.password = 'AUTH TOKEN'
531
+ config.password = 'API KEY'
532
532
  end
533
533
 
534
534
  api_instance = Freeclimb::DefaultApi.new
@@ -579,7 +579,7 @@ require 'freeclimb'
579
579
  Freeclimb.configure do |config|
580
580
  # Configure HTTP basic authorization: fc
581
581
  config.username = 'ACCOUNT ID'
582
- config.password = 'AUTH TOKEN'
582
+ config.password = 'API KEY'
583
583
  end
584
584
 
585
585
  api_instance = Freeclimb::DefaultApi.new
@@ -630,7 +630,7 @@ require 'freeclimb'
630
630
  Freeclimb.configure do |config|
631
631
  # Configure HTTP basic authorization: fc
632
632
  config.username = 'ACCOUNT ID'
633
- config.password = 'AUTH TOKEN'
633
+ config.password = 'API KEY'
634
634
  end
635
635
 
636
636
  api_instance = Freeclimb::DefaultApi.new
@@ -681,7 +681,7 @@ require 'freeclimb'
681
681
  Freeclimb.configure do |config|
682
682
  # Configure HTTP basic authorization: fc
683
683
  config.username = 'ACCOUNT ID'
684
- config.password = 'AUTH TOKEN'
684
+ config.password = 'API KEY'
685
685
  end
686
686
 
687
687
  api_instance = Freeclimb::DefaultApi.new
@@ -732,7 +732,7 @@ require 'freeclimb'
732
732
  Freeclimb.configure do |config|
733
733
  # Configure HTTP basic authorization: fc
734
734
  config.username = 'ACCOUNT ID'
735
- config.password = 'AUTH TOKEN'
735
+ config.password = 'API KEY'
736
736
  end
737
737
 
738
738
  api_instance = Freeclimb::DefaultApi.new
@@ -783,7 +783,7 @@ require 'freeclimb'
783
783
  Freeclimb.configure do |config|
784
784
  # Configure HTTP basic authorization: fc
785
785
  config.username = 'ACCOUNT ID'
786
- config.password = 'AUTH TOKEN'
786
+ config.password = 'API KEY'
787
787
  end
788
788
 
789
789
  api_instance = Freeclimb::DefaultApi.new
@@ -836,7 +836,7 @@ require 'freeclimb'
836
836
  Freeclimb.configure do |config|
837
837
  # Configure HTTP basic authorization: fc
838
838
  config.username = 'ACCOUNT ID'
839
- config.password = 'AUTH TOKEN'
839
+ config.password = 'API KEY'
840
840
  end
841
841
 
842
842
  api_instance = Freeclimb::DefaultApi.new
@@ -889,7 +889,7 @@ require 'freeclimb'
889
889
  Freeclimb.configure do |config|
890
890
  # Configure HTTP basic authorization: fc
891
891
  config.username = 'ACCOUNT ID'
892
- config.password = 'AUTH TOKEN'
892
+ config.password = 'API KEY'
893
893
  end
894
894
 
895
895
  api_instance = Freeclimb::DefaultApi.new
@@ -940,7 +940,7 @@ require 'freeclimb'
940
940
  Freeclimb.configure do |config|
941
941
  # Configure HTTP basic authorization: fc
942
942
  config.username = 'ACCOUNT ID'
943
- config.password = 'AUTH TOKEN'
943
+ config.password = 'API KEY'
944
944
  end
945
945
 
946
946
  api_instance = Freeclimb::DefaultApi.new
@@ -991,7 +991,7 @@ require 'freeclimb'
991
991
  Freeclimb.configure do |config|
992
992
  # Configure HTTP basic authorization: fc
993
993
  config.username = 'ACCOUNT ID'
994
- config.password = 'AUTH TOKEN'
994
+ config.password = 'API KEY'
995
995
  end
996
996
 
997
997
  api_instance = Freeclimb::DefaultApi.new
@@ -1042,7 +1042,7 @@ require 'freeclimb'
1042
1042
  Freeclimb.configure do |config|
1043
1043
  # Configure HTTP basic authorization: fc
1044
1044
  config.username = 'ACCOUNT ID'
1045
- config.password = 'AUTH TOKEN'
1045
+ config.password = 'API KEY'
1046
1046
  end
1047
1047
 
1048
1048
  api_instance = Freeclimb::DefaultApi.new
@@ -1093,7 +1093,7 @@ require 'freeclimb'
1093
1093
  Freeclimb.configure do |config|
1094
1094
  # Configure HTTP basic authorization: fc
1095
1095
  config.username = 'ACCOUNT ID'
1096
- config.password = 'AUTH TOKEN'
1096
+ config.password = 'API KEY'
1097
1097
  end
1098
1098
 
1099
1099
  api_instance = Freeclimb::DefaultApi.new
@@ -1144,7 +1144,7 @@ require 'freeclimb'
1144
1144
  Freeclimb.configure do |config|
1145
1145
  # Configure HTTP basic authorization: fc
1146
1146
  config.username = 'ACCOUNT ID'
1147
- config.password = 'AUTH TOKEN'
1147
+ config.password = 'API KEY'
1148
1148
  end
1149
1149
 
1150
1150
  api_instance = Freeclimb::DefaultApi.new
@@ -1195,7 +1195,7 @@ require 'freeclimb'
1195
1195
  Freeclimb.configure do |config|
1196
1196
  # Configure HTTP basic authorization: fc
1197
1197
  config.username = 'ACCOUNT ID'
1198
- config.password = 'AUTH TOKEN'
1198
+ config.password = 'API KEY'
1199
1199
  end
1200
1200
 
1201
1201
  api_instance = Freeclimb::DefaultApi.new
@@ -1248,7 +1248,7 @@ require 'freeclimb'
1248
1248
  Freeclimb.configure do |config|
1249
1249
  # Configure HTTP basic authorization: fc
1250
1250
  config.username = 'ACCOUNT ID'
1251
- config.password = 'AUTH TOKEN'
1251
+ config.password = 'API KEY'
1252
1252
  end
1253
1253
 
1254
1254
  api_instance = Freeclimb::DefaultApi.new
@@ -1295,7 +1295,7 @@ require 'freeclimb'
1295
1295
  Freeclimb.configure do |config|
1296
1296
  # Configure HTTP basic authorization: fc
1297
1297
  config.username = 'ACCOUNT ID'
1298
- config.password = 'AUTH TOKEN'
1298
+ config.password = 'API KEY'
1299
1299
  end
1300
1300
 
1301
1301
  api_instance = Freeclimb::DefaultApi.new
@@ -1348,7 +1348,7 @@ require 'freeclimb'
1348
1348
  Freeclimb.configure do |config|
1349
1349
  # Configure HTTP basic authorization: fc
1350
1350
  config.username = 'ACCOUNT ID'
1351
- config.password = 'AUTH TOKEN'
1351
+ config.password = 'API KEY'
1352
1352
  end
1353
1353
 
1354
1354
  api_instance = Freeclimb::DefaultApi.new
@@ -1403,7 +1403,7 @@ require 'freeclimb'
1403
1403
  Freeclimb.configure do |config|
1404
1404
  # Configure HTTP basic authorization: fc
1405
1405
  config.username = 'ACCOUNT ID'
1406
- config.password = 'AUTH TOKEN'
1406
+ config.password = 'API KEY'
1407
1407
  end
1408
1408
 
1409
1409
  api_instance = Freeclimb::DefaultApi.new
@@ -1454,7 +1454,7 @@ require 'freeclimb'
1454
1454
  Freeclimb.configure do |config|
1455
1455
  # Configure HTTP basic authorization: fc
1456
1456
  config.username = 'ACCOUNT ID'
1457
- config.password = 'AUTH TOKEN'
1457
+ config.password = 'API KEY'
1458
1458
  end
1459
1459
 
1460
1460
  api_instance = Freeclimb::DefaultApi.new
@@ -1509,7 +1509,7 @@ require 'freeclimb'
1509
1509
  Freeclimb.configure do |config|
1510
1510
  # Configure HTTP basic authorization: fc
1511
1511
  config.username = 'ACCOUNT ID'
1512
- config.password = 'AUTH TOKEN'
1512
+ config.password = 'API KEY'
1513
1513
  end
1514
1514
 
1515
1515
  api_instance = Freeclimb::DefaultApi.new
@@ -1572,7 +1572,7 @@ require 'freeclimb'
1572
1572
  Freeclimb.configure do |config|
1573
1573
  # Configure HTTP basic authorization: fc
1574
1574
  config.username = 'ACCOUNT ID'
1575
- config.password = 'AUTH TOKEN'
1575
+ config.password = 'API KEY'
1576
1576
  end
1577
1577
 
1578
1578
  api_instance = Freeclimb::DefaultApi.new
@@ -1631,7 +1631,7 @@ require 'freeclimb'
1631
1631
  Freeclimb.configure do |config|
1632
1632
  # Configure HTTP basic authorization: fc
1633
1633
  config.username = 'ACCOUNT ID'
1634
- config.password = 'AUTH TOKEN'
1634
+ config.password = 'API KEY'
1635
1635
  end
1636
1636
 
1637
1637
  api_instance = Freeclimb::DefaultApi.new
@@ -1686,7 +1686,7 @@ require 'freeclimb'
1686
1686
  Freeclimb.configure do |config|
1687
1687
  # Configure HTTP basic authorization: fc
1688
1688
  config.username = 'ACCOUNT ID'
1689
- config.password = 'AUTH TOKEN'
1689
+ config.password = 'API KEY'
1690
1690
  end
1691
1691
 
1692
1692
  api_instance = Freeclimb::DefaultApi.new
@@ -1737,7 +1737,7 @@ require 'freeclimb'
1737
1737
  Freeclimb.configure do |config|
1738
1738
  # Configure HTTP basic authorization: fc
1739
1739
  config.username = 'ACCOUNT ID'
1740
- config.password = 'AUTH TOKEN'
1740
+ config.password = 'API KEY'
1741
1741
  end
1742
1742
 
1743
1743
  api_instance = Freeclimb::DefaultApi.new
@@ -1794,7 +1794,7 @@ require 'freeclimb'
1794
1794
  Freeclimb.configure do |config|
1795
1795
  # Configure HTTP basic authorization: fc
1796
1796
  config.username = 'ACCOUNT ID'
1797
- config.password = 'AUTH TOKEN'
1797
+ config.password = 'API KEY'
1798
1798
  end
1799
1799
 
1800
1800
  api_instance = Freeclimb::DefaultApi.new
@@ -1851,7 +1851,7 @@ require 'freeclimb'
1851
1851
  Freeclimb.configure do |config|
1852
1852
  # Configure HTTP basic authorization: fc
1853
1853
  config.username = 'ACCOUNT ID'
1854
- config.password = 'AUTH TOKEN'
1854
+ config.password = 'API KEY'
1855
1855
  end
1856
1856
 
1857
1857
  api_instance = Freeclimb::DefaultApi.new
@@ -1914,7 +1914,7 @@ require 'freeclimb'
1914
1914
  Freeclimb.configure do |config|
1915
1915
  # Configure HTTP basic authorization: fc
1916
1916
  config.username = 'ACCOUNT ID'
1917
- config.password = 'AUTH TOKEN'
1917
+ config.password = 'API KEY'
1918
1918
  end
1919
1919
 
1920
1920
  api_instance = Freeclimb::DefaultApi.new
@@ -1967,7 +1967,7 @@ require 'freeclimb'
1967
1967
  Freeclimb.configure do |config|
1968
1968
  # Configure HTTP basic authorization: fc
1969
1969
  config.username = 'ACCOUNT ID'
1970
- config.password = 'AUTH TOKEN'
1970
+ config.password = 'API KEY'
1971
1971
  end
1972
1972
 
1973
1973
  api_instance = Freeclimb::DefaultApi.new
@@ -2019,7 +2019,7 @@ require 'freeclimb'
2019
2019
  Freeclimb.configure do |config|
2020
2020
  # Configure HTTP basic authorization: fc
2021
2021
  config.username = 'ACCOUNT ID'
2022
- config.password = 'AUTH TOKEN'
2022
+ config.password = 'API KEY'
2023
2023
  end
2024
2024
 
2025
2025
  api_instance = Freeclimb::DefaultApi.new
@@ -2070,7 +2070,7 @@ require 'freeclimb'
2070
2070
  Freeclimb.configure do |config|
2071
2071
  # Configure HTTP basic authorization: fc
2072
2072
  config.username = 'ACCOUNT ID'
2073
- config.password = 'AUTH TOKEN'
2073
+ config.password = 'API KEY'
2074
2074
  end
2075
2075
 
2076
2076
  api_instance = Freeclimb::DefaultApi.new
@@ -2121,7 +2121,7 @@ require 'freeclimb'
2121
2121
  Freeclimb.configure do |config|
2122
2122
  # Configure HTTP basic authorization: fc
2123
2123
  config.username = 'ACCOUNT ID'
2124
- config.password = 'AUTH TOKEN'
2124
+ config.password = 'API KEY'
2125
2125
  end
2126
2126
 
2127
2127
  api_instance = Freeclimb::DefaultApi.new
@@ -2176,7 +2176,7 @@ require 'freeclimb'
2176
2176
  Freeclimb.configure do |config|
2177
2177
  # Configure HTTP basic authorization: fc
2178
2178
  config.username = 'ACCOUNT ID'
2179
- config.password = 'AUTH TOKEN'
2179
+ config.password = 'API KEY'
2180
2180
  end
2181
2181
 
2182
2182
  api_instance = Freeclimb::DefaultApi.new
@@ -2228,7 +2228,7 @@ require 'freeclimb'
2228
2228
  Freeclimb.configure do |config|
2229
2229
  # Configure HTTP basic authorization: fc
2230
2230
  config.username = 'ACCOUNT ID'
2231
- config.password = 'AUTH TOKEN'
2231
+ config.password = 'API KEY'
2232
2232
  end
2233
2233
 
2234
2234
  api_instance = Freeclimb::DefaultApi.new
@@ -2285,7 +2285,7 @@ require 'freeclimb'
2285
2285
  Freeclimb.configure do |config|
2286
2286
  # Configure HTTP basic authorization: fc
2287
2287
  config.username = 'ACCOUNT ID'
2288
- config.password = 'AUTH TOKEN'
2288
+ config.password = 'API KEY'
2289
2289
  end
2290
2290
 
2291
2291
  api_instance = Freeclimb::DefaultApi.new
@@ -2340,7 +2340,7 @@ require 'freeclimb'
2340
2340
  Freeclimb.configure do |config|
2341
2341
  # Configure HTTP basic authorization: fc
2342
2342
  config.username = 'ACCOUNT ID'
2343
- config.password = 'AUTH TOKEN'
2343
+ config.password = 'API KEY'
2344
2344
  end
2345
2345
 
2346
2346
  api_instance = Freeclimb::DefaultApi.new
@@ -2392,7 +2392,7 @@ require 'freeclimb'
2392
2392
  Freeclimb.configure do |config|
2393
2393
  # Configure HTTP basic authorization: fc
2394
2394
  config.username = 'ACCOUNT ID'
2395
- config.password = 'AUTH TOKEN'
2395
+ config.password = 'API KEY'
2396
2396
  end
2397
2397
 
2398
2398
  api_instance = Freeclimb::DefaultApi.new
@@ -2447,7 +2447,7 @@ require 'freeclimb'
2447
2447
  Freeclimb.configure do |config|
2448
2448
  # Configure HTTP basic authorization: fc
2449
2449
  config.username = 'ACCOUNT ID'
2450
- config.password = 'AUTH TOKEN'
2450
+ config.password = 'API KEY'
2451
2451
  end
2452
2452
 
2453
2453
  api_instance = Freeclimb::DefaultApi.new