ultracart_api 3.10.90 → 3.10.91
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/IntegrationLog.md +1 -0
- data/docs/IntegrationLogQueryRequest.md +2 -0
- data/lib/ultracart_api/models/integration_log.rb +12 -1
- data/lib/ultracart_api/models/integration_log_query_request.rb +23 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e373b4c06d676333e317597ccdeb89253cd9243ccc7b6ec176d41d793b608676
|
|
4
|
+
data.tar.gz: f9df0a6acf776c43bcb3c5c1a3cb39ef52f6034f0285f71e8982910c52f668e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6137bfc96887257a0248a70a05936076a9176796534492cd1973c56df2e3a4581b5aa4158de7d29f1804084610f89e614709125c79bb05f41e8b571f62911ab5
|
|
7
|
+
data.tar.gz: 8ebdd3d05272b4c5745d6ee6e2a21a92edd43604cffb7b9e7f220f08870493cf921bc9427a08fa3a4f1e48fe49336ad12ba301eb7d7df9e3265d6efcd2ed60ea
|
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.91
|
|
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.91.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.91.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.91'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1271,6 +1271,7 @@ Not every change is committed to every SDK.
|
|
|
1271
1271
|
|
|
1272
1272
|
| Version | Date | Comments |
|
|
1273
1273
|
| --: | :-: | --- |
|
|
1274
|
+
| 3.10.91 | 01/10/2023 | integration log tracking of associated auto order oids |
|
|
1274
1275
|
| 3.10.90 | 01/06/2023 | conversation search response object bug fix |
|
|
1275
1276
|
| 3.10.89 | 01/05/2023 | communications - added maximum_enrolled flag on flow object |
|
|
1276
1277
|
| 3.10.88 | 01/03/2023 | conversation events for party leave and join |
|
data/docs/IntegrationLog.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**action** | **String** | | [optional]
|
|
7
|
+
**auto_order_oids** | **Array<Integer>** | | [optional]
|
|
7
8
|
**direction** | **String** | | [optional]
|
|
8
9
|
**email** | **String** | | [optional]
|
|
9
10
|
**files** | [**Array<IntegrationLogFile>**](IntegrationLogFile.md) | | [optional]
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
Name | Type | Description | Notes
|
|
5
5
|
------------ | ------------- | ------------- | -------------
|
|
6
6
|
**action** | **String** | | [optional]
|
|
7
|
+
**auto_order_ids** | **Array<String>** | | [optional]
|
|
8
|
+
**auto_order_oids** | **Array<Integer>** | | [optional]
|
|
7
9
|
**direction** | **String** | | [optional]
|
|
8
10
|
**email** | **String** | | [optional]
|
|
9
11
|
**file_names** | **Array<String>** | | [optional]
|
|
@@ -16,6 +16,8 @@ module UltracartClient
|
|
|
16
16
|
class IntegrationLog
|
|
17
17
|
attr_accessor :action
|
|
18
18
|
|
|
19
|
+
attr_accessor :auto_order_oids
|
|
20
|
+
|
|
19
21
|
attr_accessor :direction
|
|
20
22
|
|
|
21
23
|
attr_accessor :email
|
|
@@ -55,6 +57,7 @@ module UltracartClient
|
|
|
55
57
|
def self.attribute_map
|
|
56
58
|
{
|
|
57
59
|
:'action' => :'action',
|
|
60
|
+
:'auto_order_oids' => :'auto_order_oids',
|
|
58
61
|
:'direction' => :'direction',
|
|
59
62
|
:'email' => :'email',
|
|
60
63
|
:'files' => :'files',
|
|
@@ -79,6 +82,7 @@ module UltracartClient
|
|
|
79
82
|
def self.swagger_types
|
|
80
83
|
{
|
|
81
84
|
:'action' => :'String',
|
|
85
|
+
:'auto_order_oids' => :'Array<Integer>',
|
|
82
86
|
:'direction' => :'String',
|
|
83
87
|
:'email' => :'String',
|
|
84
88
|
:'files' => :'Array<IntegrationLogFile>',
|
|
@@ -111,6 +115,12 @@ module UltracartClient
|
|
|
111
115
|
self.action = attributes[:'action']
|
|
112
116
|
end
|
|
113
117
|
|
|
118
|
+
if attributes.has_key?(:'auto_order_oids')
|
|
119
|
+
if (value = attributes[:'auto_order_oids']).is_a?(Array)
|
|
120
|
+
self.auto_order_oids = value
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
|
|
114
124
|
if attributes.has_key?(:'direction')
|
|
115
125
|
self.direction = attributes[:'direction']
|
|
116
126
|
end
|
|
@@ -205,6 +215,7 @@ module UltracartClient
|
|
|
205
215
|
return true if self.equal?(o)
|
|
206
216
|
self.class == o.class &&
|
|
207
217
|
action == o.action &&
|
|
218
|
+
auto_order_oids == o.auto_order_oids &&
|
|
208
219
|
direction == o.direction &&
|
|
209
220
|
email == o.email &&
|
|
210
221
|
files == o.files &&
|
|
@@ -233,7 +244,7 @@ module UltracartClient
|
|
|
233
244
|
# Calculates hash code according to all attributes.
|
|
234
245
|
# @return [Fixnum] Hash code
|
|
235
246
|
def hash
|
|
236
|
-
[action, direction, email, files, integration_log_oid, item_id, item_ipn_oid, log_dts, log_type, logger_id, logger_name, logs, omit_log_map, order_ids, pk, sk, status, status_code].hash
|
|
247
|
+
[action, auto_order_oids, direction, email, files, integration_log_oid, item_id, item_ipn_oid, log_dts, log_type, logger_id, logger_name, logs, omit_log_map, order_ids, pk, sk, status, status_code].hash
|
|
237
248
|
end
|
|
238
249
|
|
|
239
250
|
# Builds the object from hash
|
|
@@ -16,6 +16,10 @@ module UltracartClient
|
|
|
16
16
|
class IntegrationLogQueryRequest
|
|
17
17
|
attr_accessor :action
|
|
18
18
|
|
|
19
|
+
attr_accessor :auto_order_ids
|
|
20
|
+
|
|
21
|
+
attr_accessor :auto_order_oids
|
|
22
|
+
|
|
19
23
|
attr_accessor :direction
|
|
20
24
|
|
|
21
25
|
attr_accessor :email
|
|
@@ -46,6 +50,8 @@ module UltracartClient
|
|
|
46
50
|
def self.attribute_map
|
|
47
51
|
{
|
|
48
52
|
:'action' => :'action',
|
|
53
|
+
:'auto_order_ids' => :'auto_order_ids',
|
|
54
|
+
:'auto_order_oids' => :'auto_order_oids',
|
|
49
55
|
:'direction' => :'direction',
|
|
50
56
|
:'email' => :'email',
|
|
51
57
|
:'file_names' => :'file_names',
|
|
@@ -65,6 +71,8 @@ module UltracartClient
|
|
|
65
71
|
def self.swagger_types
|
|
66
72
|
{
|
|
67
73
|
:'action' => :'String',
|
|
74
|
+
:'auto_order_ids' => :'Array<String>',
|
|
75
|
+
:'auto_order_oids' => :'Array<Integer>',
|
|
68
76
|
:'direction' => :'String',
|
|
69
77
|
:'email' => :'String',
|
|
70
78
|
:'file_names' => :'Array<String>',
|
|
@@ -92,6 +100,18 @@ module UltracartClient
|
|
|
92
100
|
self.action = attributes[:'action']
|
|
93
101
|
end
|
|
94
102
|
|
|
103
|
+
if attributes.has_key?(:'auto_order_ids')
|
|
104
|
+
if (value = attributes[:'auto_order_ids']).is_a?(Array)
|
|
105
|
+
self.auto_order_ids = value
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
if attributes.has_key?(:'auto_order_oids')
|
|
110
|
+
if (value = attributes[:'auto_order_oids']).is_a?(Array)
|
|
111
|
+
self.auto_order_oids = value
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
|
|
95
115
|
if attributes.has_key?(:'direction')
|
|
96
116
|
self.direction = attributes[:'direction']
|
|
97
117
|
end
|
|
@@ -164,6 +184,8 @@ module UltracartClient
|
|
|
164
184
|
return true if self.equal?(o)
|
|
165
185
|
self.class == o.class &&
|
|
166
186
|
action == o.action &&
|
|
187
|
+
auto_order_ids == o.auto_order_ids &&
|
|
188
|
+
auto_order_oids == o.auto_order_oids &&
|
|
167
189
|
direction == o.direction &&
|
|
168
190
|
email == o.email &&
|
|
169
191
|
file_names == o.file_names &&
|
|
@@ -187,7 +209,7 @@ module UltracartClient
|
|
|
187
209
|
# Calculates hash code according to all attributes.
|
|
188
210
|
# @return [Fixnum] Hash code
|
|
189
211
|
def hash
|
|
190
|
-
[action, 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
|
|
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
|
|
191
213
|
end
|
|
192
214
|
|
|
193
215
|
# Builds the object from hash
|
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.
|
|
4
|
+
version: 3.10.91
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|