ultracart_api 3.10.188 → 3.10.189
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 +5 -4
- data/docs/ChannelPartnerOrder.md +1 -0
- data/lib/ultracart_api/models/channel_partner_order.rb +11 -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: 14717d57379923f11650d162e9d07503e0017b6669d5ad7d1592c0a1046a8aa1
|
|
4
|
+
data.tar.gz: fc4243b3816fb8ab04d03f9c21d08df592763ecfb5cb5f699d978ebf14ea5232
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 002df6314150d172f74a2cbaeeccbd7a3b0be5af6611e489c522c3b0d2e52056c85f4f498fa9c79fe7a7890fa68ff1eab8fbb3b9f45509515a7c21076e379661
|
|
7
|
+
data.tar.gz: b05bccc68eb075457a2b7c7d1f59a04afa9395b9c9d1aab905215049440729b1d8e42cd291f1eab96324313d5be78b827fa26debf6440fd508134b6ab90e2883
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
|
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0.0
|
|
10
|
-
- Package version: 3.10.
|
|
10
|
+
- Package version: 3.10.189
|
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
|
|
13
13
|
|
|
@@ -24,15 +24,15 @@ gem build ultracart_api.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./ultracart_api-3.10.
|
|
27
|
+
gem install ./ultracart_api-3.10.189.gem
|
|
28
28
|
```
|
|
29
|
-
(for development, run `gem install --dev ./ultracart_api-3.10.
|
|
29
|
+
(for development, run `gem install --dev ./ultracart_api-3.10.189.gem` to install the development dependencies)
|
|
30
30
|
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
32
32
|
|
|
33
33
|
Finally add this to the Gemfile:
|
|
34
34
|
|
|
35
|
-
gem 'ultracart_api', '~> 3.10.
|
|
35
|
+
gem 'ultracart_api', '~> 3.10.189'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -1486,6 +1486,7 @@ Not every change is committed to every SDK.
|
|
|
1486
1486
|
|
|
1487
1487
|
| Version | Date | Comments |
|
|
1488
1488
|
| --: | :-: | --- |
|
|
1489
|
+
| 3.10.189 | 03/25/2024 | added sales_rep_code to Channel partner order |
|
|
1489
1490
|
| 3.10.188 | 03/19/2024 | workflow task - method to obtain open task count |
|
|
1490
1491
|
| 3.10.187 | 03/19/2024 | workflow task - addl status values, expiration_dts, and system task type |
|
|
1491
1492
|
| 3.10.186 | 03/15/2024 | workflow - getWorkflowAgentWebsocketAuthorization method added |
|
data/docs/ChannelPartnerOrder.md
CHANGED
|
@@ -59,6 +59,7 @@ Name | Type | Description | Notes
|
|
|
59
59
|
**payment_method** | **String** | Payment method | [optional]
|
|
60
60
|
**purchase_order_number** | **String** | Purchase order number | [optional]
|
|
61
61
|
**rotating_transaction_gateway_code** | **String** | The rotating transaction gateway code for the gateway used to charge this order | [optional]
|
|
62
|
+
**sales_rep_code** | **String** | Sales rep code | [optional]
|
|
62
63
|
**screen_branding_theme_code** | **String** | Screen branding theme code | [optional]
|
|
63
64
|
**ship_on_date** | **String** | Date the customer is requesting that the order ship on. Typically used for perishable product delivery. | [optional]
|
|
64
65
|
**ship_to_residential** | **BOOLEAN** | True if the shipping adress is residential. Effects the methods that are available to the customer as well as the price of the shipping method. | [optional]
|
|
@@ -182,6 +182,9 @@ module UltracartClient
|
|
|
182
182
|
# The rotating transaction gateway code for the gateway used to charge this order
|
|
183
183
|
attr_accessor :rotating_transaction_gateway_code
|
|
184
184
|
|
|
185
|
+
# Sales rep code
|
|
186
|
+
attr_accessor :sales_rep_code
|
|
187
|
+
|
|
185
188
|
# Screen branding theme code
|
|
186
189
|
attr_accessor :screen_branding_theme_code
|
|
187
190
|
|
|
@@ -334,6 +337,7 @@ module UltracartClient
|
|
|
334
337
|
:'payment_method' => :'payment_method',
|
|
335
338
|
:'purchase_order_number' => :'purchase_order_number',
|
|
336
339
|
:'rotating_transaction_gateway_code' => :'rotating_transaction_gateway_code',
|
|
340
|
+
:'sales_rep_code' => :'sales_rep_code',
|
|
337
341
|
:'screen_branding_theme_code' => :'screen_branding_theme_code',
|
|
338
342
|
:'ship_on_date' => :'ship_on_date',
|
|
339
343
|
:'ship_to_residential' => :'ship_to_residential',
|
|
@@ -420,6 +424,7 @@ module UltracartClient
|
|
|
420
424
|
:'payment_method' => :'String',
|
|
421
425
|
:'purchase_order_number' => :'String',
|
|
422
426
|
:'rotating_transaction_gateway_code' => :'String',
|
|
427
|
+
:'sales_rep_code' => :'String',
|
|
423
428
|
:'screen_branding_theme_code' => :'String',
|
|
424
429
|
:'ship_on_date' => :'String',
|
|
425
430
|
:'ship_to_residential' => :'BOOLEAN',
|
|
@@ -685,6 +690,10 @@ module UltracartClient
|
|
|
685
690
|
self.rotating_transaction_gateway_code = attributes[:'rotating_transaction_gateway_code']
|
|
686
691
|
end
|
|
687
692
|
|
|
693
|
+
if attributes.has_key?(:'sales_rep_code')
|
|
694
|
+
self.sales_rep_code = attributes[:'sales_rep_code']
|
|
695
|
+
end
|
|
696
|
+
|
|
688
697
|
if attributes.has_key?(:'screen_branding_theme_code')
|
|
689
698
|
self.screen_branding_theme_code = attributes[:'screen_branding_theme_code']
|
|
690
699
|
end
|
|
@@ -1423,6 +1432,7 @@ module UltracartClient
|
|
|
1423
1432
|
payment_method == o.payment_method &&
|
|
1424
1433
|
purchase_order_number == o.purchase_order_number &&
|
|
1425
1434
|
rotating_transaction_gateway_code == o.rotating_transaction_gateway_code &&
|
|
1435
|
+
sales_rep_code == o.sales_rep_code &&
|
|
1426
1436
|
screen_branding_theme_code == o.screen_branding_theme_code &&
|
|
1427
1437
|
ship_on_date == o.ship_on_date &&
|
|
1428
1438
|
ship_to_residential == o.ship_to_residential &&
|
|
@@ -1458,7 +1468,7 @@ module UltracartClient
|
|
|
1458
1468
|
# Calculates hash code according to all attributes.
|
|
1459
1469
|
# @return [Fixnum] Hash code
|
|
1460
1470
|
def hash
|
|
1461
|
-
[advertising_source, affiliate_id, affiliate_sub_id, arbitrary_shipping_handling_total, arbitrary_tax, arbitrary_tax_rate, arbitrary_taxable_subtotal, associate_with_customer_profile_if_present, auto_approve_purchase_order, billto_address1, billto_address2, billto_city, billto_company, billto_country_code, billto_day_phone, billto_evening_phone, billto_first_name, billto_last_name, billto_postal_code, billto_state_region, billto_title, cc_email, channel_partner_order_id, consider_recurring, coupons, credit_card_authorization_amount, credit_card_authorization_dts, credit_card_authorization_number, credit_card_expiration_month, credit_card_expiration_year, credit_card_type, custom_field1, custom_field2, custom_field3, custom_field4, custom_field5, custom_field6, custom_field7, delivery_date, email, gift, gift_email, gift_message, hosted_fields_card_token, hosted_fields_cvv_token, insurance_application_id, insurance_claim_id, ip_address, items, least_cost_route, least_cost_route_shipping_methods, mailing_list_opt_in, no_realtime_payment_processing, payment_method, purchase_order_number, rotating_transaction_gateway_code, screen_branding_theme_code, ship_on_date, ship_to_residential, shipping_method, shipto_address1, shipto_address2, shipto_city, shipto_company, shipto_country_code, shipto_day_phone, shipto_evening_phone, shipto_first_name, shipto_last_name, shipto_postal_code, shipto_state_region, shipto_title, skip_payment_processing, special_instructions, store_completed, store_if_payment_declines, tax_county, tax_exempt, transaction, treat_warnings_as_errors].hash
|
|
1471
|
+
[advertising_source, affiliate_id, affiliate_sub_id, arbitrary_shipping_handling_total, arbitrary_tax, arbitrary_tax_rate, arbitrary_taxable_subtotal, associate_with_customer_profile_if_present, auto_approve_purchase_order, billto_address1, billto_address2, billto_city, billto_company, billto_country_code, billto_day_phone, billto_evening_phone, billto_first_name, billto_last_name, billto_postal_code, billto_state_region, billto_title, cc_email, channel_partner_order_id, consider_recurring, coupons, credit_card_authorization_amount, credit_card_authorization_dts, credit_card_authorization_number, credit_card_expiration_month, credit_card_expiration_year, credit_card_type, custom_field1, custom_field2, custom_field3, custom_field4, custom_field5, custom_field6, custom_field7, delivery_date, email, gift, gift_email, gift_message, hosted_fields_card_token, hosted_fields_cvv_token, insurance_application_id, insurance_claim_id, ip_address, items, least_cost_route, least_cost_route_shipping_methods, mailing_list_opt_in, no_realtime_payment_processing, payment_method, purchase_order_number, rotating_transaction_gateway_code, sales_rep_code, screen_branding_theme_code, ship_on_date, ship_to_residential, shipping_method, shipto_address1, shipto_address2, shipto_city, shipto_company, shipto_country_code, shipto_day_phone, shipto_evening_phone, shipto_first_name, shipto_last_name, shipto_postal_code, shipto_state_region, shipto_title, skip_payment_processing, special_instructions, store_completed, store_if_payment_declines, tax_county, tax_exempt, transaction, treat_warnings_as_errors].hash
|
|
1462
1472
|
end
|
|
1463
1473
|
|
|
1464
1474
|
# 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: 3.10.
|
|
4
|
+
version: 3.10.189
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- UltraCart
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-03-
|
|
11
|
+
date: 2024-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|