ultracart_api 3.10.149 → 3.10.150

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: 85a4495dc9ad8be7ae12cd825bc21bea52e2862fec291d4b42c6b20e88681e8a
4
- data.tar.gz: 8226bef6ee71ce5bc66f7f5bc4c504ce745c70057e5799cad2062d54935cb431
3
+ metadata.gz: 3d607509caeb52eec0b65fa8528dc4d07ba44165fc87bd532d330abe16f84de8
4
+ data.tar.gz: c11fa64514f974c3e77a2dc81ac12a4022fdef93f59e601d3c3673c419878322
5
5
  SHA512:
6
- metadata.gz: 210f9e72a2059179ca10f6e38b94a7b2bf7238ac5896efc651e274059a68067becff27aa22b4023fdfbbd63e7a592217b8c6113fa82b634c222418166159a25b
7
- data.tar.gz: 575e251dc05017efb300ffc4fe4faabab08de88d3f49a27f010b41bdfa1d1fc8803251046ace49b91a09af7b947b66edfa5594322c7d3a601569aef9b6f24f6e
6
+ metadata.gz: 1c55121fb40d0e41ff8a22cd358080cb37764d30259e1946348ef3c41c2ff15413f4caea186013b3c25cce878485cfb8337ce12de25820c2830db925bca70e32
7
+ data.tar.gz: e4c68abc4fd6bd2966dc1e41cf4b59ad0845dbf906370bdaabb29d713980b480008856bfe702bcc1080dae22b5a144ed7a48c027313dcdad09f7aa4569bbc571
data/README.md CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
7
7
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
8
8
 
9
9
  - API version: 2.0.0
10
- - Package version: 3.10.149
10
+ - Package version: 3.10.150
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
13
13
 
@@ -24,15 +24,15 @@ gem build ultracart_api.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./ultracart_api-3.10.149.gem
27
+ gem install ./ultracart_api-3.10.150.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.149.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.150.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'ultracart_api', '~> 3.10.149'
35
+ gem 'ultracart_api', '~> 3.10.150'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1357,6 +1357,7 @@ Not every change is committed to every SDK.
1357
1357
 
1358
1358
  | Version | Date | Comments |
1359
1359
  | --: | :-: | --- |
1360
+ | 3.10.150 | 07/19/2023 | dw bi - add data_source_uuid to page visualization obj |
1360
1361
  | 3.10.149 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
1361
1362
  | 3.10.148 | 07/03/2023 | chart constant for dw report tool |
1362
1363
  | 3.10.147 | 06/23/2023 | gauge constant for page visualization library |
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **config** | **String** | A JSON representation of the configuration for this visualization | [optional]
7
7
  **data_source_name** | **String** | | [optional]
8
+ **data_source_uuid** | **String** | A unique identifier assigned to the data source. | [optional]
8
9
  **dimensions** | [**Array<ReportPageVisualizationDimension>**](ReportPageVisualizationDimension.md) | | [optional]
9
10
  **metrics** | [**Array<ReportPageVisualizationMetric>**](ReportPageVisualizationMetric.md) | | [optional]
10
11
  **name** | **String** | | [optional]
@@ -19,6 +19,9 @@ module UltracartClient
19
19
 
20
20
  attr_accessor :data_source_name
21
21
 
22
+ # A unique identifier assigned to the data source.
23
+ attr_accessor :data_source_uuid
24
+
22
25
  attr_accessor :dimensions
23
26
 
24
27
  attr_accessor :metrics
@@ -64,6 +67,7 @@ module UltracartClient
64
67
  {
65
68
  :'config' => :'config',
66
69
  :'data_source_name' => :'data_source_name',
70
+ :'data_source_uuid' => :'data_source_uuid',
67
71
  :'dimensions' => :'dimensions',
68
72
  :'metrics' => :'metrics',
69
73
  :'name' => :'name',
@@ -79,6 +83,7 @@ module UltracartClient
79
83
  {
80
84
  :'config' => :'String',
81
85
  :'data_source_name' => :'String',
86
+ :'data_source_uuid' => :'String',
82
87
  :'dimensions' => :'Array<ReportPageVisualizationDimension>',
83
88
  :'metrics' => :'Array<ReportPageVisualizationMetric>',
84
89
  :'name' => :'String',
@@ -105,6 +110,10 @@ module UltracartClient
105
110
  self.data_source_name = attributes[:'data_source_name']
106
111
  end
107
112
 
113
+ if attributes.has_key?(:'data_source_uuid')
114
+ self.data_source_uuid = attributes[:'data_source_uuid']
115
+ end
116
+
108
117
  if attributes.has_key?(:'dimensions')
109
118
  if (value = attributes[:'dimensions']).is_a?(Array)
110
119
  self.dimensions = value
@@ -170,6 +179,7 @@ module UltracartClient
170
179
  self.class == o.class &&
171
180
  config == o.config &&
172
181
  data_source_name == o.data_source_name &&
182
+ data_source_uuid == o.data_source_uuid &&
173
183
  dimensions == o.dimensions &&
174
184
  metrics == o.metrics &&
175
185
  name == o.name &&
@@ -188,7 +198,7 @@ module UltracartClient
188
198
  # Calculates hash code according to all attributes.
189
199
  # @return [Fixnum] Hash code
190
200
  def hash
191
- [config, data_source_name, dimensions, metrics, name, show_comparison, styles, type, visualization_uuid].hash
201
+ [config, data_source_name, data_source_uuid, dimensions, metrics, name, show_comparison, styles, type, visualization_uuid].hash
192
202
  end
193
203
 
194
204
  # Builds the object from hash
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.149'
14
+ VERSION = '3.10.150'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.149
4
+ version: 3.10.150
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart