ultracart_api 4.0.107.rc → 4.0.108.rc

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: 3a68ec49c6636f167f57066ab7b239ef76d7d8d4ec4ca5b765ac4647050e6f25
4
- data.tar.gz: ba3766441d698e98e7d293aa4e5c702985da41c38b3b8004b3f94896f66d6dab
3
+ metadata.gz: 41109411a47e7bb132ad1394c4b491bf99f906a85c4a005f816e0095b31cc32c
4
+ data.tar.gz: e63cf0d302e44501f6290e881d689607aba1e68b81dae4df0a28acb73acb6edd
5
5
  SHA512:
6
- metadata.gz: 456f705b45d7c6209830454bf0ac857c7f0d1fe630beb73923951289f3d164b39b23d331ec083f15c74650b4c8eb2b3652d5a0e56c3ffe93747cad0949ae2dd2
7
- data.tar.gz: ecc0de81044e3dbae51386e0db663305bbb657dd723077afc9e7d579f97e02a699c4fa005db57b94f26682c05f42667dd896bc6ffcee2c066b4b80a1c7784c4f
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.107.rc
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.107.rc.gem
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.107.rc.gem` to install the development dependencies)
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.107.rc'
36
+ gem 'ultracart_api', '~> 4.0.108.rc'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1279,6 +1279,7 @@ 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 |
1282
1283
  | 4.0.107-RC | 01/06/2023 | conversation search response object bug fix |
1283
1284
  | 4.0.106-RC | 01/05/2023 | communications - added maximum_enrolled flag on flow object |
1284
1285
  | 4.0.105-RC | 01/03/2023 | conversation events for party leave and join |
@@ -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,
@@ -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
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.0.107.rc'
14
+ VERSION = '4.0.108.rc'
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: 4.0.107.rc
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-06 00:00:00.000000000 Z
11
+ date: 2023-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus