wesley-key-sdk 3.0.5 → 3.0.6

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -14
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 54da1339a3deed8408f5ed43c00aa9d43670f202f5b57213b4de74da9d76c3a4
4
- data.tar.gz: 24a374f418bd1baf711149821d8b0cc57daf13c90d7d28c8b07a85cac9ce3e05
3
+ metadata.gz: 969125a654f4f4b436b2b0f8938e5813e7723824407660979a163c8ee8a495a8
4
+ data.tar.gz: 30a7af398a95a4dd0a2cce80c6229272aed00a339396b12f79677bba79028cfb
5
5
  SHA512:
6
- metadata.gz: c071b0499de0687a99453180e1f50ead08099e60f067307516dbbb4966fe2842fe4a2512459cffd17a80b174dc692a929de234152b92386e3a87ff01d34df958
7
- data.tar.gz: 95e3b8f56b53ecc4d4bef2076e26be595ddac5f1078290dae86d92c251a50cd3d03470f977b348acbee8f1de7e966778963ea32be15dbb05fe6efffe3ca67f2e
6
+ metadata.gz: 1d7466129939c3b9ab0e6b381767772343c89a934ede9c82a0982e262b01b806c5a7dd29e18128ec8008168c761240fefff784ac2ce31003c2a575183637e388
7
+ data.tar.gz: b8ee58033a7ae49494aaf6e1ba3aa082572774a42420ce44dcbcee8909cb16c6312e51a2e559361e9321eb2a7a480dd06d59af4a71aada27ad1ceaa764d49f24
data/README.md CHANGED
@@ -10,16 +10,16 @@ This is a sample API to demonstrate an OpenAPI spec with multiple endpoints and
10
10
  Install the gem from the command line:
11
11
 
12
12
  ```bash
13
- gem install wesley-key-sdk -v 3.0.5
13
+ gem install wesley-key-sdk -v 3.0.6
14
14
  ```
15
15
 
16
16
  Or add the gem to your Gemfile and run `bundle`:
17
17
 
18
18
  ```ruby
19
- gem 'wesley-key-sdk', '3.0.5'
19
+ gem 'wesley-key-sdk', '3.0.6'
20
20
  ```
21
21
 
22
- For additional gem details, see the [RubyGems page for the wesley-key-sdk gem](https://rubygems.org/gems/wesley-key-sdk/versions/3.0.5).
22
+ For additional gem details, see the [RubyGems page for the wesley-key-sdk gem](https://rubygems.org/gems/wesley-key-sdk/versions/3.0.6).
23
23
 
24
24
  ## IRB Console Usage
25
25
 
@@ -66,14 +66,14 @@ rake
66
66
 
67
67
  ## Initialize the API Client
68
68
 
69
- **_Note:_** Documentation for the client can be found [here.](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/client.md)
69
+ **_Note:_** Documentation for the client can be found [here.](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/client.md)
70
70
 
71
71
  The following parameters are configurable for the API Client:
72
72
 
73
73
  | Parameter | Type | Description |
74
74
  | --- | --- | --- |
75
75
  | default_host | `String` | *Default*: `'www.example.com'` |
76
- | environment | [`Environment`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/README.md#environments) | The API environment. <br> **Default: `Environment.PRODUCTION`** |
76
+ | environment | [`Environment`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/README.md#environments) | The API environment. <br> **Default: `Environment.PRODUCTION`** |
77
77
  | connection | `Faraday::Connection` | The Faraday connection object passed by the SDK user for making requests |
78
78
  | adapter | `Faraday::Adapter` | The Faraday adapter object passed by the SDK user for performing http requests |
79
79
  | timeout | `Float` | The value to use for connection timeout. <br> **Default: 60** |
@@ -83,7 +83,7 @@ The following parameters are configurable for the API Client:
83
83
  | retry_statuses | `Array` | A list of HTTP statuses to retry. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
84
84
  | retry_methods | `Array` | A list of HTTP methods to retry. <br> **Default: %i[get put]** |
85
85
  | http_callback | `HttpCallBack` | The Http CallBack allows defining callables for pre and post API calls. |
86
- | proxy_settings | [`ProxySettings`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
86
+ | proxy_settings | [`ProxySettings`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
87
87
 
88
88
  The API client can be initialized as follows:
89
89
 
@@ -109,7 +109,7 @@ include CypressTestApi
109
109
  client = Client.from_env
110
110
  ```
111
111
 
112
- See the [`Environment-Based Client Initialization`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/environment-based-client-initialization.md) section for details.
112
+ See the [`Environment-Based Client Initialization`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/environment-based-client-initialization.md) section for details.
113
113
 
114
114
  ## Environments
115
115
 
@@ -123,22 +123,22 @@ The SDK can be configured to use a different environment for making API calls. A
123
123
 
124
124
  ## List of APIs
125
125
 
126
- * [API](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/controllers/api.md)
126
+ * [API](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/controllers/api.md)
127
127
 
128
128
  ## SDK Infrastructure
129
129
 
130
130
  ### Configuration
131
131
 
132
- * [ProxySettings](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/proxy-settings.md)
133
- * [Environment-Based Client Initialization](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/environment-based-client-initialization.md)
132
+ * [ProxySettings](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/proxy-settings.md)
133
+ * [Environment-Based Client Initialization](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/environment-based-client-initialization.md)
134
134
 
135
135
  ### HTTP
136
136
 
137
- * [HttpResponse](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/http-response.md)
138
- * [HttpRequest](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/http-request.md)
137
+ * [HttpResponse](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/http-response.md)
138
+ * [HttpRequest](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/http-request.md)
139
139
 
140
140
  ### Utilities
141
141
 
142
- * [ApiHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/api-helper.md)
143
- * [DateTimeHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.5/doc/date-time-helper.md)
142
+ * [ApiHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/api-helper.md)
143
+ * [DateTimeHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.6/doc/date-time-helper.md)
144
144
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wesley-key-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.5
4
+ version: 3.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kenyon Jacobs