ultracart_api 4.1.65 → 4.1.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 +4 -4
- data/README.md +3 -2
- data/docs/ConversationAgentAuth.md +2 -0
- data/lib/ultracart_api/models/conversation_agent_auth.rb +10 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd925f83b1894aa8e66aebe8df30b9ee4f4cd3da79e3d6cffbe26f4c7c897741
|
|
4
|
+
data.tar.gz: 8aef6c981c156445827efc98baa458507951ca5544ccd37afcc279a80a073964
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a0c4d7d8dcd270a3f25c28e80a3d0891d2569c097b78fabf13f5ea2326f52ad8336f463679eb4a6b9bcfc8285b909e2d24cd4ef54f423bc8fb2152ff9b4d2e0
|
|
7
|
+
data.tar.gz: 1c6079faf8db6cb8037d1894d19f3a1c59fb28518cffda5976f6e7f3827172e2228287af5007636d5a61799ca37ad63bb79a0be347875bfce2c2b31575646f7a
|
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.
|
|
10
|
+
- Package version: 4.1.66
|
|
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.
|
|
19
|
+
gem 'ultracart_api', '4.1.66'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1679,6 +1679,7 @@ Not every change is committed to every SDK.
|
|
|
1679
1679
|
|
|
1680
1680
|
| Version | Date | Comments |
|
|
1681
1681
|
| --: | :-: | --- |
|
|
1682
|
+
| 4.1.66 | 02/18/2026 | conversations - agent auth customer_profile flag |
|
|
1682
1683
|
| 4.1.65 | 02/16/2026 | item - include variant pricing in the response |
|
|
1683
1684
|
| 4.1.64 | 02/16/2026 | conversation - fix pbx call transcript segment speaker enum for leading space |
|
|
1684
1685
|
| 4.1.63 | 02/12/2026 | build automation issue |
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
| **chat_user** | **Boolean** | | [optional] |
|
|
9
9
|
| **conversation_participant_arn** | **String** | | [optional] |
|
|
10
10
|
| **conversation_participant_name** | **String** | | [optional] |
|
|
11
|
+
| **customer_profile** | **Boolean** | | [optional] |
|
|
11
12
|
| **default_phone_number** | **String** | The default phone number this agent should use when making an outbound call. | [optional] |
|
|
12
13
|
| **group_ids** | **Array<Integer>** | UltraCart Groups this user belongs to | [optional] |
|
|
13
14
|
| **jwt** | **String** | | [optional] |
|
|
@@ -34,6 +35,7 @@ instance = UltracartClient::ConversationAgentAuth.new(
|
|
|
34
35
|
chat_user: null,
|
|
35
36
|
conversation_participant_arn: null,
|
|
36
37
|
conversation_participant_name: null,
|
|
38
|
+
customer_profile: null,
|
|
37
39
|
default_phone_number: null,
|
|
38
40
|
group_ids: null,
|
|
39
41
|
jwt: null,
|
|
@@ -23,6 +23,8 @@ module UltracartClient
|
|
|
23
23
|
|
|
24
24
|
attr_accessor :conversation_participant_name
|
|
25
25
|
|
|
26
|
+
attr_accessor :customer_profile
|
|
27
|
+
|
|
26
28
|
# The default phone number this agent should use when making an outbound call.
|
|
27
29
|
attr_accessor :default_phone_number
|
|
28
30
|
|
|
@@ -63,6 +65,7 @@ module UltracartClient
|
|
|
63
65
|
:'chat_user' => :'chat_user',
|
|
64
66
|
:'conversation_participant_arn' => :'conversation_participant_arn',
|
|
65
67
|
:'conversation_participant_name' => :'conversation_participant_name',
|
|
68
|
+
:'customer_profile' => :'customer_profile',
|
|
66
69
|
:'default_phone_number' => :'default_phone_number',
|
|
67
70
|
:'group_ids' => :'group_ids',
|
|
68
71
|
:'jwt' => :'jwt',
|
|
@@ -93,6 +96,7 @@ module UltracartClient
|
|
|
93
96
|
:'chat_user' => :'Boolean',
|
|
94
97
|
:'conversation_participant_arn' => :'String',
|
|
95
98
|
:'conversation_participant_name' => :'String',
|
|
99
|
+
:'customer_profile' => :'Boolean',
|
|
96
100
|
:'default_phone_number' => :'String',
|
|
97
101
|
:'group_ids' => :'Array<Integer>',
|
|
98
102
|
:'jwt' => :'String',
|
|
@@ -148,6 +152,10 @@ module UltracartClient
|
|
|
148
152
|
self.conversation_participant_name = attributes[:'conversation_participant_name']
|
|
149
153
|
end
|
|
150
154
|
|
|
155
|
+
if attributes.key?(:'customer_profile')
|
|
156
|
+
self.customer_profile = attributes[:'customer_profile']
|
|
157
|
+
end
|
|
158
|
+
|
|
151
159
|
if attributes.key?(:'default_phone_number')
|
|
152
160
|
self.default_phone_number = attributes[:'default_phone_number']
|
|
153
161
|
end
|
|
@@ -235,6 +243,7 @@ module UltracartClient
|
|
|
235
243
|
chat_user == o.chat_user &&
|
|
236
244
|
conversation_participant_arn == o.conversation_participant_arn &&
|
|
237
245
|
conversation_participant_name == o.conversation_participant_name &&
|
|
246
|
+
customer_profile == o.customer_profile &&
|
|
238
247
|
default_phone_number == o.default_phone_number &&
|
|
239
248
|
group_ids == o.group_ids &&
|
|
240
249
|
jwt == o.jwt &&
|
|
@@ -261,7 +270,7 @@ module UltracartClient
|
|
|
261
270
|
# Calculates hash code according to all attributes.
|
|
262
271
|
# @return [Integer] Hash code
|
|
263
272
|
def hash
|
|
264
|
-
[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
|
|
273
|
+
[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
|
|
265
274
|
end
|
|
266
275
|
|
|
267
276
|
# Builds the object from hash
|
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.
|
|
4
|
+
version: 4.1.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-
|
|
11
|
+
date: 2026-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|