ultracart_api 4.1.104 → 4.1.105
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99d889cd177dc8e0a96e68da4a19732c8c89a77116223ce7b2e5e0767050e60a
|
|
4
|
+
data.tar.gz: 87da67a5c30f8f96347967721d57896331a06a9675e7fe7e2d5b5eeba83dd53d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 350e2d6687f64530bda6bc13a388a59ae80dc4a89b29d47073f05ac39ff86a11db218d41fb371242e32401cd6374280c43459ed474ff5e4aa9a88d7544662b73
|
|
7
|
+
data.tar.gz: 58115e72c24cfd8d78791281c4557333f11032cbade89170a598c085da3bdcd0bc4ece179035083a32629d810e70ade716dc0e65d5b022ee57b6cdcd8b39754f
|
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.105
|
|
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.105'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1793,6 +1793,7 @@ Not every change is committed to every SDK.
|
|
|
1793
1793
|
|
|
1794
1794
|
| Version | Date | Comments |
|
|
1795
1795
|
| --: | :-: | --- |
|
|
1796
|
+
| 4.1.105 | 07/01/2026 | conversation - updatePbxCall support additional zoho desk values |
|
|
1796
1797
|
| 4.1.104 | 06/30/2026 | conversations - customer snapshot zoho desk tickets included |
|
|
1797
1798
|
| 4.1.103 | 06/18/2026 | affiliate api alpha |
|
|
1798
1799
|
| 4.1.102 | 06/17/2026 | storefront communications - new single email enrollment method |
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **finalize** | **Boolean** | True when the agent has finished after-call work (Save & finish). Stamps notes_finalized_dts, which together with transcript availability gates Zoho Desk ticket creation. | [optional] |
|
|
8
8
|
| **notes** | **String** | Agent-authored notes for the call. Card-like values are scrubbed server-side for PCI compliance. | [optional] |
|
|
9
|
+
| **zoho_desk_ticket_id** | **String** | Existing zoho desk ticket id to associate this call with. | [optional] |
|
|
10
|
+
| **zoho_desk_ticket_url** | **String** | Existing zoho desk ticket URL | [optional] |
|
|
9
11
|
|
|
10
12
|
## Example
|
|
11
13
|
|
|
@@ -14,7 +16,9 @@ require 'ultracart_api'
|
|
|
14
16
|
|
|
15
17
|
instance = UltracartClient::ConversationPbxCallUpdateRequest.new(
|
|
16
18
|
finalize: null,
|
|
17
|
-
notes: null
|
|
19
|
+
notes: null,
|
|
20
|
+
zoho_desk_ticket_id: null,
|
|
21
|
+
zoho_desk_ticket_url: null
|
|
18
22
|
)
|
|
19
23
|
```
|
|
20
24
|
|
|
@@ -21,11 +21,19 @@ module UltracartClient
|
|
|
21
21
|
# Agent-authored notes for the call. Card-like values are scrubbed server-side for PCI compliance.
|
|
22
22
|
attr_accessor :notes
|
|
23
23
|
|
|
24
|
+
# Existing zoho desk ticket id to associate this call with.
|
|
25
|
+
attr_accessor :zoho_desk_ticket_id
|
|
26
|
+
|
|
27
|
+
# Existing zoho desk ticket URL
|
|
28
|
+
attr_accessor :zoho_desk_ticket_url
|
|
29
|
+
|
|
24
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
25
31
|
def self.attribute_map
|
|
26
32
|
{
|
|
27
33
|
:'finalize' => :'finalize',
|
|
28
|
-
:'notes' => :'notes'
|
|
34
|
+
:'notes' => :'notes',
|
|
35
|
+
:'zoho_desk_ticket_id' => :'zoho_desk_ticket_id',
|
|
36
|
+
:'zoho_desk_ticket_url' => :'zoho_desk_ticket_url'
|
|
29
37
|
}
|
|
30
38
|
end
|
|
31
39
|
|
|
@@ -38,7 +46,9 @@ module UltracartClient
|
|
|
38
46
|
def self.openapi_types
|
|
39
47
|
{
|
|
40
48
|
:'finalize' => :'Boolean',
|
|
41
|
-
:'notes' => :'String'
|
|
49
|
+
:'notes' => :'String',
|
|
50
|
+
:'zoho_desk_ticket_id' => :'String',
|
|
51
|
+
:'zoho_desk_ticket_url' => :'String'
|
|
42
52
|
}
|
|
43
53
|
end
|
|
44
54
|
|
|
@@ -70,6 +80,14 @@ module UltracartClient
|
|
|
70
80
|
if attributes.key?(:'notes')
|
|
71
81
|
self.notes = attributes[:'notes']
|
|
72
82
|
end
|
|
83
|
+
|
|
84
|
+
if attributes.key?(:'zoho_desk_ticket_id')
|
|
85
|
+
self.zoho_desk_ticket_id = attributes[:'zoho_desk_ticket_id']
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
if attributes.key?(:'zoho_desk_ticket_url')
|
|
89
|
+
self.zoho_desk_ticket_url = attributes[:'zoho_desk_ticket_url']
|
|
90
|
+
end
|
|
73
91
|
end
|
|
74
92
|
|
|
75
93
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -91,7 +109,9 @@ module UltracartClient
|
|
|
91
109
|
return true if self.equal?(o)
|
|
92
110
|
self.class == o.class &&
|
|
93
111
|
finalize == o.finalize &&
|
|
94
|
-
notes == o.notes
|
|
112
|
+
notes == o.notes &&
|
|
113
|
+
zoho_desk_ticket_id == o.zoho_desk_ticket_id &&
|
|
114
|
+
zoho_desk_ticket_url == o.zoho_desk_ticket_url
|
|
95
115
|
end
|
|
96
116
|
|
|
97
117
|
# @see the `==` method
|
|
@@ -103,7 +123,7 @@ module UltracartClient
|
|
|
103
123
|
# Calculates hash code according to all attributes.
|
|
104
124
|
# @return [Integer] Hash code
|
|
105
125
|
def hash
|
|
106
|
-
[finalize, notes].hash
|
|
126
|
+
[finalize, notes, zoho_desk_ticket_id, zoho_desk_ticket_url].hash
|
|
107
127
|
end
|
|
108
128
|
|
|
109
129
|
# 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.105
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|