ultracart_api 4.0.44.rc → 4.0.45.rc

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: 63e7545456de2236bd0b8b7bd6319397c02875e84596e5454abe22e303d45c75
4
- data.tar.gz: 63101ba62b0944fe71a98294ae6cccaf97c7dee48ba53dc85d096d8176460866
3
+ metadata.gz: d3170e8927d8e030dbc1dba868ca03222e18145e16f5d2889a1a9bb0da90a24b
4
+ data.tar.gz: e87e3ffa36d18c3173c3081d6e9b87a4e9b8b94d57e89fe38d7f5487cd75eada
5
5
  SHA512:
6
- metadata.gz: 7a6d6e6eb7ac2dbd2b472c5e322a7ea36c15c048102371a0647ddc1406eb369b3d3ed2d11cc096977110e7b785dce8a6654a5fc27574f5c6abacfc9d44e8a2cb
7
- data.tar.gz: c964d470deac9703c38a5fea9ea4b2377987909c29a806ddcd031e8aac306b7da1fd4731ffd708e573a608963ff75fb7e83365b57ad0d67d43cdac9b85eb2ecf
6
+ metadata.gz: e899c1803a077222dfbb1748f16d530c49b97dd6c9d1c906455832b240061878ef2a42f13a3a17977d66de542d539ac1c47520101f4b7925ef919e77536db631
7
+ data.tar.gz: f8fc9bde07d1a32f600f578883b60353df2aa9cbb4d6e8df97041aeaa601a5d310ea6eaf8ada99349b91068283a90a398259a5e4af7b2f34a4ea3dff46b48d1d
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.44.rc
10
+ - Package version: 4.0.45.rc
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.44.rc.gem
27
+ gem install ./ultracart_api-4.0.45.rc.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.44.rc.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.45.rc.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.44.rc'
36
+ gem 'ultracart_api', '~> 4.0.45.rc'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1174,6 +1174,7 @@ Not every change is committed to every SDK.
1174
1174
 
1175
1175
  | Version | Date | Comments |
1176
1176
  | --: | :-: | --- |
1177
+ | 4.0.45-RC | 07/28/2022 | conversation bug fixes |
1177
1178
  | 4.0.44-RC | 07/28/2022 | conversation message upload keys property |
1178
1179
  | 4.0.43-RC | 07/26/2022 | conversations - queue statistics |
1179
1180
  | 4.0.42-RC | 07/25/2022 | conversation development |
@@ -14,6 +14,7 @@
14
14
  | **customer_average_abandon_time_seconds** | **Integer** | | [optional] |
15
15
  | **customer_average_chat_time_seconds** | **Integer** | | [optional] |
16
16
  | **customer_average_hold_time_seconds** | **Integer** | | [optional] |
17
+ | **customer_chat_count** | **Integer** | | [optional] |
17
18
  | **customer_waiting_count** | **Integer** | | [optional] |
18
19
  | **customer_waiting_join_dts** | **String** | Date/time that the oldest person joined the queue | [optional] |
19
20
  | **queue_entries** | [**Array<ConversationWebchatQueueStatusQueueEntry>**](ConversationWebchatQueueStatusQueueEntry.md) | | [optional] |
@@ -35,6 +36,7 @@ instance = UltracartClient::ConversationWebchatQueueStatus.new(
35
36
  customer_average_abandon_time_seconds: null,
36
37
  customer_average_chat_time_seconds: null,
37
38
  customer_average_hold_time_seconds: null,
39
+ customer_chat_count: null,
38
40
  customer_waiting_count: null,
39
41
  customer_waiting_join_dts: null,
40
42
  queue_entries: null,
@@ -7,6 +7,7 @@
7
7
  | **conversation_participant_arn** | **String** | | [optional] |
8
8
  | **conversation_participant_name** | **String** | | [optional] |
9
9
  | **conversation_webchat_queue_uuid** | **String** | | [optional] |
10
+ | **email** | **String** | | [optional] |
10
11
  | **join_dts** | **String** | Date/time the customer joined the queue | [optional] |
11
12
  | **question** | **String** | | [optional] |
12
13
 
@@ -19,6 +20,7 @@ instance = UltracartClient::ConversationWebchatQueueStatusQueueEntry.new(
19
20
  conversation_participant_arn: null,
20
21
  conversation_participant_name: null,
21
22
  conversation_webchat_queue_uuid: null,
23
+ email: null,
22
24
  join_dts: null,
23
25
  question: null
24
26
  )
@@ -35,6 +35,8 @@ module UltracartClient
35
35
 
36
36
  attr_accessor :customer_average_hold_time_seconds
37
37
 
38
+ attr_accessor :customer_chat_count
39
+
38
40
  attr_accessor :customer_waiting_count
39
41
 
40
42
  # Date/time that the oldest person joined the queue
@@ -57,6 +59,7 @@ module UltracartClient
57
59
  :'customer_average_abandon_time_seconds' => :'customer_average_abandon_time_seconds',
58
60
  :'customer_average_chat_time_seconds' => :'customer_average_chat_time_seconds',
59
61
  :'customer_average_hold_time_seconds' => :'customer_average_hold_time_seconds',
62
+ :'customer_chat_count' => :'customer_chat_count',
60
63
  :'customer_waiting_count' => :'customer_waiting_count',
61
64
  :'customer_waiting_join_dts' => :'customer_waiting_join_dts',
62
65
  :'queue_entries' => :'queue_entries',
@@ -82,6 +85,7 @@ module UltracartClient
82
85
  :'customer_average_abandon_time_seconds' => :'Integer',
83
86
  :'customer_average_chat_time_seconds' => :'Integer',
84
87
  :'customer_average_hold_time_seconds' => :'Integer',
88
+ :'customer_chat_count' => :'Integer',
85
89
  :'customer_waiting_count' => :'Integer',
86
90
  :'customer_waiting_join_dts' => :'String',
87
91
  :'queue_entries' => :'Array<ConversationWebchatQueueStatusQueueEntry>',
@@ -152,6 +156,10 @@ module UltracartClient
152
156
  self.customer_average_hold_time_seconds = attributes[:'customer_average_hold_time_seconds']
153
157
  end
154
158
 
159
+ if attributes.key?(:'customer_chat_count')
160
+ self.customer_chat_count = attributes[:'customer_chat_count']
161
+ end
162
+
155
163
  if attributes.key?(:'customer_waiting_count')
156
164
  self.customer_waiting_count = attributes[:'customer_waiting_count']
157
165
  end
@@ -199,6 +207,7 @@ module UltracartClient
199
207
  customer_average_abandon_time_seconds == o.customer_average_abandon_time_seconds &&
200
208
  customer_average_chat_time_seconds == o.customer_average_chat_time_seconds &&
201
209
  customer_average_hold_time_seconds == o.customer_average_hold_time_seconds &&
210
+ customer_chat_count == o.customer_chat_count &&
202
211
  customer_waiting_count == o.customer_waiting_count &&
203
212
  customer_waiting_join_dts == o.customer_waiting_join_dts &&
204
213
  queue_entries == o.queue_entries &&
@@ -214,7 +223,7 @@ module UltracartClient
214
223
  # Calculates hash code according to all attributes.
215
224
  # @return [Integer] Hash code
216
225
  def hash
217
- [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
226
+ [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
218
227
  end
219
228
 
220
229
  # Builds the object from hash
@@ -21,6 +21,8 @@ module UltracartClient
21
21
 
22
22
  attr_accessor :conversation_webchat_queue_uuid
23
23
 
24
+ attr_accessor :email
25
+
24
26
  # Date/time the customer joined the queue
25
27
  attr_accessor :join_dts
26
28
 
@@ -32,6 +34,7 @@ module UltracartClient
32
34
  :'conversation_participant_arn' => :'conversation_participant_arn',
33
35
  :'conversation_participant_name' => :'conversation_participant_name',
34
36
  :'conversation_webchat_queue_uuid' => :'conversation_webchat_queue_uuid',
37
+ :'email' => :'email',
35
38
  :'join_dts' => :'join_dts',
36
39
  :'question' => :'question'
37
40
  }
@@ -48,6 +51,7 @@ module UltracartClient
48
51
  :'conversation_participant_arn' => :'String',
49
52
  :'conversation_participant_name' => :'String',
50
53
  :'conversation_webchat_queue_uuid' => :'String',
54
+ :'email' => :'String',
51
55
  :'join_dts' => :'String',
52
56
  :'question' => :'String'
53
57
  }
@@ -86,6 +90,10 @@ module UltracartClient
86
90
  self.conversation_webchat_queue_uuid = attributes[:'conversation_webchat_queue_uuid']
87
91
  end
88
92
 
93
+ if attributes.key?(:'email')
94
+ self.email = attributes[:'email']
95
+ end
96
+
89
97
  if attributes.key?(:'join_dts')
90
98
  self.join_dts = attributes[:'join_dts']
91
99
  end
@@ -116,6 +124,7 @@ module UltracartClient
116
124
  conversation_participant_arn == o.conversation_participant_arn &&
117
125
  conversation_participant_name == o.conversation_participant_name &&
118
126
  conversation_webchat_queue_uuid == o.conversation_webchat_queue_uuid &&
127
+ email == o.email &&
119
128
  join_dts == o.join_dts &&
120
129
  question == o.question
121
130
  end
@@ -129,7 +138,7 @@ module UltracartClient
129
138
  # Calculates hash code according to all attributes.
130
139
  # @return [Integer] Hash code
131
140
  def hash
132
- [conversation_participant_arn, conversation_participant_name, conversation_webchat_queue_uuid, join_dts, question].hash
141
+ [conversation_participant_arn, conversation_participant_name, conversation_webchat_queue_uuid, email, join_dts, question].hash
133
142
  end
134
143
 
135
144
  # 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.44.rc'
14
+ VERSION = '4.0.45.rc'
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: 4.0.44.rc
4
+ version: 4.0.45.rc
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart