wesley-key-sdk 1.1.2 → 1.1.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 +4 -4
- data/README.md +11 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3ea6f79455b8271f043bcdc0bba2a2d18c54981bb9f3ec2768fa599e2c1d138
|
4
|
+
data.tar.gz: 580d402b865b741c7e00af607f78b872fed04dc3c9b13ce946eac315af186f4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4e91d1d6be472481870d8bc05c1ee3a8f707e164a74932ac10e21a1f741ea95d02a5aaecd59c4dab177e1b9492f1679eed1cae1bb920636816248b024fb9f4b
|
7
|
+
data.tar.gz: 0eac539342d687353f4a4a54b095d3230ee01fa5c7696728c7e171611b80d47298d4b230cdebe0150de5bc4e2816a8c30dd8873d610034b1a1fe117258a369a0
|
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 1.1.
|
13
|
+
gem install wesley-key-sdk -v 1.1.3
|
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', '1.1.
|
19
|
+
gem 'wesley-key-sdk', '1.1.3'
|
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/1.1.
|
22
|
+
For additional gem details, see the [RubyGems page for the wesley-key-sdk gem](https://rubygems.org/gems/wesley-key-sdk/versions/1.1.3).
|
23
23
|
|
24
24
|
## Test the SDK
|
25
25
|
|
@@ -31,7 +31,7 @@ rake
|
|
31
31
|
|
32
32
|
## Initialize the API Client
|
33
33
|
|
34
|
-
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.
|
34
|
+
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.3/doc/client.md)
|
35
35
|
|
36
36
|
The following parameters are configurable for the API Client:
|
37
37
|
|
@@ -48,7 +48,7 @@ The following parameters are configurable for the API Client:
|
|
48
48
|
| retry_statuses | `Array` | A list of HTTP statuses to retry. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
|
49
49
|
| retry_methods | `Array` | A list of HTTP methods to retry. <br> **Default: %i[get put]** |
|
50
50
|
| http_callback | `HttpCallBack` | The Http CallBack allows defining callables for pre and post API calls. |
|
51
|
-
| proxy_settings | [`ProxySettings`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.
|
51
|
+
| proxy_settings | [`ProxySettings`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.3/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
|
52
52
|
|
53
53
|
The API client can be initialized as follows:
|
54
54
|
|
@@ -64,21 +64,21 @@ client = Client.new(
|
|
64
64
|
|
65
65
|
## List of APIs
|
66
66
|
|
67
|
-
* [API](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.
|
67
|
+
* [API](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.3/doc/controllers/api.md)
|
68
68
|
|
69
69
|
## SDK Infrastructure
|
70
70
|
|
71
71
|
### Configuration
|
72
72
|
|
73
|
-
* [ProxySettings](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.
|
73
|
+
* [ProxySettings](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.3/doc/proxy-settings.md)
|
74
74
|
|
75
75
|
### HTTP
|
76
76
|
|
77
|
-
* [HttpResponse](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.
|
78
|
-
* [HttpRequest](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.
|
77
|
+
* [HttpResponse](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.3/doc/http-response.md)
|
78
|
+
* [HttpRequest](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.3/doc/http-request.md)
|
79
79
|
|
80
80
|
### Utilities
|
81
81
|
|
82
|
-
* [ApiHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.
|
83
|
-
* [DateTimeHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.
|
82
|
+
* [ApiHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.3/doc/api-helper.md)
|
83
|
+
* [DateTimeHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/1.1.3/doc/date-time-helper.md)
|
84
84
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wesley-key-sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kenyon Jacobs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: apimatic_core_interfaces
|