ultracart_api 3.10.34 → 3.10.35

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: d3a3fba5debcce4defe2f7c7985f045d21b25741c1b7161e63b1257b4e3d11c9
4
- data.tar.gz: fbb18792b975847150dca1756cfa3dadca7e90e82078961d2790cf0a4cd6ccc7
3
+ metadata.gz: 3dbe4041903160621b31cc00f4eae0c5ae86caaae5b66eac840c8a8435307d20
4
+ data.tar.gz: 8d89bab88881558484445eace4bdabded0aadf438568a4b5d04e66fc594c07db
5
5
  SHA512:
6
- metadata.gz: e8b53de8ec2edd136729ffdc4f749b0a114fdba39a111c6ce1e095824af46a0b7b54cd4cbd5c226dc01b79f4db067e7f88fc84bdcbfc04d346de6703eacf834c
7
- data.tar.gz: 4d53b7f855cb4211987d95dd8a0c1ef3bb8476c59876315dfd3b2a9cd1c4cf2257ebf55551bf7133fa9e81ab49636ab33c664e11ce77018bf896bc46b9486eb6
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.34
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.34.gem
27
+ gem install ./ultracart_api-3.10.35.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.34.gem` to install the development dependencies)
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.34'
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 |
@@ -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
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.15-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '3.10.34'
14
+ VERSION = '3.10.35'
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.34
4
+ version: 3.10.35
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart