ultracart_api 3.10.34 → 3.10.35
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 +4 -4
- data/README.md +5 -4
- data/docs/ConversationMessage.md +2 -0
- data/lib/ultracart_api/models/conversation_message.rb +19 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3dbe4041903160621b31cc00f4eae0c5ae86caaae5b66eac840c8a8435307d20
|
4
|
+
data.tar.gz: 8d89bab88881558484445eace4bdabded0aadf438568a4b5d04e66fc594c07db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 755635be9b71b07b2f2a52c2137a864f75bbb22b92a53673f41a23d1e167e93ae6a041ab1971b8aeb3f9d9c9f833eb8d7bd9638db66058316111df8d84a621da
|
7
|
+
data.tar.gz: c00423e2c80c83046c3f053dbb6322c9f0ba12da7df5765bc5bb467081ee2a1b36927ff27815a8768734a126239150e6bf4a444591e1194704e1110a7a54abd0
|
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.35
|
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.35.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.35.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.35'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
@@ -1172,6 +1172,7 @@ Not every change is committed to every SDK.
|
|
1172
1172
|
|
1173
1173
|
| Version | Date | Comments |
|
1174
1174
|
| --: | :-: | --- |
|
1175
|
+
| 3.10.35 | 08/05/2022 | conversation adjustments for ES integration |
|
1175
1176
|
| 3.10.34 | 08/05/2022 | conversations query by medium and stats fixes |
|
1176
1177
|
| 3.10.33 | 08/03/2022 | conversation summary participants |
|
1177
1178
|
| 3.10.32 | 08/03/2022 | more conversation events |
|
data/docs/ConversationMessage.md
CHANGED
@@ -7,7 +7,9 @@ Name | Type | Description | Notes
|
|
7
7
|
**author_conversation_participant_name** | **String** | | [optional]
|
8
8
|
**body** | **String** | | [optional]
|
9
9
|
**client_message_id** | **String** | | [optional]
|
10
|
+
**conversation_message_uuid** | **String** | | [optional]
|
10
11
|
**media_urls** | **Array<String>** | | [optional]
|
12
|
+
**merchant_id** | **String** | | [optional]
|
11
13
|
**message_dts** | **String** | Message date/time | [optional]
|
12
14
|
**transport_statuses** | [**Array<ConversationMessageTransportStatus>**](ConversationMessageTransportStatus.md) | | [optional]
|
13
15
|
**type** | **String** | Message type | [optional]
|
@@ -22,8 +22,12 @@ module UltracartClient
|
|
22
22
|
|
23
23
|
attr_accessor :client_message_id
|
24
24
|
|
25
|
+
attr_accessor :conversation_message_uuid
|
26
|
+
|
25
27
|
attr_accessor :media_urls
|
26
28
|
|
29
|
+
attr_accessor :merchant_id
|
30
|
+
|
27
31
|
# Message date/time
|
28
32
|
attr_accessor :message_dts
|
29
33
|
|
@@ -63,7 +67,9 @@ module UltracartClient
|
|
63
67
|
:'author_conversation_participant_name' => :'author_conversation_participant_name',
|
64
68
|
:'body' => :'body',
|
65
69
|
:'client_message_id' => :'client_message_id',
|
70
|
+
:'conversation_message_uuid' => :'conversation_message_uuid',
|
66
71
|
:'media_urls' => :'media_urls',
|
72
|
+
:'merchant_id' => :'merchant_id',
|
67
73
|
:'message_dts' => :'message_dts',
|
68
74
|
:'transport_statuses' => :'transport_statuses',
|
69
75
|
:'type' => :'type',
|
@@ -78,7 +84,9 @@ module UltracartClient
|
|
78
84
|
:'author_conversation_participant_name' => :'String',
|
79
85
|
:'body' => :'String',
|
80
86
|
:'client_message_id' => :'String',
|
87
|
+
:'conversation_message_uuid' => :'String',
|
81
88
|
:'media_urls' => :'Array<String>',
|
89
|
+
:'merchant_id' => :'String',
|
82
90
|
:'message_dts' => :'String',
|
83
91
|
:'transport_statuses' => :'Array<ConversationMessageTransportStatus>',
|
84
92
|
:'type' => :'String',
|
@@ -110,12 +118,20 @@ module UltracartClient
|
|
110
118
|
self.client_message_id = attributes[:'client_message_id']
|
111
119
|
end
|
112
120
|
|
121
|
+
if attributes.has_key?(:'conversation_message_uuid')
|
122
|
+
self.conversation_message_uuid = attributes[:'conversation_message_uuid']
|
123
|
+
end
|
124
|
+
|
113
125
|
if attributes.has_key?(:'media_urls')
|
114
126
|
if (value = attributes[:'media_urls']).is_a?(Array)
|
115
127
|
self.media_urls = value
|
116
128
|
end
|
117
129
|
end
|
118
130
|
|
131
|
+
if attributes.has_key?(:'merchant_id')
|
132
|
+
self.merchant_id = attributes[:'merchant_id']
|
133
|
+
end
|
134
|
+
|
119
135
|
if attributes.has_key?(:'message_dts')
|
120
136
|
self.message_dts = attributes[:'message_dts']
|
121
137
|
end
|
@@ -171,7 +187,9 @@ module UltracartClient
|
|
171
187
|
author_conversation_participant_name == o.author_conversation_participant_name &&
|
172
188
|
body == o.body &&
|
173
189
|
client_message_id == o.client_message_id &&
|
190
|
+
conversation_message_uuid == o.conversation_message_uuid &&
|
174
191
|
media_urls == o.media_urls &&
|
192
|
+
merchant_id == o.merchant_id &&
|
175
193
|
message_dts == o.message_dts &&
|
176
194
|
transport_statuses == o.transport_statuses &&
|
177
195
|
type == o.type &&
|
@@ -187,7 +205,7 @@ module UltracartClient
|
|
187
205
|
# Calculates hash code according to all attributes.
|
188
206
|
# @return [Fixnum] Hash code
|
189
207
|
def hash
|
190
|
-
[author_conversation_participant_arn, author_conversation_participant_name, body, client_message_id, media_urls, message_dts, transport_statuses, type, upload_keys].hash
|
208
|
+
[author_conversation_participant_arn, author_conversation_participant_name, body, client_message_id, conversation_message_uuid, media_urls, merchant_id, message_dts, transport_statuses, type, upload_keys].hash
|
191
209
|
end
|
192
210
|
|
193
211
|
# Builds the object from hash
|