wolf_core 1.0.81 → 1.0.82
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5665a38040d9f69d16b0a6ddfa152218e1ca037f2473297d054dc351b7cf58d
|
4
|
+
data.tar.gz: 8a44a545ca63536ef7f8bf23746e0a7be53da7c74755eeb91041eb63a44d27ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c67e2021f8eeb33f71f086059b71356dfa0e3807a06ea79663deb6131aaa995ecf016f4e7ed317a9c1814e4d5d0368a666c4fd5725413c5dc1ef65f6ff9bb38e
|
7
|
+
data.tar.gz: 159ec35b46e1caeafbd1217f8df1231aaf516bcaed819d3b8c5e0d89979bbe30cc13d625bc15ce4787e52210aaeb6164856da6832d194b162af01e25516917c8
|
@@ -13,7 +13,7 @@ module WolfCore
|
|
13
13
|
query: query
|
14
14
|
)
|
15
15
|
validate_http_response(response: response, message: error_message, error_data: error_data)
|
16
|
-
response.body.dig("data", "table", "
|
16
|
+
response.body.dig("data", "table", "custom_responses")
|
17
17
|
end
|
18
18
|
|
19
19
|
def fetch_custom_values(wolf_token:, tenant:, wolf_platform_url:, query: nil)
|
@@ -35,7 +35,7 @@ module WolfCore
|
|
35
35
|
query: query
|
36
36
|
)
|
37
37
|
validate_http_response(response: response, message: error_message, error_data: error_data)
|
38
|
-
response.body.dig("data", "table", "
|
38
|
+
response.body.dig("data", "table", "custom_responses")
|
39
39
|
end
|
40
40
|
|
41
41
|
def fetch_custom_value(wolf_token:, custom_value_id:, tenant:, wolf_platform_url:, query: nil)
|
@@ -105,7 +105,7 @@ module WolfCore
|
|
105
105
|
query: query
|
106
106
|
)
|
107
107
|
validate_http_response(response: response, message: error_message, error_data: error_data)
|
108
|
-
custom_values = response.body.dig("data", "table", "
|
108
|
+
custom_values = response.body.dig("data", "table", "custom_responses")
|
109
109
|
|
110
110
|
response = if custom_values&.any?
|
111
111
|
operation_type = :update
|
@@ -145,7 +145,7 @@ module WolfCore
|
|
145
145
|
|
146
146
|
return response unless response_success?(response)
|
147
147
|
|
148
|
-
custom_values = response.body.dig("data", "table", "
|
148
|
+
custom_values = response.body.dig("data", "table", "custom_responses")
|
149
149
|
|
150
150
|
response = if custom_values&.any?
|
151
151
|
operation_type = :update
|
data/lib/wolf_core/version.rb
CHANGED