ultracart_api 3.10.119 → 3.10.120

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: 5b2632cb45c345d2423a388b3b6b937211914e8d4a96be721503d470ff857e0f
4
- data.tar.gz: c9fb31bc8611b4774323653157a13bd436e120cf1c69e3c4a72cf156b915ad4b
3
+ metadata.gz: 5ef6ec55925ec22b01946d3d811289ec70ea0b95acefebd77994dc581e926c35
4
+ data.tar.gz: a8c0b2a5180143c042b8c852b303c67faa8b50218dccccba209aa3551987c473
5
5
  SHA512:
6
- metadata.gz: 852716c1539873a1c5fd40ea0c198d81daa3f9d8cc9597645e2e07ca4cc3b1ed700e495079dd80106f8a2b5f65c5820559e86c87b1b097d40d6e84e0f587ef0d
7
- data.tar.gz: 7acd76691d0e603839147056319e1805adc9a33ed9d351270e2987c7faf4dfed38ce17237349f501ff2272fd1863e3ddf67ea846721dec89860dbb508f6600ae
6
+ metadata.gz: fd6f21e98f5c59119c9d09762984eadf7876811187a61927a8219d2bd4b9b24b2971d5438fc90d53bfb03d512c6177bf7b4dac4b061e16d14cc9238cb742673b
7
+ data.tar.gz: 3e2ccec2a7f442ec492b19135aa47b8397a30f52efd59a3084db1e522f8651da645d0a02ae77b7abb9cbda563329522bd48622be33cf911a85ddf99b43e591a5
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.119
10
+ - Package version: 3.10.120
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.119.gem
27
+ gem install ./ultracart_api-3.10.120.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.119.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.120.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.119'
35
+ gem 'ultracart_api', '~> 3.10.120'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1303,6 +1303,7 @@ Not every change is committed to every SDK.
1303
1303
 
1304
1304
  | Version | Date | Comments |
1305
1305
  | --: | :-: | --- |
1306
+ | 3.10.120 | 02/22/2023 | convo - customer initiated flag on engagement |
1306
1307
  | 3.10.119 | 02/20/2023 | refund reasons |
1307
1308
  | 3.10.118 | 02/17/2023 | convo api - smsUnsubscribeConversation method |
1308
1309
  | 3.10.117 | 02/15/2023 | added auto order sorting by next_shipment_dts |
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  **active** | **BOOLEAN** | | [optional]
7
7
  **conversation_engagement_oid** | **Integer** | | [optional]
8
8
  **customer_greeting** | **String** | | [optional]
9
+ **customer_initiated** | **BOOLEAN** | | [optional]
9
10
  **department_oids** | **Array<Integer>** | | [optional]
10
11
  **engagement_name** | **String** | | [optional]
11
12
  **equation** | [**ConversationEngagementEquation**](ConversationEngagementEquation.md) | | [optional]
@@ -20,6 +20,8 @@ module UltracartClient
20
20
 
21
21
  attr_accessor :customer_greeting
22
22
 
23
+ attr_accessor :customer_initiated
24
+
23
25
  attr_accessor :department_oids
24
26
 
25
27
  attr_accessor :engagement_name
@@ -59,6 +61,7 @@ module UltracartClient
59
61
  :'active' => :'active',
60
62
  :'conversation_engagement_oid' => :'conversation_engagement_oid',
61
63
  :'customer_greeting' => :'customer_greeting',
64
+ :'customer_initiated' => :'customer_initiated',
62
65
  :'department_oids' => :'department_oids',
63
66
  :'engagement_name' => :'engagement_name',
64
67
  :'equation' => :'equation',
@@ -73,6 +76,7 @@ module UltracartClient
73
76
  :'active' => :'BOOLEAN',
74
77
  :'conversation_engagement_oid' => :'Integer',
75
78
  :'customer_greeting' => :'String',
79
+ :'customer_initiated' => :'BOOLEAN',
76
80
  :'department_oids' => :'Array<Integer>',
77
81
  :'engagement_name' => :'String',
78
82
  :'equation' => :'ConversationEngagementEquation',
@@ -101,6 +105,10 @@ module UltracartClient
101
105
  self.customer_greeting = attributes[:'customer_greeting']
102
106
  end
103
107
 
108
+ if attributes.has_key?(:'customer_initiated')
109
+ self.customer_initiated = attributes[:'customer_initiated']
110
+ end
111
+
104
112
  if attributes.has_key?(:'department_oids')
105
113
  if (value = attributes[:'department_oids']).is_a?(Array)
106
114
  self.department_oids = value
@@ -157,6 +165,7 @@ module UltracartClient
157
165
  active == o.active &&
158
166
  conversation_engagement_oid == o.conversation_engagement_oid &&
159
167
  customer_greeting == o.customer_greeting &&
168
+ customer_initiated == o.customer_initiated &&
160
169
  department_oids == o.department_oids &&
161
170
  engagement_name == o.engagement_name &&
162
171
  equation == o.equation &&
@@ -173,7 +182,7 @@ module UltracartClient
173
182
  # Calculates hash code according to all attributes.
174
183
  # @return [Fixnum] Hash code
175
184
  def hash
176
- [active, conversation_engagement_oid, customer_greeting, department_oids, engagement_name, equation, time_on_page, visitor_type].hash
185
+ [active, conversation_engagement_oid, customer_greeting, customer_initiated, department_oids, engagement_name, equation, time_on_page, visitor_type].hash
177
186
  end
178
187
 
179
188
  # 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.119'
14
+ VERSION = '3.10.120'
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.119
4
+ version: 3.10.120
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-20 00:00:00.000000000 Z
11
+ date: 2023-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus