ultracart_api 4.1.116 → 4.1.117
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/ConversationStartRequest.md +3 -1
- data/lib/ultracart_api/models/conversation_start_request.rb +13 -4
- 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: b4dbada8483779e8d00c3a0ea671b9968e4b6dfd6b2243f611063a91c1a079bf
|
|
4
|
+
data.tar.gz: 75054c96cd29b15c6b8aced1084cba3c56e3cdec64699490d1254c058671ef5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d074102fcee1ffed6278dd4513ca039b8998affeeae12d75d0bca56b05e5dfb74417ac1a7cf6afb19a9db0d8eeda8a0cf292403f93549eae21c7bac004a6704b
|
|
7
|
+
data.tar.gz: 487296f31b1833f3a21ec54dc47a7c846ffc84f38664762bdb891d9ad1ed794f5083407dac818485ae6a2d3b1f00fdff1bc72798e82627d454d9aba891f1826f
|
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.117
|
|
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.117'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1823,6 +1823,7 @@ Not every change is committed to every SDK.
|
|
|
1823
1823
|
|
|
1824
1824
|
| Version | Date | Comments |
|
|
1825
1825
|
| --: | :-: | --- |
|
|
1826
|
+
| 4.1.117 | 07/14/2026 | conversation - join method resolve_only flag added |
|
|
1826
1827
|
| 4.1.116 | 07/10/2026 | customer - method to search quickbooks online customers |
|
|
1827
1828
|
| 4.1.115 | 07/10/2026 | customer profile birthday |
|
|
1828
1829
|
| 4.1.114 | 07/08/2026 | tax - anrok tax provider |
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
| **add_conversation_participant_arns** | **Array<String>** | | [optional] |
|
|
8
8
|
| **conversation_arn** | **String** | | [optional] |
|
|
9
9
|
| **conversation_webchat_queue_uuid** | **String** | | [optional] |
|
|
10
|
+
| **resolve_only** | **Boolean** | | [optional] |
|
|
10
11
|
|
|
11
12
|
## Example
|
|
12
13
|
|
|
@@ -16,7 +17,8 @@ require 'ultracart_api'
|
|
|
16
17
|
instance = UltracartClient::ConversationStartRequest.new(
|
|
17
18
|
add_conversation_participant_arns: null,
|
|
18
19
|
conversation_arn: null,
|
|
19
|
-
conversation_webchat_queue_uuid: null
|
|
20
|
+
conversation_webchat_queue_uuid: null,
|
|
21
|
+
resolve_only: null
|
|
20
22
|
)
|
|
21
23
|
```
|
|
22
24
|
|
|
@@ -21,12 +21,15 @@ module UltracartClient
|
|
|
21
21
|
|
|
22
22
|
attr_accessor :conversation_webchat_queue_uuid
|
|
23
23
|
|
|
24
|
+
attr_accessor :resolve_only
|
|
25
|
+
|
|
24
26
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
25
27
|
def self.attribute_map
|
|
26
28
|
{
|
|
27
29
|
:'add_conversation_participant_arns' => :'add_conversation_participant_arns',
|
|
28
30
|
:'conversation_arn' => :'conversation_arn',
|
|
29
|
-
:'conversation_webchat_queue_uuid' => :'conversation_webchat_queue_uuid'
|
|
31
|
+
:'conversation_webchat_queue_uuid' => :'conversation_webchat_queue_uuid',
|
|
32
|
+
:'resolve_only' => :'resolve_only'
|
|
30
33
|
}
|
|
31
34
|
end
|
|
32
35
|
|
|
@@ -40,7 +43,8 @@ module UltracartClient
|
|
|
40
43
|
{
|
|
41
44
|
:'add_conversation_participant_arns' => :'Array<String>',
|
|
42
45
|
:'conversation_arn' => :'String',
|
|
43
|
-
:'conversation_webchat_queue_uuid' => :'String'
|
|
46
|
+
:'conversation_webchat_queue_uuid' => :'String',
|
|
47
|
+
:'resolve_only' => :'Boolean'
|
|
44
48
|
}
|
|
45
49
|
end
|
|
46
50
|
|
|
@@ -78,6 +82,10 @@ module UltracartClient
|
|
|
78
82
|
if attributes.key?(:'conversation_webchat_queue_uuid')
|
|
79
83
|
self.conversation_webchat_queue_uuid = attributes[:'conversation_webchat_queue_uuid']
|
|
80
84
|
end
|
|
85
|
+
|
|
86
|
+
if attributes.key?(:'resolve_only')
|
|
87
|
+
self.resolve_only = attributes[:'resolve_only']
|
|
88
|
+
end
|
|
81
89
|
end
|
|
82
90
|
|
|
83
91
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -100,7 +108,8 @@ module UltracartClient
|
|
|
100
108
|
self.class == o.class &&
|
|
101
109
|
add_conversation_participant_arns == o.add_conversation_participant_arns &&
|
|
102
110
|
conversation_arn == o.conversation_arn &&
|
|
103
|
-
conversation_webchat_queue_uuid == o.conversation_webchat_queue_uuid
|
|
111
|
+
conversation_webchat_queue_uuid == o.conversation_webchat_queue_uuid &&
|
|
112
|
+
resolve_only == o.resolve_only
|
|
104
113
|
end
|
|
105
114
|
|
|
106
115
|
# @see the `==` method
|
|
@@ -112,7 +121,7 @@ module UltracartClient
|
|
|
112
121
|
# Calculates hash code according to all attributes.
|
|
113
122
|
# @return [Integer] Hash code
|
|
114
123
|
def hash
|
|
115
|
-
[add_conversation_participant_arns, conversation_arn, conversation_webchat_queue_uuid].hash
|
|
124
|
+
[add_conversation_participant_arns, conversation_arn, conversation_webchat_queue_uuid, resolve_only].hash
|
|
116
125
|
end
|
|
117
126
|
|
|
118
127
|
# 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.117
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|