ultracart_api 3.10.150 → 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: 3d607509caeb52eec0b65fa8528dc4d07ba44165fc87bd532d330abe16f84de8
4
- data.tar.gz: c11fa64514f974c3e77a2dc81ac12a4022fdef93f59e601d3c3673c419878322
3
+ metadata.gz: 6ceda11a60a4f34f508284e4363a89a1b7c732baacbc392d766bc404e6ddbda2
4
+ data.tar.gz: 6b1455f3264099735c96c44462da0bec407a86b38c6f0bf38dba97bd81c691b7
5
5
  SHA512:
6
- metadata.gz: 1c55121fb40d0e41ff8a22cd358080cb37764d30259e1946348ef3c41c2ff15413f4caea186013b3c25cce878485cfb8337ce12de25820c2830db925bca70e32
7
- data.tar.gz: e4c68abc4fd6bd2966dc1e41cf4b59ad0845dbf906370bdaabb29d713980b480008856bfe702bcc1080dae22b5a144ed7a48c027313dcdad09f7aa4569bbc571
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.150
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.150.gem
27
+ gem install ./ultracart_api-3.10.151.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.150.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.150'
35
+ gem 'ultracart_api', '~> 3.10.151'
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.151 | 07/19/2023 | dw bi - add data_source_uuid to filter connection obj |
1360
1361
  | 3.10.150 | 07/19/2023 | dw bi - add data_source_uuid to page visualization obj |
1361
1362
  | 3.10.149 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
1362
1363
  | 3.10.148 | 07/03/2023 | chart constant for dw report tool |
@@ -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
 
@@ -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
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.150'
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.150
4
+ version: 3.10.151
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart