ultracart_api 4.0.149 → 4.0.150

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: bc5e38856439cb96e1ee12791f82400e36e0854564f37afbe9e567a5e8eeb71c
4
- data.tar.gz: 844946940c6e58818beaeae31fced578ded7afc773492b2af4bcf8628ff3d6a1
3
+ metadata.gz: dd15e88c50b561801ba160b9143a5417cd996cef952b5abd40f7640463be4835
4
+ data.tar.gz: 572237452c72000d9723b4c50f169afd9fb588a6eb78fa6f295fc62ae4511e39
5
5
  SHA512:
6
- metadata.gz: 7626503586ff1a6d6dd7d869879af94683639674a5b7ea6fb8ee88b915e8aac8e8764db7ae6775213154900864dffbef271d77179f098c890f5be06f9473472f
7
- data.tar.gz: 07cfab73e6aff1a39a5912d55764eec82be41d07b4e3d66164303fd7474733a76339840ba2e35d9f556e4f660fd9e0f94fad446c6092150f1de5f156f14d0358
6
+ metadata.gz: a316b801fa4b51b3b0feaa65fd02556151eb0d4438e0c5b4ee19551503824b9510ddffd563b9df05624d56ff512d2a52441904f6876e45256aefada274cad417
7
+ data.tar.gz: 151d1ab14c42185fd75cca296a8e6d9288ec597fb0a12f2483ffbc43289ba3b729568f22eabebaafac2e9a3506cc58343538d57ae07572f0e9b467ef63f3bfbc
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.149
10
+ - Package version: 4.0.150
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.149.gem
27
+ gem install ./ultracart_api-4.0.150.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.149.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.150.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.149'
36
+ gem 'ultracart_api', '~> 4.0.150'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1353,6 +1353,7 @@ Not every change is committed to every SDK.
1353
1353
 
1354
1354
  | Version | Date | Comments |
1355
1355
  | --: | :-: | --- |
1356
+ | 4.0.150 | 04/21/2023 | internal development - data warehouse |
1356
1357
  | 4.0.149 | 04/19/2023 | internal development - data warehouse |
1357
1358
  | 4.0.148 | 04/19/2023 | internal dev - data warehouse |
1358
1359
  | 4.0.147 | 04/17/2023 | OrderPaymentTransaction - expose the transaction id |
@@ -4,7 +4,12 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **name** | **String** | | [optional] |
7
+ | **_in** | **Boolean** | | [optional] |
8
+ | **n** | **String** | | [optional] |
9
+ | **vd** | **String** | | [optional] |
10
+ | **vdt** | **String** | | [optional] |
11
+ | **vn** | **Float** | | [optional] |
12
+ | **vs** | **String** | | [optional] |
8
13
 
9
14
  ## Example
10
15
 
@@ -12,7 +17,12 @@
12
17
  require 'ultracart_api'
13
18
 
14
19
  instance = UltracartClient::ReportDataSetColumn.new(
15
- name: null
20
+ _in: null,
21
+ n: null,
22
+ vd: null,
23
+ vdt: null,
24
+ vn: null,
25
+ vs: null
16
26
  )
17
27
  ```
18
28
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **columns** | [**Array<ReportDataSetColumn>**](ReportDataSetColumn.md) | | [optional] |
7
+ | **c** | [**Array<ReportDataSetColumn>**](ReportDataSetColumn.md) | | [optional] |
8
8
 
9
9
  ## Example
10
10
 
@@ -12,7 +12,7 @@
12
12
  require 'ultracart_api'
13
13
 
14
14
  instance = UltracartClient::ReportDataSetRow.new(
15
- columns: null
15
+ c: null
16
16
  )
17
17
  ```
18
18
 
data/docs/ReportFilter.md CHANGED
@@ -4,10 +4,8 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
- | **config** | **String** | A JSON representation of the configuration for this visualization | [optional] |
8
7
  | **connections** | [**Array<ReportFilterConnection>**](ReportFilterConnection.md) | How this filter connects to the data sources and columns | [optional] |
9
8
  | **name** | **String** | | [optional] |
10
- | **styles** | **String** | A JSON representation of the style configuration for this visualization | [optional] |
11
9
  | **timezone** | **String** | The timezone that the date range is querying on. | [optional] |
12
10
  | **type** | **String** | Type of filter | [optional] |
13
11
  | **uuid** | **String** | Unique UUID assigned to the filter. Assists when returning values that the filter can use. | [optional] |
@@ -19,10 +17,8 @@
19
17
  require 'ultracart_api'
20
18
 
21
19
  instance = UltracartClient::ReportFilter.new(
22
- config: null,
23
20
  connections: null,
24
21
  name: null,
25
- styles: null,
26
22
  timezone: null,
27
23
  type: null,
28
24
  uuid: null,
@@ -15,12 +15,27 @@ require 'time'
15
15
 
16
16
  module UltracartClient
17
17
  class ReportDataSetColumn
18
- attr_accessor :name
18
+ attr_accessor :_in
19
+
20
+ attr_accessor :n
21
+
22
+ attr_accessor :vd
23
+
24
+ attr_accessor :vdt
25
+
26
+ attr_accessor :vn
27
+
28
+ attr_accessor :vs
19
29
 
20
30
  # Attribute mapping from ruby-style variable name to JSON key.
21
31
  def self.attribute_map
22
32
  {
23
- :'name' => :'name'
33
+ :'_in' => :'in',
34
+ :'n' => :'n',
35
+ :'vd' => :'vd',
36
+ :'vdt' => :'vdt',
37
+ :'vn' => :'vn',
38
+ :'vs' => :'vs'
24
39
  }
25
40
  end
26
41
 
@@ -32,7 +47,12 @@ module UltracartClient
32
47
  # Attribute type mapping.
33
48
  def self.openapi_types
34
49
  {
35
- :'name' => :'String'
50
+ :'_in' => :'Boolean',
51
+ :'n' => :'String',
52
+ :'vd' => :'String',
53
+ :'vdt' => :'String',
54
+ :'vn' => :'Float',
55
+ :'vs' => :'String'
36
56
  }
37
57
  end
38
58
 
@@ -57,8 +77,28 @@ module UltracartClient
57
77
  h[k.to_sym] = v
58
78
  }
59
79
 
60
- if attributes.key?(:'name')
61
- self.name = attributes[:'name']
80
+ if attributes.key?(:'_in')
81
+ self._in = attributes[:'_in']
82
+ end
83
+
84
+ if attributes.key?(:'n')
85
+ self.n = attributes[:'n']
86
+ end
87
+
88
+ if attributes.key?(:'vd')
89
+ self.vd = attributes[:'vd']
90
+ end
91
+
92
+ if attributes.key?(:'vdt')
93
+ self.vdt = attributes[:'vdt']
94
+ end
95
+
96
+ if attributes.key?(:'vn')
97
+ self.vn = attributes[:'vn']
98
+ end
99
+
100
+ if attributes.key?(:'vs')
101
+ self.vs = attributes[:'vs']
62
102
  end
63
103
  end
64
104
 
@@ -80,7 +120,12 @@ module UltracartClient
80
120
  def ==(o)
81
121
  return true if self.equal?(o)
82
122
  self.class == o.class &&
83
- name == o.name
123
+ _in == o._in &&
124
+ n == o.n &&
125
+ vd == o.vd &&
126
+ vdt == o.vdt &&
127
+ vn == o.vn &&
128
+ vs == o.vs
84
129
  end
85
130
 
86
131
  # @see the `==` method
@@ -92,7 +137,7 @@ module UltracartClient
92
137
  # Calculates hash code according to all attributes.
93
138
  # @return [Integer] Hash code
94
139
  def hash
95
- [name].hash
140
+ [_in, n, vd, vdt, vn, vs].hash
96
141
  end
97
142
 
98
143
  # Builds the object from hash
@@ -15,12 +15,12 @@ require 'time'
15
15
 
16
16
  module UltracartClient
17
17
  class ReportDataSetRow
18
- attr_accessor :columns
18
+ attr_accessor :c
19
19
 
20
20
  # Attribute mapping from ruby-style variable name to JSON key.
21
21
  def self.attribute_map
22
22
  {
23
- :'columns' => :'columns'
23
+ :'c' => :'c'
24
24
  }
25
25
  end
26
26
 
@@ -32,7 +32,7 @@ module UltracartClient
32
32
  # Attribute type mapping.
33
33
  def self.openapi_types
34
34
  {
35
- :'columns' => :'Array<ReportDataSetColumn>'
35
+ :'c' => :'Array<ReportDataSetColumn>'
36
36
  }
37
37
  end
38
38
 
@@ -57,9 +57,9 @@ module UltracartClient
57
57
  h[k.to_sym] = v
58
58
  }
59
59
 
60
- if attributes.key?(:'columns')
61
- if (value = attributes[:'columns']).is_a?(Array)
62
- self.columns = value
60
+ if attributes.key?(:'c')
61
+ if (value = attributes[:'c']).is_a?(Array)
62
+ self.c = value
63
63
  end
64
64
  end
65
65
  end
@@ -82,7 +82,7 @@ module UltracartClient
82
82
  def ==(o)
83
83
  return true if self.equal?(o)
84
84
  self.class == o.class &&
85
- columns == o.columns
85
+ c == o.c
86
86
  end
87
87
 
88
88
  # @see the `==` method
@@ -94,7 +94,7 @@ module UltracartClient
94
94
  # Calculates hash code according to all attributes.
95
95
  # @return [Integer] Hash code
96
96
  def hash
97
- [columns].hash
97
+ [c].hash
98
98
  end
99
99
 
100
100
  # Builds the object from hash
@@ -15,17 +15,11 @@ require 'time'
15
15
 
16
16
  module UltracartClient
17
17
  class ReportFilter
18
- # A JSON representation of the configuration for this visualization
19
- attr_accessor :config
20
-
21
18
  # How this filter connects to the data sources and columns
22
19
  attr_accessor :connections
23
20
 
24
21
  attr_accessor :name
25
22
 
26
- # A JSON representation of the style configuration for this visualization
27
- attr_accessor :styles
28
-
29
23
  # The timezone that the date range is querying on.
30
24
  attr_accessor :timezone
31
25
 
@@ -63,10 +57,8 @@ module UltracartClient
63
57
  # Attribute mapping from ruby-style variable name to JSON key.
64
58
  def self.attribute_map
65
59
  {
66
- :'config' => :'config',
67
60
  :'connections' => :'connections',
68
61
  :'name' => :'name',
69
- :'styles' => :'styles',
70
62
  :'timezone' => :'timezone',
71
63
  :'type' => :'type',
72
64
  :'uuid' => :'uuid',
@@ -82,10 +74,8 @@ module UltracartClient
82
74
  # Attribute type mapping.
83
75
  def self.openapi_types
84
76
  {
85
- :'config' => :'String',
86
77
  :'connections' => :'Array<ReportFilterConnection>',
87
78
  :'name' => :'String',
88
- :'styles' => :'String',
89
79
  :'timezone' => :'String',
90
80
  :'type' => :'String',
91
81
  :'uuid' => :'String',
@@ -114,10 +104,6 @@ module UltracartClient
114
104
  h[k.to_sym] = v
115
105
  }
116
106
 
117
- if attributes.key?(:'config')
118
- self.config = attributes[:'config']
119
- end
120
-
121
107
  if attributes.key?(:'connections')
122
108
  if (value = attributes[:'connections']).is_a?(Array)
123
109
  self.connections = value
@@ -128,10 +114,6 @@ module UltracartClient
128
114
  self.name = attributes[:'name']
129
115
  end
130
116
 
131
- if attributes.key?(:'styles')
132
- self.styles = attributes[:'styles']
133
- end
134
-
135
117
  if attributes.key?(:'timezone')
136
118
  self.timezone = attributes[:'timezone']
137
119
  end
@@ -181,10 +163,8 @@ module UltracartClient
181
163
  def ==(o)
182
164
  return true if self.equal?(o)
183
165
  self.class == o.class &&
184
- config == o.config &&
185
166
  connections == o.connections &&
186
167
  name == o.name &&
187
- styles == o.styles &&
188
168
  timezone == o.timezone &&
189
169
  type == o.type &&
190
170
  uuid == o.uuid &&
@@ -200,7 +180,7 @@ module UltracartClient
200
180
  # Calculates hash code according to all attributes.
201
181
  # @return [Integer] Hash code
202
182
  def hash
203
- [config, connections, name, styles, timezone, type, uuid, values].hash
183
+ [connections, name, timezone, type, uuid, values].hash
204
184
  end
205
185
 
206
186
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.149'
14
+ VERSION = '4.0.150'
15
15
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.149
4
+ version: 4.0.150
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-19 00:00:00.000000000 Z
11
+ date: 2023-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus