ultracart_api 3.10.112 → 3.10.113

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: 9d478126dcf8d78557310703d92f65e13e1ef35f7b9ee413ff5b585001a6be78
4
- data.tar.gz: 75fd2e621b8abd3778cb21a0eb24781350cadd545d8ceb52fd66637e2f4b52ee
3
+ metadata.gz: 5a5a7bd247db62f5580c18dc9b59ac736c0a84af3981aa5d6992549197387394
4
+ data.tar.gz: a473a82eab4b03d52ca9af3aa886ac2effc9e92d0bcf88f1591c4a4c6e3547a0
5
5
  SHA512:
6
- metadata.gz: 04aeceb86cf35d50d76e274496353871ad08587b34331828dcd4e25d0ac31f078f28475ad75338b4d0a1928ee6627e918fba385feeab5ffcb6119c22c405b9dd
7
- data.tar.gz: 12ec7862c79f823ea8c49a4244bd0407ed6fd1d7e07bc22faa8c5c1102c67dc333af9d90d15d5d620f94b0c05dcbd94fa29288b6d2d4bb1491158eb4551b40cb
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.112
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.112.gem
27
+ gem install ./ultracart_api-3.10.113.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.112.gem` to install the development dependencies)
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.112'
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
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.112'
14
+ VERSION = '3.10.113'
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.112
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-01 00:00:00.000000000 Z
11
+ date: 2023-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus