ultracart_api 4.1.18 → 4.1.20
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 +13 -10
- data/docs/ConversationVirtualAgentCapabilities.md +7 -1
- data/docs/ConversationVirtualAgentCapabilityZohoDeskDepartment.md +20 -0
- data/docs/CustomDashboard.md +3 -1
- data/docs/CustomDashboardExecutionParameter.md +24 -0
- data/docs/CustomDashboardSchedule.md +26 -0
- data/docs/{ChargebackDisputeResponse.md → CustomDashboardScheduleResponse.md} +4 -4
- data/docs/{ChargebackDisputesResponse.md → CustomDashboardSchedulesResponse.md} +4 -4
- data/docs/CustomReport.md +2 -0
- data/docs/CustomReportExecutionParameter.md +2 -0
- data/docs/DatawarehouseApi.md +220 -0
- data/docs/EmailCampaign.md +4 -0
- data/lib/ultracart_api/api/datawarehouse_api.rb +290 -0
- data/lib/ultracart_api/models/conversation_virtual_agent_capabilities.rb +38 -6
- data/lib/ultracart_api/models/conversation_virtual_agent_capability_zoho_desk_department.rb +228 -0
- data/lib/ultracart_api/models/custom_dashboard.rb +15 -4
- data/lib/ultracart_api/models/custom_dashboard_execution_parameter.rb +246 -0
- data/lib/ultracart_api/models/custom_dashboard_schedule.rb +258 -0
- data/lib/ultracart_api/models/{chargeback_dispute_response.rb → custom_dashboard_schedule_response.rb} +13 -13
- data/lib/ultracart_api/models/{chargeback_disputes_response.rb → custom_dashboard_schedules_response.rb} +16 -15
- data/lib/ultracart_api/models/custom_report.rb +10 -1
- data/lib/ultracart_api/models/custom_report_execution_parameter.rb +10 -1
- data/lib/ultracart_api/models/email_campaign.rb +21 -1
- data/lib/ultracart_api/models/order_payment.rb +2 -2
- data/lib/ultracart_api/version.rb +1 -1
- data/lib/ultracart_api.rb +5 -4
- metadata +12 -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
@@ -14,13 +14,14 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module UltracartClient
|
17
|
-
class
|
18
|
-
attr_accessor :chargebacks
|
19
|
-
|
17
|
+
class CustomDashboardSchedulesResponse
|
20
18
|
attr_accessor :error
|
21
19
|
|
22
20
|
attr_accessor :metadata
|
23
21
|
|
22
|
+
# schedules
|
23
|
+
attr_accessor :schedules
|
24
|
+
|
24
25
|
# Indicates if API call was successful
|
25
26
|
attr_accessor :success
|
26
27
|
|
@@ -29,9 +30,9 @@ module UltracartClient
|
|
29
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
30
31
|
def self.attribute_map
|
31
32
|
{
|
32
|
-
:'chargebacks' => :'chargebacks',
|
33
33
|
:'error' => :'error',
|
34
34
|
:'metadata' => :'metadata',
|
35
|
+
:'schedules' => :'schedules',
|
35
36
|
:'success' => :'success',
|
36
37
|
:'warning' => :'warning'
|
37
38
|
}
|
@@ -45,9 +46,9 @@ module UltracartClient
|
|
45
46
|
# Attribute type mapping.
|
46
47
|
def self.openapi_types
|
47
48
|
{
|
48
|
-
:'chargebacks' => :'Array<ChargebackDispute>',
|
49
49
|
:'error' => :'Error',
|
50
50
|
:'metadata' => :'ResponseMetadata',
|
51
|
+
:'schedules' => :'Array<CustomDashboardSchedule>',
|
51
52
|
:'success' => :'Boolean',
|
52
53
|
:'warning' => :'Warning'
|
53
54
|
}
|
@@ -63,23 +64,17 @@ module UltracartClient
|
|
63
64
|
# @param [Hash] attributes Model attributes in the form of hash
|
64
65
|
def initialize(attributes = {})
|
65
66
|
if (!attributes.is_a?(Hash))
|
66
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::
|
67
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `UltracartClient::CustomDashboardSchedulesResponse` initialize method"
|
67
68
|
end
|
68
69
|
|
69
70
|
# check to see if the attribute exists and convert string to symbol for hash key
|
70
71
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
71
72
|
if (!self.class.attribute_map.key?(k.to_sym))
|
72
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::
|
73
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `UltracartClient::CustomDashboardSchedulesResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
73
74
|
end
|
74
75
|
h[k.to_sym] = v
|
75
76
|
}
|
76
77
|
|
77
|
-
if attributes.key?(:'chargebacks')
|
78
|
-
if (value = attributes[:'chargebacks']).is_a?(Array)
|
79
|
-
self.chargebacks = value
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
78
|
if attributes.key?(:'error')
|
84
79
|
self.error = attributes[:'error']
|
85
80
|
end
|
@@ -88,6 +83,12 @@ module UltracartClient
|
|
88
83
|
self.metadata = attributes[:'metadata']
|
89
84
|
end
|
90
85
|
|
86
|
+
if attributes.key?(:'schedules')
|
87
|
+
if (value = attributes[:'schedules']).is_a?(Array)
|
88
|
+
self.schedules = value
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
91
92
|
if attributes.key?(:'success')
|
92
93
|
self.success = attributes[:'success']
|
93
94
|
end
|
@@ -115,9 +116,9 @@ module UltracartClient
|
|
115
116
|
def ==(o)
|
116
117
|
return true if self.equal?(o)
|
117
118
|
self.class == o.class &&
|
118
|
-
chargebacks == o.chargebacks &&
|
119
119
|
error == o.error &&
|
120
120
|
metadata == o.metadata &&
|
121
|
+
schedules == o.schedules &&
|
121
122
|
success == o.success &&
|
122
123
|
warning == o.warning
|
123
124
|
end
|
@@ -131,7 +132,7 @@ module UltracartClient
|
|
131
132
|
# Calculates hash code according to all attributes.
|
132
133
|
# @return [Integer] Hash code
|
133
134
|
def hash
|
134
|
-
[
|
135
|
+
[error, metadata, schedules, success, warning].hash
|
135
136
|
end
|
136
137
|
|
137
138
|
# Builds the object from hash
|
@@ -15,6 +15,8 @@ require 'time'
|
|
15
15
|
|
16
16
|
module UltracartClient
|
17
17
|
class CustomReport
|
18
|
+
attr_accessor :business_analysis_prompt
|
19
|
+
|
18
20
|
attr_accessor :chart_javascript
|
19
21
|
|
20
22
|
attr_accessor :chart_javascript_url
|
@@ -38,6 +40,7 @@ module UltracartClient
|
|
38
40
|
# Attribute mapping from ruby-style variable name to JSON key.
|
39
41
|
def self.attribute_map
|
40
42
|
{
|
43
|
+
:'business_analysis_prompt' => :'business_analysis_prompt',
|
41
44
|
:'chart_javascript' => :'chart_javascript',
|
42
45
|
:'chart_javascript_url' => :'chart_javascript_url',
|
43
46
|
:'data_warehouse_report_config_oid' => :'data_warehouse_report_config_oid',
|
@@ -59,6 +62,7 @@ module UltracartClient
|
|
59
62
|
# Attribute type mapping.
|
60
63
|
def self.openapi_types
|
61
64
|
{
|
65
|
+
:'business_analysis_prompt' => :'String',
|
62
66
|
:'chart_javascript' => :'String',
|
63
67
|
:'chart_javascript_url' => :'String',
|
64
68
|
:'data_warehouse_report_config_oid' => :'Integer',
|
@@ -93,6 +97,10 @@ module UltracartClient
|
|
93
97
|
h[k.to_sym] = v
|
94
98
|
}
|
95
99
|
|
100
|
+
if attributes.key?(:'business_analysis_prompt')
|
101
|
+
self.business_analysis_prompt = attributes[:'business_analysis_prompt']
|
102
|
+
end
|
103
|
+
|
96
104
|
if attributes.key?(:'chart_javascript')
|
97
105
|
self.chart_javascript = attributes[:'chart_javascript']
|
98
106
|
end
|
@@ -158,6 +166,7 @@ module UltracartClient
|
|
158
166
|
def ==(o)
|
159
167
|
return true if self.equal?(o)
|
160
168
|
self.class == o.class &&
|
169
|
+
business_analysis_prompt == o.business_analysis_prompt &&
|
161
170
|
chart_javascript == o.chart_javascript &&
|
162
171
|
chart_javascript_url == o.chart_javascript_url &&
|
163
172
|
data_warehouse_report_config_oid == o.data_warehouse_report_config_oid &&
|
@@ -179,7 +188,7 @@ module UltracartClient
|
|
179
188
|
# Calculates hash code according to all attributes.
|
180
189
|
# @return [Integer] Hash code
|
181
190
|
def hash
|
182
|
-
[chart_javascript, chart_javascript_url, data_warehouse_report_config_oid, dataset_security_level, group_name, merchant_id, name, parameters, queries, tooltips].hash
|
191
|
+
[business_analysis_prompt, chart_javascript, chart_javascript_url, data_warehouse_report_config_oid, dataset_security_level, group_name, merchant_id, name, parameters, queries, tooltips].hash
|
183
192
|
end
|
184
193
|
|
185
194
|
# Builds the object from hash
|
@@ -17,6 +17,8 @@ module UltracartClient
|
|
17
17
|
class CustomReportExecutionParameter
|
18
18
|
attr_accessor :name
|
19
19
|
|
20
|
+
attr_accessor :quick_pick_key
|
21
|
+
|
20
22
|
attr_accessor :type
|
21
23
|
|
22
24
|
attr_accessor :value
|
@@ -25,6 +27,7 @@ module UltracartClient
|
|
25
27
|
def self.attribute_map
|
26
28
|
{
|
27
29
|
:'name' => :'name',
|
30
|
+
:'quick_pick_key' => :'quick_pick_key',
|
28
31
|
:'type' => :'type',
|
29
32
|
:'value' => :'value'
|
30
33
|
}
|
@@ -39,6 +42,7 @@ module UltracartClient
|
|
39
42
|
def self.openapi_types
|
40
43
|
{
|
41
44
|
:'name' => :'String',
|
45
|
+
:'quick_pick_key' => :'String',
|
42
46
|
:'type' => :'String',
|
43
47
|
:'value' => :'String'
|
44
48
|
}
|
@@ -69,6 +73,10 @@ module UltracartClient
|
|
69
73
|
self.name = attributes[:'name']
|
70
74
|
end
|
71
75
|
|
76
|
+
if attributes.key?(:'quick_pick_key')
|
77
|
+
self.quick_pick_key = attributes[:'quick_pick_key']
|
78
|
+
end
|
79
|
+
|
72
80
|
if attributes.key?(:'type')
|
73
81
|
self.type = attributes[:'type']
|
74
82
|
end
|
@@ -97,6 +105,7 @@ module UltracartClient
|
|
97
105
|
return true if self.equal?(o)
|
98
106
|
self.class == o.class &&
|
99
107
|
name == o.name &&
|
108
|
+
quick_pick_key == o.quick_pick_key &&
|
100
109
|
type == o.type &&
|
101
110
|
value == o.value
|
102
111
|
end
|
@@ -110,7 +119,7 @@ module UltracartClient
|
|
110
119
|
# Calculates hash code according to all attributes.
|
111
120
|
# @return [Integer] Hash code
|
112
121
|
def hash
|
113
|
-
[name, type, value].hash
|
122
|
+
[name, quick_pick_key, type, value].hash
|
114
123
|
end
|
115
124
|
|
116
125
|
# Builds the object from hash
|
@@ -66,6 +66,12 @@ module UltracartClient
|
|
66
66
|
# True if this campaign is prevented from sending at this time due to spam complaints.
|
67
67
|
attr_accessor :prevent_sending_due_to_spam
|
68
68
|
|
69
|
+
# True if the campaign should repeat on a monthly basis
|
70
|
+
attr_accessor :repeat_monthly
|
71
|
+
|
72
|
+
# True if the campaign should repeat on a weekly basis
|
73
|
+
attr_accessor :repeat_weekly
|
74
|
+
|
69
75
|
# Revenue associated with campaign
|
70
76
|
attr_accessor :revenue_formatted
|
71
77
|
|
@@ -113,6 +119,8 @@ module UltracartClient
|
|
113
119
|
:'name' => :'name',
|
114
120
|
:'open_rate_formatted' => :'open_rate_formatted',
|
115
121
|
:'prevent_sending_due_to_spam' => :'prevent_sending_due_to_spam',
|
122
|
+
:'repeat_monthly' => :'repeat_monthly',
|
123
|
+
:'repeat_weekly' => :'repeat_weekly',
|
116
124
|
:'revenue_formatted' => :'revenue_formatted',
|
117
125
|
:'revenue_per_customer_formatted' => :'revenue_per_customer_formatted',
|
118
126
|
:'scheduled_dts' => :'scheduled_dts',
|
@@ -150,6 +158,8 @@ module UltracartClient
|
|
150
158
|
:'name' => :'String',
|
151
159
|
:'open_rate_formatted' => :'String',
|
152
160
|
:'prevent_sending_due_to_spam' => :'Boolean',
|
161
|
+
:'repeat_monthly' => :'Boolean',
|
162
|
+
:'repeat_weekly' => :'Boolean',
|
153
163
|
:'revenue_formatted' => :'String',
|
154
164
|
:'revenue_per_customer_formatted' => :'String',
|
155
165
|
:'scheduled_dts' => :'String',
|
@@ -253,6 +263,14 @@ module UltracartClient
|
|
253
263
|
self.prevent_sending_due_to_spam = attributes[:'prevent_sending_due_to_spam']
|
254
264
|
end
|
255
265
|
|
266
|
+
if attributes.key?(:'repeat_monthly')
|
267
|
+
self.repeat_monthly = attributes[:'repeat_monthly']
|
268
|
+
end
|
269
|
+
|
270
|
+
if attributes.key?(:'repeat_weekly')
|
271
|
+
self.repeat_weekly = attributes[:'repeat_weekly']
|
272
|
+
end
|
273
|
+
|
256
274
|
if attributes.key?(:'revenue_formatted')
|
257
275
|
self.revenue_formatted = attributes[:'revenue_formatted']
|
258
276
|
end
|
@@ -340,6 +358,8 @@ module UltracartClient
|
|
340
358
|
name == o.name &&
|
341
359
|
open_rate_formatted == o.open_rate_formatted &&
|
342
360
|
prevent_sending_due_to_spam == o.prevent_sending_due_to_spam &&
|
361
|
+
repeat_monthly == o.repeat_monthly &&
|
362
|
+
repeat_weekly == o.repeat_weekly &&
|
343
363
|
revenue_formatted == o.revenue_formatted &&
|
344
364
|
revenue_per_customer_formatted == o.revenue_per_customer_formatted &&
|
345
365
|
scheduled_dts == o.scheduled_dts &&
|
@@ -360,7 +380,7 @@ module UltracartClient
|
|
360
380
|
# Calculates hash code according to all attributes.
|
361
381
|
# @return [Integer] Hash code
|
362
382
|
def hash
|
363
|
-
[click_rate_formatted, created_dts, deleted, email_campaign_uuid, email_communication_sequence_uuid, end_once_customer_purchases, end_once_customer_purchases_anywhere, esp_campaign_folder_uuid, esp_domain_user, esp_domain_uuid, esp_friendly_name, library_item_oid, memberships, merchant_id, name, open_rate_formatted, prevent_sending_due_to_spam, revenue_formatted, revenue_per_customer_formatted, scheduled_dts, screenshot_large_full_url, sms_esp_twilio_uuid, sms_phone_number, status, status_dts, storefront_oid].hash
|
383
|
+
[click_rate_formatted, created_dts, deleted, email_campaign_uuid, email_communication_sequence_uuid, end_once_customer_purchases, end_once_customer_purchases_anywhere, esp_campaign_folder_uuid, esp_domain_user, esp_domain_uuid, esp_friendly_name, library_item_oid, memberships, merchant_id, name, open_rate_formatted, prevent_sending_due_to_spam, repeat_monthly, repeat_weekly, revenue_formatted, revenue_per_customer_formatted, scheduled_dts, screenshot_large_full_url, sms_esp_twilio_uuid, sms_phone_number, status, status_dts, storefront_oid].hash
|
364
384
|
end
|
365
385
|
|
366
386
|
# Builds the object from hash
|
@@ -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
|
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'
|
@@ -241,6 +238,7 @@ require 'ultracart_api/models/conversation_virtual_agent_budget'
|
|
241
238
|
require 'ultracart_api/models/conversation_virtual_agent_budget_response'
|
242
239
|
require 'ultracart_api/models/conversation_virtual_agent_capabilities'
|
243
240
|
require 'ultracart_api/models/conversation_virtual_agent_capabilities_response'
|
241
|
+
require 'ultracart_api/models/conversation_virtual_agent_capability_zoho_desk_department'
|
244
242
|
require 'ultracart_api/models/conversation_webchat_context'
|
245
243
|
require 'ultracart_api/models/conversation_webchat_queue_status'
|
246
244
|
require 'ultracart_api/models/conversation_webchat_queue_status_agent'
|
@@ -322,9 +320,13 @@ require 'ultracart_api/models/coupons_request'
|
|
322
320
|
require 'ultracart_api/models/coupons_response'
|
323
321
|
require 'ultracart_api/models/currency'
|
324
322
|
require 'ultracart_api/models/custom_dashboard'
|
323
|
+
require 'ultracart_api/models/custom_dashboard_execution_parameter'
|
325
324
|
require 'ultracart_api/models/custom_dashboard_page'
|
326
325
|
require 'ultracart_api/models/custom_dashboard_page_report'
|
327
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'
|
328
330
|
require 'ultracart_api/models/custom_dashboards_response'
|
329
331
|
require 'ultracart_api/models/custom_report'
|
330
332
|
require 'ultracart_api/models/custom_report_account_config'
|
@@ -906,7 +908,6 @@ require 'ultracart_api/models/workflow_users_response'
|
|
906
908
|
require 'ultracart_api/api/affiliate_api'
|
907
909
|
require 'ultracart_api/api/auto_order_api'
|
908
910
|
require 'ultracart_api/api/channel_partner_api'
|
909
|
-
require 'ultracart_api/api/chargeback_api'
|
910
911
|
require 'ultracart_api/api/checkout_api'
|
911
912
|
require 'ultracart_api/api/conversation_api'
|
912
913
|
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.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- UltraCart
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-18 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
|
@@ -291,6 +287,7 @@ files:
|
|
291
287
|
- docs/ConversationVirtualAgentBudgetResponse.md
|
292
288
|
- docs/ConversationVirtualAgentCapabilities.md
|
293
289
|
- docs/ConversationVirtualAgentCapabilitiesResponse.md
|
290
|
+
- docs/ConversationVirtualAgentCapabilityZohoDeskDepartment.md
|
294
291
|
- docs/ConversationWebchatContext.md
|
295
292
|
- docs/ConversationWebchatQueueStatus.md
|
296
293
|
- docs/ConversationWebchatQueueStatusAgent.md
|
@@ -373,9 +370,13 @@ files:
|
|
373
370
|
- docs/CouponsResponse.md
|
374
371
|
- docs/Currency.md
|
375
372
|
- docs/CustomDashboard.md
|
373
|
+
- docs/CustomDashboardExecutionParameter.md
|
376
374
|
- docs/CustomDashboardPage.md
|
377
375
|
- docs/CustomDashboardPageReport.md
|
378
376
|
- docs/CustomDashboardResponse.md
|
377
|
+
- docs/CustomDashboardSchedule.md
|
378
|
+
- docs/CustomDashboardScheduleResponse.md
|
379
|
+
- docs/CustomDashboardSchedulesResponse.md
|
379
380
|
- docs/CustomDashboardsResponse.md
|
380
381
|
- docs/CustomReport.md
|
381
382
|
- docs/CustomReportAccountConfig.md
|
@@ -971,7 +972,6 @@ files:
|
|
971
972
|
- lib/ultracart_api/api/affiliate_api.rb
|
972
973
|
- lib/ultracart_api/api/auto_order_api.rb
|
973
974
|
- lib/ultracart_api/api/channel_partner_api.rb
|
974
|
-
- lib/ultracart_api/api/chargeback_api.rb
|
975
975
|
- lib/ultracart_api/api/checkout_api.rb
|
976
976
|
- lib/ultracart_api/api/conversation_api.rb
|
977
977
|
- lib/ultracart_api/api/coupon_api.rb
|
@@ -1112,9 +1112,6 @@ files:
|
|
1112
1112
|
- lib/ultracart_api/models/channel_partner_ship_to_preferences_response.rb
|
1113
1113
|
- lib/ultracart_api/models/channel_partner_shipping_estimate.rb
|
1114
1114
|
- lib/ultracart_api/models/channel_partners_response.rb
|
1115
|
-
- lib/ultracart_api/models/chargeback_dispute.rb
|
1116
|
-
- lib/ultracart_api/models/chargeback_dispute_response.rb
|
1117
|
-
- lib/ultracart_api/models/chargeback_disputes_response.rb
|
1118
1115
|
- lib/ultracart_api/models/checkout_allowed_countries_response.rb
|
1119
1116
|
- lib/ultracart_api/models/checkout_handoff_request.rb
|
1120
1117
|
- lib/ultracart_api/models/checkout_handoff_response.rb
|
@@ -1216,6 +1213,7 @@ files:
|
|
1216
1213
|
- lib/ultracart_api/models/conversation_virtual_agent_budget_response.rb
|
1217
1214
|
- lib/ultracart_api/models/conversation_virtual_agent_capabilities.rb
|
1218
1215
|
- lib/ultracart_api/models/conversation_virtual_agent_capabilities_response.rb
|
1216
|
+
- lib/ultracart_api/models/conversation_virtual_agent_capability_zoho_desk_department.rb
|
1219
1217
|
- lib/ultracart_api/models/conversation_webchat_context.rb
|
1220
1218
|
- lib/ultracart_api/models/conversation_webchat_queue_status.rb
|
1221
1219
|
- lib/ultracart_api/models/conversation_webchat_queue_status_agent.rb
|
@@ -1297,9 +1295,13 @@ files:
|
|
1297
1295
|
- lib/ultracart_api/models/coupons_response.rb
|
1298
1296
|
- lib/ultracart_api/models/currency.rb
|
1299
1297
|
- lib/ultracart_api/models/custom_dashboard.rb
|
1298
|
+
- lib/ultracart_api/models/custom_dashboard_execution_parameter.rb
|
1300
1299
|
- lib/ultracart_api/models/custom_dashboard_page.rb
|
1301
1300
|
- lib/ultracart_api/models/custom_dashboard_page_report.rb
|
1302
1301
|
- lib/ultracart_api/models/custom_dashboard_response.rb
|
1302
|
+
- lib/ultracart_api/models/custom_dashboard_schedule.rb
|
1303
|
+
- lib/ultracart_api/models/custom_dashboard_schedule_response.rb
|
1304
|
+
- lib/ultracart_api/models/custom_dashboard_schedules_response.rb
|
1303
1305
|
- lib/ultracart_api/models/custom_dashboards_response.rb
|
1304
1306
|
- lib/ultracart_api/models/custom_report.rb
|
1305
1307
|
- lib/ultracart_api/models/custom_report_account_config.rb
|