ultracart_api 4.1.66 → 4.1.67
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/Customer.md +1 -1
- data/docs/CustomerActivity.md +4 -0
- data/lib/ultracart_api/models/customer.rb +1 -1
- data/lib/ultracart_api/models/customer_activity.rb +19 -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: c891956f88e34aaadf79b61761ed8da186e2dcce7330fef00b14b597716fe8c0
|
|
4
|
+
data.tar.gz: 90bb47d50d68b8a5788bb82d38d9d8e4b02cf0f2d61f7ffad332fbe6a94aed7a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 699ffb070956863d0689d9a753e476d2fb57289e794db70f2f45babce55ec94b1c791ee8d25180d23a4fa5fa3d7b9b174c1953974e5496c5a471c6ea1090cfed
|
|
7
|
+
data.tar.gz: 387df9a2d87488c039f9e6d5db9c65047c36653e3c480cad8829758f7677de4d0708ce6c94171cfb0bb803897c8a1866d947067ccba837554376ba962653ec03
|
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.67
|
|
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.67'
|
|
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.67 | 02/24/2026 | customer activity - sms and sms_stop fields added |
|
|
1682
1683
|
| 4.1.66 | 02/18/2026 | conversations - agent auth customer_profile flag |
|
|
1683
1684
|
| 4.1.65 | 02/16/2026 | item - include variant pricing in the response |
|
|
1684
1685
|
| 4.1.64 | 02/16/2026 | conversation - fix pbx call transcript segment speaker enum for leading space |
|
data/docs/Customer.md
CHANGED
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
| **qb_tax_exemption_reason_code** | **Integer** | QuickBooks tax exemption reason code | [optional] |
|
|
53
53
|
| **quotes** | [**Array<Order>**](Order.md) | Quotes associated with this customer profile | [optional] |
|
|
54
54
|
| **quotes_summary** | [**CustomerQuotesSummary**](CustomerQuotesSummary.md) | | [optional] |
|
|
55
|
-
| **referral_source** | **String** | Referral Source | [optional] |
|
|
55
|
+
| **referral_source** | **String** | Referral Source specified on the wholesale customer signup form. No other meaning than that signup flow. | [optional] |
|
|
56
56
|
| **reviewer** | [**CustomerReviewer**](CustomerReviewer.md) | | [optional] |
|
|
57
57
|
| **sales_rep_code** | **String** | Sales rep code | [optional] |
|
|
58
58
|
| **send_signup_notification** | **Boolean** | Send signup notification, if true during customer creation, will send a notification. | [optional] |
|
data/docs/CustomerActivity.md
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
| **memberships** | [**Array<ListSegmentMembership>**](ListSegmentMembership.md) | | [optional] |
|
|
11
11
|
| **metrics** | [**Array<Metric>**](Metric.md) | | [optional] |
|
|
12
12
|
| **properties_list** | [**Array<Property>**](Property.md) | | [optional] |
|
|
13
|
+
| **sms** | **String** | | [optional] |
|
|
14
|
+
| **sms_stop** | **Boolean** | | [optional] |
|
|
13
15
|
| **spam_complaint** | **Boolean** | | [optional] |
|
|
14
16
|
| **spam_complaint_dts** | **String** | | [optional] |
|
|
15
17
|
|
|
@@ -25,6 +27,8 @@ instance = UltracartClient::CustomerActivity.new(
|
|
|
25
27
|
memberships: null,
|
|
26
28
|
metrics: null,
|
|
27
29
|
properties_list: null,
|
|
30
|
+
sms: null,
|
|
31
|
+
sms_stop: null,
|
|
28
32
|
spam_complaint: null,
|
|
29
33
|
spam_complaint_dts: null
|
|
30
34
|
)
|
|
@@ -153,7 +153,7 @@ module UltracartClient
|
|
|
153
153
|
|
|
154
154
|
attr_accessor :quotes_summary
|
|
155
155
|
|
|
156
|
-
# Referral Source
|
|
156
|
+
# Referral Source specified on the wholesale customer signup form. No other meaning than that signup flow.
|
|
157
157
|
attr_accessor :referral_source
|
|
158
158
|
|
|
159
159
|
attr_accessor :reviewer
|
|
@@ -27,6 +27,10 @@ module UltracartClient
|
|
|
27
27
|
|
|
28
28
|
attr_accessor :properties_list
|
|
29
29
|
|
|
30
|
+
attr_accessor :sms
|
|
31
|
+
|
|
32
|
+
attr_accessor :sms_stop
|
|
33
|
+
|
|
30
34
|
attr_accessor :spam_complaint
|
|
31
35
|
|
|
32
36
|
attr_accessor :spam_complaint_dts
|
|
@@ -40,6 +44,8 @@ module UltracartClient
|
|
|
40
44
|
:'memberships' => :'memberships',
|
|
41
45
|
:'metrics' => :'metrics',
|
|
42
46
|
:'properties_list' => :'properties_list',
|
|
47
|
+
:'sms' => :'sms',
|
|
48
|
+
:'sms_stop' => :'sms_stop',
|
|
43
49
|
:'spam_complaint' => :'spam_complaint',
|
|
44
50
|
:'spam_complaint_dts' => :'spam_complaint_dts'
|
|
45
51
|
}
|
|
@@ -59,6 +65,8 @@ module UltracartClient
|
|
|
59
65
|
:'memberships' => :'Array<ListSegmentMembership>',
|
|
60
66
|
:'metrics' => :'Array<Metric>',
|
|
61
67
|
:'properties_list' => :'Array<Property>',
|
|
68
|
+
:'sms' => :'String',
|
|
69
|
+
:'sms_stop' => :'Boolean',
|
|
62
70
|
:'spam_complaint' => :'Boolean',
|
|
63
71
|
:'spam_complaint_dts' => :'String'
|
|
64
72
|
}
|
|
@@ -117,6 +125,14 @@ module UltracartClient
|
|
|
117
125
|
end
|
|
118
126
|
end
|
|
119
127
|
|
|
128
|
+
if attributes.key?(:'sms')
|
|
129
|
+
self.sms = attributes[:'sms']
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
if attributes.key?(:'sms_stop')
|
|
133
|
+
self.sms_stop = attributes[:'sms_stop']
|
|
134
|
+
end
|
|
135
|
+
|
|
120
136
|
if attributes.key?(:'spam_complaint')
|
|
121
137
|
self.spam_complaint = attributes[:'spam_complaint']
|
|
122
138
|
end
|
|
@@ -150,6 +166,8 @@ module UltracartClient
|
|
|
150
166
|
memberships == o.memberships &&
|
|
151
167
|
metrics == o.metrics &&
|
|
152
168
|
properties_list == o.properties_list &&
|
|
169
|
+
sms == o.sms &&
|
|
170
|
+
sms_stop == o.sms_stop &&
|
|
153
171
|
spam_complaint == o.spam_complaint &&
|
|
154
172
|
spam_complaint_dts == o.spam_complaint_dts
|
|
155
173
|
end
|
|
@@ -163,7 +181,7 @@ module UltracartClient
|
|
|
163
181
|
# Calculates hash code according to all attributes.
|
|
164
182
|
# @return [Integer] Hash code
|
|
165
183
|
def hash
|
|
166
|
-
[activities, global_unsubscribed, global_unsubscribed_dts, memberships, metrics, properties_list, spam_complaint, spam_complaint_dts].hash
|
|
184
|
+
[activities, global_unsubscribed, global_unsubscribed_dts, memberships, metrics, properties_list, sms, sms_stop, spam_complaint, spam_complaint_dts].hash
|
|
167
185
|
end
|
|
168
186
|
|
|
169
187
|
# 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.67
|
|
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-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|