ultracart_api 4.0.166 → 4.0.167
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/README.md +5 -4
- data/docs/ReportPageVisualization.md +2 -0
- data/lib/ultracart_api/models/report_page_visualization.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 645322b56ebb26c917d1f5967c27fdd4b277283ab7e06b219acb4998cb98061f
|
|
4
|
+
data.tar.gz: fb04757fe71129859268697fff664eca7303028fd302e606deefc0fa41afd08c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3c04428f53dd5eac5b4fe4f301b6737506b73fcf8a76eee64a721f408baf6a78ab11a4d1ee00df1bf123dc4e88fdbf8049a0985a3b6e73b6b3ed13a2191522d
|
|
7
|
+
data.tar.gz: 866c69f62b230ba8c7ba6d525afc3c6f14d47feae61f967785e9878f13afa8b1dc87bb4e5e098efcfb2476aa5ee7a84f62936be852b219faae43f7b084627ef3
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0.0
|
|
10
|
-
- Package version: 4.0.
|
|
10
|
+
- Package version: 4.0.167
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
|
|
13
13
|
|
|
@@ -24,16 +24,16 @@ gem build ultracart_api.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./ultracart_api-4.0.
|
|
27
|
+
gem install ./ultracart_api-4.0.167.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./ultracart_api-4.0.
|
|
30
|
+
(for development, run `gem install --dev ./ultracart_api-4.0.167.gem` to install the development dependencies)
|
|
31
31
|
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
33
33
|
|
|
34
34
|
Finally add this to the Gemfile:
|
|
35
35
|
|
|
36
|
-
gem 'ultracart_api', '~> 4.0.
|
|
36
|
+
gem 'ultracart_api', '~> 4.0.167'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -1365,6 +1365,7 @@ Not every change is committed to every SDK.
|
|
|
1365
1365
|
|
|
1366
1366
|
| Version | Date | Comments |
|
|
1367
1367
|
| --: | :-: | --- |
|
|
1368
|
+
| 4.0.167 | 07/19/2023 | dw bi - add data_source_uuid to page visualization obj |
|
|
1368
1369
|
| 4.0.166 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
|
|
1369
1370
|
| 4.0.165 | 07/03/2023 | chart constant for dw report tool |
|
|
1370
1371
|
| 4.0.164 | 06/23/2023 | gauge constant for page visualization library |
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **config** | **String** | A JSON representation of the configuration for this visualization | [optional] |
|
|
8
8
|
| **data_source_name** | **String** | | [optional] |
|
|
9
|
+
| **data_source_uuid** | **String** | A unique identifier assigned to the data source. | [optional] |
|
|
9
10
|
| **dimensions** | [**Array<ReportPageVisualizationDimension>**](ReportPageVisualizationDimension.md) | | [optional] |
|
|
10
11
|
| **metrics** | [**Array<ReportPageVisualizationMetric>**](ReportPageVisualizationMetric.md) | | [optional] |
|
|
11
12
|
| **name** | **String** | | [optional] |
|
|
@@ -22,6 +23,7 @@ require 'ultracart_api'
|
|
|
22
23
|
instance = UltracartClient::ReportPageVisualization.new(
|
|
23
24
|
config: null,
|
|
24
25
|
data_source_name: null,
|
|
26
|
+
data_source_uuid: null,
|
|
25
27
|
dimensions: null,
|
|
26
28
|
metrics: null,
|
|
27
29
|
name: null,
|
|
@@ -20,6 +20,9 @@ module UltracartClient
|
|
|
20
20
|
|
|
21
21
|
attr_accessor :data_source_name
|
|
22
22
|
|
|
23
|
+
# A unique identifier assigned to the data source.
|
|
24
|
+
attr_accessor :data_source_uuid
|
|
25
|
+
|
|
23
26
|
attr_accessor :dimensions
|
|
24
27
|
|
|
25
28
|
attr_accessor :metrics
|
|
@@ -65,6 +68,7 @@ module UltracartClient
|
|
|
65
68
|
{
|
|
66
69
|
:'config' => :'config',
|
|
67
70
|
:'data_source_name' => :'data_source_name',
|
|
71
|
+
:'data_source_uuid' => :'data_source_uuid',
|
|
68
72
|
:'dimensions' => :'dimensions',
|
|
69
73
|
:'metrics' => :'metrics',
|
|
70
74
|
:'name' => :'name',
|
|
@@ -85,6 +89,7 @@ module UltracartClient
|
|
|
85
89
|
{
|
|
86
90
|
:'config' => :'String',
|
|
87
91
|
:'data_source_name' => :'String',
|
|
92
|
+
:'data_source_uuid' => :'String',
|
|
88
93
|
:'dimensions' => :'Array<ReportPageVisualizationDimension>',
|
|
89
94
|
:'metrics' => :'Array<ReportPageVisualizationMetric>',
|
|
90
95
|
:'name' => :'String',
|
|
@@ -124,6 +129,10 @@ module UltracartClient
|
|
|
124
129
|
self.data_source_name = attributes[:'data_source_name']
|
|
125
130
|
end
|
|
126
131
|
|
|
132
|
+
if attributes.key?(:'data_source_uuid')
|
|
133
|
+
self.data_source_uuid = attributes[:'data_source_uuid']
|
|
134
|
+
end
|
|
135
|
+
|
|
127
136
|
if attributes.key?(:'dimensions')
|
|
128
137
|
if (value = attributes[:'dimensions']).is_a?(Array)
|
|
129
138
|
self.dimensions = value
|
|
@@ -189,6 +198,7 @@ module UltracartClient
|
|
|
189
198
|
self.class == o.class &&
|
|
190
199
|
config == o.config &&
|
|
191
200
|
data_source_name == o.data_source_name &&
|
|
201
|
+
data_source_uuid == o.data_source_uuid &&
|
|
192
202
|
dimensions == o.dimensions &&
|
|
193
203
|
metrics == o.metrics &&
|
|
194
204
|
name == o.name &&
|
|
@@ -207,7 +217,7 @@ module UltracartClient
|
|
|
207
217
|
# Calculates hash code according to all attributes.
|
|
208
218
|
# @return [Integer] Hash code
|
|
209
219
|
def hash
|
|
210
|
-
[config, data_source_name, dimensions, metrics, name, show_comparison, styles, type, visualization_uuid].hash
|
|
220
|
+
[config, data_source_name, data_source_uuid, dimensions, metrics, name, show_comparison, styles, type, visualization_uuid].hash
|
|
211
221
|
end
|
|
212
222
|
|
|
213
223
|
# Builds the object from hash
|