ultracart_api 4.1.19 → 4.1.21
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 +18 -10
- data/docs/CustomDashboardSchedule.md +26 -0
- data/docs/{ChargebackDisputesResponse.md → CustomDashboardScheduleResponse.md} +4 -4
- data/docs/CustomDashboardSchedulesResponse.md +26 -0
- data/docs/CustomReport.md +2 -0
- data/docs/CustomReportAccountConfig.md +2 -0
- data/docs/CustomReportAnalysisRequest.md +20 -0
- data/docs/{ChargebackDisputeResponse.md → CustomReportAnalysisResponse.md} +4 -4
- data/docs/CustomReportChartPngUploadResponse.md +28 -0
- data/docs/DatawarehouseApi.md +329 -0
- data/docs/EmailCampaign.md +4 -0
- data/docs/ItemTag.md +1 -1
- data/docs/OrderApi.md +56 -0
- data/docs/ReplaceOrderItemIdRequest.md +24 -0
- data/lib/ultracart_api/api/datawarehouse_api.rb +429 -0
- data/lib/ultracart_api/api/order_api.rb +78 -0
- data/lib/ultracart_api/models/custom_dashboard_schedule.rb +258 -0
- data/lib/ultracart_api/models/{chargeback_disputes_response.rb → custom_dashboard_schedule_response.rb} +13 -15
- data/lib/ultracart_api/models/custom_dashboard_schedules_response.rb +259 -0
- data/lib/ultracart_api/models/custom_report.rb +10 -1
- data/lib/ultracart_api/models/custom_report_account_config.rb +10 -1
- data/lib/ultracart_api/models/custom_report_analysis_request.rb +228 -0
- data/lib/ultracart_api/models/{chargeback_dispute_response.rb → custom_report_analysis_response.rb} +13 -13
- data/lib/ultracart_api/models/custom_report_chart_png_upload_response.rb +265 -0
- data/lib/ultracart_api/models/email_campaign.rb +21 -1
- data/lib/ultracart_api/models/item_tag.rb +1 -1
- data/lib/ultracart_api/models/order_payment.rb +2 -2
- data/lib/ultracart_api/models/replace_order_item_id_request.rb +280 -0
- data/lib/ultracart_api/version.rb +1 -1
- data/lib/ultracart_api.rb +7 -4
- metadata +16 -10
- data/docs/ChargebackApi.md +0 -297
- data/docs/ChargebackDispute.md +0 -62
- data/lib/ultracart_api/api/chargeback_api.rb +0 -410
- data/lib/ultracart_api/models/chargeback_dispute.rb +0 -649
@@ -260,7 +260,7 @@ module UltracartClient
|
|
260
260
|
# Check to see if the all the properties in the model are valid
|
261
261
|
# @return true if the model is valid
|
262
262
|
def valid?
|
263
|
-
payment_method_validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Amazon Pay", "Amazon SC", "Cash", "Check", "COD", "Credit Card", "eBay", "eCheck", "Google Shopping", "Insurance", "Link", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Unknown", "Wire Transfer", "Walmart", "Shop.com", "Sezzle", "Venmo", "Apple Pay", "Google Pay", "Health Benefit Card", "PayPal Fastlane"])
|
263
|
+
payment_method_validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Amazon Pay", "Amazon SC", "Cash", "Check", "COD", "Credit Card", "eBay", "eCheck", "Google Shopping", "Goldbelly", "GoHighLevel", "Insurance", "Link", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Unknown", "Wire Transfer", "Walmart", "Shop.com", "Sezzle", "Venmo", "Apple Pay", "Google Pay", "Health Benefit Card", "PayPal Fastlane"])
|
264
264
|
return false unless payment_method_validator.valid?(@payment_method)
|
265
265
|
payment_status_validator = EnumAttributeValidator.new('String', ["Unprocessed", "Authorized", "Capture Failed", "Processed", "Declined", "Voided", "Refunded", "Skipped"])
|
266
266
|
return false unless payment_status_validator.valid?(@payment_status)
|
@@ -270,7 +270,7 @@ module UltracartClient
|
|
270
270
|
# Custom attribute writer method checking allowed values (enum).
|
271
271
|
# @param [Object] payment_method Object to be assigned
|
272
272
|
def payment_method=(payment_method)
|
273
|
-
validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Amazon Pay", "Amazon SC", "Cash", "Check", "COD", "Credit Card", "eBay", "eCheck", "Google Shopping", "Insurance", "Link", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Unknown", "Wire Transfer", "Walmart", "Shop.com", "Sezzle", "Venmo", "Apple Pay", "Google Pay", "Health Benefit Card", "PayPal Fastlane"])
|
273
|
+
validator = EnumAttributeValidator.new('String', ["Affirm", "Amazon", "Amazon Pay", "Amazon SC", "Cash", "Check", "COD", "Credit Card", "eBay", "eCheck", "Google Shopping", "Goldbelly", "GoHighLevel", "Insurance", "Link", "LoanHero", "Money Order", "PayPal", "Purchase Order", "Quote Request", "Unknown", "Wire Transfer", "Walmart", "Shop.com", "Sezzle", "Venmo", "Apple Pay", "Google Pay", "Health Benefit Card", "PayPal Fastlane"])
|
274
274
|
unless validator.valid?(payment_method)
|
275
275
|
fail ArgumentError, "invalid value for \"payment_method\", must be one of #{validator.allowable_values}."
|
276
276
|
end
|
@@ -0,0 +1,280 @@
|
|
1
|
+
=begin
|
2
|
+
#UltraCart Rest API V2
|
3
|
+
|
4
|
+
#UltraCart REST API Version 2
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2.0.0
|
7
|
+
Contact: support@ultracart.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 6.0.1-SNAPSHOT
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module UltracartClient
|
17
|
+
class ReplaceOrderItemIdRequest
|
18
|
+
# Index of the item on the order (one based index)
|
19
|
+
attr_accessor :item_index
|
20
|
+
|
21
|
+
# Item ID
|
22
|
+
attr_accessor :merchant_item_id
|
23
|
+
|
24
|
+
# Order ID
|
25
|
+
attr_accessor :order_id
|
26
|
+
|
27
|
+
# Replacement Item ID
|
28
|
+
attr_accessor :replacement_merchant_item_id
|
29
|
+
|
30
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
31
|
+
def self.attribute_map
|
32
|
+
{
|
33
|
+
:'item_index' => :'item_index',
|
34
|
+
:'merchant_item_id' => :'merchant_item_id',
|
35
|
+
:'order_id' => :'order_id',
|
36
|
+
:'replacement_merchant_item_id' => :'replacement_merchant_item_id'
|
37
|
+
}
|
38
|
+
end
|
39
|
+
|
40
|
+
# Returns all the JSON keys this model knows about
|
41
|
+
def self.acceptable_attributes
|
42
|
+
attribute_map.values
|
43
|
+
end
|
44
|
+
|
45
|
+
# Attribute type mapping.
|
46
|
+
def self.openapi_types
|
47
|
+
{
|
48
|
+
:'item_index' => :'Integer',
|
49
|
+
:'merchant_item_id' => :'String',
|
50
|
+
:'order_id' => :'String',
|
51
|
+
:'replacement_merchant_item_id' => :'String'
|
52
|
+
}
|
53
|
+
end
|
54
|
+
|
55
|
+
# List of attributes with nullable: true
|
56
|
+
def self.openapi_nullable
|
57
|
+
Set.new([
|
58
|
+
])
|
59
|
+
end
|
60
|
+
|
61
|
+
# Initializes the object
|
62
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
63
|
+
def initialize(attributes = {})
|
64
|
+
if (!attributes.is_a?(Hash))
|
65
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::ReplaceOrderItemIdRequest` initialize method"
|
66
|
+
end
|
67
|
+
|
68
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
69
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
70
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
71
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::ReplaceOrderItemIdRequest`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
72
|
+
end
|
73
|
+
h[k.to_sym] = v
|
74
|
+
}
|
75
|
+
|
76
|
+
if attributes.key?(:'item_index')
|
77
|
+
self.item_index = attributes[:'item_index']
|
78
|
+
end
|
79
|
+
|
80
|
+
if attributes.key?(:'merchant_item_id')
|
81
|
+
self.merchant_item_id = attributes[:'merchant_item_id']
|
82
|
+
end
|
83
|
+
|
84
|
+
if attributes.key?(:'order_id')
|
85
|
+
self.order_id = attributes[:'order_id']
|
86
|
+
end
|
87
|
+
|
88
|
+
if attributes.key?(:'replacement_merchant_item_id')
|
89
|
+
self.replacement_merchant_item_id = attributes[:'replacement_merchant_item_id']
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
94
|
+
# @return Array for valid properties with the reasons
|
95
|
+
def list_invalid_properties
|
96
|
+
invalid_properties = Array.new
|
97
|
+
if !@merchant_item_id.nil? && @merchant_item_id.to_s.length > 20
|
98
|
+
invalid_properties.push('invalid value for "merchant_item_id", the character length must be smaller than or equal to 20.')
|
99
|
+
end
|
100
|
+
|
101
|
+
if !@replacement_merchant_item_id.nil? && @replacement_merchant_item_id.to_s.length > 20
|
102
|
+
invalid_properties.push('invalid value for "replacement_merchant_item_id", the character length must be smaller than or equal to 20.')
|
103
|
+
end
|
104
|
+
|
105
|
+
invalid_properties
|
106
|
+
end
|
107
|
+
|
108
|
+
# Check to see if the all the properties in the model are valid
|
109
|
+
# @return true if the model is valid
|
110
|
+
def valid?
|
111
|
+
return false if !@merchant_item_id.nil? && @merchant_item_id.to_s.length > 20
|
112
|
+
return false if !@replacement_merchant_item_id.nil? && @replacement_merchant_item_id.to_s.length > 20
|
113
|
+
true
|
114
|
+
end
|
115
|
+
|
116
|
+
# Custom attribute writer method with validation
|
117
|
+
# @param [Object] merchant_item_id Value to be assigned
|
118
|
+
def merchant_item_id=(merchant_item_id)
|
119
|
+
if !merchant_item_id.nil? && merchant_item_id.to_s.length > 20
|
120
|
+
fail ArgumentError, 'invalid value for "merchant_item_id", the character length must be smaller than or equal to 20.'
|
121
|
+
end
|
122
|
+
|
123
|
+
@merchant_item_id = merchant_item_id
|
124
|
+
end
|
125
|
+
|
126
|
+
# Custom attribute writer method with validation
|
127
|
+
# @param [Object] replacement_merchant_item_id Value to be assigned
|
128
|
+
def replacement_merchant_item_id=(replacement_merchant_item_id)
|
129
|
+
if !replacement_merchant_item_id.nil? && replacement_merchant_item_id.to_s.length > 20
|
130
|
+
fail ArgumentError, 'invalid value for "replacement_merchant_item_id", the character length must be smaller than or equal to 20.'
|
131
|
+
end
|
132
|
+
|
133
|
+
@replacement_merchant_item_id = replacement_merchant_item_id
|
134
|
+
end
|
135
|
+
|
136
|
+
# Checks equality by comparing each attribute.
|
137
|
+
# @param [Object] Object to be compared
|
138
|
+
def ==(o)
|
139
|
+
return true if self.equal?(o)
|
140
|
+
self.class == o.class &&
|
141
|
+
item_index == o.item_index &&
|
142
|
+
merchant_item_id == o.merchant_item_id &&
|
143
|
+
order_id == o.order_id &&
|
144
|
+
replacement_merchant_item_id == o.replacement_merchant_item_id
|
145
|
+
end
|
146
|
+
|
147
|
+
# @see the `==` method
|
148
|
+
# @param [Object] Object to be compared
|
149
|
+
def eql?(o)
|
150
|
+
self == o
|
151
|
+
end
|
152
|
+
|
153
|
+
# Calculates hash code according to all attributes.
|
154
|
+
# @return [Integer] Hash code
|
155
|
+
def hash
|
156
|
+
[item_index, merchant_item_id, order_id, replacement_merchant_item_id].hash
|
157
|
+
end
|
158
|
+
|
159
|
+
# Builds the object from hash
|
160
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
161
|
+
# @return [Object] Returns the model itself
|
162
|
+
def self.build_from_hash(attributes)
|
163
|
+
new.build_from_hash(attributes)
|
164
|
+
end
|
165
|
+
|
166
|
+
# Builds the object from hash
|
167
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
168
|
+
# @return [Object] Returns the model itself
|
169
|
+
def build_from_hash(attributes)
|
170
|
+
return nil unless attributes.is_a?(Hash)
|
171
|
+
attributes = attributes.transform_keys(&:to_sym)
|
172
|
+
self.class.openapi_types.each_pair do |key, type|
|
173
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
174
|
+
self.send("#{key}=", nil)
|
175
|
+
elsif type =~ /\AArray<(.*)>/i
|
176
|
+
# check to ensure the input is an array given that the attribute
|
177
|
+
# is documented as an array but the input is not
|
178
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
179
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
180
|
+
end
|
181
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
182
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
186
|
+
self
|
187
|
+
end
|
188
|
+
|
189
|
+
# Deserializes the data based on type
|
190
|
+
# @param string type Data type
|
191
|
+
# @param string value Value to be deserialized
|
192
|
+
# @return [Object] Deserialized data
|
193
|
+
def _deserialize(type, value)
|
194
|
+
case type.to_sym
|
195
|
+
when :Time
|
196
|
+
Time.parse(value)
|
197
|
+
when :Date
|
198
|
+
Date.parse(value)
|
199
|
+
when :String
|
200
|
+
value.to_s
|
201
|
+
when :Integer
|
202
|
+
value.to_i
|
203
|
+
when :Float
|
204
|
+
value.to_f
|
205
|
+
when :Boolean
|
206
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
207
|
+
true
|
208
|
+
else
|
209
|
+
false
|
210
|
+
end
|
211
|
+
when :Object
|
212
|
+
# generic object (usually a Hash), return directly
|
213
|
+
value
|
214
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
215
|
+
inner_type = Regexp.last_match[:inner_type]
|
216
|
+
value.map { |v| _deserialize(inner_type, v) }
|
217
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
218
|
+
k_type = Regexp.last_match[:k_type]
|
219
|
+
v_type = Regexp.last_match[:v_type]
|
220
|
+
{}.tap do |hash|
|
221
|
+
value.each do |k, v|
|
222
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
223
|
+
end
|
224
|
+
end
|
225
|
+
else # model
|
226
|
+
# models (e.g. Pet) or oneOf
|
227
|
+
klass = UltracartClient.const_get(type)
|
228
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
# Returns the string representation of the object
|
233
|
+
# @return [String] String presentation of the object
|
234
|
+
def to_s
|
235
|
+
to_hash.to_s
|
236
|
+
end
|
237
|
+
|
238
|
+
# to_body is an alias to to_hash (backward compatibility)
|
239
|
+
# @return [Hash] Returns the object in the form of hash
|
240
|
+
def to_body
|
241
|
+
to_hash
|
242
|
+
end
|
243
|
+
|
244
|
+
# Returns the object in the form of hash
|
245
|
+
# @return [Hash] Returns the object in the form of hash
|
246
|
+
def to_hash
|
247
|
+
hash = {}
|
248
|
+
self.class.attribute_map.each_pair do |attr, param|
|
249
|
+
value = self.send(attr)
|
250
|
+
if value.nil?
|
251
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
252
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
253
|
+
end
|
254
|
+
|
255
|
+
hash[param] = _to_hash(value)
|
256
|
+
end
|
257
|
+
hash
|
258
|
+
end
|
259
|
+
|
260
|
+
# Outputs non-array value in the form of hash
|
261
|
+
# For object, use to_hash. Otherwise, just return the value
|
262
|
+
# @param [Object] value Any valid value
|
263
|
+
# @return [Hash] Returns the value in the form of hash
|
264
|
+
def _to_hash(value)
|
265
|
+
if value.is_a?(Array)
|
266
|
+
value.compact.map { |v| _to_hash(v) }
|
267
|
+
elsif value.is_a?(Hash)
|
268
|
+
{}.tap do |hash|
|
269
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
270
|
+
end
|
271
|
+
elsif value.respond_to? :to_hash
|
272
|
+
value.to_hash
|
273
|
+
else
|
274
|
+
value
|
275
|
+
end
|
276
|
+
end
|
277
|
+
|
278
|
+
end
|
279
|
+
|
280
|
+
end
|
data/lib/ultracart_api.rb
CHANGED
@@ -137,9 +137,6 @@ require 'ultracart_api/models/channel_partner_ship_to_preference_response'
|
|
137
137
|
require 'ultracart_api/models/channel_partner_ship_to_preferences_response'
|
138
138
|
require 'ultracart_api/models/channel_partner_shipping_estimate'
|
139
139
|
require 'ultracart_api/models/channel_partners_response'
|
140
|
-
require 'ultracart_api/models/chargeback_dispute'
|
141
|
-
require 'ultracart_api/models/chargeback_dispute_response'
|
142
|
-
require 'ultracart_api/models/chargeback_disputes_response'
|
143
140
|
require 'ultracart_api/models/checkout_allowed_countries_response'
|
144
141
|
require 'ultracart_api/models/checkout_handoff_request'
|
145
142
|
require 'ultracart_api/models/checkout_handoff_response'
|
@@ -327,10 +324,16 @@ require 'ultracart_api/models/custom_dashboard_execution_parameter'
|
|
327
324
|
require 'ultracart_api/models/custom_dashboard_page'
|
328
325
|
require 'ultracart_api/models/custom_dashboard_page_report'
|
329
326
|
require 'ultracart_api/models/custom_dashboard_response'
|
327
|
+
require 'ultracart_api/models/custom_dashboard_schedule'
|
328
|
+
require 'ultracart_api/models/custom_dashboard_schedule_response'
|
329
|
+
require 'ultracart_api/models/custom_dashboard_schedules_response'
|
330
330
|
require 'ultracart_api/models/custom_dashboards_response'
|
331
331
|
require 'ultracart_api/models/custom_report'
|
332
332
|
require 'ultracart_api/models/custom_report_account_config'
|
333
333
|
require 'ultracart_api/models/custom_report_account_config_response'
|
334
|
+
require 'ultracart_api/models/custom_report_analysis_request'
|
335
|
+
require 'ultracart_api/models/custom_report_analysis_response'
|
336
|
+
require 'ultracart_api/models/custom_report_chart_png_upload_response'
|
334
337
|
require 'ultracart_api/models/custom_report_execution_parameter'
|
335
338
|
require 'ultracart_api/models/custom_report_execution_request'
|
336
339
|
require 'ultracart_api/models/custom_report_execution_response'
|
@@ -737,6 +740,7 @@ require 'ultracart_api/models/property'
|
|
737
740
|
require 'ultracart_api/models/publish_library_item_request'
|
738
741
|
require 'ultracart_api/models/register_affiliate_click_request'
|
739
742
|
require 'ultracart_api/models/register_affiliate_click_response'
|
743
|
+
require 'ultracart_api/models/replace_order_item_id_request'
|
740
744
|
require 'ultracart_api/models/report'
|
741
745
|
require 'ultracart_api/models/report_auth'
|
742
746
|
require 'ultracart_api/models/report_auth_response'
|
@@ -908,7 +912,6 @@ require 'ultracart_api/models/workflow_users_response'
|
|
908
912
|
require 'ultracart_api/api/affiliate_api'
|
909
913
|
require 'ultracart_api/api/auto_order_api'
|
910
914
|
require 'ultracart_api/api/channel_partner_api'
|
911
|
-
require 'ultracart_api/api/chargeback_api'
|
912
915
|
require 'ultracart_api/api/checkout_api'
|
913
916
|
require 'ultracart_api/api/conversation_api'
|
914
917
|
require 'ultracart_api/api/coupon_api'
|
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.21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -184,10 +184,6 @@ files:
|
|
184
184
|
- docs/ChannelPartnerShipToPreferencesResponse.md
|
185
185
|
- docs/ChannelPartnerShippingEstimate.md
|
186
186
|
- docs/ChannelPartnersResponse.md
|
187
|
-
- docs/ChargebackApi.md
|
188
|
-
- docs/ChargebackDispute.md
|
189
|
-
- docs/ChargebackDisputeResponse.md
|
190
|
-
- docs/ChargebackDisputesResponse.md
|
191
187
|
- docs/CheckoutAllowedCountriesResponse.md
|
192
188
|
- docs/CheckoutApi.md
|
193
189
|
- docs/CheckoutHandoffRequest.md
|
@@ -378,10 +374,16 @@ files:
|
|
378
374
|
- docs/CustomDashboardPage.md
|
379
375
|
- docs/CustomDashboardPageReport.md
|
380
376
|
- docs/CustomDashboardResponse.md
|
377
|
+
- docs/CustomDashboardSchedule.md
|
378
|
+
- docs/CustomDashboardScheduleResponse.md
|
379
|
+
- docs/CustomDashboardSchedulesResponse.md
|
381
380
|
- docs/CustomDashboardsResponse.md
|
382
381
|
- docs/CustomReport.md
|
383
382
|
- docs/CustomReportAccountConfig.md
|
384
383
|
- docs/CustomReportAccountConfigResponse.md
|
384
|
+
- docs/CustomReportAnalysisRequest.md
|
385
|
+
- docs/CustomReportAnalysisResponse.md
|
386
|
+
- docs/CustomReportChartPngUploadResponse.md
|
385
387
|
- docs/CustomReportExecutionParameter.md
|
386
388
|
- docs/CustomReportExecutionRequest.md
|
387
389
|
- docs/CustomReportExecutionResponse.md
|
@@ -796,6 +798,7 @@ files:
|
|
796
798
|
- docs/PublishLibraryItemRequest.md
|
797
799
|
- docs/RegisterAffiliateClickRequest.md
|
798
800
|
- docs/RegisterAffiliateClickResponse.md
|
801
|
+
- docs/ReplaceOrderItemIdRequest.md
|
799
802
|
- docs/Report.md
|
800
803
|
- docs/ReportAuth.md
|
801
804
|
- docs/ReportAuthResponse.md
|
@@ -973,7 +976,6 @@ files:
|
|
973
976
|
- lib/ultracart_api/api/affiliate_api.rb
|
974
977
|
- lib/ultracart_api/api/auto_order_api.rb
|
975
978
|
- lib/ultracart_api/api/channel_partner_api.rb
|
976
|
-
- lib/ultracart_api/api/chargeback_api.rb
|
977
979
|
- lib/ultracart_api/api/checkout_api.rb
|
978
980
|
- lib/ultracart_api/api/conversation_api.rb
|
979
981
|
- lib/ultracart_api/api/coupon_api.rb
|
@@ -1114,9 +1116,6 @@ files:
|
|
1114
1116
|
- lib/ultracart_api/models/channel_partner_ship_to_preferences_response.rb
|
1115
1117
|
- lib/ultracart_api/models/channel_partner_shipping_estimate.rb
|
1116
1118
|
- lib/ultracart_api/models/channel_partners_response.rb
|
1117
|
-
- lib/ultracart_api/models/chargeback_dispute.rb
|
1118
|
-
- lib/ultracart_api/models/chargeback_dispute_response.rb
|
1119
|
-
- lib/ultracart_api/models/chargeback_disputes_response.rb
|
1120
1119
|
- lib/ultracart_api/models/checkout_allowed_countries_response.rb
|
1121
1120
|
- lib/ultracart_api/models/checkout_handoff_request.rb
|
1122
1121
|
- lib/ultracart_api/models/checkout_handoff_response.rb
|
@@ -1304,10 +1303,16 @@ files:
|
|
1304
1303
|
- lib/ultracart_api/models/custom_dashboard_page.rb
|
1305
1304
|
- lib/ultracart_api/models/custom_dashboard_page_report.rb
|
1306
1305
|
- lib/ultracart_api/models/custom_dashboard_response.rb
|
1306
|
+
- lib/ultracart_api/models/custom_dashboard_schedule.rb
|
1307
|
+
- lib/ultracart_api/models/custom_dashboard_schedule_response.rb
|
1308
|
+
- lib/ultracart_api/models/custom_dashboard_schedules_response.rb
|
1307
1309
|
- lib/ultracart_api/models/custom_dashboards_response.rb
|
1308
1310
|
- lib/ultracart_api/models/custom_report.rb
|
1309
1311
|
- lib/ultracart_api/models/custom_report_account_config.rb
|
1310
1312
|
- lib/ultracart_api/models/custom_report_account_config_response.rb
|
1313
|
+
- lib/ultracart_api/models/custom_report_analysis_request.rb
|
1314
|
+
- lib/ultracart_api/models/custom_report_analysis_response.rb
|
1315
|
+
- lib/ultracart_api/models/custom_report_chart_png_upload_response.rb
|
1311
1316
|
- lib/ultracart_api/models/custom_report_execution_parameter.rb
|
1312
1317
|
- lib/ultracart_api/models/custom_report_execution_request.rb
|
1313
1318
|
- lib/ultracart_api/models/custom_report_execution_response.rb
|
@@ -1714,6 +1719,7 @@ files:
|
|
1714
1719
|
- lib/ultracart_api/models/publish_library_item_request.rb
|
1715
1720
|
- lib/ultracart_api/models/register_affiliate_click_request.rb
|
1716
1721
|
- lib/ultracart_api/models/register_affiliate_click_response.rb
|
1722
|
+
- lib/ultracart_api/models/replace_order_item_id_request.rb
|
1717
1723
|
- lib/ultracart_api/models/report.rb
|
1718
1724
|
- lib/ultracart_api/models/report_auth.rb
|
1719
1725
|
- lib/ultracart_api/models/report_auth_response.rb
|