ultracart_api 3.10.149 → 3.10.151

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: 85a4495dc9ad8be7ae12cd825bc21bea52e2862fec291d4b42c6b20e88681e8a
4
- data.tar.gz: 8226bef6ee71ce5bc66f7f5bc4c504ce745c70057e5799cad2062d54935cb431
3
+ metadata.gz: 6ceda11a60a4f34f508284e4363a89a1b7c732baacbc392d766bc404e6ddbda2
4
+ data.tar.gz: 6b1455f3264099735c96c44462da0bec407a86b38c6f0bf38dba97bd81c691b7
5
5
  SHA512:
6
- metadata.gz: 210f9e72a2059179ca10f6e38b94a7b2bf7238ac5896efc651e274059a68067becff27aa22b4023fdfbbd63e7a592217b8c6113fa82b634c222418166159a25b
7
- data.tar.gz: 575e251dc05017efb300ffc4fe4faabab08de88d3f49a27f010b41bdfa1d1fc8803251046ace49b91a09af7b947b66edfa5594322c7d3a601569aef9b6f24f6e
6
+ metadata.gz: bfc28e0b598f8c72555f4e95ccc5e27bc2860856e9bb578944a8949b6f17291ce144180aa0e34bbc5f24df60d8d55a2f448887faa1e9e2d2edc38ec0b36d7fe3
7
+ data.tar.gz: ad6a9406f4c0e0643c5e01fc914149d1ae46f0bd79feb89a19ca28e6f1f803f821d6163a85b0e6054d16acc8fb1d81098f066e3d188b3d9bc6d4824ec95344e5
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.151
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.151.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.151.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.151'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1357,6 +1357,8 @@ Not every change is committed to every SDK.
1357
1357
 
1358
1358
  | Version | Date | Comments |
1359
1359
  | --: | :-: | --- |
1360
+ | 3.10.151 | 07/19/2023 | dw bi - add data_source_uuid to filter connection obj |
1361
+ | 3.10.150 | 07/19/2023 | dw bi - add data_source_uuid to page visualization obj |
1360
1362
  | 3.10.149 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
1361
1363
  | 3.10.148 | 07/03/2023 | chart constant for dw report tool |
1362
1364
  | 3.10.147 | 06/23/2023 | gauge constant for page visualization library |
@@ -5,5 +5,6 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **column** | **String** | | [optional]
7
7
  **data_source_name** | **String** | | [optional]
8
+ **data_source_uuid** | **String** | A unique identifier assigned to the data source. | [optional]
8
9
 
9
10
 
@@ -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]
@@ -18,11 +18,15 @@ module UltracartClient
18
18
 
19
19
  attr_accessor :data_source_name
20
20
 
21
+ # A unique identifier assigned to the data source.
22
+ attr_accessor :data_source_uuid
23
+
21
24
  # Attribute mapping from ruby-style variable name to JSON key.
22
25
  def self.attribute_map
23
26
  {
24
27
  :'column' => :'column',
25
- :'data_source_name' => :'data_source_name'
28
+ :'data_source_name' => :'data_source_name',
29
+ :'data_source_uuid' => :'data_source_uuid'
26
30
  }
27
31
  end
28
32
 
@@ -30,7 +34,8 @@ module UltracartClient
30
34
  def self.swagger_types
31
35
  {
32
36
  :'column' => :'String',
33
- :'data_source_name' => :'String'
37
+ :'data_source_name' => :'String',
38
+ :'data_source_uuid' => :'String'
34
39
  }
35
40
  end
36
41
 
@@ -49,6 +54,10 @@ module UltracartClient
49
54
  if attributes.has_key?(:'data_source_name')
50
55
  self.data_source_name = attributes[:'data_source_name']
51
56
  end
57
+
58
+ if attributes.has_key?(:'data_source_uuid')
59
+ self.data_source_uuid = attributes[:'data_source_uuid']
60
+ end
52
61
  end
53
62
 
54
63
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -70,7 +79,8 @@ module UltracartClient
70
79
  return true if self.equal?(o)
71
80
  self.class == o.class &&
72
81
  column == o.column &&
73
- data_source_name == o.data_source_name
82
+ data_source_name == o.data_source_name &&
83
+ data_source_uuid == o.data_source_uuid
74
84
  end
75
85
 
76
86
  # @see the `==` method
@@ -82,7 +92,7 @@ module UltracartClient
82
92
  # Calculates hash code according to all attributes.
83
93
  # @return [Fixnum] Hash code
84
94
  def hash
85
- [column, data_source_name].hash
95
+ [column, data_source_name, data_source_uuid].hash
86
96
  end
87
97
 
88
98
  # Builds the object from hash
@@ -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.151'
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.151
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart