ultracart_api 3.10.27 → 3.10.28

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: 5ff4845197e23f8e9359fd1d76f8dc17479b164b9761d8269afbe64c88a63fea
4
- data.tar.gz: 316ce50df008a31a6eadd5315c3f6da01bcacbc402751b7d6688ef388c6d259d
3
+ metadata.gz: 318716e3c951f48123d5680ccb6eeaaae0d1730abdce2e8331d3147870e4e257
4
+ data.tar.gz: c36d17549fb0f6a52b7367e4f26278fc18052af5d08e529c2b2d00fb390a1b7c
5
5
  SHA512:
6
- metadata.gz: 8886188997288dc5f2eaa5b1390a309a1202e7b4c7997e7328207a071f3daae417fedfcf2e54ff0d3ed9ad2cfb0ba429e535a62ce59100b5f8ab8122de4434fb
7
- data.tar.gz: c966211a0af80d4e8999ea746851e33e8e777f0561d48690cd4780728379cc9f760fb1f40d6a79ebd6afb99d6b71015db99c951db8390c49eda659948dddeba5
6
+ metadata.gz: d1bc988c0d76418ab36b3cb64f395b1c7f79558c837e0511746b3b0365aa186cd01b04608aca5dd36243c16d437f8b9f589e068e4249458d3045127b3b5bdf2b
7
+ data.tar.gz: 9590096f203eceed86560be5a2599a595e15c21917ec3f9c9b04eefd270f72489e235eb8de0b10d0cd32a95a83cf71442124113a7ed4fce657faf43bddfb5c5a
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.27
10
+ - Package version: 3.10.28
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
27
+ gem install ./ultracart_api-3.10.28.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.27.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.28.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.27'
35
+ gem 'ultracart_api', '~> 3.10.28'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1166,6 +1166,7 @@ Not every change is committed to every SDK.
1166
1166
 
1167
1167
  | Version | Date | Comments |
1168
1168
  | --: | :-: | --- |
1169
+ | 3.10.28 | 07/28/2022 | conversation bug fixes |
1169
1170
  | 3.10.27 | 07/28/2022 | conversation message upload keys property |
1170
1171
  | 3.10.26 | 07/26/2022 | conversations - queue statistics |
1171
1172
  | 3.10.25 | 07/25/2022 | conversation development |
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
  **customer_average_abandon_time_seconds** | **Integer** | | [optional]
14
14
  **customer_average_chat_time_seconds** | **Integer** | | [optional]
15
15
  **customer_average_hold_time_seconds** | **Integer** | | [optional]
16
+ **customer_chat_count** | **Integer** | | [optional]
16
17
  **customer_waiting_count** | **Integer** | | [optional]
17
18
  **customer_waiting_join_dts** | **String** | Date/time that the oldest person joined the queue | [optional]
18
19
  **queue_entries** | [**Array<ConversationWebchatQueueStatusQueueEntry>**](ConversationWebchatQueueStatusQueueEntry.md) | | [optional]
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  **conversation_participant_arn** | **String** | | [optional]
7
7
  **conversation_participant_name** | **String** | | [optional]
8
8
  **conversation_webchat_queue_uuid** | **String** | | [optional]
9
+ **email** | **String** | | [optional]
9
10
  **join_dts** | **String** | Date/time the customer joined the queue | [optional]
10
11
  **question** | **String** | | [optional]
11
12
 
@@ -34,6 +34,8 @@ module UltracartClient
34
34
 
35
35
  attr_accessor :customer_average_hold_time_seconds
36
36
 
37
+ attr_accessor :customer_chat_count
38
+
37
39
  attr_accessor :customer_waiting_count
38
40
 
39
41
  # Date/time that the oldest person joined the queue
@@ -56,6 +58,7 @@ module UltracartClient
56
58
  :'customer_average_abandon_time_seconds' => :'customer_average_abandon_time_seconds',
57
59
  :'customer_average_chat_time_seconds' => :'customer_average_chat_time_seconds',
58
60
  :'customer_average_hold_time_seconds' => :'customer_average_hold_time_seconds',
61
+ :'customer_chat_count' => :'customer_chat_count',
59
62
  :'customer_waiting_count' => :'customer_waiting_count',
60
63
  :'customer_waiting_join_dts' => :'customer_waiting_join_dts',
61
64
  :'queue_entries' => :'queue_entries',
@@ -76,6 +79,7 @@ module UltracartClient
76
79
  :'customer_average_abandon_time_seconds' => :'Integer',
77
80
  :'customer_average_chat_time_seconds' => :'Integer',
78
81
  :'customer_average_hold_time_seconds' => :'Integer',
82
+ :'customer_chat_count' => :'Integer',
79
83
  :'customer_waiting_count' => :'Integer',
80
84
  :'customer_waiting_join_dts' => :'String',
81
85
  :'queue_entries' => :'Array<ConversationWebchatQueueStatusQueueEntry>',
@@ -133,6 +137,10 @@ module UltracartClient
133
137
  self.customer_average_hold_time_seconds = attributes[:'customer_average_hold_time_seconds']
134
138
  end
135
139
 
140
+ if attributes.has_key?(:'customer_chat_count')
141
+ self.customer_chat_count = attributes[:'customer_chat_count']
142
+ end
143
+
136
144
  if attributes.has_key?(:'customer_waiting_count')
137
145
  self.customer_waiting_count = attributes[:'customer_waiting_count']
138
146
  end
@@ -180,6 +188,7 @@ module UltracartClient
180
188
  customer_average_abandon_time_seconds == o.customer_average_abandon_time_seconds &&
181
189
  customer_average_chat_time_seconds == o.customer_average_chat_time_seconds &&
182
190
  customer_average_hold_time_seconds == o.customer_average_hold_time_seconds &&
191
+ customer_chat_count == o.customer_chat_count &&
183
192
  customer_waiting_count == o.customer_waiting_count &&
184
193
  customer_waiting_join_dts == o.customer_waiting_join_dts &&
185
194
  queue_entries == o.queue_entries &&
@@ -195,7 +204,7 @@ module UltracartClient
195
204
  # Calculates hash code according to all attributes.
196
205
  # @return [Fixnum] Hash code
197
206
  def hash
198
- [agent_available_count, agent_busy_count, agent_count, agent_unavailable_count, agents, customer_abandon_count, customer_active_count, customer_average_abandon_time_seconds, customer_average_chat_time_seconds, customer_average_hold_time_seconds, customer_waiting_count, customer_waiting_join_dts, queue_entries, queue_name].hash
207
+ [agent_available_count, agent_busy_count, agent_count, agent_unavailable_count, agents, customer_abandon_count, customer_active_count, customer_average_abandon_time_seconds, customer_average_chat_time_seconds, customer_average_hold_time_seconds, customer_chat_count, customer_waiting_count, customer_waiting_join_dts, queue_entries, queue_name].hash
199
208
  end
200
209
 
201
210
  # Builds the object from hash
@@ -20,6 +20,8 @@ module UltracartClient
20
20
 
21
21
  attr_accessor :conversation_webchat_queue_uuid
22
22
 
23
+ attr_accessor :email
24
+
23
25
  # Date/time the customer joined the queue
24
26
  attr_accessor :join_dts
25
27
 
@@ -31,6 +33,7 @@ module UltracartClient
31
33
  :'conversation_participant_arn' => :'conversation_participant_arn',
32
34
  :'conversation_participant_name' => :'conversation_participant_name',
33
35
  :'conversation_webchat_queue_uuid' => :'conversation_webchat_queue_uuid',
36
+ :'email' => :'email',
34
37
  :'join_dts' => :'join_dts',
35
38
  :'question' => :'question'
36
39
  }
@@ -42,6 +45,7 @@ module UltracartClient
42
45
  :'conversation_participant_arn' => :'String',
43
46
  :'conversation_participant_name' => :'String',
44
47
  :'conversation_webchat_queue_uuid' => :'String',
48
+ :'email' => :'String',
45
49
  :'join_dts' => :'String',
46
50
  :'question' => :'String'
47
51
  }
@@ -67,6 +71,10 @@ module UltracartClient
67
71
  self.conversation_webchat_queue_uuid = attributes[:'conversation_webchat_queue_uuid']
68
72
  end
69
73
 
74
+ if attributes.has_key?(:'email')
75
+ self.email = attributes[:'email']
76
+ end
77
+
70
78
  if attributes.has_key?(:'join_dts')
71
79
  self.join_dts = attributes[:'join_dts']
72
80
  end
@@ -97,6 +105,7 @@ module UltracartClient
97
105
  conversation_participant_arn == o.conversation_participant_arn &&
98
106
  conversation_participant_name == o.conversation_participant_name &&
99
107
  conversation_webchat_queue_uuid == o.conversation_webchat_queue_uuid &&
108
+ email == o.email &&
100
109
  join_dts == o.join_dts &&
101
110
  question == o.question
102
111
  end
@@ -110,7 +119,7 @@ module UltracartClient
110
119
  # Calculates hash code according to all attributes.
111
120
  # @return [Fixnum] Hash code
112
121
  def hash
113
- [conversation_participant_arn, conversation_participant_name, conversation_webchat_queue_uuid, join_dts, question].hash
122
+ [conversation_participant_arn, conversation_participant_name, conversation_webchat_queue_uuid, email, join_dts, question].hash
114
123
  end
115
124
 
116
125
  # 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.27'
14
+ VERSION = '3.10.28'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.27
4
+ version: 3.10.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart