tesla-api-sdk 1.0.2 → 1.0.3

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: eb2d42e3d25b281972d40951857c950b1e4fb3b74de096aed53ec6a9a9fbf418
4
- data.tar.gz: d8e5979133e07e5a2c58c7458f59e4ecc63ea9a6b8c3004a11e85462567a160b
3
+ metadata.gz: 52ee8cc81ecdb53f8c5861152d3828bfc24ac00b9ba68e8fd545e89c437f7e39
4
+ data.tar.gz: de60cf5a9f49b0588116eed1ad72a228f3eea68303f5338c9a6d144d0202f7fb
5
5
  SHA512:
6
- metadata.gz: 66eb18af24199b03162321e85a2ea318a0b0d190ce497a48eb5277ecc5743d777cd09d4f8ee7a3d09ec659b9aa0e7c33870d8fb6544745d5ed78cd3f83d4fc56
7
- data.tar.gz: ea1dc8f5864cbd9b4c91e510781a8f5f83323fe74851a89e1975af992c39181975067a662392aab72d0825755153d42e0f355794144dc72342c066c22141d02e
6
+ metadata.gz: f51d53bcc80471059fbfac05fc5e070679fac57629262b00a26037365899eddf0d90aca8e79ddbe5ecaf8f5a1a15a8f0c2868726f9168cb616dd66ac77f8c04b
7
+ data.tar.gz: d3560d154aa312f74cafde44c78ec629400042a83b614267ac378dc0e2797b78c6f0b992173fe60ef3438903b45a8b9c1fb8adc8bbb35b7d27561838fb5d834e
data/README.md CHANGED
@@ -10,16 +10,16 @@ Unofficial OpenAPI specification for Tesla Fleet Management Charging endpoints.
10
10
  Install the gem from the command line:
11
11
 
12
12
  ```bash
13
- gem install tesla-api-sdk -v 1.0.2
13
+ gem install tesla-api-sdk -v 1.0.3
14
14
  ```
15
15
 
16
16
  Or add the gem to your Gemfile and run `bundle`:
17
17
 
18
18
  ```ruby
19
- gem 'tesla-api-sdk', '1.0.2'
19
+ gem 'tesla-api-sdk', '1.0.3'
20
20
  ```
21
21
 
22
- For additional gem details, see the [RubyGems page for the tesla-api-sdk gem](https://rubygems.org/gems/tesla-api-sdk/versions/1.0.2).
22
+ For additional gem details, see the [RubyGems page for the tesla-api-sdk gem](https://rubygems.org/gems/tesla-api-sdk/versions/1.0.3).
23
23
 
24
24
  ## IRB Console Usage
25
25
 
@@ -58,7 +58,7 @@ ruby bin/console
58
58
 
59
59
  ## Initialize the API Client
60
60
 
61
- **_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/client.md)
61
+ **_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/client.md)
62
62
 
63
63
  The following parameters are configurable for the API Client:
64
64
 
@@ -74,10 +74,10 @@ The following parameters are configurable for the API Client:
74
74
  | retry_statuses | `Array` | A list of HTTP statuses to retry. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
75
75
  | retry_methods | `Array` | A list of HTTP methods to retry. <br> **Default: %i[get put]** |
76
76
  | http_callback | `HttpCallBack` | The Http CallBack allows defining callables for pre and post API calls. |
77
- | proxy_settings | [`ProxySettings`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
78
- | logging_configuration | [`LoggingConfiguration`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/logging-configuration.md) | The SDK logging configuration for API calls |
79
- | bearer_auth_credentials | [`BearerAuthCredentials`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/auth/oauth-2-bearer-token.md) | The credential object for OAuth 2 Bearer token |
80
- | thirdpartytoken_credentials | [`ThirdpartytokenCredentials`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/auth/oauth-2-authorization-code-grant.md) | The credential object for OAuth 2 Authorization Code Grant |
77
+ | proxy_settings | [`ProxySettings`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
78
+ | logging_configuration | [`LoggingConfiguration`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/logging-configuration.md) | The SDK logging configuration for API calls |
79
+ | bearer_auth_credentials | [`BearerAuthCredentials`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/auth/oauth-2-bearer-token.md) | The credential object for OAuth 2 Bearer token |
80
+ | thirdpartytoken_credentials | [`ThirdpartytokenCredentials`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/auth/oauth-2-authorization-code-grant.md) | The credential object for OAuth 2 Authorization Code Grant |
81
81
 
82
82
  The API client can be initialized as follows:
83
83
 
@@ -123,43 +123,43 @@ include TeslaFleetManagementApi
123
123
  client = Client.from_env
124
124
  ```
125
125
 
126
- See the [`Environment-Based Client Initialization`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/environment-based-client-initialization.md) section for details.
126
+ See the [`Environment-Based Client Initialization`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/environment-based-client-initialization.md) section for details.
127
127
 
128
128
  ## Authorization
129
129
 
130
130
  This API uses the following authentication schemes.
131
131
 
132
- * [`bearerAuth (OAuth 2 Bearer token)`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/auth/oauth-2-bearer-token.md)
133
- * [`thirdpartytoken (OAuth 2 Authorization Code Grant)`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/auth/oauth-2-authorization-code-grant.md)
132
+ * [`bearerAuth (OAuth 2 Bearer token)`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/auth/oauth-2-bearer-token.md)
133
+ * [`thirdpartytoken (OAuth 2 Authorization Code Grant)`](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/auth/oauth-2-authorization-code-grant.md)
134
134
 
135
135
  ## List of APIs
136
136
 
137
- * [Vehicle Commands](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/controllers/vehicle-commands.md)
138
- * [Charging](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/controllers/charging.md)
139
- * [Energy](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/controllers/energy.md)
140
- * [Partner](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/controllers/partner.md)
141
- * [User](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/controllers/user.md)
142
- * [Vehicles](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/controllers/vehicles.md)
137
+ * [Vehicle Commands](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/controllers/vehicle-commands.md)
138
+ * [Charging](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/controllers/charging.md)
139
+ * [Energy](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/controllers/energy.md)
140
+ * [Partner](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/controllers/partner.md)
141
+ * [User](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/controllers/user.md)
142
+ * [Vehicles](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/controllers/vehicles.md)
143
143
 
144
144
  ## SDK Infrastructure
145
145
 
146
146
  ### Configuration
147
147
 
148
- * [ProxySettings](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/proxy-settings.md)
149
- * [Environment-Based Client Initialization](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/environment-based-client-initialization.md)
150
- * [AbstractLogger](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/abstract-logger.md)
151
- * [LoggingConfiguration](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/logging-configuration.md)
152
- * [RequestLoggingConfiguration](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/request-logging-configuration.md)
153
- * [ResponseLoggingConfiguration](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/response-logging-configuration.md)
148
+ * [ProxySettings](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/proxy-settings.md)
149
+ * [Environment-Based Client Initialization](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/environment-based-client-initialization.md)
150
+ * [AbstractLogger](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/abstract-logger.md)
151
+ * [LoggingConfiguration](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/logging-configuration.md)
152
+ * [RequestLoggingConfiguration](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/request-logging-configuration.md)
153
+ * [ResponseLoggingConfiguration](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/response-logging-configuration.md)
154
154
 
155
155
  ### HTTP
156
156
 
157
- * [HttpResponse](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/http-response.md)
158
- * [HttpRequest](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/http-request.md)
157
+ * [HttpResponse](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/http-response.md)
158
+ * [HttpRequest](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/http-request.md)
159
159
 
160
160
  ### Utilities
161
161
 
162
- * [ApiResponse](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/api-response.md)
163
- * [ApiHelper](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/api-helper.md)
164
- * [DateTimeHelper](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.2/doc/date-time-helper.md)
162
+ * [ApiResponse](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/api-response.md)
163
+ * [ApiHelper](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/api-helper.md)
164
+ * [DateTimeHelper](https://www.github.com/sdks-io/tesla-api-ruby-sdk/tree/1.0.3/doc/date-time-helper.md)
165
165
 
@@ -10,7 +10,7 @@ module TeslaFleetManagementApi
10
10
  attr_accessor :config, :http_call_back
11
11
 
12
12
  def self.user_agent
13
- 'Ruby SDK, Version: 1.0.2, on OS {os-info}'
13
+ 'Ruby SDK, Version: 1.0.3, on OS {os-info}'
14
14
  end
15
15
 
16
16
  def self.user_agent_parameters
@@ -14,7 +14,7 @@ module TeslaFleetManagementApi
14
14
  '/api/1/dx/charging/history',
15
15
  Server::DEFAULT)
16
16
  .header_param(new_parameter('application/json', key: 'accept'))
17
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
17
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
18
18
  .response(new_response_handler
19
19
  .deserializer(APIHelper.method(:custom_type_deserializer))
20
20
  .deserialize_into(ChargingHistoryResponse.method(:from_hash))
@@ -35,7 +35,7 @@ module TeslaFleetManagementApi
35
35
  .is_required(true)
36
36
  .should_encode(true))
37
37
  .header_param(new_parameter('application/json', key: 'accept'))
38
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
38
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
39
39
  .response(new_response_handler
40
40
  .deserializer(APIHelper.method(:dynamic_deserializer))
41
41
  .is_api_response(true))
@@ -51,7 +51,7 @@ module TeslaFleetManagementApi
51
51
  '/api/1/dx/charging/sessions',
52
52
  Server::DEFAULT)
53
53
  .header_param(new_parameter('application/json', key: 'accept'))
54
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
54
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
55
55
  .response(new_response_handler
56
56
  .deserializer(APIHelper.method(:custom_type_deserializer))
57
57
  .deserialize_into(ChargingSessionsResponse.method(:from_hash))
@@ -26,7 +26,7 @@ module TeslaFleetManagementApi
26
26
  .is_required(true))
27
27
  .header_param(new_parameter('application/json', key: 'accept'))
28
28
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
29
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
29
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
30
30
  .response(new_response_handler
31
31
  .deserializer(APIHelper.method(:custom_type_deserializer))
32
32
  .deserialize_into(BackupResponse.method(:from_hash))
@@ -68,7 +68,7 @@ module TeslaFleetManagementApi
68
68
  .query_param(new_parameter(period, key: 'period'))
69
69
  .query_param(new_parameter(time_zone, key: 'time_zone'))
70
70
  .header_param(new_parameter('application/json', key: 'accept'))
71
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
71
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
72
72
  .response(new_response_handler
73
73
  .deserializer(APIHelper.method(:custom_type_deserializer))
74
74
  .deserialize_into(CalendarHistoryResponse.method(:from_hash))
@@ -108,7 +108,7 @@ module TeslaFleetManagementApi
108
108
  .is_required(true))
109
109
  .query_param(new_parameter(time_zone, key: 'time_zone'))
110
110
  .header_param(new_parameter('application/json', key: 'accept'))
111
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
111
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
112
112
  .response(new_response_handler
113
113
  .deserializer(APIHelper.method(:custom_type_deserializer))
114
114
  .deserialize_into(ChargeHistoryResponse.method(:from_hash))
@@ -129,7 +129,7 @@ module TeslaFleetManagementApi
129
129
  .is_required(true)
130
130
  .should_encode(true))
131
131
  .header_param(new_parameter('application/json', key: 'accept'))
132
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
132
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
133
133
  .response(new_response_handler
134
134
  .deserializer(APIHelper.method(:custom_type_deserializer))
135
135
  .deserialize_into(LiveStatusResponse.method(:from_hash))
@@ -157,7 +157,7 @@ module TeslaFleetManagementApi
157
157
  .is_required(true))
158
158
  .header_param(new_parameter('application/json', key: 'accept'))
159
159
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
160
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
160
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
161
161
  .response(new_response_handler
162
162
  .deserializer(APIHelper.method(:custom_type_deserializer))
163
163
  .deserialize_into(GenericUpdateResponse.method(:from_hash))
@@ -183,7 +183,7 @@ module TeslaFleetManagementApi
183
183
  .body_param(new_parameter(body))
184
184
  .header_param(new_parameter('application/json', key: 'accept'))
185
185
  .body_serializer(APIHelper.method(:json_serialize))
186
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
186
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
187
187
  .response(new_response_handler
188
188
  .deserializer(APIHelper.method(:custom_type_deserializer))
189
189
  .deserialize_into(GenericUpdateResponse.method(:from_hash))
@@ -211,7 +211,7 @@ module TeslaFleetManagementApi
211
211
  .is_required(true))
212
212
  .header_param(new_parameter('application/json', key: 'accept'))
213
213
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
214
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
214
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
215
215
  .response(new_response_handler
216
216
  .deserializer(APIHelper.method(:custom_type_deserializer))
217
217
  .deserialize_into(GenericUpdateResponse.method(:from_hash))
@@ -239,7 +239,7 @@ module TeslaFleetManagementApi
239
239
  .is_required(true))
240
240
  .header_param(new_parameter('application/json', key: 'accept'))
241
241
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
242
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
242
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
243
243
  .response(new_response_handler
244
244
  .deserializer(APIHelper.method(:custom_type_deserializer))
245
245
  .deserialize_into(GenericUpdateResponse.method(:from_hash))
@@ -267,7 +267,7 @@ module TeslaFleetManagementApi
267
267
  .is_required(true))
268
268
  .header_param(new_parameter('application/json', key: 'accept'))
269
269
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
270
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
270
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
271
271
  .response(new_response_handler
272
272
  .deserializer(APIHelper.method(:custom_type_deserializer))
273
273
  .deserialize_into(GenericUpdateResponse.method(:from_hash))
@@ -283,7 +283,7 @@ module TeslaFleetManagementApi
283
283
  '/api/1/products',
284
284
  Server::DEFAULT)
285
285
  .header_param(new_parameter('application/json', key: 'accept'))
286
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
286
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
287
287
  .response(new_response_handler
288
288
  .deserializer(APIHelper.method(:custom_type_deserializer))
289
289
  .deserialize_into(ProductsResponse.method(:from_hash))
@@ -304,7 +304,7 @@ module TeslaFleetManagementApi
304
304
  .is_required(true)
305
305
  .should_encode(true))
306
306
  .header_param(new_parameter('application/json', key: 'accept'))
307
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
307
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
308
308
  .response(new_response_handler
309
309
  .deserializer(APIHelper.method(:custom_type_deserializer))
310
310
  .deserialize_into(SiteInfoResponse.method(:from_hash))
@@ -14,7 +14,7 @@ module TeslaFleetManagementApi
14
14
  '/api/1/partner_accounts/fleet_telemetry_error_vins',
15
15
  Server::DEFAULT)
16
16
  .header_param(new_parameter('application/json', key: 'accept'))
17
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
17
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
18
18
  .response(new_response_handler
19
19
  .deserializer(APIHelper.method(:custom_type_deserializer))
20
20
  .deserialize_into(BackupResponse.method(:from_hash))
@@ -30,7 +30,7 @@ module TeslaFleetManagementApi
30
30
  '/api/1/partner_accounts/fleet_telemetry_errors',
31
31
  Server::DEFAULT)
32
32
  .header_param(new_parameter('application/json', key: 'accept'))
33
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
33
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
34
34
  .response(new_response_handler
35
35
  .deserializer(APIHelper.method(:custom_type_deserializer))
36
36
  .deserialize_into(FleetTelemetryErrorsResponse.method(:from_hash))
@@ -49,7 +49,7 @@ module TeslaFleetManagementApi
49
49
  .query_param(new_parameter(domain, key: 'domain')
50
50
  .is_required(true))
51
51
  .header_param(new_parameter('application/json', key: 'accept'))
52
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
52
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
53
53
  .response(new_response_handler
54
54
  .deserializer(APIHelper.method(:custom_type_deserializer))
55
55
  .deserialize_into(PublicKeyResponse.method(:from_hash))
@@ -71,7 +71,7 @@ module TeslaFleetManagementApi
71
71
  .is_required(true))
72
72
  .header_param(new_parameter('application/json', key: 'accept'))
73
73
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
74
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
74
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
75
75
  .response(new_response_handler
76
76
  .deserializer(APIHelper.method(:custom_type_deserializer))
77
77
  .deserialize_into(RegisterPartnerResponse.method(:from_hash))
@@ -14,7 +14,7 @@ module TeslaFleetManagementApi
14
14
  '/api/1/users/feature_config',
15
15
  Server::DEFAULT)
16
16
  .header_param(new_parameter('application/json', key: 'accept'))
17
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
17
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
18
18
  .response(new_response_handler
19
19
  .deserializer(APIHelper.method(:custom_type_deserializer))
20
20
  .deserialize_into(BackupResponse.method(:from_hash))
@@ -30,7 +30,7 @@ module TeslaFleetManagementApi
30
30
  '/api/1/users/me',
31
31
  Server::DEFAULT)
32
32
  .header_param(new_parameter('application/json', key: 'accept'))
33
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
33
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
34
34
  .response(new_response_handler
35
35
  .deserializer(APIHelper.method(:custom_type_deserializer))
36
36
  .deserialize_into(MeResponse.method(:from_hash))
@@ -46,7 +46,7 @@ module TeslaFleetManagementApi
46
46
  '/api/1/users/orders',
47
47
  Server::DEFAULT)
48
48
  .header_param(new_parameter('application/json', key: 'accept'))
49
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
49
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
50
50
  .response(new_response_handler
51
51
  .deserializer(APIHelper.method(:custom_type_deserializer))
52
52
  .deserialize_into(OrdersResponse.method(:from_hash))
@@ -62,7 +62,7 @@ module TeslaFleetManagementApi
62
62
  '/api/1/users/region',
63
63
  Server::DEFAULT)
64
64
  .header_param(new_parameter('application/json', key: 'accept'))
65
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
65
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
66
66
  .response(new_response_handler
67
67
  .deserializer(APIHelper.method(:custom_type_deserializer))
68
68
  .deserialize_into(RegionResponse.method(:from_hash))
@@ -26,7 +26,7 @@ module TeslaFleetManagementApi
26
26
  .is_required(true))
27
27
  .header_param(new_parameter('application/json', key: 'accept'))
28
28
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
29
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
29
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
30
30
  .response(new_response_handler
31
31
  .deserializer(APIHelper.method(:custom_type_deserializer))
32
32
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -54,7 +54,7 @@ module TeslaFleetManagementApi
54
54
  .is_required(true))
55
55
  .header_param(new_parameter('application/json', key: 'accept'))
56
56
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
57
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
57
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
58
58
  .response(new_response_handler
59
59
  .deserializer(APIHelper.method(:custom_type_deserializer))
60
60
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -82,7 +82,7 @@ module TeslaFleetManagementApi
82
82
  .is_required(true))
83
83
  .header_param(new_parameter('application/json', key: 'accept'))
84
84
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
85
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
85
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
86
86
  .response(new_response_handler
87
87
  .deserializer(APIHelper.method(:custom_type_deserializer))
88
88
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -110,7 +110,7 @@ module TeslaFleetManagementApi
110
110
  .is_required(true))
111
111
  .header_param(new_parameter('application/json', key: 'accept'))
112
112
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
113
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
113
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
114
114
  .response(new_response_handler
115
115
  .deserializer(APIHelper.method(:custom_type_deserializer))
116
116
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -131,7 +131,7 @@ module TeslaFleetManagementApi
131
131
  .is_required(true)
132
132
  .should_encode(true))
133
133
  .header_param(new_parameter('application/json', key: 'accept'))
134
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
134
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
135
135
  .response(new_response_handler
136
136
  .deserializer(APIHelper.method(:custom_type_deserializer))
137
137
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -152,7 +152,7 @@ module TeslaFleetManagementApi
152
152
  .is_required(true)
153
153
  .should_encode(true))
154
154
  .header_param(new_parameter('application/json', key: 'accept'))
155
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
155
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
156
156
  .response(new_response_handler
157
157
  .deserializer(APIHelper.method(:custom_type_deserializer))
158
158
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -173,7 +173,7 @@ module TeslaFleetManagementApi
173
173
  .is_required(true)
174
174
  .should_encode(true))
175
175
  .header_param(new_parameter('application/json', key: 'accept'))
176
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
176
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
177
177
  .response(new_response_handler
178
178
  .deserializer(APIHelper.method(:custom_type_deserializer))
179
179
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -194,7 +194,7 @@ module TeslaFleetManagementApi
194
194
  .is_required(true)
195
195
  .should_encode(true))
196
196
  .header_param(new_parameter('application/json', key: 'accept'))
197
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
197
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
198
198
  .response(new_response_handler
199
199
  .deserializer(APIHelper.method(:custom_type_deserializer))
200
200
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -215,7 +215,7 @@ module TeslaFleetManagementApi
215
215
  .is_required(true)
216
216
  .should_encode(true))
217
217
  .header_param(new_parameter('application/json', key: 'accept'))
218
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
218
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
219
219
  .response(new_response_handler
220
220
  .deserializer(APIHelper.method(:custom_type_deserializer))
221
221
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -236,7 +236,7 @@ module TeslaFleetManagementApi
236
236
  .is_required(true)
237
237
  .should_encode(true))
238
238
  .header_param(new_parameter('application/json', key: 'accept'))
239
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
239
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
240
240
  .response(new_response_handler
241
241
  .deserializer(APIHelper.method(:custom_type_deserializer))
242
242
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -257,7 +257,7 @@ module TeslaFleetManagementApi
257
257
  .is_required(true)
258
258
  .should_encode(true))
259
259
  .header_param(new_parameter('application/json', key: 'accept'))
260
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
260
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
261
261
  .response(new_response_handler
262
262
  .deserializer(APIHelper.method(:custom_type_deserializer))
263
263
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -278,7 +278,7 @@ module TeslaFleetManagementApi
278
278
  .is_required(true)
279
279
  .should_encode(true))
280
280
  .header_param(new_parameter('application/json', key: 'accept'))
281
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
281
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
282
282
  .response(new_response_handler
283
283
  .deserializer(APIHelper.method(:custom_type_deserializer))
284
284
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -299,7 +299,7 @@ module TeslaFleetManagementApi
299
299
  .is_required(true)
300
300
  .should_encode(true))
301
301
  .header_param(new_parameter('application/json', key: 'accept'))
302
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
302
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
303
303
  .response(new_response_handler
304
304
  .deserializer(APIHelper.method(:custom_type_deserializer))
305
305
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -321,7 +321,7 @@ module TeslaFleetManagementApi
321
321
  .is_required(true)
322
322
  .should_encode(true))
323
323
  .header_param(new_parameter('application/json', key: 'accept'))
324
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
324
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
325
325
  .response(new_response_handler
326
326
  .deserializer(APIHelper.method(:custom_type_deserializer))
327
327
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -342,7 +342,7 @@ module TeslaFleetManagementApi
342
342
  .is_required(true)
343
343
  .should_encode(true))
344
344
  .header_param(new_parameter('application/json', key: 'accept'))
345
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
345
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
346
346
  .response(new_response_handler
347
347
  .deserializer(APIHelper.method(:custom_type_deserializer))
348
348
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -363,7 +363,7 @@ module TeslaFleetManagementApi
363
363
  .is_required(true)
364
364
  .should_encode(true))
365
365
  .header_param(new_parameter('application/json', key: 'accept'))
366
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
366
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
367
367
  .response(new_response_handler
368
368
  .deserializer(APIHelper.method(:custom_type_deserializer))
369
369
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -384,7 +384,7 @@ module TeslaFleetManagementApi
384
384
  .is_required(true)
385
385
  .should_encode(true))
386
386
  .header_param(new_parameter('application/json', key: 'accept'))
387
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
387
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
388
388
  .response(new_response_handler
389
389
  .deserializer(APIHelper.method(:custom_type_deserializer))
390
390
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -405,7 +405,7 @@ module TeslaFleetManagementApi
405
405
  .is_required(true)
406
406
  .should_encode(true))
407
407
  .header_param(new_parameter('application/json', key: 'accept'))
408
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
408
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
409
409
  .response(new_response_handler
410
410
  .deserializer(APIHelper.method(:custom_type_deserializer))
411
411
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -433,7 +433,7 @@ module TeslaFleetManagementApi
433
433
  .is_required(true))
434
434
  .header_param(new_parameter('application/json', key: 'accept'))
435
435
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
436
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
436
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
437
437
  .response(new_response_handler
438
438
  .deserializer(APIHelper.method(:custom_type_deserializer))
439
439
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -454,7 +454,7 @@ module TeslaFleetManagementApi
454
454
  .is_required(true)
455
455
  .should_encode(true))
456
456
  .header_param(new_parameter('application/json', key: 'accept'))
457
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
457
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
458
458
  .response(new_response_handler
459
459
  .deserializer(APIHelper.method(:custom_type_deserializer))
460
460
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -475,7 +475,7 @@ module TeslaFleetManagementApi
475
475
  .is_required(true)
476
476
  .should_encode(true))
477
477
  .header_param(new_parameter('application/json', key: 'accept'))
478
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
478
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
479
479
  .response(new_response_handler
480
480
  .deserializer(APIHelper.method(:custom_type_deserializer))
481
481
  .deserialize_into(CommandResponse.method(:from_hash))
@@ -14,7 +14,7 @@ module TeslaFleetManagementApi
14
14
  '/api/1/vehicles',
15
15
  Server::DEFAULT)
16
16
  .header_param(new_parameter('application/json', key: 'accept'))
17
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
17
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
18
18
  .response(new_response_handler
19
19
  .deserializer(APIHelper.method(:custom_type_deserializer))
20
20
  .deserialize_into(Api1VehiclesResponse.method(:from_hash))
@@ -35,7 +35,7 @@ module TeslaFleetManagementApi
35
35
  .is_required(true)
36
36
  .should_encode(true))
37
37
  .header_param(new_parameter('application/json', key: 'accept'))
38
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
38
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
39
39
  .response(new_response_handler
40
40
  .deserializer(APIHelper.method(:custom_type_deserializer))
41
41
  .deserialize_into(Api1VehiclesResponseGetVehicle.method(:from_hash))
@@ -56,7 +56,7 @@ module TeslaFleetManagementApi
56
56
  .is_required(true)
57
57
  .should_encode(true))
58
58
  .header_param(new_parameter('application/json', key: 'accept'))
59
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
59
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
60
60
  .response(new_response_handler
61
61
  .deserializer(APIHelper.method(:custom_type_deserializer))
62
62
  .deserialize_into(Api1VehiclesMobileEnabledResponse.method(:from_hash))
@@ -77,7 +77,7 @@ module TeslaFleetManagementApi
77
77
  .is_required(true)
78
78
  .should_encode(true))
79
79
  .header_param(new_parameter('application/json', key: 'accept'))
80
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
80
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
81
81
  .response(new_response_handler
82
82
  .deserializer(APIHelper.method(:custom_type_deserializer))
83
83
  .deserialize_into(Api1VehiclesNearbyChargingSitesResponse.method(:from_hash))
@@ -98,7 +98,7 @@ module TeslaFleetManagementApi
98
98
  .is_required(true)
99
99
  .should_encode(true))
100
100
  .header_param(new_parameter('application/json', key: 'accept'))
101
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
101
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
102
102
  .response(new_response_handler
103
103
  .deserializer(APIHelper.method(:custom_type_deserializer))
104
104
  .deserialize_into(SiteInfoResponse.method(:from_hash))
@@ -119,7 +119,7 @@ module TeslaFleetManagementApi
119
119
  .is_required(true)
120
120
  .should_encode(true))
121
121
  .header_param(new_parameter('application/json', key: 'accept'))
122
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
122
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
123
123
  .response(new_response_handler
124
124
  .deserializer(APIHelper.method(:custom_type_deserializer))
125
125
  .deserialize_into(Api1VehiclesWakeUpResponse.method(:from_hash))
@@ -139,7 +139,7 @@ module TeslaFleetManagementApi
139
139
  .is_required(true)
140
140
  .should_encode(true))
141
141
  .header_param(new_parameter('application/json', key: 'accept'))
142
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
142
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
143
143
  .response(new_response_handler
144
144
  .deserializer(APIHelper.method(:custom_type_deserializer))
145
145
  .deserialize_into(SiteInfoResponse.method(:from_hash))
@@ -158,7 +158,7 @@ module TeslaFleetManagementApi
158
158
  .query_param(new_parameter(vin, key: 'vin')
159
159
  .is_required(true))
160
160
  .header_param(new_parameter('application/json', key: 'accept'))
161
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
161
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
162
162
  .response(new_response_handler
163
163
  .deserializer(APIHelper.method(:custom_type_deserializer))
164
164
  .deserialize_into(Api1DxVehiclesOptionsResponse.method(:from_hash))
@@ -174,7 +174,7 @@ module TeslaFleetManagementApi
174
174
  '/api/1/dx/warranty/details',
175
175
  Server::DEFAULT)
176
176
  .header_param(new_parameter('application/json', key: 'accept'))
177
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
177
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
178
178
  .response(new_response_handler
179
179
  .deserializer(APIHelper.method(:custom_type_deserializer))
180
180
  .deserialize_into(Api1DxWarrantyDetailsResponse.method(:from_hash))
@@ -195,7 +195,7 @@ module TeslaFleetManagementApi
195
195
  .is_required(true)
196
196
  .should_encode(true))
197
197
  .header_param(new_parameter('application/json', key: 'accept'))
198
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
198
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
199
199
  .response(new_response_handler
200
200
  .deserializer(APIHelper.method(:custom_type_deserializer))
201
201
  .deserialize_into(DriversResponse.method(:from_hash))
@@ -216,7 +216,7 @@ module TeslaFleetManagementApi
216
216
  .is_required(true)
217
217
  .should_encode(true))
218
218
  .header_param(new_parameter('application/json', key: 'accept'))
219
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
219
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
220
220
  .response(new_response_handler
221
221
  .deserializer(APIHelper.method(:custom_type_deserializer))
222
222
  .deserialize_into(SimpleOkResponse.method(:from_hash))
@@ -235,7 +235,7 @@ module TeslaFleetManagementApi
235
235
  .query_param(new_parameter(vin, key: 'vin')
236
236
  .is_required(true))
237
237
  .header_param(new_parameter('application/json', key: 'accept'))
238
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
238
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
239
239
  .response(new_response_handler
240
240
  .deserializer(APIHelper.method(:custom_type_deserializer))
241
241
  .deserialize_into(SiteInfoResponse.method(:from_hash))
@@ -254,7 +254,7 @@ module TeslaFleetManagementApi
254
254
  .query_param(new_parameter(vin, key: 'vin')
255
255
  .is_required(true))
256
256
  .header_param(new_parameter('application/json', key: 'accept'))
257
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
257
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
258
258
  .response(new_response_handler
259
259
  .deserializer(APIHelper.method(:custom_type_deserializer))
260
260
  .deserialize_into(SiteInfoResponse.method(:from_hash))
@@ -280,7 +280,7 @@ module TeslaFleetManagementApi
280
280
  .body_param(new_parameter(body)
281
281
  .is_required(true))
282
282
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
283
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
283
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
284
284
  .response(new_response_handler
285
285
  .is_response_void(true)
286
286
  .is_api_response(true))
@@ -299,7 +299,7 @@ module TeslaFleetManagementApi
299
299
  .is_required(true)
300
300
  .should_encode(true))
301
301
  .header_param(new_parameter('application/json', key: 'accept'))
302
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
302
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
303
303
  .response(new_response_handler
304
304
  .deserializer(APIHelper.method(:json_deserialize))
305
305
  .is_api_response(true))
@@ -320,7 +320,7 @@ module TeslaFleetManagementApi
320
320
  .is_required(true))
321
321
  .header_param(new_parameter('application/json', key: 'accept'))
322
322
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
323
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
323
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
324
324
  .response(new_response_handler
325
325
  .deserializer(APIHelper.method(:json_deserialize))
326
326
  .is_api_response(true))
@@ -340,7 +340,7 @@ module TeslaFleetManagementApi
340
340
  .is_required(true))
341
341
  .header_param(new_parameter('application/json', key: 'accept'))
342
342
  .body_serializer(APIHelper.method(:json_serialize))
343
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
343
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
344
344
  .response(new_response_handler
345
345
  .deserializer(APIHelper.method(:json_deserialize))
346
346
  .is_api_response(true))
@@ -360,7 +360,7 @@ module TeslaFleetManagementApi
360
360
  .is_required(true)
361
361
  .should_encode(true))
362
362
  .header_param(new_parameter('application/json', key: 'accept'))
363
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
363
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
364
364
  .response(new_response_handler
365
365
  .deserializer(APIHelper.method(:json_deserialize))
366
366
  .is_api_response(true))
@@ -380,7 +380,7 @@ module TeslaFleetManagementApi
380
380
  .is_required(true)
381
381
  .should_encode(true))
382
382
  .header_param(new_parameter('application/json', key: 'accept'))
383
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
383
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
384
384
  .response(new_response_handler
385
385
  .deserializer(APIHelper.method(:json_deserialize))
386
386
  .is_api_response(true))
@@ -401,7 +401,7 @@ module TeslaFleetManagementApi
401
401
  .is_required(true))
402
402
  .header_param(new_parameter('application/json', key: 'accept'))
403
403
  .body_serializer(proc do |param| param.to_json unless param.nil? end)
404
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
404
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
405
405
  .response(new_response_handler
406
406
  .deserializer(APIHelper.method(:json_deserialize))
407
407
  .is_api_response(true))
@@ -421,7 +421,7 @@ module TeslaFleetManagementApi
421
421
  .is_required(true)
422
422
  .should_encode(true))
423
423
  .header_param(new_parameter('application/json', key: 'accept'))
424
- .auth(And.new('bearerAuth', 'thirdpartytoken')))
424
+ .auth(Or.new('thirdpartytoken', 'bearerAuth')))
425
425
  .response(new_response_handler
426
426
  .deserializer(APIHelper.method(:json_deserialize))
427
427
  .is_api_response(true))
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tesla-api-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Muhammad Rafay
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-29 00:00:00.000000000 Z
11
+ date: 2026-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apimatic_core_interfaces