ultracart_api 4.0.51.rc → 4.0.52.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: 11411f98956e0b5b3fb41e00a9271f009c3f8b3078b0771460e799405558af84
4
- data.tar.gz: 1883440bf616671e4c1bf3e244a7214d614cb462b6eb06baad2ecee6028e7cff
3
+ metadata.gz: 9934de6bf631146a417c171eccb5221176b363b6885ed827b59895d09819394c
4
+ data.tar.gz: 5051d974c29f7ae6f8066b3b631578e2d7f70e976cc176fcb8e16bb38a0728a3
5
5
  SHA512:
6
- metadata.gz: 5d2fac5fc8f15b8a6e8b2bbb024398632e2500ecfcff07209dfabd90260adbf11b43da7d512ebc32492c920943589c78936ab76bfce9f27da89f25619906670d
7
- data.tar.gz: 9195b4829df200439b28c55e49e86f31f83c3e6b94841ee1445649e87c68276c46e5349a4b655d24f2ca18144b965764cd658d345eab85235362d6b1d018141f
6
+ metadata.gz: 5dfc20d26a058aafdcc50ff8d06feeb9cc3002f403577b3fc087d0bba703614ee12462a8a6f99ae41befaedc52e18a69cd29382bb41e47d091e79d8eeee0b802
7
+ data.tar.gz: c51ec7e764de01427f7bc6f4ab3fbb0abcdb6bc19964f8ab1acb0d2240f5718533f3425e2fe347cdefbc8e1910a42891a22e800fb830d032ece49e28843110e9
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.51.rc
10
+ - Package version: 4.0.52.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.51.rc.gem
27
+ gem install ./ultracart_api-4.0.52.rc.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./ultracart_api-4.0.51.rc.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./ultracart_api-4.0.52.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.51.rc'
36
+ gem 'ultracart_api', '~> 4.0.52.rc'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -1180,6 +1180,7 @@ Not every change is committed to every SDK.
1180
1180
 
1181
1181
  | Version | Date | Comments |
1182
1182
  | --: | :-: | --- |
1183
+ | 4.0.52-RC | 08/05/2022 | conversation adjustments for ES integration |
1183
1184
  | 4.0.51-RC | 08/05/2022 | conversations query by medium and stats fixes |
1184
1185
  | 4.0.50-RC | 08/03/2022 | conversation summary participants |
1185
1186
  | 4.0.49-RC | 08/03/2022 | more conversation events |
@@ -8,7 +8,9 @@
8
8
  | **author_conversation_participant_name** | **String** | | [optional] |
9
9
  | **body** | **String** | | [optional] |
10
10
  | **client_message_id** | **String** | | [optional] |
11
+ | **conversation_message_uuid** | **String** | | [optional] |
11
12
  | **media_urls** | **Array<String>** | | [optional] |
13
+ | **merchant_id** | **String** | | [optional] |
12
14
  | **message_dts** | **String** | Message date/time | [optional] |
13
15
  | **transport_statuses** | [**Array<ConversationMessageTransportStatus>**](ConversationMessageTransportStatus.md) | | [optional] |
14
16
  | **type** | **String** | Message type | [optional] |
@@ -24,7 +26,9 @@ instance = UltracartClient::ConversationMessage.new(
24
26
  author_conversation_participant_name: null,
25
27
  body: null,
26
28
  client_message_id: null,
29
+ conversation_message_uuid: null,
27
30
  media_urls: null,
31
+ merchant_id: null,
28
32
  message_dts: null,
29
33
  transport_statuses: null,
30
34
  type: null,
@@ -23,8 +23,12 @@ module UltracartClient
23
23
 
24
24
  attr_accessor :client_message_id
25
25
 
26
+ attr_accessor :conversation_message_uuid
27
+
26
28
  attr_accessor :media_urls
27
29
 
30
+ attr_accessor :merchant_id
31
+
28
32
  # Message date/time
29
33
  attr_accessor :message_dts
30
34
 
@@ -64,7 +68,9 @@ module UltracartClient
64
68
  :'author_conversation_participant_name' => :'author_conversation_participant_name',
65
69
  :'body' => :'body',
66
70
  :'client_message_id' => :'client_message_id',
71
+ :'conversation_message_uuid' => :'conversation_message_uuid',
67
72
  :'media_urls' => :'media_urls',
73
+ :'merchant_id' => :'merchant_id',
68
74
  :'message_dts' => :'message_dts',
69
75
  :'transport_statuses' => :'transport_statuses',
70
76
  :'type' => :'type',
@@ -84,7 +90,9 @@ module UltracartClient
84
90
  :'author_conversation_participant_name' => :'String',
85
91
  :'body' => :'String',
86
92
  :'client_message_id' => :'String',
93
+ :'conversation_message_uuid' => :'String',
87
94
  :'media_urls' => :'Array<String>',
95
+ :'merchant_id' => :'String',
88
96
  :'message_dts' => :'String',
89
97
  :'transport_statuses' => :'Array<ConversationMessageTransportStatus>',
90
98
  :'type' => :'String',
@@ -129,12 +137,20 @@ module UltracartClient
129
137
  self.client_message_id = attributes[:'client_message_id']
130
138
  end
131
139
 
140
+ if attributes.key?(:'conversation_message_uuid')
141
+ self.conversation_message_uuid = attributes[:'conversation_message_uuid']
142
+ end
143
+
132
144
  if attributes.key?(:'media_urls')
133
145
  if (value = attributes[:'media_urls']).is_a?(Array)
134
146
  self.media_urls = value
135
147
  end
136
148
  end
137
149
 
150
+ if attributes.key?(:'merchant_id')
151
+ self.merchant_id = attributes[:'merchant_id']
152
+ end
153
+
138
154
  if attributes.key?(:'message_dts')
139
155
  self.message_dts = attributes[:'message_dts']
140
156
  end
@@ -190,7 +206,9 @@ module UltracartClient
190
206
  author_conversation_participant_name == o.author_conversation_participant_name &&
191
207
  body == o.body &&
192
208
  client_message_id == o.client_message_id &&
209
+ conversation_message_uuid == o.conversation_message_uuid &&
193
210
  media_urls == o.media_urls &&
211
+ merchant_id == o.merchant_id &&
194
212
  message_dts == o.message_dts &&
195
213
  transport_statuses == o.transport_statuses &&
196
214
  type == o.type &&
@@ -206,7 +224,7 @@ module UltracartClient
206
224
  # Calculates hash code according to all attributes.
207
225
  # @return [Integer] Hash code
208
226
  def hash
209
- [author_conversation_participant_arn, author_conversation_participant_name, body, client_message_id, media_urls, message_dts, transport_statuses, type, upload_keys].hash
227
+ [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
210
228
  end
211
229
 
212
230
  # 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.51.rc'
14
+ VERSION = '4.0.52.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.51.rc
4
+ version: 4.0.52.rc
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart