ultracart_api 4.0.127 → 4.0.128
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: 1983a719da101f1f4c4186a6576dfa4d87cdaeb7f4e983af611f0505189ed0ce
|
4
|
+
data.tar.gz: ad575d13d7c383d6d616a44da7188220c0300695869ee722f104fecbf769c145
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a5463cddf29098a9be25847e094013ef5180de7c48ab823e5db4f1d2a76e885ec0ea1cfdbd296a20a8813a869a51f47d732a799d804f42570ed58fcbf386ba3
|
7
|
+
data.tar.gz: 1881d3c94b5dbae1fbaee3619c318d45812fcacd334229a43af854677cbadf6b6a0130e81178789ddd37017c254a5d12b44c5f68600cd8620207f552b1a2c9b0
|
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.128
|
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.128.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.128.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.128'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -1304,6 +1304,7 @@ Not every change is committed to every SDK.
|
|
1304
1304
|
|
1305
1305
|
| Version | Date | Comments |
|
1306
1306
|
| --: | :-: | --- |
|
1307
|
+
| 4.0.128 | 01/27/2023 | convo - added event_engage_customer property to message |
|
1307
1308
|
| 4.0.127 | 01/27/2023 | conversations - getLocationsForEngagement method |
|
1308
1309
|
| 4.0.126-RC | 01/26/2023 | typo in ConversationWebsocketMessage |
|
1309
1310
|
| 4.0.125-RC | 01/26/2023 | conversation - added message type of engagement prompt |
|
@@ -8,6 +8,7 @@
|
|
8
8
|
| **event_add_coupon** | [**ConversationEventAddCoupon**](ConversationEventAddCoupon.md) | | [optional] |
|
9
9
|
| **event_add_item** | [**ConversationEventAddItem**](ConversationEventAddItem.md) | | [optional] |
|
10
10
|
| **event_conversation_closed** | [**ConversationSummary**](ConversationSummary.md) | | [optional] |
|
11
|
+
| **event_engage_customer** | [**ConversationWebchatQueueStatusQueueEntry**](ConversationWebchatQueueStatusQueueEntry.md) | | [optional] |
|
11
12
|
| **event_new_conversation** | [**ConversationSummary**](ConversationSummary.md) | | [optional] |
|
12
13
|
| **event_new_message** | [**ConversationSummary**](ConversationSummary.md) | | [optional] |
|
13
14
|
| **event_participant_join** | [**ConversationSummary**](ConversationSummary.md) | | [optional] |
|
@@ -36,6 +37,7 @@ instance = UltracartClient::ConversationWebsocketMessage.new(
|
|
36
37
|
event_add_coupon: null,
|
37
38
|
event_add_item: null,
|
38
39
|
event_conversation_closed: null,
|
40
|
+
event_engage_customer: null,
|
39
41
|
event_new_conversation: null,
|
40
42
|
event_new_message: null,
|
41
43
|
event_participant_join: null,
|
@@ -24,6 +24,8 @@ module UltracartClient
|
|
24
24
|
|
25
25
|
attr_accessor :event_conversation_closed
|
26
26
|
|
27
|
+
attr_accessor :event_engage_customer
|
28
|
+
|
27
29
|
attr_accessor :event_new_conversation
|
28
30
|
|
29
31
|
attr_accessor :event_new_message
|
@@ -89,6 +91,7 @@ module UltracartClient
|
|
89
91
|
:'event_add_coupon' => :'event_add_coupon',
|
90
92
|
:'event_add_item' => :'event_add_item',
|
91
93
|
:'event_conversation_closed' => :'event_conversation_closed',
|
94
|
+
:'event_engage_customer' => :'event_engage_customer',
|
92
95
|
:'event_new_conversation' => :'event_new_conversation',
|
93
96
|
:'event_new_message' => :'event_new_message',
|
94
97
|
:'event_participant_join' => :'event_participant_join',
|
@@ -121,6 +124,7 @@ module UltracartClient
|
|
121
124
|
:'event_add_coupon' => :'ConversationEventAddCoupon',
|
122
125
|
:'event_add_item' => :'ConversationEventAddItem',
|
123
126
|
:'event_conversation_closed' => :'ConversationSummary',
|
127
|
+
:'event_engage_customer' => :'ConversationWebchatQueueStatusQueueEntry',
|
124
128
|
:'event_new_conversation' => :'ConversationSummary',
|
125
129
|
:'event_new_message' => :'ConversationSummary',
|
126
130
|
:'event_participant_join' => :'ConversationSummary',
|
@@ -178,6 +182,10 @@ module UltracartClient
|
|
178
182
|
self.event_conversation_closed = attributes[:'event_conversation_closed']
|
179
183
|
end
|
180
184
|
|
185
|
+
if attributes.key?(:'event_engage_customer')
|
186
|
+
self.event_engage_customer = attributes[:'event_engage_customer']
|
187
|
+
end
|
188
|
+
|
181
189
|
if attributes.key?(:'event_new_conversation')
|
182
190
|
self.event_new_conversation = attributes[:'event_new_conversation']
|
183
191
|
end
|
@@ -293,6 +301,7 @@ module UltracartClient
|
|
293
301
|
event_add_coupon == o.event_add_coupon &&
|
294
302
|
event_add_item == o.event_add_item &&
|
295
303
|
event_conversation_closed == o.event_conversation_closed &&
|
304
|
+
event_engage_customer == o.event_engage_customer &&
|
296
305
|
event_new_conversation == o.event_new_conversation &&
|
297
306
|
event_new_message == o.event_new_message &&
|
298
307
|
event_participant_join == o.event_participant_join &&
|
@@ -321,7 +330,7 @@ module UltracartClient
|
|
321
330
|
# Calculates hash code according to all attributes.
|
322
331
|
# @return [Integer] Hash code
|
323
332
|
def hash
|
324
|
-
[conversation_uuid, event_add_coupon, event_add_item, event_conversation_closed, event_new_conversation, event_new_message, event_participant_join, event_participant_join_participant, event_participant_left, event_participant_left_participant, event_participant_update, event_queue_position, event_queue_status_update, event_read_message, event_rrweb, event_type, event_typing, event_updated_message, event_webchat_context, message, type].hash
|
333
|
+
[conversation_uuid, event_add_coupon, event_add_item, event_conversation_closed, event_engage_customer, event_new_conversation, event_new_message, event_participant_join, event_participant_join_participant, event_participant_left, event_participant_left_participant, event_participant_update, event_queue_position, event_queue_status_update, event_read_message, event_rrweb, event_type, event_typing, event_updated_message, event_webchat_context, message, type].hash
|
325
334
|
end
|
326
335
|
|
327
336
|
# Builds the object from hash
|