ultracart_api 3.10.220 → 3.10.221

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: 4038e671e98bf358adc1952b9ea0bbba981152d6eb53945b2b1a48877b869a51
4
- data.tar.gz: f58aba3aadf4256da856280623ac94b28d032e4145f3e2ed92add2f0aa4fc788
3
+ metadata.gz: b31a4f1687dc53aacc495cdcee49c393129186b7fbe407d107915494cd25bdd0
4
+ data.tar.gz: df0dda2bfa9210cdd5f5e6f96f64f9d436c3b559d05757ec0af861ea02e190d2
5
5
  SHA512:
6
- metadata.gz: dce682092d8b7304148b27327c6bccf9d3e2cf8c86ce892185a783842089b87e975315998931d3ac9dd88bc7833585c0dc7c62feedb3349aaf93c501758140fd
7
- data.tar.gz: bee884e2f629a3e1bb3a072a37f734202e97194d7a7939d563cbfb67f6a00d9a1ffcbc20236420e98183a1405ac29f7f534a163ff086a3a536673878d51f3085
6
+ metadata.gz: 5d8e5882036b399f4ee65a2a447b57a795010e027aa640c36ebd205ca830f7b90092dd8d61ffd9afd0ca865ef12b3235ce72101ed00ccca6c6a9ac36d9b163e6
7
+ data.tar.gz: 135d00e2a2bfc0f738bb932ba877f7aa1fa7d904b07a3171e0d6f6dcb8f772b4613e4a11e031aded196db5a31d1fe08a32e654fdbb74db225c78048ceea61ca3
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.220
10
+ - Package version: 3.10.221
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.220.gem
27
+ gem install ./ultracart_api-3.10.221.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.10.220.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.10.221.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.220'
35
+ gem 'ultracart_api', '~> 3.10.221'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1512,6 +1512,7 @@ Not every change is committed to every SDK.
1512
1512
 
1513
1513
  | Version | Date | Comments |
1514
1514
  | --: | :-: | --- |
1515
+ | 3.10.221 | 12/13/2024 | added user and group ids to conversation agent auth object |
1515
1516
  | 3.10.220 | 11/11/2024 | added seo properties to item.content object |
1516
1517
  | 3.10.219 | 11/07/2024 | Coupon - PercentOffWithItemsQuantityPurchase - added support for tags |
1517
1518
  | 3.10.218 | 11/04/2024 | item - new constant for auto order schedule of every 5 months |
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **conversation_participant_arn** | **String** | | [optional]
7
7
  **conversation_participant_name** | **String** | | [optional]
8
+ **group_ids** | **Array<Integer>** | UltraCart Groups this user belongs to | [optional]
8
9
  **jwt** | **String** | | [optional]
9
10
  **merchant_id** | **String** | | [optional]
10
11
  **pbx_admin** | **BOOLEAN** | | [optional]
@@ -15,6 +16,7 @@ Name | Type | Description | Notes
15
16
  **pbx_voice_token** | **String** | | [optional]
16
17
  **pbx_worker_token** | **String** | | [optional]
17
18
  **twilio_accounts** | [**Array<ConversationTwilioAccount>**](ConversationTwilioAccount.md) | | [optional]
19
+ **user_id** | **Integer** | UltraCart User ID | [optional]
18
20
  **websocket_url** | **String** | | [optional]
19
21
 
20
22
 
@@ -18,6 +18,9 @@ module UltracartClient
18
18
 
19
19
  attr_accessor :conversation_participant_name
20
20
 
21
+ # UltraCart Groups this user belongs to
22
+ attr_accessor :group_ids
23
+
21
24
  attr_accessor :jwt
22
25
 
23
26
  attr_accessor :merchant_id
@@ -38,6 +41,9 @@ module UltracartClient
38
41
 
39
42
  attr_accessor :twilio_accounts
40
43
 
44
+ # UltraCart User ID
45
+ attr_accessor :user_id
46
+
41
47
  attr_accessor :websocket_url
42
48
 
43
49
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -45,6 +51,7 @@ module UltracartClient
45
51
  {
46
52
  :'conversation_participant_arn' => :'conversation_participant_arn',
47
53
  :'conversation_participant_name' => :'conversation_participant_name',
54
+ :'group_ids' => :'group_ids',
48
55
  :'jwt' => :'jwt',
49
56
  :'merchant_id' => :'merchant_id',
50
57
  :'pbx_admin' => :'pbx_admin',
@@ -55,6 +62,7 @@ module UltracartClient
55
62
  :'pbx_voice_token' => :'pbx_voice_token',
56
63
  :'pbx_worker_token' => :'pbx_worker_token',
57
64
  :'twilio_accounts' => :'twilio_accounts',
65
+ :'user_id' => :'user_id',
58
66
  :'websocket_url' => :'websocket_url'
59
67
  }
60
68
  end
@@ -64,6 +72,7 @@ module UltracartClient
64
72
  {
65
73
  :'conversation_participant_arn' => :'String',
66
74
  :'conversation_participant_name' => :'String',
75
+ :'group_ids' => :'Array<Integer>',
67
76
  :'jwt' => :'String',
68
77
  :'merchant_id' => :'String',
69
78
  :'pbx_admin' => :'BOOLEAN',
@@ -74,6 +83,7 @@ module UltracartClient
74
83
  :'pbx_voice_token' => :'String',
75
84
  :'pbx_worker_token' => :'String',
76
85
  :'twilio_accounts' => :'Array<ConversationTwilioAccount>',
86
+ :'user_id' => :'Integer',
77
87
  :'websocket_url' => :'String'
78
88
  }
79
89
  end
@@ -94,6 +104,12 @@ module UltracartClient
94
104
  self.conversation_participant_name = attributes[:'conversation_participant_name']
95
105
  end
96
106
 
107
+ if attributes.has_key?(:'group_ids')
108
+ if (value = attributes[:'group_ids']).is_a?(Array)
109
+ self.group_ids = value
110
+ end
111
+ end
112
+
97
113
  if attributes.has_key?(:'jwt')
98
114
  self.jwt = attributes[:'jwt']
99
115
  end
@@ -136,6 +152,10 @@ module UltracartClient
136
152
  end
137
153
  end
138
154
 
155
+ if attributes.has_key?(:'user_id')
156
+ self.user_id = attributes[:'user_id']
157
+ end
158
+
139
159
  if attributes.has_key?(:'websocket_url')
140
160
  self.websocket_url = attributes[:'websocket_url']
141
161
  end
@@ -161,6 +181,7 @@ module UltracartClient
161
181
  self.class == o.class &&
162
182
  conversation_participant_arn == o.conversation_participant_arn &&
163
183
  conversation_participant_name == o.conversation_participant_name &&
184
+ group_ids == o.group_ids &&
164
185
  jwt == o.jwt &&
165
186
  merchant_id == o.merchant_id &&
166
187
  pbx_admin == o.pbx_admin &&
@@ -171,6 +192,7 @@ module UltracartClient
171
192
  pbx_voice_token == o.pbx_voice_token &&
172
193
  pbx_worker_token == o.pbx_worker_token &&
173
194
  twilio_accounts == o.twilio_accounts &&
195
+ user_id == o.user_id &&
174
196
  websocket_url == o.websocket_url
175
197
  end
176
198
 
@@ -183,7 +205,7 @@ module UltracartClient
183
205
  # Calculates hash code according to all attributes.
184
206
  # @return [Fixnum] Hash code
185
207
  def hash
186
- [conversation_participant_arn, conversation_participant_name, jwt, merchant_id, pbx_admin, pbx_jwt, pbx_supervisor, pbx_user, pbx_voice_identity, pbx_voice_token, pbx_worker_token, twilio_accounts, websocket_url].hash
208
+ [conversation_participant_arn, conversation_participant_name, group_ids, jwt, merchant_id, pbx_admin, pbx_jwt, pbx_supervisor, pbx_user, pbx_voice_identity, pbx_voice_token, pbx_worker_token, twilio_accounts, user_id, websocket_url].hash
187
209
  end
188
210
 
189
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.220'
14
+ VERSION = '3.10.221'
15
15
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.220
4
+ version: 3.10.221
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-11 00:00:00.000000000 Z
11
+ date: 2024-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus