ultracart_api 4.0.106.rc → 4.0.108.rc
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 +6 -4
- data/docs/ConversationSearchResponse.md +2 -0
- data/docs/IntegrationLog.md +2 -0
- data/docs/IntegrationLogQueryRequest.md +4 -0
- data/lib/ultracart_api/models/conversation_search_response.rb +12 -1
- 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: 41109411a47e7bb132ad1394c4b491bf99f906a85c4a005f816e0095b31cc32c
|
4
|
+
data.tar.gz: e63cf0d302e44501f6290e881d689607aba1e68b81dae4df0a28acb73acb6edd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3e2bfbd3a63f4a7100ce6ded5843fa9d76f3a40b6dfe527e0f15de9ebdd5b28b6475c7aa53a18b3209fa4be4daee095ebccf73be071ebce298e76c16415badb
|
7
|
+
data.tar.gz: 10b9f1bb20182b626476f3bc5d658617d4a6482390f76acbe72cef3049d108f1bc2afda6713c4cf04b4a2dc54de31a0c91df782632d7c633a4922940ba9d66c4
|
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.
|
10
|
+
- Package version: 4.0.108.rc
|
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.
|
27
|
+
gem install ./ultracart_api-4.0.108.rc.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./ultracart_api-4.0.
|
30
|
+
(for development, run `gem install --dev ./ultracart_api-4.0.108.rc.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.
|
36
|
+
gem 'ultracart_api', '~> 4.0.108.rc'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -1279,6 +1279,8 @@ Not every change is committed to every SDK.
|
|
1279
1279
|
|
1280
1280
|
| Version | Date | Comments |
|
1281
1281
|
| --: | :-: | --- |
|
1282
|
+
| 4.0.108-RC | 01/10/2023 | integration log tracking of associated auto order oids |
|
1283
|
+
| 4.0.107-RC | 01/06/2023 | conversation search response object bug fix |
|
1282
1284
|
| 4.0.106-RC | 01/05/2023 | communications - added maximum_enrolled flag on flow object |
|
1283
1285
|
| 4.0.105-RC | 01/03/2023 | conversation events for party leave and join |
|
1284
1286
|
| 4.0.104-RC | 01/03/2023 | order point of sale details |
|
@@ -6,6 +6,7 @@
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **range_begin** | **Integer** | | [optional] |
|
8
8
|
| **range_end** | **Integer** | | [optional] |
|
9
|
+
| **records** | [**Array<Conversation>**](Conversation.md) | | [optional] |
|
9
10
|
| **total** | **Integer** | | [optional] |
|
10
11
|
|
11
12
|
## Example
|
@@ -16,6 +17,7 @@ require 'ultracart_api'
|
|
16
17
|
instance = UltracartClient::ConversationSearchResponse.new(
|
17
18
|
range_begin: null,
|
18
19
|
range_end: null,
|
20
|
+
records: null,
|
19
21
|
total: null
|
20
22
|
)
|
21
23
|
```
|
data/docs/IntegrationLog.md
CHANGED
@@ -5,6 +5,7 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **action** | **String** | | [optional] |
|
8
|
+
| **auto_order_oids** | **Array<Integer>** | | [optional] |
|
8
9
|
| **direction** | **String** | | [optional] |
|
9
10
|
| **email** | **String** | | [optional] |
|
10
11
|
| **files** | [**Array<IntegrationLogFile>**](IntegrationLogFile.md) | | [optional] |
|
@@ -30,6 +31,7 @@ require 'ultracart_api'
|
|
30
31
|
|
31
32
|
instance = UltracartClient::IntegrationLog.new(
|
32
33
|
action: null,
|
34
|
+
auto_order_oids: null,
|
33
35
|
direction: null,
|
34
36
|
email: null,
|
35
37
|
files: null,
|
@@ -5,6 +5,8 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **action** | **String** | | [optional] |
|
8
|
+
| **auto_order_ids** | **Array<String>** | | [optional] |
|
9
|
+
| **auto_order_oids** | **Array<Integer>** | | [optional] |
|
8
10
|
| **direction** | **String** | | [optional] |
|
9
11
|
| **email** | **String** | | [optional] |
|
10
12
|
| **file_names** | **Array<String>** | | [optional] |
|
@@ -25,6 +27,8 @@ require 'ultracart_api'
|
|
25
27
|
|
26
28
|
instance = UltracartClient::IntegrationLogQueryRequest.new(
|
27
29
|
action: null,
|
30
|
+
auto_order_ids: null,
|
31
|
+
auto_order_oids: null,
|
28
32
|
direction: null,
|
29
33
|
email: null,
|
30
34
|
file_names: null,
|
@@ -19,6 +19,8 @@ module UltracartClient
|
|
19
19
|
|
20
20
|
attr_accessor :range_end
|
21
21
|
|
22
|
+
attr_accessor :records
|
23
|
+
|
22
24
|
attr_accessor :total
|
23
25
|
|
24
26
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -26,6 +28,7 @@ module UltracartClient
|
|
26
28
|
{
|
27
29
|
:'range_begin' => :'range_begin',
|
28
30
|
:'range_end' => :'range_end',
|
31
|
+
:'records' => :'records',
|
29
32
|
:'total' => :'total'
|
30
33
|
}
|
31
34
|
end
|
@@ -40,6 +43,7 @@ module UltracartClient
|
|
40
43
|
{
|
41
44
|
:'range_begin' => :'Integer',
|
42
45
|
:'range_end' => :'Integer',
|
46
|
+
:'records' => :'Array<Conversation>',
|
43
47
|
:'total' => :'Integer'
|
44
48
|
}
|
45
49
|
end
|
@@ -73,6 +77,12 @@ module UltracartClient
|
|
73
77
|
self.range_end = attributes[:'range_end']
|
74
78
|
end
|
75
79
|
|
80
|
+
if attributes.key?(:'records')
|
81
|
+
if (value = attributes[:'records']).is_a?(Array)
|
82
|
+
self.records = value
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
76
86
|
if attributes.key?(:'total')
|
77
87
|
self.total = attributes[:'total']
|
78
88
|
end
|
@@ -98,6 +108,7 @@ module UltracartClient
|
|
98
108
|
self.class == o.class &&
|
99
109
|
range_begin == o.range_begin &&
|
100
110
|
range_end == o.range_end &&
|
111
|
+
records == o.records &&
|
101
112
|
total == o.total
|
102
113
|
end
|
103
114
|
|
@@ -110,7 +121,7 @@ module UltracartClient
|
|
110
121
|
# Calculates hash code according to all attributes.
|
111
122
|
# @return [Integer] Hash code
|
112
123
|
def hash
|
113
|
-
[range_begin, range_end, total].hash
|
124
|
+
[range_begin, range_end, records, total].hash
|
114
125
|
end
|
115
126
|
|
116
127
|
# Builds the object from hash
|
@@ -17,6 +17,8 @@ module UltracartClient
|
|
17
17
|
class IntegrationLog
|
18
18
|
attr_accessor :action
|
19
19
|
|
20
|
+
attr_accessor :auto_order_oids
|
21
|
+
|
20
22
|
attr_accessor :direction
|
21
23
|
|
22
24
|
attr_accessor :email
|
@@ -56,6 +58,7 @@ module UltracartClient
|
|
56
58
|
def self.attribute_map
|
57
59
|
{
|
58
60
|
:'action' => :'action',
|
61
|
+
:'auto_order_oids' => :'auto_order_oids',
|
59
62
|
:'direction' => :'direction',
|
60
63
|
:'email' => :'email',
|
61
64
|
:'files' => :'files',
|
@@ -85,6 +88,7 @@ module UltracartClient
|
|
85
88
|
def self.openapi_types
|
86
89
|
{
|
87
90
|
:'action' => :'String',
|
91
|
+
:'auto_order_oids' => :'Array<Integer>',
|
88
92
|
:'direction' => :'String',
|
89
93
|
:'email' => :'String',
|
90
94
|
:'files' => :'Array<IntegrationLogFile>',
|
@@ -130,6 +134,12 @@ module UltracartClient
|
|
130
134
|
self.action = attributes[:'action']
|
131
135
|
end
|
132
136
|
|
137
|
+
if attributes.key?(:'auto_order_oids')
|
138
|
+
if (value = attributes[:'auto_order_oids']).is_a?(Array)
|
139
|
+
self.auto_order_oids = value
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
133
143
|
if attributes.key?(:'direction')
|
134
144
|
self.direction = attributes[:'direction']
|
135
145
|
end
|
@@ -224,6 +234,7 @@ module UltracartClient
|
|
224
234
|
return true if self.equal?(o)
|
225
235
|
self.class == o.class &&
|
226
236
|
action == o.action &&
|
237
|
+
auto_order_oids == o.auto_order_oids &&
|
227
238
|
direction == o.direction &&
|
228
239
|
email == o.email &&
|
229
240
|
files == o.files &&
|
@@ -252,7 +263,7 @@ module UltracartClient
|
|
252
263
|
# Calculates hash code according to all attributes.
|
253
264
|
# @return [Integer] Hash code
|
254
265
|
def hash
|
255
|
-
[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
|
266
|
+
[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
|
256
267
|
end
|
257
268
|
|
258
269
|
# Builds the object from hash
|
@@ -17,6 +17,10 @@ module UltracartClient
|
|
17
17
|
class IntegrationLogQueryRequest
|
18
18
|
attr_accessor :action
|
19
19
|
|
20
|
+
attr_accessor :auto_order_ids
|
21
|
+
|
22
|
+
attr_accessor :auto_order_oids
|
23
|
+
|
20
24
|
attr_accessor :direction
|
21
25
|
|
22
26
|
attr_accessor :email
|
@@ -47,6 +51,8 @@ module UltracartClient
|
|
47
51
|
def self.attribute_map
|
48
52
|
{
|
49
53
|
:'action' => :'action',
|
54
|
+
:'auto_order_ids' => :'auto_order_ids',
|
55
|
+
:'auto_order_oids' => :'auto_order_oids',
|
50
56
|
:'direction' => :'direction',
|
51
57
|
:'email' => :'email',
|
52
58
|
:'file_names' => :'file_names',
|
@@ -71,6 +77,8 @@ module UltracartClient
|
|
71
77
|
def self.openapi_types
|
72
78
|
{
|
73
79
|
:'action' => :'String',
|
80
|
+
:'auto_order_ids' => :'Array<String>',
|
81
|
+
:'auto_order_oids' => :'Array<Integer>',
|
74
82
|
:'direction' => :'String',
|
75
83
|
:'email' => :'String',
|
76
84
|
:'file_names' => :'Array<String>',
|
@@ -111,6 +119,18 @@ module UltracartClient
|
|
111
119
|
self.action = attributes[:'action']
|
112
120
|
end
|
113
121
|
|
122
|
+
if attributes.key?(:'auto_order_ids')
|
123
|
+
if (value = attributes[:'auto_order_ids']).is_a?(Array)
|
124
|
+
self.auto_order_ids = value
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
if attributes.key?(:'auto_order_oids')
|
129
|
+
if (value = attributes[:'auto_order_oids']).is_a?(Array)
|
130
|
+
self.auto_order_oids = value
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
114
134
|
if attributes.key?(:'direction')
|
115
135
|
self.direction = attributes[:'direction']
|
116
136
|
end
|
@@ -183,6 +203,8 @@ module UltracartClient
|
|
183
203
|
return true if self.equal?(o)
|
184
204
|
self.class == o.class &&
|
185
205
|
action == o.action &&
|
206
|
+
auto_order_ids == o.auto_order_ids &&
|
207
|
+
auto_order_oids == o.auto_order_oids &&
|
186
208
|
direction == o.direction &&
|
187
209
|
email == o.email &&
|
188
210
|
file_names == o.file_names &&
|
@@ -206,7 +228,7 @@ module UltracartClient
|
|
206
228
|
# Calculates hash code according to all attributes.
|
207
229
|
# @return [Integer] Hash code
|
208
230
|
def hash
|
209
|
-
[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
|
231
|
+
[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
|
210
232
|
end
|
211
233
|
|
212
234
|
# 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: 4.0.
|
4
|
+
version: 4.0.108.rc
|
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
|