ultracart_api 4.1.130 → 4.1.131
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/Metric.md +4 -0
- data/lib/ultracart_api/models/metric.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: e5a4475f1f429fa59ab82bad2cc5b9494c0ca2209d86c88cc16b65b0aa84761a
|
|
4
|
+
data.tar.gz: 0db853038c0157cef18831c1ed9011c1fcd42922c8dc9ce8eaf78f183251b8ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f57a5d5b6338c6de68a57055646830bc7d2be593cea30e3731b59d6fa4d49b1496f4c73b557d7107721e9087bce6be083e0bb57f332d19883519c0c1cb8e068
|
|
7
|
+
data.tar.gz: ea352daac7fd88dabfe8eee54f74ee53dc3b55abb37b8e027cf8afb82e7a370cc0504a488663da9d95d9f7ea4f4d6374b019d39991fd3aa8aeb6d5cdd74e7065
|
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.131
|
|
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.131'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
install:
|
|
@@ -1836,6 +1836,7 @@ Not every change is committed to every SDK.
|
|
|
1836
1836
|
|
|
1837
1837
|
| Version | Date | Comments |
|
|
1838
1838
|
| --: | :-: | --- |
|
|
1839
|
+
| 4.1.131 | 08/18/2026 | customer activity now returns the SF communications active flag and last_activity_dts |
|
|
1839
1840
|
| 4.1.130 | 08/17/2026 | order api - new method to obtain customer activity similar to the customer endpoint for a profile |
|
|
1840
1841
|
| 4.1.129 | 08/13/2026 | ChannelPartnerOrder and OrderChannelPartner were missing a property |
|
|
1841
1842
|
| 4.1.128 | 08/13/2026 | channel partner - added arbitrary discount to ChannelPartnerOrder |
|
data/docs/Metric.md
CHANGED
|
@@ -4,10 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **active** | **Boolean** | | [optional] |
|
|
7
8
|
| **all_time** | **Float** | | [optional] |
|
|
8
9
|
| **all_time_formatted** | **String** | | [optional] |
|
|
9
10
|
| **last_30** | **Float** | | [optional] |
|
|
10
11
|
| **last_30_formatted** | **String** | | [optional] |
|
|
12
|
+
| **last_activity_dts** | **String** | | [optional] |
|
|
11
13
|
| **name** | **String** | | [optional] |
|
|
12
14
|
| **prior_30** | **Float** | | [optional] |
|
|
13
15
|
| **prior_30_formatted** | **String** | | [optional] |
|
|
@@ -19,10 +21,12 @@
|
|
|
19
21
|
require 'ultracart_api'
|
|
20
22
|
|
|
21
23
|
instance = UltracartClient::Metric.new(
|
|
24
|
+
active: null,
|
|
22
25
|
all_time: null,
|
|
23
26
|
all_time_formatted: null,
|
|
24
27
|
last_30: null,
|
|
25
28
|
last_30_formatted: null,
|
|
29
|
+
last_activity_dts: null,
|
|
26
30
|
name: null,
|
|
27
31
|
prior_30: null,
|
|
28
32
|
prior_30_formatted: null,
|
|
@@ -15,6 +15,8 @@ require 'time'
|
|
|
15
15
|
|
|
16
16
|
module UltracartClient
|
|
17
17
|
class Metric
|
|
18
|
+
attr_accessor :active
|
|
19
|
+
|
|
18
20
|
attr_accessor :all_time
|
|
19
21
|
|
|
20
22
|
attr_accessor :all_time_formatted
|
|
@@ -23,6 +25,8 @@ module UltracartClient
|
|
|
23
25
|
|
|
24
26
|
attr_accessor :last_30_formatted
|
|
25
27
|
|
|
28
|
+
attr_accessor :last_activity_dts
|
|
29
|
+
|
|
26
30
|
attr_accessor :name
|
|
27
31
|
|
|
28
32
|
attr_accessor :prior_30
|
|
@@ -34,10 +38,12 @@ module UltracartClient
|
|
|
34
38
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
35
39
|
def self.attribute_map
|
|
36
40
|
{
|
|
41
|
+
:'active' => :'active',
|
|
37
42
|
:'all_time' => :'all_time',
|
|
38
43
|
:'all_time_formatted' => :'all_time_formatted',
|
|
39
44
|
:'last_30' => :'last_30',
|
|
40
45
|
:'last_30_formatted' => :'last_30_formatted',
|
|
46
|
+
:'last_activity_dts' => :'last_activity_dts',
|
|
41
47
|
:'name' => :'name',
|
|
42
48
|
:'prior_30' => :'prior_30',
|
|
43
49
|
:'prior_30_formatted' => :'prior_30_formatted',
|
|
@@ -53,10 +59,12 @@ module UltracartClient
|
|
|
53
59
|
# Attribute type mapping.
|
|
54
60
|
def self.openapi_types
|
|
55
61
|
{
|
|
62
|
+
:'active' => :'Boolean',
|
|
56
63
|
:'all_time' => :'Float',
|
|
57
64
|
:'all_time_formatted' => :'String',
|
|
58
65
|
:'last_30' => :'Float',
|
|
59
66
|
:'last_30_formatted' => :'String',
|
|
67
|
+
:'last_activity_dts' => :'String',
|
|
60
68
|
:'name' => :'String',
|
|
61
69
|
:'prior_30' => :'Float',
|
|
62
70
|
:'prior_30_formatted' => :'String',
|
|
@@ -85,6 +93,10 @@ module UltracartClient
|
|
|
85
93
|
h[k.to_sym] = v
|
|
86
94
|
}
|
|
87
95
|
|
|
96
|
+
if attributes.key?(:'active')
|
|
97
|
+
self.active = attributes[:'active']
|
|
98
|
+
end
|
|
99
|
+
|
|
88
100
|
if attributes.key?(:'all_time')
|
|
89
101
|
self.all_time = attributes[:'all_time']
|
|
90
102
|
end
|
|
@@ -101,6 +113,10 @@ module UltracartClient
|
|
|
101
113
|
self.last_30_formatted = attributes[:'last_30_formatted']
|
|
102
114
|
end
|
|
103
115
|
|
|
116
|
+
if attributes.key?(:'last_activity_dts')
|
|
117
|
+
self.last_activity_dts = attributes[:'last_activity_dts']
|
|
118
|
+
end
|
|
119
|
+
|
|
104
120
|
if attributes.key?(:'name')
|
|
105
121
|
self.name = attributes[:'name']
|
|
106
122
|
end
|
|
@@ -136,10 +152,12 @@ module UltracartClient
|
|
|
136
152
|
def ==(o)
|
|
137
153
|
return true if self.equal?(o)
|
|
138
154
|
self.class == o.class &&
|
|
155
|
+
active == o.active &&
|
|
139
156
|
all_time == o.all_time &&
|
|
140
157
|
all_time_formatted == o.all_time_formatted &&
|
|
141
158
|
last_30 == o.last_30 &&
|
|
142
159
|
last_30_formatted == o.last_30_formatted &&
|
|
160
|
+
last_activity_dts == o.last_activity_dts &&
|
|
143
161
|
name == o.name &&
|
|
144
162
|
prior_30 == o.prior_30 &&
|
|
145
163
|
prior_30_formatted == o.prior_30_formatted &&
|
|
@@ -155,7 +173,7 @@ module UltracartClient
|
|
|
155
173
|
# Calculates hash code according to all attributes.
|
|
156
174
|
# @return [Integer] Hash code
|
|
157
175
|
def hash
|
|
158
|
-
[all_time, all_time_formatted, last_30, last_30_formatted, name, prior_30, prior_30_formatted, type].hash
|
|
176
|
+
[active, all_time, all_time_formatted, last_30, last_30_formatted, last_activity_dts, name, prior_30, prior_30_formatted, type].hash
|
|
159
177
|
end
|
|
160
178
|
|
|
161
179
|
# 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.131
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|