ultracart_api 3.10.148 → 3.10.149

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: 1d1eb0c8c83400d77f4a7f01718e31ff6e776f2e57e1914bd04789183c57e935
4
- data.tar.gz: b61db86b39e3027cb44ce0d145c9cc1234899143d45c5a4935ef57b487aa350a
3
+ metadata.gz: 85a4495dc9ad8be7ae12cd825bc21bea52e2862fec291d4b42c6b20e88681e8a
4
+ data.tar.gz: 8226bef6ee71ce5bc66f7f5bc4c504ce745c70057e5799cad2062d54935cb431
5
5
  SHA512:
6
- metadata.gz: 708709e445e28c8d9127ba8fdb6f9bb6ab5ce40cb37f29a793d5b221b78dedc8c1d4794284a4fab39e2e11db17f9a5682725ff2636059e2af2d2f724f5cd8db5
7
- data.tar.gz: 35a6774ace551efee6778c710d4870791ae41ff427ef8063d39f8670a80ce8ba9f334512a61795534b7cc508b1d6925c36d848830be7273162d35fa844b1f1d7
6
+ metadata.gz: 210f9e72a2059179ca10f6e38b94a7b2bf7238ac5896efc651e274059a68067becff27aa22b4023fdfbbd63e7a592217b8c6113fa82b634c222418166159a25b
7
+ data.tar.gz: 575e251dc05017efb300ffc4fe4faabab08de88d3f49a27f010b41bdfa1d1fc8803251046ace49b91a09af7b947b66edfa5594322c7d3a601569aef9b6f24f6e
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.148
10
+ - Package version: 3.10.149
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.148.gem
27
+ gem install ./ultracart_api-3.10.149.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.148.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.149.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.148'
35
+ gem 'ultracart_api', '~> 3.10.149'
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.149 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
1360
1361
  | 3.10.148 | 07/03/2023 | chart constant for dw report tool |
1361
1362
  | 3.10.147 | 06/23/2023 | gauge constant for page visualization library |
1362
1363
  | 3.10.146 | 06/20/2023 | auto order - establishAutoOrderByReferenceOrderId method added |
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  **channel_partner_oid** | **Integer** | Channel partner object id | [optional]
7
7
  **code** | **String** | Code associated with the channel partner | [optional]
8
8
  **communication_method** | **String** | Communication method of the channel partner | [optional]
9
+ **dont_hold_shipment** | **BOOLEAN** | True if shipments should immediately process for this channel partner. | [optional]
9
10
  **inactive** | **BOOLEAN** | True if the channel partner is inactive | [optional]
10
11
  **merchant_id** | **String** | Merchant ID of the channel partner | [optional]
11
12
  **name** | **String** | Name of the channel partner | [optional]
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **data_source_uuid** | **String** | A unique identifier assigned to the data source. | [optional]
6
7
  **name** | **String** | | [optional]
7
8
  **partition_date_column** | **String** | | [optional]
8
9
  **partition_date_safety_days** | **Integer** | | [optional]
@@ -23,6 +23,9 @@ module UltracartClient
23
23
  # Communication method of the channel partner
24
24
  attr_accessor :communication_method
25
25
 
26
+ # True if shipments should immediately process for this channel partner.
27
+ attr_accessor :dont_hold_shipment
28
+
26
29
  # True if the channel partner is inactive
27
30
  attr_accessor :inactive
28
31
 
@@ -41,6 +44,7 @@ module UltracartClient
41
44
  :'channel_partner_oid' => :'channel_partner_oid',
42
45
  :'code' => :'code',
43
46
  :'communication_method' => :'communication_method',
47
+ :'dont_hold_shipment' => :'dont_hold_shipment',
44
48
  :'inactive' => :'inactive',
45
49
  :'merchant_id' => :'merchant_id',
46
50
  :'name' => :'name',
@@ -54,6 +58,7 @@ module UltracartClient
54
58
  :'channel_partner_oid' => :'Integer',
55
59
  :'code' => :'String',
56
60
  :'communication_method' => :'String',
61
+ :'dont_hold_shipment' => :'BOOLEAN',
57
62
  :'inactive' => :'BOOLEAN',
58
63
  :'merchant_id' => :'String',
59
64
  :'name' => :'String',
@@ -81,6 +86,10 @@ module UltracartClient
81
86
  self.communication_method = attributes[:'communication_method']
82
87
  end
83
88
 
89
+ if attributes.has_key?(:'dont_hold_shipment')
90
+ self.dont_hold_shipment = attributes[:'dont_hold_shipment']
91
+ end
92
+
84
93
  if attributes.has_key?(:'inactive')
85
94
  self.inactive = attributes[:'inactive']
86
95
  end
@@ -119,6 +128,7 @@ module UltracartClient
119
128
  channel_partner_oid == o.channel_partner_oid &&
120
129
  code == o.code &&
121
130
  communication_method == o.communication_method &&
131
+ dont_hold_shipment == o.dont_hold_shipment &&
122
132
  inactive == o.inactive &&
123
133
  merchant_id == o.merchant_id &&
124
134
  name == o.name &&
@@ -134,7 +144,7 @@ module UltracartClient
134
144
  # Calculates hash code according to all attributes.
135
145
  # @return [Fixnum] Hash code
136
146
  def hash
137
- [channel_partner_oid, code, communication_method, inactive, merchant_id, name, skip_customer_emails].hash
147
+ [channel_partner_oid, code, communication_method, dont_hold_shipment, inactive, merchant_id, name, skip_customer_emails].hash
138
148
  end
139
149
 
140
150
  # Builds the object from hash
@@ -14,6 +14,9 @@ require 'date'
14
14
 
15
15
  module UltracartClient
16
16
  class ReportDataSource
17
+ # A unique identifier assigned to the data source.
18
+ attr_accessor :data_source_uuid
19
+
17
20
  attr_accessor :name
18
21
 
19
22
  attr_accessor :partition_date_column
@@ -30,6 +33,7 @@ module UltracartClient
30
33
  # Attribute mapping from ruby-style variable name to JSON key.
31
34
  def self.attribute_map
32
35
  {
36
+ :'data_source_uuid' => :'data_source_uuid',
33
37
  :'name' => :'name',
34
38
  :'partition_date_column' => :'partition_date_column',
35
39
  :'partition_date_safety_days' => :'partition_date_safety_days',
@@ -42,6 +46,7 @@ module UltracartClient
42
46
  # Attribute type mapping.
43
47
  def self.swagger_types
44
48
  {
49
+ :'data_source_uuid' => :'String',
45
50
  :'name' => :'String',
46
51
  :'partition_date_column' => :'String',
47
52
  :'partition_date_safety_days' => :'Integer',
@@ -59,6 +64,10 @@ module UltracartClient
59
64
  # convert string to symbol for hash key
60
65
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
61
66
 
67
+ if attributes.has_key?(:'data_source_uuid')
68
+ self.data_source_uuid = attributes[:'data_source_uuid']
69
+ end
70
+
62
71
  if attributes.has_key?(:'name')
63
72
  self.name = attributes[:'name']
64
73
  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
+ data_source_uuid == o.data_source_uuid &&
107
117
  name == o.name &&
108
118
  partition_date_column == o.partition_date_column &&
109
119
  partition_date_safety_days == o.partition_date_safety_days &&
@@ -121,7 +131,7 @@ module UltracartClient
121
131
  # Calculates hash code according to all attributes.
122
132
  # @return [Fixnum] Hash code
123
133
  def hash
124
- [name, partition_date_column, partition_date_safety_days, partition_date_strategy, schema, sql].hash
134
+ [data_source_uuid, name, partition_date_column, partition_date_safety_days, partition_date_strategy, schema, sql].hash
125
135
  end
126
136
 
127
137
  # 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.148'
14
+ VERSION = '3.10.149'
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.148
4
+ version: 3.10.149
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-03 00:00:00.000000000 Z
11
+ date: 2023-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus