ultracart_api 4.1.35 → 4.1.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: 261a7f783b8e6549fc4e3bdf2dc2a11f4fd01a1b6fdf2ce06ca62d6057fe0847
4
- data.tar.gz: '0168bf2bfbbac4dd6c3265823c02ad35fb909ec40d3a12e5667830bdadcf71ec'
3
+ metadata.gz: 14c18a04e160aee6ee7e468b8ec7bfa46e6c19ee035722bcd5299562e98f8c91
4
+ data.tar.gz: 1d3b3e99b66afb783bfaf28fe79d8fed448436f3209a3f157e6d286aeb77e3e6
5
5
  SHA512:
6
- metadata.gz: f447501c910811d3bc63fa4559a6bfa4f5bf15ead6b661afb1ccdbf4f918d64857b89476981cde1efa14e7aeb597771e853d745e1aa2b719a051234a48bef76c
7
- data.tar.gz: 5632695b743338ece4f79f0264094c436f98b68243735bf4ba157a9dc78e83d4e1a36f8fe2641cb0c7de8b1c1fb171de9e2f85e551b6088ac99e045eeaf178b9
6
+ metadata.gz: d746c7712a7a2eb0527ad9584859b2f14b1fa4891c4fa011f205fd00d5bade02508da37b214c2a7741a154008ded03904a63ec58aa98390c71c95a495f6d891c
7
+ data.tar.gz: 7988584677a5047ee4a48cacc91a707729aff0ea2e10f68fe67b95bb8fbed57e6f4cfd7a15a199365b96cd2c4b54fc17ceb7244d33c1e89c20b293d67cbe7170
data/README.md CHANGED
@@ -7,7 +7,7 @@ Note: Every method has a sample for every language. See https://github.com/Ultr
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.1.35
10
+ - Package version: 4.1.36
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  - For more information, please visit [http://www.ultracart.com/api/](http://www.ultracart.com/api/)
13
13
 
@@ -16,7 +16,7 @@ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-g
16
16
  gemfile:
17
17
 
18
18
  ```shell
19
- gem 'ultracart_api', '4.1.35'
19
+ gem 'ultracart_api', '4.1.36'
20
20
  ```
21
21
 
22
22
  install:
@@ -1600,6 +1600,7 @@ Not every change is committed to every SDK.
1600
1600
 
1601
1601
  | Version | Date | Comments |
1602
1602
  | --: | :-: | --- |
1603
+ | 4.1.36 | 12/22/2025 | conversation - agent auth worker token v2 |
1603
1604
  | 4.1.35 | 12/02/2025 | caching option added to getCustomers, created new method searchCustomers |
1604
1605
  | 4.1.34 | 12/02/2025 | coupons - added optional free specific shipping method to two coupons |
1605
1606
  | 4.1.33 | 11/26/2025 | conversation - AI agent profile fields |
@@ -16,6 +16,7 @@
16
16
  | **pbx_voice_identity** | **String** | | [optional] |
17
17
  | **pbx_voice_token** | **String** | | [optional] |
18
18
  | **pbx_worker_token** | **String** | | [optional] |
19
+ | **pbx_worker_token_v2** | **String** | | [optional] |
19
20
  | **twilio_accounts** | [**Array<ConversationTwilioAccount>**](ConversationTwilioAccount.md) | | [optional] |
20
21
  | **user_id** | **Integer** | UltraCart User ID | [optional] |
21
22
  | **websocket_url** | **String** | | [optional] |
@@ -38,6 +39,7 @@ instance = UltracartClient::ConversationAgentAuth.new(
38
39
  pbx_voice_identity: null,
39
40
  pbx_voice_token: null,
40
41
  pbx_worker_token: null,
42
+ pbx_worker_token_v2: null,
41
43
  twilio_accounts: null,
42
44
  user_id: null,
43
45
  websocket_url: null
@@ -40,6 +40,8 @@ module UltracartClient
40
40
 
41
41
  attr_accessor :pbx_worker_token
42
42
 
43
+ attr_accessor :pbx_worker_token_v2
44
+
43
45
  attr_accessor :twilio_accounts
44
46
 
45
47
  # UltraCart User ID
@@ -62,6 +64,7 @@ module UltracartClient
62
64
  :'pbx_voice_identity' => :'pbx_voice_identity',
63
65
  :'pbx_voice_token' => :'pbx_voice_token',
64
66
  :'pbx_worker_token' => :'pbx_worker_token',
67
+ :'pbx_worker_token_v2' => :'pbx_worker_token_v2',
65
68
  :'twilio_accounts' => :'twilio_accounts',
66
69
  :'user_id' => :'user_id',
67
70
  :'websocket_url' => :'websocket_url'
@@ -88,6 +91,7 @@ module UltracartClient
88
91
  :'pbx_voice_identity' => :'String',
89
92
  :'pbx_voice_token' => :'String',
90
93
  :'pbx_worker_token' => :'String',
94
+ :'pbx_worker_token_v2' => :'String',
91
95
  :'twilio_accounts' => :'Array<ConversationTwilioAccount>',
92
96
  :'user_id' => :'Integer',
93
97
  :'websocket_url' => :'String'
@@ -165,6 +169,10 @@ module UltracartClient
165
169
  self.pbx_worker_token = attributes[:'pbx_worker_token']
166
170
  end
167
171
 
172
+ if attributes.key?(:'pbx_worker_token_v2')
173
+ self.pbx_worker_token_v2 = attributes[:'pbx_worker_token_v2']
174
+ end
175
+
168
176
  if attributes.key?(:'twilio_accounts')
169
177
  if (value = attributes[:'twilio_accounts']).is_a?(Array)
170
178
  self.twilio_accounts = value
@@ -210,6 +218,7 @@ module UltracartClient
210
218
  pbx_voice_identity == o.pbx_voice_identity &&
211
219
  pbx_voice_token == o.pbx_voice_token &&
212
220
  pbx_worker_token == o.pbx_worker_token &&
221
+ pbx_worker_token_v2 == o.pbx_worker_token_v2 &&
213
222
  twilio_accounts == o.twilio_accounts &&
214
223
  user_id == o.user_id &&
215
224
  websocket_url == o.websocket_url
@@ -224,7 +233,7 @@ module UltracartClient
224
233
  # Calculates hash code according to all attributes.
225
234
  # @return [Integer] Hash code
226
235
  def hash
227
- [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
236
+ [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
228
237
  end
229
238
 
230
239
  # 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.1.35'
14
+ VERSION = '4.1.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: 4.1.35
4
+ version: 4.1.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