ultracart_rest_api_v2_typescript 3.11.21 → 3.11.22

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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@3.11.21
1
+ ## ultracart_rest_api_v2_typescript@3.11.22
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install ultracart_rest_api_v2_typescript@3.11.21 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.11.22 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,7 @@ Not every change is committed to every SDK.
54
54
 
55
55
  | Version | Date | Comments |
56
56
  | --: | :-: | --- |
57
+ | 3.11.22 | 10/06/2025 | added Customer.fax back into object model |
57
58
  | 3.11.21 | 09/09/2025 | added OrderRestApi.replaceOrderItemMerchantItemId |
58
59
  | 3.11.20 | 08/18/2025 | storefront communiations - campaign repeat flags |
59
60
  | 3.11.19 | 08/04/2025 | conversations api - add zoho departments to getCapabilities call |
package/api.ts CHANGED
@@ -15557,6 +15557,12 @@ export interface Customer {
15557
15557
  * @memberof Customer
15558
15558
  */
15559
15559
  exempt_shipping_handling_charge?: boolean;
15560
+ /**
15561
+ * Fax Number
15562
+ * @type {string}
15563
+ * @memberof Customer
15564
+ */
15565
+ fax?: string;
15560
15566
  /**
15561
15567
  * FedEx account number
15562
15568
  * @type {string}
@@ -31501,6 +31507,12 @@ export interface ItemShippingMethod {
31501
31507
  * @memberof ItemShippingMethod
31502
31508
  */
31503
31509
  shipping_method_validity?: ItemShippingMethod.ShippingMethodValidityEnum;
31510
+ /**
31511
+ * Ships separately
31512
+ * @type {boolean}
31513
+ * @memberof ItemShippingMethod
31514
+ */
31515
+ ships_separately?: boolean;
31504
31516
  /**
31505
31517
  * Signature required
31506
31518
  * @type {boolean}
@@ -35665,6 +35677,7 @@ export namespace OrderPayment {
35665
35677
  Check = <any> 'Check',
35666
35678
  COD = <any> 'COD',
35667
35679
  CreditCard = <any> 'Credit Card',
35680
+ Crypto = <any> 'Crypto',
35668
35681
  EBay = <any> 'eBay',
35669
35682
  ECheck = <any> 'eCheck',
35670
35683
  GoogleShopping = <any> 'Google Shopping',
@@ -38598,7 +38611,7 @@ export interface RegisterAffiliateClickResponse {
38598
38611
  */
38599
38612
  export interface ReplaceOrderItemIdRequest {
38600
38613
  /**
38601
- * Index of the item on the order (one based index)
38614
+ * Index of the item on the order. Must match order.items[].item_index
38602
38615
  * @type {number}
38603
38616
  * @memberof ReplaceOrderItemIdRequest
38604
38617
  */
package/dist/api.d.ts CHANGED
@@ -15176,6 +15176,12 @@ export interface Customer {
15176
15176
  * @memberof Customer
15177
15177
  */
15178
15178
  exempt_shipping_handling_charge?: boolean;
15179
+ /**
15180
+ * Fax Number
15181
+ * @type {string}
15182
+ * @memberof Customer
15183
+ */
15184
+ fax?: string;
15179
15185
  /**
15180
15186
  * FedEx account number
15181
15187
  * @type {string}
@@ -30834,6 +30840,12 @@ export interface ItemShippingMethod {
30834
30840
  * @memberof ItemShippingMethod
30835
30841
  */
30836
30842
  shipping_method_validity?: ItemShippingMethod.ShippingMethodValidityEnum;
30843
+ /**
30844
+ * Ships separately
30845
+ * @type {boolean}
30846
+ * @memberof ItemShippingMethod
30847
+ */
30848
+ ships_separately?: boolean;
30837
30849
  /**
30838
30850
  * Signature required
30839
30851
  * @type {boolean}
@@ -34912,6 +34924,7 @@ export declare namespace OrderPayment {
34912
34924
  Check,
34913
34925
  COD,
34914
34926
  CreditCard,
34927
+ Crypto,
34915
34928
  EBay,
34916
34929
  ECheck,
34917
34930
  GoogleShopping,
@@ -37791,7 +37804,7 @@ export interface RegisterAffiliateClickResponse {
37791
37804
  */
37792
37805
  export interface ReplaceOrderItemIdRequest {
37793
37806
  /**
37794
- * Index of the item on the order (one based index)
37807
+ * Index of the item on the order. Must match order.items[].item_index
37795
37808
  * @type {number}
37796
37809
  * @memberof ReplaceOrderItemIdRequest
37797
37810
  */
package/dist/api.js CHANGED
@@ -1404,6 +1404,7 @@ var OrderPayment;
1404
1404
  PaymentMethodEnum[PaymentMethodEnum["Check"] = 'Check'] = "Check";
1405
1405
  PaymentMethodEnum[PaymentMethodEnum["COD"] = 'COD'] = "COD";
1406
1406
  PaymentMethodEnum[PaymentMethodEnum["CreditCard"] = 'Credit Card'] = "CreditCard";
1407
+ PaymentMethodEnum[PaymentMethodEnum["Crypto"] = 'Crypto'] = "Crypto";
1407
1408
  PaymentMethodEnum[PaymentMethodEnum["EBay"] = 'eBay'] = "EBay";
1408
1409
  PaymentMethodEnum[PaymentMethodEnum["ECheck"] = 'eCheck'] = "ECheck";
1409
1410
  PaymentMethodEnum[PaymentMethodEnum["GoogleShopping"] = 'Google Shopping'] = "GoogleShopping";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.11.21",
3
+ "version": "3.11.22",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [