freeclimb 2.1.2 → 2.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 74fbd3e95a615cbce3500873c8a4327c1c7d75196ff38ce887bdd10186973ab6
4
- data.tar.gz: dc982f026dee3aacb7ef6a36ef73ac6b8957cffc40e111e3a546345ee6f4a8ee
3
+ metadata.gz: 3329b44735fb00cbe89d1f64b29bcd20746822b7976acd11e046f0e04553b78c
4
+ data.tar.gz: 0c10c93eb8bf849cf7e376d111e2e1332470a27a45b67e56a5d7fcbce3e03cce
5
5
  SHA512:
6
- metadata.gz: 6beb69d6d9abfe2a17ebf688f64b218655b6bdb2bc30bcc532374d9bd7a619265689f95194dc108009db41d1011b450cc7abb192be8e0ea81dbcb15740fca82e
7
- data.tar.gz: 3ea6744cbcca10ed7a9f48a6762f371351f453543b05aeba154e41c31cc4254af850872ff9b1583e97324c6d611f254c5a131c4b5efb31cea576e2dd2b1a15b1
6
+ metadata.gz: 0d7e751a6941e8e5962b73fad832ab0893d13d0e145e46e1458d5e49781a34b82f275057565b29056094a7ec76c0e579932a81afb8740570413a23e9797c8a50
7
+ data.tar.gz: 2b96b3486f150332c36af12d84f870497ba8c300b804964d99f4fc1743ece7b33789f06872eaa0c6d63173768ec42e35837d3d8195be48c43a6cb45b7b0887ee
data/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ 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="2.2.0"></a>
11
+ ## [2.1.2] - 2021-04-12
12
+ ### Changed
13
+ - Replace any language instance of `auth_token` or similar speech to `api_key`
14
+
10
15
  <a name="2.1.2"></a>
11
16
  ## [2.1.2] - 2021-03-10
12
17
  ### 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.1.2
8
+ - Package version: 2.2.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.1.2.gem
24
+ gem install ./freeclimb-2.2.0.gem
25
25
  ```
26
26
 
27
- (for development, run `gem install --dev ./freeclimb-2.1.2.gem` to install the development dependencies)
27
+ (for development, run `gem install --dev ./freeclimb-2.2.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.1.2'
33
+ gem 'freeclimb', '~> 2.2.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
@@ -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
Binary file
@@ -30,7 +30,7 @@ module Freeclimb
30
30
  # @option config [Configuration] Configuration for initializing the object, default to Configuration.default
31
31
  def initialize(config = Configuration.default)
32
32
  @config = config
33
- @user_agent = "FreeClimbSDK/2.1.2/ruby"
33
+ @user_agent = "FreeClimbSDK/2.2.0/ruby"
34
34
  @default_headers = {
35
35
  'Content-Type' => 'application/json',
36
36
  'User-Agent' => @user_agent
@@ -29,8 +29,8 @@ module Freeclimb
29
29
  # String that uniquely identifies this account resource.
30
30
  attr_accessor :account_id
31
31
 
32
- # The authorization token assigned to this account. This token must be kept a secret by the customer.
33
- attr_accessor :auth_token
32
+ # The API key assigned to this account. This token must be kept a secret by the customer.
33
+ attr_accessor :api_key
34
34
 
35
35
  # A description for this account.
36
36
  attr_accessor :_alias
@@ -77,7 +77,7 @@ module Freeclimb
77
77
  :'date_updated' => :'dateUpdated',
78
78
  :'revision' => :'revision',
79
79
  :'account_id' => :'accountId',
80
- :'auth_token' => :'authToken',
80
+ :'api_key' => :'apiKey',
81
81
  :'_alias' => :'alias',
82
82
  :'label' => :'label',
83
83
  :'type' => :'type',
@@ -94,7 +94,7 @@ module Freeclimb
94
94
  :'date_updated' => :'String',
95
95
  :'revision' => :'Integer',
96
96
  :'account_id' => :'String',
97
- :'auth_token' => :'String',
97
+ :'api_key' => :'String',
98
98
  :'_alias' => :'String',
99
99
  :'label' => :'String',
100
100
  :'type' => :'String',
@@ -152,8 +152,8 @@ module Freeclimb
152
152
  self.account_id = attributes[:'account_id']
153
153
  end
154
154
 
155
- if attributes.key?(:'auth_token')
156
- self.auth_token = attributes[:'auth_token']
155
+ if attributes.key?(:'api_key')
156
+ self.api_key = attributes[:'api_key']
157
157
  end
158
158
 
159
159
  if attributes.key?(:'_alias')
@@ -212,7 +212,7 @@ module Freeclimb
212
212
  date_updated == o.date_updated &&
213
213
  revision == o.revision &&
214
214
  account_id == o.account_id &&
215
- auth_token == o.auth_token &&
215
+ api_key == o.api_key &&
216
216
  _alias == o._alias &&
217
217
  label == o.label &&
218
218
  type == o.type &&
@@ -229,7 +229,7 @@ module Freeclimb
229
229
  # Calculates hash code according to all attributes.
230
230
  # @return [Integer] Hash code
231
231
  def hash
232
- [uri, date_created, date_updated, revision, account_id, auth_token, _alias, label, type, status, subresource_uris].hash
232
+ [uri, date_created, date_updated, revision, account_id, api_key, _alias, label, type, status, subresource_uris].hash
233
233
  end
234
234
 
235
235
  # Builds the object from hash
@@ -17,8 +17,8 @@ module Freeclimb
17
17
  # String that uniquely identifies this account resource.
18
18
  attr_accessor :account_id
19
19
 
20
- # The authorization token assigned to this account. This token must be kept a secret by the customer.
21
- attr_accessor :auth_token
20
+ # The API key assigned to this account. This token must be kept a secret by the customer.
21
+ attr_accessor :api_key
22
22
 
23
23
  # A description for this account.
24
24
  attr_accessor :_alias
@@ -61,7 +61,7 @@ module Freeclimb
61
61
  def self.attribute_map
62
62
  {
63
63
  :'account_id' => :'accountId',
64
- :'auth_token' => :'authToken',
64
+ :'api_key' => :'apiKey',
65
65
  :'_alias' => :'alias',
66
66
  :'label' => :'label',
67
67
  :'type' => :'type',
@@ -74,7 +74,7 @@ module Freeclimb
74
74
  def self.openapi_types
75
75
  {
76
76
  :'account_id' => :'String',
77
- :'auth_token' => :'String',
77
+ :'api_key' => :'String',
78
78
  :'_alias' => :'String',
79
79
  :'label' => :'String',
80
80
  :'type' => :'String',
@@ -108,8 +108,8 @@ module Freeclimb
108
108
  self.account_id = attributes[:'account_id']
109
109
  end
110
110
 
111
- if attributes.key?(:'auth_token')
112
- self.auth_token = attributes[:'auth_token']
111
+ if attributes.key?(:'api_key')
112
+ self.api_key = attributes[:'api_key']
113
113
  end
114
114
 
115
115
  if attributes.key?(:'_alias')
@@ -164,7 +164,7 @@ module Freeclimb
164
164
  return true if self.equal?(o)
165
165
  self.class == o.class &&
166
166
  account_id == o.account_id &&
167
- auth_token == o.auth_token &&
167
+ api_key == o.api_key &&
168
168
  _alias == o._alias &&
169
169
  label == o.label &&
170
170
  type == o.type &&
@@ -181,7 +181,7 @@ module Freeclimb
181
181
  # Calculates hash code according to all attributes.
182
182
  # @return [Integer] Hash code
183
183
  def hash
184
- [account_id, auth_token, _alias, label, type, status, subresource_uris].hash
184
+ [account_id, api_key, _alias, label, type, status, subresource_uris].hash
185
185
  end
186
186
 
187
187
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module Freeclimb
14
- VERSION = '2.1.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",
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.1.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: 2021-03-26 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
@@ -195,6 +195,7 @@ files:
195
195
  - freeclimb-2.0.3.gem
196
196
  - freeclimb-2.1.0.gem
197
197
  - freeclimb-2.1.1.gem
198
+ - freeclimb-2.1.2.gem
198
199
  - freeclimb.gemspec
199
200
  - lib/freeclimb.rb
200
201
  - lib/freeclimb/api/default_api.rb