ultracart_api 4.0.205 → 4.0.206
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -4
- data/docs/ChannelPartnerOrder.md +2 -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: 6e6ef087a3d1db3adb47cb82f6643a05b2587c742dd67d5e2d8555b57787a9c4
|
4
|
+
data.tar.gz: fbfcb290fc0b12d812bc2d9acdd3bdb91282434c9351bae115ac73aad23f2cc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49c3f65683354eed22c3efafc1d75104f3bb88688b82dc7ffd077678c3c7c1fb89252561bbda6562bc31c53e3ca71bd696608ede7811c0074e585a0e0bc2ca7c
|
7
|
+
data.tar.gz: 99acb63bea5bf553b0bc0b949a4475013fb2dd83ca77a348ad34d31d461be17faf4c838ed056bc3c8fa768a40b6b34b0f6cca701e69389a07768c5b18040e266
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ UltraCart REST API Version 2
|
|
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.0.
|
10
|
+
- Package version: 4.0.206
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [http://www.ultracart.com](http://www.ultracart.com)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build ultracart_api.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./ultracart_api-4.0.
|
27
|
+
gem install ./ultracart_api-4.0.206.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./ultracart_api-4.0.
|
30
|
+
(for development, run `gem install --dev ./ultracart_api-4.0.206.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'ultracart_api', '~> 4.0.
|
36
|
+
gem 'ultracart_api', '~> 4.0.206'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -1494,6 +1494,7 @@ Not every change is committed to every SDK.
|
|
1494
1494
|
|
1495
1495
|
| Version | Date | Comments |
|
1496
1496
|
| --: | :-: | --- |
|
1497
|
+
| 4.0.206 | 03/25/2024 | added sales_rep_code to Channel partner order |
|
1497
1498
|
| 4.0.205 | 03/19/2024 | workflow task - method to obtain open task count |
|
1498
1499
|
| 4.0.204 | 03/19/2024 | workflow task - addl status values, expiration_dts, and system task type |
|
1499
1500
|
| 4.0.203 | 03/15/2024 | workflow - getWorkflowAgentWebsocketAuthorization method added |
|
data/docs/ChannelPartnerOrder.md
CHANGED
@@ -60,6 +60,7 @@
|
|
60
60
|
| **payment_method** | **String** | Payment method | [optional] |
|
61
61
|
| **purchase_order_number** | **String** | Purchase order number | [optional] |
|
62
62
|
| **rotating_transaction_gateway_code** | **String** | The rotating transaction gateway code for the gateway used to charge this order | [optional] |
|
63
|
+
| **sales_rep_code** | **String** | Sales rep code | [optional] |
|
63
64
|
| **screen_branding_theme_code** | **String** | Screen branding theme code | [optional] |
|
64
65
|
| **ship_on_date** | **String** | Date the customer is requesting that the order ship on. Typically used for perishable product delivery. | [optional] |
|
65
66
|
| **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] |
|
@@ -147,6 +148,7 @@ instance = UltracartClient::ChannelPartnerOrder.new(
|
|
147
148
|
payment_method: null,
|
148
149
|
purchase_order_number: null,
|
149
150
|
rotating_transaction_gateway_code: null,
|
151
|
+
sales_rep_code: null,
|
150
152
|
screen_branding_theme_code: null,
|
151
153
|
ship_on_date: null,
|
152
154
|
ship_to_residential: null,
|
@@ -183,6 +183,9 @@ module UltracartClient
|
|
183
183
|
# The rotating transaction gateway code for the gateway used to charge this order
|
184
184
|
attr_accessor :rotating_transaction_gateway_code
|
185
185
|
|
186
|
+
# Sales rep code
|
187
|
+
attr_accessor :sales_rep_code
|
188
|
+
|
186
189
|
# Screen branding theme code
|
187
190
|
attr_accessor :screen_branding_theme_code
|
188
191
|
|
@@ -335,6 +338,7 @@ module UltracartClient
|
|
335
338
|
:'payment_method' => :'payment_method',
|
336
339
|
:'purchase_order_number' => :'purchase_order_number',
|
337
340
|
:'rotating_transaction_gateway_code' => :'rotating_transaction_gateway_code',
|
341
|
+
:'sales_rep_code' => :'sales_rep_code',
|
338
342
|
:'screen_branding_theme_code' => :'screen_branding_theme_code',
|
339
343
|
:'ship_on_date' => :'ship_on_date',
|
340
344
|
:'ship_to_residential' => :'ship_to_residential',
|
@@ -426,6 +430,7 @@ module UltracartClient
|
|
426
430
|
:'payment_method' => :'String',
|
427
431
|
:'purchase_order_number' => :'String',
|
428
432
|
:'rotating_transaction_gateway_code' => :'String',
|
433
|
+
:'sales_rep_code' => :'String',
|
429
434
|
:'screen_branding_theme_code' => :'String',
|
430
435
|
:'ship_on_date' => :'String',
|
431
436
|
:'ship_to_residential' => :'Boolean',
|
@@ -704,6 +709,10 @@ module UltracartClient
|
|
704
709
|
self.rotating_transaction_gateway_code = attributes[:'rotating_transaction_gateway_code']
|
705
710
|
end
|
706
711
|
|
712
|
+
if attributes.key?(:'sales_rep_code')
|
713
|
+
self.sales_rep_code = attributes[:'sales_rep_code']
|
714
|
+
end
|
715
|
+
|
707
716
|
if attributes.key?(:'screen_branding_theme_code')
|
708
717
|
self.screen_branding_theme_code = attributes[:'screen_branding_theme_code']
|
709
718
|
end
|
@@ -1442,6 +1451,7 @@ module UltracartClient
|
|
1442
1451
|
payment_method == o.payment_method &&
|
1443
1452
|
purchase_order_number == o.purchase_order_number &&
|
1444
1453
|
rotating_transaction_gateway_code == o.rotating_transaction_gateway_code &&
|
1454
|
+
sales_rep_code == o.sales_rep_code &&
|
1445
1455
|
screen_branding_theme_code == o.screen_branding_theme_code &&
|
1446
1456
|
ship_on_date == o.ship_on_date &&
|
1447
1457
|
ship_to_residential == o.ship_to_residential &&
|
@@ -1477,7 +1487,7 @@ module UltracartClient
|
|
1477
1487
|
# Calculates hash code according to all attributes.
|
1478
1488
|
# @return [Integer] Hash code
|
1479
1489
|
def hash
|
1480
|
-
[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
|
1490
|
+
[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
|
1481
1491
|
end
|
1482
1492
|
|
1483
1493
|
# 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.0.
|
4
|
+
version: 4.0.206
|
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
|