stigg-api-client 0.1.1 → 0.3.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/Gemfile +2 -0
- data/Gemfile.lock +9 -7
- data/README.md +2 -5
- data/lib/stigg/generated/operations.rb +900 -253
- data/lib/stigg/version.rb +1 -1
- data/project.json +21 -1
- data/schema.json +26881 -17277
- data/scripts/generate-operations.mjs +1 -1
- data/scripts/generate.sh +4 -1
- data/scripts/publish.sh +7 -0
- data/stigg-api-client.gemspec +30 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d1d05cb491e5fbc8302149a9d694cd4dd6cb8ce1d98ab0e2f64ec932308ecc3
|
4
|
+
data.tar.gz: 8e71bdf8e5b4a0223f89bde227b38b3775f67eb82bb20a7cfee4c6069ef9c7c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 712f2d419658e57b3224c90e6334df8a9b22ae89d498383fa14f1abf99b266b3da7d218c7f5cd7a53391bbedf6823bc0e2bb1a82c20ef3d426cb93d89b4d7533
|
7
|
+
data.tar.gz: a8b50713a93f2fac5267c017534de63975c4ae60ed0b5a2d95ab00784ece8f1b96039006f64fe967e0d3b407032d4afc98149c78c09dea899dc689a2d3f2f5f3
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,35 +1,36 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
stigg-api-client (0.
|
4
|
+
stigg-api-client (0.3.0)
|
5
5
|
graphlient (~> 0.7.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activesupport (7.0.4)
|
10
|
+
activesupport (7.0.4.3)
|
11
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
12
|
i18n (>= 1.6, < 2)
|
13
13
|
minitest (>= 5.1)
|
14
14
|
tzinfo (~> 2.0)
|
15
15
|
ast (2.4.2)
|
16
|
-
|
16
|
+
bump (0.10.0)
|
17
|
+
concurrent-ruby (1.2.2)
|
17
18
|
diff-lcs (1.5.0)
|
18
|
-
faraday (2.
|
19
|
+
faraday (2.7.4)
|
19
20
|
faraday-net_http (>= 2.0, < 3.1)
|
20
21
|
ruby2_keywords (>= 0.0.4)
|
21
22
|
faraday-net_http (3.0.2)
|
22
23
|
graphlient (0.7.0)
|
23
24
|
faraday (~> 2.0)
|
24
25
|
graphql-client
|
25
|
-
graphql (2.0.
|
26
|
+
graphql (2.0.20)
|
26
27
|
graphql-client (0.18.0)
|
27
28
|
activesupport (>= 3.0)
|
28
29
|
graphql
|
29
30
|
i18n (1.12.0)
|
30
31
|
concurrent-ruby (~> 1.0)
|
31
32
|
json (2.6.2)
|
32
|
-
minitest (5.
|
33
|
+
minitest (5.18.0)
|
33
34
|
parallel (1.22.1)
|
34
35
|
parser (3.1.2.1)
|
35
36
|
ast (~> 2.4.1)
|
@@ -64,7 +65,7 @@ GEM
|
|
64
65
|
parser (>= 3.1.1.0)
|
65
66
|
ruby-progressbar (1.11.0)
|
66
67
|
ruby2_keywords (0.0.5)
|
67
|
-
tzinfo (2.0.
|
68
|
+
tzinfo (2.0.6)
|
68
69
|
concurrent-ruby (~> 1.0)
|
69
70
|
unicode-display_width (2.3.0)
|
70
71
|
|
@@ -72,6 +73,7 @@ PLATFORMS
|
|
72
73
|
x86_64-darwin-21
|
73
74
|
|
74
75
|
DEPENDENCIES
|
76
|
+
bump (~> 0.10)
|
75
77
|
rake (~> 13.0)
|
76
78
|
rspec (~> 3.0)
|
77
79
|
rubocop (~> 1.21)
|
data/README.md
CHANGED
@@ -1,10 +1,7 @@
|
|
1
1
|
# Stigg::Client
|
2
2
|
|
3
|
-
This
|
4
|
-
|
5
|
-
|
6
|
-
It leverages the [graphlient](https://github.com/ashkan18/graphlient) library, and utilizes the `Graphlient::Client` class to send the API requests.
|
7
|
-
|
3
|
+
This Ruby gem provides a wrapper to [Stigg's GraphQL API](https://docs.stigg.io/docs/graphql-api) based on the operations that are in use by the [Stigg's Node.js SDK](https://docs.stigg.io/docs/nodejs-sdk).
|
4
|
+
It leverages the [graphlient](https://github.com/ashkan18/graphlient) library under the hood, and utilizes the `Graphlient::Client` class to execute the API requests.
|
8
5
|
|
9
6
|
## Documentation
|
10
7
|
|