ultracart_api 3.11.65 → 3.11.66

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: ca18068647c2638a16a7e44d8889c2f39067f9ba4eb70f696ef96bc36e3fa96d
4
- data.tar.gz: e07cb3584aff1ef671114ca0edcbb9c992d001be4cd7b4920e090682c65826b4
3
+ metadata.gz: 8a026a7fd995cb51f7d6da45a413eb4d46e1932d00156614bb80cf1abdbec44e
4
+ data.tar.gz: 3295c85da3c8b0451a543938969f153b00243b91ef3a5b4ec771fae05d2e2a96
5
5
  SHA512:
6
- metadata.gz: f646af12aebb5cb4236f8fb91e6a9b361675bdfee1e5aeb5741b2920683ca8e6b41c2cec9b6fab27ac9633d559ebe65c8dc9a389bb1523b783dba20bc8b0b20e
7
- data.tar.gz: d52a9e6c342a1f458c615aac91325880127072d74e754bc19de5292da2676b5fbddf6bc82f8b9b9e7cd49914f8014bd9a8338af47ccb38b49b393f86937ad7ff
6
+ metadata.gz: c407ab62551496c10e118ce2a8efd510cbc62a1707f4392aff05ea5e8cae2333eeabdbf4ce6de699ac28b3dbccf9b6c320d17098713aa981c0b1188d50c82007
7
+ data.tar.gz: 8e359c2cc77ca8e168e9ac7e3422fdfa2a241656b53a61179ff347e2a5832986bc6c76d36729538a2405fd5a1721519df76ad214dda7e7e1df6bd80b7a7bcdb5
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.65
10
+ - Package version: 3.11.66
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.65.gem
27
+ gem install ./ultracart_api-3.11.66.gem
28
28
  ```
29
- (for development, run `gem install --dev ./ultracart_api-3.11.65.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ultracart_api-3.11.66.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.65'
35
+ gem 'ultracart_api', '~> 3.11.66'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -1681,6 +1681,7 @@ Not every change is committed to every SDK.
1681
1681
 
1682
1682
  | Version | Date | Comments |
1683
1683
  | --: | :-: | --- |
1684
+ | 3.11.66 | 02/18/2026 | conversations - agent auth customer_profile flag |
1684
1685
  | 3.11.65 | 02/16/2026 | item - include variant pricing in the response |
1685
1686
  | 3.11.64 | 02/16/2026 | conversation - fix pbx call transcript segment speaker enum for leading space |
1686
1687
  | 3.11.63 | 02/12/2026 | build automation issue |
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  **chat_user** | **BOOLEAN** | | [optional]
8
8
  **conversation_participant_arn** | **String** | | [optional]
9
9
  **conversation_participant_name** | **String** | | [optional]
10
+ **customer_profile** | **BOOLEAN** | | [optional]
10
11
  **default_phone_number** | **String** | The default phone number this agent should use when making an outbound call. | [optional]
11
12
  **group_ids** | **Array<Integer>** | UltraCart Groups this user belongs to | [optional]
12
13
  **jwt** | **String** | | [optional]
@@ -22,6 +22,8 @@ module UltracartClient
22
22
 
23
23
  attr_accessor :conversation_participant_name
24
24
 
25
+ attr_accessor :customer_profile
26
+
25
27
  # The default phone number this agent should use when making an outbound call.
26
28
  attr_accessor :default_phone_number
27
29
 
@@ -62,6 +64,7 @@ module UltracartClient
62
64
  :'chat_user' => :'chat_user',
63
65
  :'conversation_participant_arn' => :'conversation_participant_arn',
64
66
  :'conversation_participant_name' => :'conversation_participant_name',
67
+ :'customer_profile' => :'customer_profile',
65
68
  :'default_phone_number' => :'default_phone_number',
66
69
  :'group_ids' => :'group_ids',
67
70
  :'jwt' => :'jwt',
@@ -87,6 +90,7 @@ module UltracartClient
87
90
  :'chat_user' => :'BOOLEAN',
88
91
  :'conversation_participant_arn' => :'String',
89
92
  :'conversation_participant_name' => :'String',
93
+ :'customer_profile' => :'BOOLEAN',
90
94
  :'default_phone_number' => :'String',
91
95
  :'group_ids' => :'Array<Integer>',
92
96
  :'jwt' => :'String',
@@ -129,6 +133,10 @@ module UltracartClient
129
133
  self.conversation_participant_name = attributes[:'conversation_participant_name']
130
134
  end
131
135
 
136
+ if attributes.has_key?(:'customer_profile')
137
+ self.customer_profile = attributes[:'customer_profile']
138
+ end
139
+
132
140
  if attributes.has_key?(:'default_phone_number')
133
141
  self.default_phone_number = attributes[:'default_phone_number']
134
142
  end
@@ -216,6 +224,7 @@ module UltracartClient
216
224
  chat_user == o.chat_user &&
217
225
  conversation_participant_arn == o.conversation_participant_arn &&
218
226
  conversation_participant_name == o.conversation_participant_name &&
227
+ customer_profile == o.customer_profile &&
219
228
  default_phone_number == o.default_phone_number &&
220
229
  group_ids == o.group_ids &&
221
230
  jwt == o.jwt &&
@@ -242,7 +251,7 @@ module UltracartClient
242
251
  # Calculates hash code according to all attributes.
243
252
  # @return [Fixnum] Hash code
244
253
  def hash
245
- [chat_admin, chat_user, conversation_participant_arn, conversation_participant_name, default_phone_number, 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
254
+ [chat_admin, chat_user, conversation_participant_arn, conversation_participant_name, customer_profile, default_phone_number, 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
246
255
  end
247
256
 
248
257
  # 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.65'
14
+ VERSION = '3.11.66'
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.65
4
+ version: 3.11.66
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-16 00:00:00.000000000 Z
11
+ date: 2026-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus