ecoportal-api-graphql 0.3.6 → 0.3.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/ecoportal/api/common/graphql/client.rb +5 -2
- data/lib/ecoportal/api/graphql_version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd7ef3abb802c44e3a6b9d2f278252c605fd64003d01f6f1860c538b54c91242
|
4
|
+
data.tar.gz: ac55ed853e4c31b4b4c4e8fc6402cca4fa11c25db4426e68d3083191fbaee84a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a0e972ae3de8ac79493f9a3f232eea0ce71c76b988f3364b5b24271b42e04de897416abe57d179f2ff348b9a9c24c85de717c7c0a7d695c0a1c530bfca1dd58
|
7
|
+
data.tar.gz: edf46381032eb29602deda89fe1aa41748c5c34e926f6711a08a174e3985cdad763c1c97685fe281e54fbf9850093c71e295fd244a3f56f051a01574fe9ad9ab
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Change Log
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
-
## [0.3.
|
4
|
+
## [0.3.8] - 2023-04-xx
|
5
5
|
|
6
6
|
### Added
|
7
7
|
### Changed
|
@@ -13,6 +13,11 @@ All notable changes to this project will be documented in this file.
|
|
13
13
|
- Analyse how to "DSL" currentOrganization.action.activities
|
14
14
|
- review `path` tracking
|
15
15
|
|
16
|
+
## [0.3.7] - 2023-05-23
|
17
|
+
|
18
|
+
### Fixed
|
19
|
+
- `Ecoportal::API::Common::GraphQL::Client` adjusted `read_timeout` and `write_timeout` to `90` seconds.
|
20
|
+
|
16
21
|
## [0.3.6] - 2023-04-17
|
17
22
|
|
18
23
|
### Changed
|
@@ -6,6 +6,9 @@ module Ecoportal
|
|
6
6
|
class Client < ::Graphlient::Client
|
7
7
|
attr_accessor :org_id, :host
|
8
8
|
|
9
|
+
READ_TIMEOUT = 90
|
10
|
+
WRITE_TIMEOUT = 90
|
11
|
+
|
9
12
|
include Ecoportal::API::Common::GraphQL::AuthService
|
10
13
|
|
11
14
|
def initialize(email: nil, pass: nil, org_id: self.org_id,
|
@@ -22,8 +25,8 @@ module Ecoportal
|
|
22
25
|
'Authorization' => "Bearer #{session_token(host: host)}"
|
23
26
|
},
|
24
27
|
http_options: {
|
25
|
-
read_timeout:
|
26
|
-
write_timeout:
|
28
|
+
read_timeout: READ_TIMEOUT,
|
29
|
+
write_timeout: WRITE_TIMEOUT
|
27
30
|
}.tap do |options|
|
28
31
|
options.merge!(schema_path: schema_path) unless @no_schema
|
29
32
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecoportal-api-graphql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oscar Segura
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -316,7 +316,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
316
316
|
- !ruby/object:Gem::Version
|
317
317
|
version: '0'
|
318
318
|
requirements: []
|
319
|
-
rubygems_version: 3.
|
319
|
+
rubygems_version: 3.4.12
|
320
320
|
signing_key:
|
321
321
|
specification_version: 4
|
322
322
|
summary: A collection of helpers for interacting with the ecoPortal GraphQL API
|