ultracart_api 3.10.133 → 3.10.134

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: d39201fc7f2913fe9721722f07e3d762fe14209418f986d4e743dc6b59649f9d
4
- data.tar.gz: 3b209dcfde855408c9a338e6c06794e70f4f1aa693efcf8e7ef00a7b28592639
3
+ metadata.gz: e197ea23faea74dc76c28646b8643c6948f14ea8f4f0841a79b8410a53c6dd2f
4
+ data.tar.gz: 1face129bd7a43c57b8bd2c66c00383e6f008f31a44e459b102d3b575aa063c4
5
5
  SHA512:
6
- metadata.gz: 64b81a9a1a3f1e29b5570ab06e156a92a0cc88e115108d97ce8a43e7763db194f5620183f584b93520220a74f100a0c8926a8b04805937251cfd185bf71a2f21
7
- data.tar.gz: b6102f5cdcfca1e32f10a9eef7b91b49a841855ffa40d6df792a565009c305cf25727387cee1d5ce00a81b01add7a93d896c8b81698e497dc9ea7c9583882170
6
+ metadata.gz: 7273d174e7482e15d3881f6891e9c73672476248d80af632b86ed9f8e05bed57c54e0ad7923aeb34f985f22ad05c5b9048f7c0ec4a28f6786d617ceb389899d4
7
+ data.tar.gz: cda51d160c0bd6815b8c3cbc09348cb00abda9ea754892a6874ecee78f0f446c737df047a04e8379841379fd659e1acdf45c9f55457f5885bd497c60e37aa513
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.133
10
+ - Package version: 3.10.134
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.133.gem
27
+ gem install ./ultracart_api-3.10.134.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.133.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.134.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.133'
35
+ gem 'ultracart_api', '~> 3.10.134'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1345,6 +1345,7 @@ Not every change is committed to every SDK.
1345
1345
 
1346
1346
  | Version | Date | Comments |
1347
1347
  | --: | :-: | --- |
1348
+ | 3.10.134 | 04/24/2023 | internal development - data warehouse |
1348
1349
  | 3.10.133 | 04/21/2023 | internal development - data warehouse |
1349
1350
  | 3.10.132 | 04/19/2023 | internal development - data warehouse |
1350
1351
  | 3.10.131 | 04/19/2023 | internal dev - data warehouse |
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
12
12
  **initial_pages** | [**Array<ReportDataSetPage>**](ReportDataSetPage.md) | Initial pages returned in the dataset | [optional]
13
13
  **max_results** | **Integer** | The total number of results | [optional]
14
14
  **merchant_id** | **String** | Merchant that owns this data set | [optional]
15
- **page_count** | **Integer** | The size of the pages | [optional]
15
+ **page_count** | **Integer** | The total number of pages in the result set | [optional]
16
16
  **page_size** | **Integer** | The size of the pages | [optional]
17
17
  **schema** | [**Array<ReportDataSetSchema>**](ReportDataSetSchema.md) | The schema associated with the data set. | [optional]
18
18
  **security_level** | **String** | Security level this dataset was read from. | [optional]
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **config** | **String** | A JSON representation of the configuration for this visualization | [optional]
6
7
  **name** | **String** | | [optional]
7
8
  **type** | **String** | Type of the column. | [optional]
8
9
 
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **config** | **String** | A JSON representation of the configuration for this visualization | [optional]
6
7
  **dimension** | **BOOLEAN** | Whether or not this column can be used as a dimension within a visualization | [optional]
7
8
  **name** | **String** | | [optional]
8
9
  **type** | **String** | Type of the column. Only supporting the allowed values. Any other types will be ignored. | [optional]
@@ -41,7 +41,7 @@ module UltracartClient
41
41
  # Merchant that owns this data set
42
42
  attr_accessor :merchant_id
43
43
 
44
- # The size of the pages
44
+ # The total number of pages in the result set
45
45
  attr_accessor :page_count
46
46
 
47
47
  # The size of the pages
@@ -14,6 +14,9 @@ require 'date'
14
14
 
15
15
  module UltracartClient
16
16
  class ReportDataSetSchema
17
+ # A JSON representation of the configuration for this visualization
18
+ attr_accessor :config
19
+
17
20
  attr_accessor :name
18
21
 
19
22
  # Type of the column.
@@ -44,6 +47,7 @@ module UltracartClient
44
47
  # Attribute mapping from ruby-style variable name to JSON key.
45
48
  def self.attribute_map
46
49
  {
50
+ :'config' => :'config',
47
51
  :'name' => :'name',
48
52
  :'type' => :'type'
49
53
  }
@@ -52,6 +56,7 @@ module UltracartClient
52
56
  # Attribute type mapping.
53
57
  def self.swagger_types
54
58
  {
59
+ :'config' => :'String',
55
60
  :'name' => :'String',
56
61
  :'type' => :'String'
57
62
  }
@@ -65,6 +70,10 @@ module UltracartClient
65
70
  # convert string to symbol for hash key
66
71
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
67
72
 
73
+ if attributes.has_key?(:'config')
74
+ self.config = attributes[:'config']
75
+ end
76
+
68
77
  if attributes.has_key?(:'name')
69
78
  self.name = attributes[:'name']
70
79
  end
@@ -104,6 +113,7 @@ module UltracartClient
104
113
  def ==(o)
105
114
  return true if self.equal?(o)
106
115
  self.class == o.class &&
116
+ config == o.config &&
107
117
  name == o.name &&
108
118
  type == o.type
109
119
  end
@@ -117,7 +127,7 @@ module UltracartClient
117
127
  # Calculates hash code according to all attributes.
118
128
  # @return [Fixnum] Hash code
119
129
  def hash
120
- [name, type].hash
130
+ [config, name, type].hash
121
131
  end
122
132
 
123
133
  # Builds the object from hash
@@ -14,6 +14,9 @@ require 'date'
14
14
 
15
15
  module UltracartClient
16
16
  class ReportDataSourceSchema
17
+ # A JSON representation of the configuration for this visualization
18
+ attr_accessor :config
19
+
17
20
  # Whether or not this column can be used as a dimension within a visualization
18
21
  attr_accessor :dimension
19
22
 
@@ -47,6 +50,7 @@ module UltracartClient
47
50
  # Attribute mapping from ruby-style variable name to JSON key.
48
51
  def self.attribute_map
49
52
  {
53
+ :'config' => :'config',
50
54
  :'dimension' => :'dimension',
51
55
  :'name' => :'name',
52
56
  :'type' => :'type'
@@ -56,6 +60,7 @@ module UltracartClient
56
60
  # Attribute type mapping.
57
61
  def self.swagger_types
58
62
  {
63
+ :'config' => :'String',
59
64
  :'dimension' => :'BOOLEAN',
60
65
  :'name' => :'String',
61
66
  :'type' => :'String'
@@ -70,6 +75,10 @@ module UltracartClient
70
75
  # convert string to symbol for hash key
71
76
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
72
77
 
78
+ if attributes.has_key?(:'config')
79
+ self.config = attributes[:'config']
80
+ end
81
+
73
82
  if attributes.has_key?(:'dimension')
74
83
  self.dimension = attributes[:'dimension']
75
84
  end
@@ -113,6 +122,7 @@ module UltracartClient
113
122
  def ==(o)
114
123
  return true if self.equal?(o)
115
124
  self.class == o.class &&
125
+ config == o.config &&
116
126
  dimension == o.dimension &&
117
127
  name == o.name &&
118
128
  type == o.type
@@ -127,7 +137,7 @@ module UltracartClient
127
137
  # Calculates hash code according to all attributes.
128
138
  # @return [Fixnum] Hash code
129
139
  def hash
130
- [dimension, name, type].hash
140
+ [config, dimension, name, type].hash
131
141
  end
132
142
 
133
143
  # 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.133'
14
+ VERSION = '3.10.134'
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: 3.10.133
4
+ version: 3.10.134
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-21 00:00:00.000000000 Z
11
+ date: 2023-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus