ultracart_api 4.0.167 → 4.0.168
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/ReportFilterConnection.md +3 -1
- data/lib/ultracart_api/models/report_filter_connection.rb +14 -4
- 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: a2bf956ed9fa645fc6d6c6af51e8300febfae961949cf86a60a7dc996dc3d2ee
|
|
4
|
+
data.tar.gz: a0ba69edf73baa14455bbe380e22c45406c1b36e21b86e0f73f739ded57ce15c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6db4ece352b00ba83bdaa2eaeab33f8e98f29457bc516f6029fc8ca8f39fcd1a041a13db71cd06ed6136d83db73bf798074ed35ac80bd3f2e533f3c5978bc05
|
|
7
|
+
data.tar.gz: 5a58c365f1419caac0cb381b5db3b13d7e5c01b17acd06343e9ffad5dcb65315f4c6a8dd7cc82b6dabf4d0cde994bfec70254c39748b59fbe25662dd8b55d25a
|
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.168
|
|
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.168.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.168.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.168'
|
|
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.168 | 07/19/2023 | dw bi - add data_source_uuid to filter connection obj |
|
|
1368
1369
|
| 4.0.167 | 07/19/2023 | dw bi - add data_source_uuid to page visualization obj |
|
|
1369
1370
|
| 4.0.166 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
|
|
1370
1371
|
| 4.0.165 | 07/03/2023 | chart constant for dw report tool |
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **column** | **String** | | [optional] |
|
|
8
8
|
| **data_source_name** | **String** | | [optional] |
|
|
9
|
+
| **data_source_uuid** | **String** | A unique identifier assigned to the data source. | [optional] |
|
|
9
10
|
|
|
10
11
|
## Example
|
|
11
12
|
|
|
@@ -14,7 +15,8 @@ require 'ultracart_api'
|
|
|
14
15
|
|
|
15
16
|
instance = UltracartClient::ReportFilterConnection.new(
|
|
16
17
|
column: null,
|
|
17
|
-
data_source_name: null
|
|
18
|
+
data_source_name: null,
|
|
19
|
+
data_source_uuid: null
|
|
18
20
|
)
|
|
19
21
|
```
|
|
20
22
|
|
|
@@ -19,11 +19,15 @@ 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
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
23
26
|
def self.attribute_map
|
|
24
27
|
{
|
|
25
28
|
:'column' => :'column',
|
|
26
|
-
:'data_source_name' => :'data_source_name'
|
|
29
|
+
:'data_source_name' => :'data_source_name',
|
|
30
|
+
:'data_source_uuid' => :'data_source_uuid'
|
|
27
31
|
}
|
|
28
32
|
end
|
|
29
33
|
|
|
@@ -36,7 +40,8 @@ module UltracartClient
|
|
|
36
40
|
def self.openapi_types
|
|
37
41
|
{
|
|
38
42
|
:'column' => :'String',
|
|
39
|
-
:'data_source_name' => :'String'
|
|
43
|
+
:'data_source_name' => :'String',
|
|
44
|
+
:'data_source_uuid' => :'String'
|
|
40
45
|
}
|
|
41
46
|
end
|
|
42
47
|
|
|
@@ -68,6 +73,10 @@ module UltracartClient
|
|
|
68
73
|
if attributes.key?(:'data_source_name')
|
|
69
74
|
self.data_source_name = attributes[:'data_source_name']
|
|
70
75
|
end
|
|
76
|
+
|
|
77
|
+
if attributes.key?(:'data_source_uuid')
|
|
78
|
+
self.data_source_uuid = attributes[:'data_source_uuid']
|
|
79
|
+
end
|
|
71
80
|
end
|
|
72
81
|
|
|
73
82
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -89,7 +98,8 @@ module UltracartClient
|
|
|
89
98
|
return true if self.equal?(o)
|
|
90
99
|
self.class == o.class &&
|
|
91
100
|
column == o.column &&
|
|
92
|
-
data_source_name == o.data_source_name
|
|
101
|
+
data_source_name == o.data_source_name &&
|
|
102
|
+
data_source_uuid == o.data_source_uuid
|
|
93
103
|
end
|
|
94
104
|
|
|
95
105
|
# @see the `==` method
|
|
@@ -101,7 +111,7 @@ module UltracartClient
|
|
|
101
111
|
# Calculates hash code according to all attributes.
|
|
102
112
|
# @return [Integer] Hash code
|
|
103
113
|
def hash
|
|
104
|
-
[column, data_source_name].hash
|
|
114
|
+
[column, data_source_name, data_source_uuid].hash
|
|
105
115
|
end
|
|
106
116
|
|
|
107
117
|
# Builds the object from hash
|