wolf_core 1.0.14 → 1.0.15
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02f382dfda0bedb49f159991bab1f97576dcb64e33e365675d79b9b56bd2f26d
|
4
|
+
data.tar.gz: 8892e476190ab52b3cbd32875f2337711638d2179d4e498e65da0f2517562208
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da58c403c6326fb283c17461e19b785bfd4c2fb21fa2394026d494d47f0e7b944bbb277cbd401954cca5d4c8b8a9c9668ab7f5664b1a133709f59b7b8e03ca13
|
7
|
+
data.tar.gz: ce5efec5d2116d5f77a0730c514349385df720c1babcaa313edc196416e6f2f8b440fa3eec52e56901a111cfba822fc359fb325c85e61a7bd08747e24da41ddd
|
@@ -11,7 +11,7 @@ module WolfCore
|
|
11
11
|
error_message: error_message
|
12
12
|
)
|
13
13
|
response_body = response.body
|
14
|
-
response_body.dig("data", "table", "
|
14
|
+
response_body.dig("data", "table", "companies")
|
15
15
|
end
|
16
16
|
|
17
17
|
def fetch_client(wolf_token:, client_id:, tenant:, wolf_platform_url:)
|
@@ -23,7 +23,7 @@ module WolfCore
|
|
23
23
|
response_body = response.body
|
24
24
|
return unless response_body.instance_of?(Hash)
|
25
25
|
|
26
|
-
response_body.dig("data", "table", "
|
26
|
+
response_body.dig("data", "table", "companies")
|
27
27
|
end
|
28
28
|
|
29
29
|
def create_client!(wolf_token:, client:, tenant:, wolf_platform_url:, error_message:)
|
data/lib/wolf_core/version.rb
CHANGED