ultracart_api 3.10.112 → 3.10.113
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: 5a5a7bd247db62f5580c18dc9b59ac736c0a84af3981aa5d6992549197387394
|
4
|
+
data.tar.gz: a473a82eab4b03d52ca9af3aa886ac2effc9e92d0bcf88f1591c4a4c6e3547a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3e0a00bbf4c5e6448df2ef7764e29005d6c67f23bf478f7c0aa609306c7a404c5fe1ef0b54f7155c0471642f6624f921f3a9acfd9486d18564508235821c8e9
|
7
|
+
data.tar.gz: 8d9e81a3eaa0831060ee567d816a4d357d38ab8124cc27683484d272cb720227d2463f0082e7272cf4b784d1b9cb5369476fd990cc4c6704f828253260e92b1b
|
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.113
|
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.113.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.113.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.113'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1300,6 +1300,7 @@ Not every change is committed to every SDK.
|
|
1300
1300
|
|
1301
1301
|
| Version | Date | Comments |
|
1302
1302
|
| --: | :-: | --- |
|
1303
|
+
| 3.10.113 | 02/06/2023 | convo - add conversation_arn to ConversationWebsocketMessage |
|
1303
1304
|
| 3.10.112 | 02/01/2023 | convo - agent profile get/update methods |
|
1304
1305
|
| 3.10.111 | 01/27/2023 | convo - added event_engage_customer property to message |
|
1305
1306
|
| 3.10.110 | 01/27/2023 | conversations - getLocationsForEngagement method |
|
@@ -3,6 +3,7 @@
|
|
3
3
|
## Properties
|
4
4
|
Name | Type | Description | Notes
|
5
5
|
------------ | ------------- | ------------- | -------------
|
6
|
+
**conversation_arn** | **String** | Conversation ARN | [optional]
|
6
7
|
**conversation_uuid** | **String** | Conversation UUID if the websocket message is tied to a specific conversation | [optional]
|
7
8
|
**event_add_coupon** | [**ConversationEventAddCoupon**](ConversationEventAddCoupon.md) | | [optional]
|
8
9
|
**event_add_item** | [**ConversationEventAddItem**](ConversationEventAddItem.md) | | [optional]
|
@@ -14,6 +14,9 @@ require 'date'
|
|
14
14
|
|
15
15
|
module UltracartClient
|
16
16
|
class ConversationWebsocketMessage
|
17
|
+
# Conversation ARN
|
18
|
+
attr_accessor :conversation_arn
|
19
|
+
|
17
20
|
# Conversation UUID if the websocket message is tied to a specific conversation
|
18
21
|
attr_accessor :conversation_uuid
|
19
22
|
|
@@ -86,6 +89,7 @@ module UltracartClient
|
|
86
89
|
# Attribute mapping from ruby-style variable name to JSON key.
|
87
90
|
def self.attribute_map
|
88
91
|
{
|
92
|
+
:'conversation_arn' => :'conversation_arn',
|
89
93
|
:'conversation_uuid' => :'conversation_uuid',
|
90
94
|
:'event_add_coupon' => :'event_add_coupon',
|
91
95
|
:'event_add_item' => :'event_add_item',
|
@@ -114,6 +118,7 @@ module UltracartClient
|
|
114
118
|
# Attribute type mapping.
|
115
119
|
def self.swagger_types
|
116
120
|
{
|
121
|
+
:'conversation_arn' => :'String',
|
117
122
|
:'conversation_uuid' => :'String',
|
118
123
|
:'event_add_coupon' => :'ConversationEventAddCoupon',
|
119
124
|
:'event_add_item' => :'ConversationEventAddItem',
|
@@ -147,6 +152,10 @@ module UltracartClient
|
|
147
152
|
# convert string to symbol for hash key
|
148
153
|
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
149
154
|
|
155
|
+
if attributes.has_key?(:'conversation_arn')
|
156
|
+
self.conversation_arn = attributes[:'conversation_arn']
|
157
|
+
end
|
158
|
+
|
150
159
|
if attributes.has_key?(:'conversation_uuid')
|
151
160
|
self.conversation_uuid = attributes[:'conversation_uuid']
|
152
161
|
end
|
@@ -278,6 +287,7 @@ module UltracartClient
|
|
278
287
|
def ==(o)
|
279
288
|
return true if self.equal?(o)
|
280
289
|
self.class == o.class &&
|
290
|
+
conversation_arn == o.conversation_arn &&
|
281
291
|
conversation_uuid == o.conversation_uuid &&
|
282
292
|
event_add_coupon == o.event_add_coupon &&
|
283
293
|
event_add_item == o.event_add_item &&
|
@@ -311,7 +321,7 @@ module UltracartClient
|
|
311
321
|
# Calculates hash code according to all attributes.
|
312
322
|
# @return [Fixnum] Hash code
|
313
323
|
def hash
|
314
|
-
[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
|
324
|
+
[conversation_arn, 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
|
315
325
|
end
|
316
326
|
|
317
327
|
# 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.113
|
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-
|
11
|
+
date: 2023-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|