wesley-key-sdk 2.0.0 → 3.0.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 +4 -4
- data/LICENSE +1 -1
- data/README.md +13 -13
- 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: 129c6a174642565c4b46eda4800aa72627da66d4389716fe171915a04ff14bba
|
|
4
|
+
data.tar.gz: ee8a1bc576e5b408ea06e4d577f510d6428ca243f4b7c9816b3f47ff2a9faf7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2483e6bf28b22c4a3e4c4549c781e08bdee052782bc1a63055999bd291314d2a7a26125b7592b3d333f16b3624ba4aa58663f30c86a9161d08be69935775f19
|
|
7
|
+
data.tar.gz: b4831789c9c7569256425deb8f04dd48547082c0023d0eb47f4325e18d24da1430290310d36eb4eb7380647da1e16a30cd80779c31996e3814d554ad8e6037b4
|
data/LICENSE
CHANGED
|
@@ -3,7 +3,7 @@ License:
|
|
|
3
3
|
The MIT License (MIT)
|
|
4
4
|
http://opensource.org/licenses/MIT
|
|
5
5
|
|
|
6
|
-
Copyright (c) 2014 -
|
|
6
|
+
Copyright (c) 2014 - 2026 APIMATIC Limited
|
|
7
7
|
|
|
8
8
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9
9
|
of this software and associated documentation files (the "Software"), to deal
|
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
|
|
13
|
+
gem install wesley-key-sdk -v 3.0.0
|
|
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', '
|
|
19
|
+
gem 'wesley-key-sdk', '3.0.0'
|
|
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/
|
|
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.0).
|
|
23
23
|
|
|
24
24
|
## IRB Console Usage
|
|
25
25
|
|
|
@@ -66,7 +66,7 @@ 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/
|
|
69
|
+
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/doc/client.md)
|
|
70
70
|
|
|
71
71
|
The following parameters are configurable for the API Client:
|
|
72
72
|
|
|
@@ -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/
|
|
86
|
+
| proxy_settings | [`ProxySettings`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/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,26 +109,26 @@ 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/
|
|
112
|
+
See the [`Environment-Based Client Initialization`](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/doc/environment-based-client-initialization.md) section for details.
|
|
113
113
|
|
|
114
114
|
## List of APIs
|
|
115
115
|
|
|
116
|
-
* [API](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/
|
|
116
|
+
* [API](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/doc/controllers/api.md)
|
|
117
117
|
|
|
118
118
|
## SDK Infrastructure
|
|
119
119
|
|
|
120
120
|
### Configuration
|
|
121
121
|
|
|
122
|
-
* [ProxySettings](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/
|
|
123
|
-
* [Environment-Based Client Initialization](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/
|
|
122
|
+
* [ProxySettings](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/doc/proxy-settings.md)
|
|
123
|
+
* [Environment-Based Client Initialization](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/doc/environment-based-client-initialization.md)
|
|
124
124
|
|
|
125
125
|
### HTTP
|
|
126
126
|
|
|
127
|
-
* [HttpResponse](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/
|
|
128
|
-
* [HttpRequest](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/
|
|
127
|
+
* [HttpResponse](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/doc/http-response.md)
|
|
128
|
+
* [HttpRequest](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/doc/http-request.md)
|
|
129
129
|
|
|
130
130
|
### Utilities
|
|
131
131
|
|
|
132
|
-
* [ApiHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/
|
|
133
|
-
* [DateTimeHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/
|
|
132
|
+
* [ApiHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/doc/api-helper.md)
|
|
133
|
+
* [DateTimeHelper](https://www.github.com/ZahraN444/wesley-key-ruby-sdk/tree/3.0.0/doc/date-time-helper.md)
|
|
134
134
|
|
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:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kenyon Jacobs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: apimatic_core_interfaces
|