ultracart_api 3.11.35 → 3.11.36

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: 74fd0a3b8e29bca5d8137de15d5dbf25af8aa34c49b6fa876256fc02b26d6dcc
4
- data.tar.gz: 2caec0dcab300c7e0b5cfa04107a1216b4142e623962823040cbb7abd3d3e116
3
+ metadata.gz: dd49fb759aae452542ae8e5d360e61d77eedd6a6b1ceecf54294d603d9840103
4
+ data.tar.gz: faf31901feac13f866647bbd71bfa484e4484ce5c61713057011b4553169df36
5
5
  SHA512:
6
- metadata.gz: 0b0bf20b37350ecad56f6485bf7173e88d48c0b9449074b5396a2c73d3e1012acd31d0e8baeeafab5f8136038e0b4c40647111304a97b5d6f7c96f7a1e9e46ac
7
- data.tar.gz: 66f75317d45561cf712e2d2d3b317d3c462b43620165ac4e74e174626b58ff8c5ec2cc9848484726822aa4b6f2058e024ffe077bd182a2680932ca39fa2d2817
6
+ metadata.gz: e5970f27fac6042e83dd750e487ce19ee703d4293623983d5c7d4b13ce36b9940866694607d5273a8bc32928ecbf5210835d862a1027c090bb67c0e26d222e31
7
+ data.tar.gz: 50b978d12fe51ab1a8f953f166a201a81a99637ec2ae01932930d7ce96f5cc3465ca1e2ff6b96370aa87c7336e38ccb5d1f10416affb156d1e78efa37ccbd851
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.11.35
10
+ - Package version: 3.11.36
11
11
  - Build package: io.swagger.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
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.11.35.gem
27
+ gem install ./ultracart_api-3.11.36.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.11.35.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.11.36.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.11.35'
35
+ gem 'ultracart_api', '~> 3.11.36'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1602,6 +1602,7 @@ Not every change is committed to every SDK.
1602
1602
 
1603
1603
  | Version | Date | Comments |
1604
1604
  | --: | :-: | --- |
1605
+ | 3.11.36 | 12/22/2025 | conversation - agent auth worker token v2 |
1605
1606
  | 3.11.35 | 12/02/2025 | caching option added to getCustomers, created new method searchCustomers |
1606
1607
  | 3.11.34 | 12/02/2025 | coupons - added optional free specific shipping method to two coupons |
1607
1608
  | 3.11.33 | 11/26/2025 | conversation - AI agent profile fields |
@@ -15,6 +15,7 @@ Name | Type | Description | Notes
15
15
  **pbx_voice_identity** | **String** | | [optional]
16
16
  **pbx_voice_token** | **String** | | [optional]
17
17
  **pbx_worker_token** | **String** | | [optional]
18
+ **pbx_worker_token_v2** | **String** | | [optional]
18
19
  **twilio_accounts** | [**Array<ConversationTwilioAccount>**](ConversationTwilioAccount.md) | | [optional]
19
20
  **user_id** | **Integer** | UltraCart User ID | [optional]
20
21
  **websocket_url** | **String** | | [optional]
@@ -39,6 +39,8 @@ module UltracartClient
39
39
 
40
40
  attr_accessor :pbx_worker_token
41
41
 
42
+ attr_accessor :pbx_worker_token_v2
43
+
42
44
  attr_accessor :twilio_accounts
43
45
 
44
46
  # UltraCart User ID
@@ -61,6 +63,7 @@ module UltracartClient
61
63
  :'pbx_voice_identity' => :'pbx_voice_identity',
62
64
  :'pbx_voice_token' => :'pbx_voice_token',
63
65
  :'pbx_worker_token' => :'pbx_worker_token',
66
+ :'pbx_worker_token_v2' => :'pbx_worker_token_v2',
64
67
  :'twilio_accounts' => :'twilio_accounts',
65
68
  :'user_id' => :'user_id',
66
69
  :'websocket_url' => :'websocket_url'
@@ -82,6 +85,7 @@ module UltracartClient
82
85
  :'pbx_voice_identity' => :'String',
83
86
  :'pbx_voice_token' => :'String',
84
87
  :'pbx_worker_token' => :'String',
88
+ :'pbx_worker_token_v2' => :'String',
85
89
  :'twilio_accounts' => :'Array<ConversationTwilioAccount>',
86
90
  :'user_id' => :'Integer',
87
91
  :'websocket_url' => :'String'
@@ -146,6 +150,10 @@ module UltracartClient
146
150
  self.pbx_worker_token = attributes[:'pbx_worker_token']
147
151
  end
148
152
 
153
+ if attributes.has_key?(:'pbx_worker_token_v2')
154
+ self.pbx_worker_token_v2 = attributes[:'pbx_worker_token_v2']
155
+ end
156
+
149
157
  if attributes.has_key?(:'twilio_accounts')
150
158
  if (value = attributes[:'twilio_accounts']).is_a?(Array)
151
159
  self.twilio_accounts = value
@@ -191,6 +199,7 @@ module UltracartClient
191
199
  pbx_voice_identity == o.pbx_voice_identity &&
192
200
  pbx_voice_token == o.pbx_voice_token &&
193
201
  pbx_worker_token == o.pbx_worker_token &&
202
+ pbx_worker_token_v2 == o.pbx_worker_token_v2 &&
194
203
  twilio_accounts == o.twilio_accounts &&
195
204
  user_id == o.user_id &&
196
205
  websocket_url == o.websocket_url
@@ -205,7 +214,7 @@ module UltracartClient
205
214
  # Calculates hash code according to all attributes.
206
215
  # @return [Fixnum] Hash code
207
216
  def 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
217
+ [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, pbx_worker_token_v2, twilio_accounts, user_id, websocket_url].hash
209
218
  end
210
219
 
211
220
  # 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.11.35'
14
+ VERSION = '3.11.36'
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.11.35
4
+ version: 3.11.36
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-02 00:00:00.000000000 Z
11
+ date: 2025-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus