ultracart_api 4.0.129 → 4.0.130

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: 5293012ec7f9968e2943c0d98f9b26438de29af158a51197cc9be2019da03db3
4
- data.tar.gz: de611ab94d3219c13428d3b7bb524d322802b0502ba25e2850531fff9b97d73c
3
+ metadata.gz: d4c2f6ed7c79ce55ce09335388b79dec339b4e4a55538ed8dd8ede83d57421d5
4
+ data.tar.gz: 25e68169a01d1c25992ce55a2c565a579990d1a4fc29a38590aeaeb72e664315
5
5
  SHA512:
6
- metadata.gz: 86906721722d5080fea607ea6cfdc62b630f572c573bb43350f3e9bf475311c5e1845fa359ad031c7c77f6eb86d46ecd934f32bfaba94a1d87837faf9d21b7a8
7
- data.tar.gz: 2ab9d6ba0ac04ffa3c7e2c2d07bff9dd69375066d7954d05dfda59491bce10a1f060ea624ef1a92606e7dafed8341243b78fad7a77135557467d32b4a1ffa18f
6
+ metadata.gz: d946cfe520c6421cf47e7e9310c08431739bf74659e9f994de28c020176268dbb21961c0559d43ba2ceaafe5bcb0fcc9f6890d10b8d223e2bc154f4b8fc008bf
7
+ data.tar.gz: e8452c304023677f7c11ce855aa9738e88d6f4aacb132a4b219732c0a76bd263c48383cfcae9ff615087c5cf60121f024c953136629c4f0b1ede7f48b776ade4
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.129
10
+ - Package version: 4.0.130
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.129.gem
27
+ gem install ./ultracart_api-4.0.130.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.129.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.130.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.129'
36
+ gem 'ultracart_api', '~> 4.0.130'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1308,6 +1308,7 @@ Not every change is committed to every SDK.
1308
1308
 
1309
1309
  | Version | Date | Comments |
1310
1310
  | --: | :-: | --- |
1311
+ | 4.0.130 | 02/06/2023 | convo - add conversation_arn to ConversationWebsocketMessage |
1311
1312
  | 4.0.129 | 02/01/2023 | convo - agent profile get/update methods |
1312
1313
  | 4.0.128 | 01/27/2023 | convo - added event_engage_customer property to message |
1313
1314
  | 4.0.127 | 01/27/2023 | conversations - getLocationsForEngagement method |
@@ -4,6 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **conversation_arn** | **String** | Conversation ARN | [optional] |
7
8
  | **conversation_uuid** | **String** | Conversation UUID if the websocket message is tied to a specific conversation | [optional] |
8
9
  | **event_add_coupon** | [**ConversationEventAddCoupon**](ConversationEventAddCoupon.md) | | [optional] |
9
10
  | **event_add_item** | [**ConversationEventAddItem**](ConversationEventAddItem.md) | | [optional] |
@@ -33,6 +34,7 @@
33
34
  require 'ultracart_api'
34
35
 
35
36
  instance = UltracartClient::ConversationWebsocketMessage.new(
37
+ conversation_arn: null,
36
38
  conversation_uuid: null,
37
39
  event_add_coupon: null,
38
40
  event_add_item: null,
@@ -15,6 +15,9 @@ require 'time'
15
15
 
16
16
  module UltracartClient
17
17
  class ConversationWebsocketMessage
18
+ # Conversation ARN
19
+ attr_accessor :conversation_arn
20
+
18
21
  # Conversation UUID if the websocket message is tied to a specific conversation
19
22
  attr_accessor :conversation_uuid
20
23
 
@@ -87,6 +90,7 @@ module UltracartClient
87
90
  # Attribute mapping from ruby-style variable name to JSON key.
88
91
  def self.attribute_map
89
92
  {
93
+ :'conversation_arn' => :'conversation_arn',
90
94
  :'conversation_uuid' => :'conversation_uuid',
91
95
  :'event_add_coupon' => :'event_add_coupon',
92
96
  :'event_add_item' => :'event_add_item',
@@ -120,6 +124,7 @@ module UltracartClient
120
124
  # Attribute type mapping.
121
125
  def self.openapi_types
122
126
  {
127
+ :'conversation_arn' => :'String',
123
128
  :'conversation_uuid' => :'String',
124
129
  :'event_add_coupon' => :'ConversationEventAddCoupon',
125
130
  :'event_add_item' => :'ConversationEventAddItem',
@@ -166,6 +171,10 @@ module UltracartClient
166
171
  h[k.to_sym] = v
167
172
  }
168
173
 
174
+ if attributes.key?(:'conversation_arn')
175
+ self.conversation_arn = attributes[:'conversation_arn']
176
+ end
177
+
169
178
  if attributes.key?(:'conversation_uuid')
170
179
  self.conversation_uuid = attributes[:'conversation_uuid']
171
180
  end
@@ -297,6 +306,7 @@ module UltracartClient
297
306
  def ==(o)
298
307
  return true if self.equal?(o)
299
308
  self.class == o.class &&
309
+ conversation_arn == o.conversation_arn &&
300
310
  conversation_uuid == o.conversation_uuid &&
301
311
  event_add_coupon == o.event_add_coupon &&
302
312
  event_add_item == o.event_add_item &&
@@ -330,7 +340,7 @@ module UltracartClient
330
340
  # Calculates hash code according to all attributes.
331
341
  # @return [Integer] Hash code
332
342
  def 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
343
+ [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
334
344
  end
335
345
 
336
346
  # 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.129'
14
+ VERSION = '4.0.130'
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.129
4
+ version: 4.0.130
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