ultracart_api 3.10.91 → 3.10.93
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3161d3b50de816508648f0a548988a1f0e19bd2f484c65b8970d2d3deca6fce7
|
4
|
+
data.tar.gz: a6e49318d0169c038aae5f79f6d6f557d874b650eb5fbe6a214abcd1dfb2d46f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 639161637d8d20430baa413722bcf345df06a72ca7e07ef7b67458942362dc815ae297c9599f9c643bf94aa2831fa25054584800718d2c3fd535e1dd956147d5
|
7
|
+
data.tar.gz: 1fb3e14ac48e7b34a00f92ab55068e894869a7ff538b1650a11c89d2b5d2c781a81d4b4ddbcd6d3225493ef9b646ac08a41a9a4c84a968e7b6eeeac3115a8748
|
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.
|
10
|
+
- Package version: 3.10.93
|
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.
|
27
|
+
gem install ./ultracart_api-3.10.93.gem
|
28
28
|
```
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.10.93.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.
|
35
|
+
gem 'ultracart_api', '~> 3.10.93'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1271,6 +1271,8 @@ Not every change is committed to every SDK.
|
|
1271
1271
|
|
1272
1272
|
| Version | Date | Comments |
|
1273
1273
|
| --: | :-: | --- |
|
1274
|
+
| 3.10.93 | 01/10/2023 | add method to query integration log record by oid |
|
1275
|
+
| 3.10.92 | 01/10/2023 | bug fix for typescript enum error due to apost |
|
1274
1276
|
| 3.10.91 | 01/10/2023 | integration log tracking of associated auto order oids |
|
1275
1277
|
| 3.10.90 | 01/06/2023 | conversation search response object bug fix |
|
1276
1278
|
| 3.10.89 | 01/05/2023 | communications - added maximum_enrolled flag on flow object |
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
9
9
|
**direction** | **String** | | [optional]
|
10
10
|
**email** | **String** | | [optional]
|
11
11
|
**file_names** | **Array<String>** | | [optional]
|
12
|
+
**integration_log_oid** | **Integer** | | [optional]
|
12
13
|
**item_id** | **String** | | [optional]
|
13
14
|
**item_ipn_oid** | **Integer** | | [optional]
|
14
15
|
**log_dts_begin** | **String** | Log date/time begin | [optional]
|
@@ -198,7 +198,7 @@ module UltracartClient
|
|
198
198
|
return false unless number_of_viewed_pages_logic_validator.valid?(@number_of_viewed_pages_logic)
|
199
199
|
referring_website_logic_validator = EnumAttributeValidator.new('String', ['contains', 'does not contain', 'is exactly', 'is not'])
|
200
200
|
return false unless referring_website_logic_validator.valid?(@referring_website_logic)
|
201
|
-
type_validator = EnumAttributeValidator.new('String', ['current page url', '
|
201
|
+
type_validator = EnumAttributeValidator.new('String', ['current page url', 'customers location', 'customers browsing time', 'number of viewed pages', 'referring website address', 'any page from session'])
|
202
202
|
return false unless type_validator.valid?(@type)
|
203
203
|
true
|
204
204
|
end
|
@@ -266,7 +266,7 @@ module UltracartClient
|
|
266
266
|
# Custom attribute writer method checking allowed values (enum).
|
267
267
|
# @param [Object] type Object to be assigned
|
268
268
|
def type=(type)
|
269
|
-
validator = EnumAttributeValidator.new('String', ['current page url', '
|
269
|
+
validator = EnumAttributeValidator.new('String', ['current page url', 'customers location', 'customers browsing time', 'number of viewed pages', 'referring website address', 'any page from session'])
|
270
270
|
unless validator.valid?(type)
|
271
271
|
fail ArgumentError, 'invalid value for "type", must be one of #{validator.allowable_values}.'
|
272
272
|
end
|
@@ -26,6 +26,8 @@ module UltracartClient
|
|
26
26
|
|
27
27
|
attr_accessor :file_names
|
28
28
|
|
29
|
+
attr_accessor :integration_log_oid
|
30
|
+
|
29
31
|
attr_accessor :item_id
|
30
32
|
|
31
33
|
attr_accessor :item_ipn_oid
|
@@ -55,6 +57,7 @@ module UltracartClient
|
|
55
57
|
:'direction' => :'direction',
|
56
58
|
:'email' => :'email',
|
57
59
|
:'file_names' => :'file_names',
|
60
|
+
:'integration_log_oid' => :'integration_log_oid',
|
58
61
|
:'item_id' => :'item_id',
|
59
62
|
:'item_ipn_oid' => :'item_ipn_oid',
|
60
63
|
:'log_dts_begin' => :'log_dts_begin',
|
@@ -76,6 +79,7 @@ module UltracartClient
|
|
76
79
|
:'direction' => :'String',
|
77
80
|
:'email' => :'String',
|
78
81
|
:'file_names' => :'Array<String>',
|
82
|
+
:'integration_log_oid' => :'Integer',
|
79
83
|
:'item_id' => :'String',
|
80
84
|
:'item_ipn_oid' => :'Integer',
|
81
85
|
:'log_dts_begin' => :'String',
|
@@ -126,6 +130,10 @@ module UltracartClient
|
|
126
130
|
end
|
127
131
|
end
|
128
132
|
|
133
|
+
if attributes.has_key?(:'integration_log_oid')
|
134
|
+
self.integration_log_oid = attributes[:'integration_log_oid']
|
135
|
+
end
|
136
|
+
|
129
137
|
if attributes.has_key?(:'item_id')
|
130
138
|
self.item_id = attributes[:'item_id']
|
131
139
|
end
|
@@ -189,6 +197,7 @@ module UltracartClient
|
|
189
197
|
direction == o.direction &&
|
190
198
|
email == o.email &&
|
191
199
|
file_names == o.file_names &&
|
200
|
+
integration_log_oid == o.integration_log_oid &&
|
192
201
|
item_id == o.item_id &&
|
193
202
|
item_ipn_oid == o.item_ipn_oid &&
|
194
203
|
log_dts_begin == o.log_dts_begin &&
|
@@ -209,7 +218,7 @@ module UltracartClient
|
|
209
218
|
# Calculates hash code according to all attributes.
|
210
219
|
# @return [Fixnum] Hash code
|
211
220
|
def hash
|
212
|
-
[action, auto_order_ids, auto_order_oids, direction, email, file_names, item_id, item_ipn_oid, log_dts_begin, log_dts_end, log_type, logger_id, logger_name, order_ids, status].hash
|
221
|
+
[action, auto_order_ids, auto_order_oids, direction, email, file_names, integration_log_oid, item_id, item_ipn_oid, log_dts_begin, log_dts_end, log_type, logger_id, logger_name, order_ids, status].hash
|
213
222
|
end
|
214
223
|
|
215
224
|
# Builds the object from hash
|