ultracart_api 4.1.128 → 4.1.129

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ca18fc5f87eeb12f368a721f009d50ab0d95962963fe199682a510096c45c6f
4
- data.tar.gz: bdfdcd7102ac34adb6d98ca45b278820ab2c737b56a48333a9a2fbdc051a9107
3
+ metadata.gz: 5f7c65d97b1349cd7b399cad65f0395b7b56fbc11b508536715434c217506345
4
+ data.tar.gz: '048918a9f54b72137453c84e434bb462e157f296c26ec6d001b97f15a0dd0a73'
5
5
  SHA512:
6
- metadata.gz: 112999172c3f38ca9a4f9ae1a2bfa2cecc55807b45fb4636b60f33439c3677f6ee12f6482175711aa11ce4b7e25a3e5af8d405e6f8a6e3a67705f9aa3b85e096
7
- data.tar.gz: 176822981446343645eb53d4b54883a25a762fc048dd614bcd53a423dc6ab31aec7d7d4f46dd4e878b82ca3b173a86849196c482f4e73033b36290c2537c06df
6
+ metadata.gz: 5aabcca47cfd19505898210d42004c5bb9a26cab1a23c2908c01b9d4a7186b4e65358f4ba54b83ef04102e6c663fe2cb5b2030e1b384a1b331e701aefe394cba
7
+ data.tar.gz: 6a8bf46ae4dca1e03ab734fd8aa5b66e654204fca56b8ec7262fc20511df593d21b1147afc79da15496d198ed2de23637407e6470272dd991c1a900145cb4db1
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.128
10
+ - Package version: 4.1.129
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.128'
19
+ gem 'ultracart_api', '4.1.129'
20
20
  ```
21
21
 
22
22
  install:
@@ -1834,6 +1834,7 @@ Not every change is committed to every SDK.
1834
1834
 
1835
1835
  | Version | Date | Comments |
1836
1836
  | --: | :-: | --- |
1837
+ | 4.1.129 | 08/13/2026 | ChannelPartnerOrder and OrderChannelPartner were missing a property |
1837
1838
  | 4.1.128 | 08/13/2026 | channel partner - added arbitrary discount to ChannelPartnerOrder |
1838
1839
  | 4.1.127 | 08/13/2026 | added arbitrary discounts to order creation for historical imports |
1839
1840
  | 4.1.126 | 08/10/2026 | oauth - add /oauth/me method to assist application in indentifying the connected account |
@@ -90,6 +90,7 @@
90
90
  | **shipto_postal_code** | **String** | Shipping Postal code | [optional] |
91
91
  | **shipto_state_region** | **String** | Shipping State for United States otherwise region or province for other countries | [optional] |
92
92
  | **shipto_title** | **String** | Shipping Title | [optional] |
93
+ | **skip_auto_order_setup** | **Boolean** | If true the setup of the auto order record is skipped | [optional] |
93
94
  | **skip_payment_processing** | **Boolean** | If true the order is placed directly into the shipping department | [optional] |
94
95
  | **special_instructions** | **String** | Special instructions from the customer regarding shipping | [optional] |
95
96
  | **store_completed** | **Boolean** | If true the order bypasses shipping and is marked completed | [optional] |
@@ -193,6 +194,7 @@ instance = UltracartClient::ChannelPartnerOrder.new(
193
194
  shipto_postal_code: null,
194
195
  shipto_state_region: null,
195
196
  shipto_title: null,
197
+ skip_auto_order_setup: null,
196
198
  skip_payment_processing: null,
197
199
  special_instructions: null,
198
200
  store_completed: null,
@@ -11,6 +11,7 @@
11
11
  | **channel_partner_order_id** | **String** | The order ID assigned by the channel partner for this order. | [optional] |
12
12
  | **ignore_invalid_shipping_method** | **Boolean** | Set to true to ignore invalid shipping method being specified. Only applicable on inserting orders. | [optional] |
13
13
  | **no_realtime_payment_processing** | **Boolean** | Indicates this order should be placed in Account Receivable for later payment processing | [optional] |
14
+ | **skip_auto_order_setup** | **Boolean** | Instructs UltraCart to skip auto order setup. Only applicable on inserting orders. | [optional] |
14
15
  | **skip_payment_processing** | **Boolean** | Indicates this order was already paid for via a channel purchase and no payment collection should be attempted | [optional] |
15
16
  | **store_completed** | **Boolean** | Instructs UltraCart to skip shipping department and mark this order as fully complete. This flag defaults to true. Set this flag to false to shipped product for this order. | [optional] |
16
17
  | **store_if_payment_declines** | **Boolean** | If true, any failed payment will place the order in Accounts Receivable rather than rejecting it. | [optional] |
@@ -29,6 +30,7 @@ instance = UltracartClient::OrderChannelPartner.new(
29
30
  channel_partner_order_id: null,
30
31
  ignore_invalid_shipping_method: null,
31
32
  no_realtime_payment_processing: null,
33
+ skip_auto_order_setup: null,
32
34
  skip_payment_processing: null,
33
35
  store_completed: null,
34
36
  store_if_payment_declines: null,
@@ -273,6 +273,9 @@ module UltracartClient
273
273
  # Shipping Title
274
274
  attr_accessor :shipto_title
275
275
 
276
+ # If true the setup of the auto order record is skipped
277
+ attr_accessor :skip_auto_order_setup
278
+
276
279
  # If true the order is placed directly into the shipping department
277
280
  attr_accessor :skip_payment_processing
278
281
 
@@ -413,6 +416,7 @@ module UltracartClient
413
416
  :'shipto_postal_code' => :'shipto_postal_code',
414
417
  :'shipto_state_region' => :'shipto_state_region',
415
418
  :'shipto_title' => :'shipto_title',
419
+ :'skip_auto_order_setup' => :'skip_auto_order_setup',
416
420
  :'skip_payment_processing' => :'skip_payment_processing',
417
421
  :'special_instructions' => :'special_instructions',
418
422
  :'store_completed' => :'store_completed',
@@ -520,6 +524,7 @@ module UltracartClient
520
524
  :'shipto_postal_code' => :'String',
521
525
  :'shipto_state_region' => :'String',
522
526
  :'shipto_title' => :'String',
527
+ :'skip_auto_order_setup' => :'Boolean',
523
528
  :'skip_payment_processing' => :'Boolean',
524
529
  :'special_instructions' => :'String',
525
530
  :'store_completed' => :'Boolean',
@@ -904,6 +909,10 @@ module UltracartClient
904
909
  self.shipto_title = attributes[:'shipto_title']
905
910
  end
906
911
 
912
+ if attributes.key?(:'skip_auto_order_setup')
913
+ self.skip_auto_order_setup = attributes[:'skip_auto_order_setup']
914
+ end
915
+
907
916
  if attributes.key?(:'skip_payment_processing')
908
917
  self.skip_payment_processing = attributes[:'skip_payment_processing']
909
918
  end
@@ -1640,6 +1649,7 @@ module UltracartClient
1640
1649
  shipto_postal_code == o.shipto_postal_code &&
1641
1650
  shipto_state_region == o.shipto_state_region &&
1642
1651
  shipto_title == o.shipto_title &&
1652
+ skip_auto_order_setup == o.skip_auto_order_setup &&
1643
1653
  skip_payment_processing == o.skip_payment_processing &&
1644
1654
  special_instructions == o.special_instructions &&
1645
1655
  store_completed == o.store_completed &&
@@ -1661,7 +1671,7 @@ module UltracartClient
1661
1671
  # Calculates hash code according to all attributes.
1662
1672
  # @return [Integer] Hash code
1663
1673
  def hash
1664
- [advertising_source, affiliate_id, affiliate_sub_id, arbitrary_shipping_handling_total, arbitrary_subtotal_discount, arbitrary_tax, arbitrary_tax_rate, arbitrary_taxable_subtotal, arbitrary_taxable_subtotal_discount, 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, creation_dts, 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, echeck_bank_aba_code, echeck_bank_account_name, echeck_bank_account_number, echeck_bank_account_type, echeck_bank_name, echeck_bank_owner_type, echeck_customer_tax_id, echeck_drivers_license_dob, echeck_drivers_license_number, echeck_drivers_license_state, 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, storefront_host_name, tax_county, tax_exempt, transaction, treat_warnings_as_errors, use_prior_payment_information_from_order_id].hash
1674
+ [advertising_source, affiliate_id, affiliate_sub_id, arbitrary_shipping_handling_total, arbitrary_subtotal_discount, arbitrary_tax, arbitrary_tax_rate, arbitrary_taxable_subtotal, arbitrary_taxable_subtotal_discount, 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, creation_dts, 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, echeck_bank_aba_code, echeck_bank_account_name, echeck_bank_account_number, echeck_bank_account_type, echeck_bank_name, echeck_bank_owner_type, echeck_customer_tax_id, echeck_drivers_license_dob, echeck_drivers_license_number, echeck_drivers_license_state, 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_auto_order_setup, skip_payment_processing, special_instructions, store_completed, store_if_payment_declines, storefront_host_name, tax_county, tax_exempt, transaction, treat_warnings_as_errors, use_prior_payment_information_from_order_id].hash
1665
1675
  end
1666
1676
 
1667
1677
  # Builds the object from hash
@@ -36,6 +36,9 @@ module UltracartClient
36
36
  # Indicates this order should be placed in Account Receivable for later payment processing
37
37
  attr_accessor :no_realtime_payment_processing
38
38
 
39
+ # Instructs UltraCart to skip auto order setup. Only applicable on inserting orders.
40
+ attr_accessor :skip_auto_order_setup
41
+
39
42
  # Indicates this order was already paid for via a channel purchase and no payment collection should be attempted
40
43
  attr_accessor :skip_payment_processing
41
44
 
@@ -58,6 +61,7 @@ module UltracartClient
58
61
  :'channel_partner_order_id' => :'channel_partner_order_id',
59
62
  :'ignore_invalid_shipping_method' => :'ignore_invalid_shipping_method',
60
63
  :'no_realtime_payment_processing' => :'no_realtime_payment_processing',
64
+ :'skip_auto_order_setup' => :'skip_auto_order_setup',
61
65
  :'skip_payment_processing' => :'skip_payment_processing',
62
66
  :'store_completed' => :'store_completed',
63
67
  :'store_if_payment_declines' => :'store_if_payment_declines',
@@ -80,6 +84,7 @@ module UltracartClient
80
84
  :'channel_partner_order_id' => :'String',
81
85
  :'ignore_invalid_shipping_method' => :'Boolean',
82
86
  :'no_realtime_payment_processing' => :'Boolean',
87
+ :'skip_auto_order_setup' => :'Boolean',
83
88
  :'skip_payment_processing' => :'Boolean',
84
89
  :'store_completed' => :'Boolean',
85
90
  :'store_if_payment_declines' => :'Boolean',
@@ -136,6 +141,10 @@ module UltracartClient
136
141
  self.no_realtime_payment_processing = attributes[:'no_realtime_payment_processing']
137
142
  end
138
143
 
144
+ if attributes.key?(:'skip_auto_order_setup')
145
+ self.skip_auto_order_setup = attributes[:'skip_auto_order_setup']
146
+ end
147
+
139
148
  if attributes.key?(:'skip_payment_processing')
140
149
  self.skip_payment_processing = attributes[:'skip_payment_processing']
141
150
  end
@@ -193,6 +202,7 @@ module UltracartClient
193
202
  channel_partner_order_id == o.channel_partner_order_id &&
194
203
  ignore_invalid_shipping_method == o.ignore_invalid_shipping_method &&
195
204
  no_realtime_payment_processing == o.no_realtime_payment_processing &&
205
+ skip_auto_order_setup == o.skip_auto_order_setup &&
196
206
  skip_payment_processing == o.skip_payment_processing &&
197
207
  store_completed == o.store_completed &&
198
208
  store_if_payment_declines == o.store_if_payment_declines &&
@@ -208,7 +218,7 @@ module UltracartClient
208
218
  # Calculates hash code according to all attributes.
209
219
  # @return [Integer] Hash code
210
220
  def hash
211
- [auto_approve_purchase_order, channel_partner_code, channel_partner_data, channel_partner_oid, channel_partner_order_id, ignore_invalid_shipping_method, no_realtime_payment_processing, skip_payment_processing, store_completed, store_if_payment_declines, treat_warnings_as_errors].hash
221
+ [auto_approve_purchase_order, channel_partner_code, channel_partner_data, channel_partner_oid, channel_partner_order_id, ignore_invalid_shipping_method, no_realtime_payment_processing, skip_auto_order_setup, skip_payment_processing, store_completed, store_if_payment_declines, treat_warnings_as_errors].hash
212
222
  end
213
223
 
214
224
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 6.0.1-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module UltracartClient
14
- VERSION = '4.1.128'
14
+ VERSION = '4.1.129'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultracart_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.128
4
+ version: 4.1.129
5
5
  platform: ruby
6
6
  authors:
7
7
  - UltraCart