ultracart_rest_api_v2_typescript 3.10.140 → 3.10.142

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.10.140
1
+ ## ultracart_rest_api_v2_typescript@3.10.142
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.10.140 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.142 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
54
54
 
55
55
  | Version | Date | Comments |
56
56
  | --: | :-: | --- |
57
+ | 3.10.142 | 06/09/2023 | distribution center pickup times |
58
+ | 3.10.141 | 06/08/2023 | customer profile qb tax exempt reason code field |
57
59
  | 3.10.140 | 06/06/2023 | auto order add_ons |
58
60
  | 3.10.139 | 05/25/2023 | added venmo constants for payment type |
59
61
  | 3.10.138 | 05/18/2023 | dw bi - send back the executed SQL |
package/api.ts CHANGED
@@ -12097,6 +12097,12 @@ export interface Customer {
12097
12097
  * @memberof Customer
12098
12098
  */
12099
12099
  qb_code?: string;
12100
+ /**
12101
+ * QuickBooks tax exemption reason code
12102
+ * @type {number}
12103
+ * @memberof Customer
12104
+ */
12105
+ qb_tax_exemption_reason_code?: number;
12100
12106
  /**
12101
12107
  * Quotes associated with this customer profile
12102
12108
  * @type {Array<Order>}
@@ -13978,6 +13984,96 @@ export interface DistributionCenter {
13978
13984
  * @memberof DistributionCenter
13979
13985
  */
13980
13986
  no_split_shipment?: boolean;
13987
+ /**
13988
+ * The time (EST) after which pickups will not be available on Friday
13989
+ * @type {string}
13990
+ * @memberof DistributionCenter
13991
+ */
13992
+ pickup_cutoff_time_friday?: string;
13993
+ /**
13994
+ * The time (EST) after which pickups will not be available on Monday
13995
+ * @type {string}
13996
+ * @memberof DistributionCenter
13997
+ */
13998
+ pickup_cutoff_time_monday?: string;
13999
+ /**
14000
+ * The time (EST) after which pickups will not be available on Saturday
14001
+ * @type {string}
14002
+ * @memberof DistributionCenter
14003
+ */
14004
+ pickup_cutoff_time_saturday?: string;
14005
+ /**
14006
+ * The time (EST) after which pickups will not be available on Sunday
14007
+ * @type {string}
14008
+ * @memberof DistributionCenter
14009
+ */
14010
+ pickup_cutoff_time_sunday?: string;
14011
+ /**
14012
+ * The time (EST) after which pickups will not be available on Thursday
14013
+ * @type {string}
14014
+ * @memberof DistributionCenter
14015
+ */
14016
+ pickup_cutoff_time_thursday?: string;
14017
+ /**
14018
+ * The time (EST) after which pickups will not be available on Tuesday
14019
+ * @type {string}
14020
+ * @memberof DistributionCenter
14021
+ */
14022
+ pickup_cutoff_time_tuesday?: string;
14023
+ /**
14024
+ * The time (EST) after which pickups will not be available on Wednesday
14025
+ * @type {string}
14026
+ * @memberof DistributionCenter
14027
+ */
14028
+ pickup_cutoff_time_wednesday?: string;
14029
+ /**
14030
+ * The time (EST) after which pickups are available on Friday
14031
+ * @type {string}
14032
+ * @memberof DistributionCenter
14033
+ */
14034
+ pickup_start_time_friday?: string;
14035
+ /**
14036
+ * The time (EST) after which pickups are available on Monday
14037
+ * @type {string}
14038
+ * @memberof DistributionCenter
14039
+ */
14040
+ pickup_start_time_monday?: string;
14041
+ /**
14042
+ * The time (EST) after which pickups are available on Saturday
14043
+ * @type {string}
14044
+ * @memberof DistributionCenter
14045
+ */
14046
+ pickup_start_time_saturday?: string;
14047
+ /**
14048
+ * The time (EST) after which pickups are available on Sunday
14049
+ * @type {string}
14050
+ * @memberof DistributionCenter
14051
+ */
14052
+ pickup_start_time_sunday?: string;
14053
+ /**
14054
+ * The time (EST) after which pickups are available on Thursday
14055
+ * @type {string}
14056
+ * @memberof DistributionCenter
14057
+ */
14058
+ pickup_start_time_thursday?: string;
14059
+ /**
14060
+ * The time (EST) after which pickups are available on Tuesday
14061
+ * @type {string}
14062
+ * @memberof DistributionCenter
14063
+ */
14064
+ pickup_start_time_tuesday?: string;
14065
+ /**
14066
+ * The time (EST) after which pickups are available on Wednesday
14067
+ * @type {string}
14068
+ * @memberof DistributionCenter
14069
+ */
14070
+ pickup_start_time_wednesday?: string;
14071
+ /**
14072
+ * The IANA timezone for all pickup times
14073
+ * @type {string}
14074
+ * @memberof DistributionCenter
14075
+ */
14076
+ pickup_tz?: string;
13981
14077
  /**
13982
14078
  * Postal code of the distribution center
13983
14079
  * @type {string}
package/dist/api.d.ts CHANGED
@@ -11798,6 +11798,12 @@ export interface Customer {
11798
11798
  * @memberof Customer
11799
11799
  */
11800
11800
  qb_code?: string;
11801
+ /**
11802
+ * QuickBooks tax exemption reason code
11803
+ * @type {number}
11804
+ * @memberof Customer
11805
+ */
11806
+ qb_tax_exemption_reason_code?: number;
11801
11807
  /**
11802
11808
  * Quotes associated with this customer profile
11803
11809
  * @type {Array<Order>}
@@ -13645,6 +13651,96 @@ export interface DistributionCenter {
13645
13651
  * @memberof DistributionCenter
13646
13652
  */
13647
13653
  no_split_shipment?: boolean;
13654
+ /**
13655
+ * The time (EST) after which pickups will not be available on Friday
13656
+ * @type {string}
13657
+ * @memberof DistributionCenter
13658
+ */
13659
+ pickup_cutoff_time_friday?: string;
13660
+ /**
13661
+ * The time (EST) after which pickups will not be available on Monday
13662
+ * @type {string}
13663
+ * @memberof DistributionCenter
13664
+ */
13665
+ pickup_cutoff_time_monday?: string;
13666
+ /**
13667
+ * The time (EST) after which pickups will not be available on Saturday
13668
+ * @type {string}
13669
+ * @memberof DistributionCenter
13670
+ */
13671
+ pickup_cutoff_time_saturday?: string;
13672
+ /**
13673
+ * The time (EST) after which pickups will not be available on Sunday
13674
+ * @type {string}
13675
+ * @memberof DistributionCenter
13676
+ */
13677
+ pickup_cutoff_time_sunday?: string;
13678
+ /**
13679
+ * The time (EST) after which pickups will not be available on Thursday
13680
+ * @type {string}
13681
+ * @memberof DistributionCenter
13682
+ */
13683
+ pickup_cutoff_time_thursday?: string;
13684
+ /**
13685
+ * The time (EST) after which pickups will not be available on Tuesday
13686
+ * @type {string}
13687
+ * @memberof DistributionCenter
13688
+ */
13689
+ pickup_cutoff_time_tuesday?: string;
13690
+ /**
13691
+ * The time (EST) after which pickups will not be available on Wednesday
13692
+ * @type {string}
13693
+ * @memberof DistributionCenter
13694
+ */
13695
+ pickup_cutoff_time_wednesday?: string;
13696
+ /**
13697
+ * The time (EST) after which pickups are available on Friday
13698
+ * @type {string}
13699
+ * @memberof DistributionCenter
13700
+ */
13701
+ pickup_start_time_friday?: string;
13702
+ /**
13703
+ * The time (EST) after which pickups are available on Monday
13704
+ * @type {string}
13705
+ * @memberof DistributionCenter
13706
+ */
13707
+ pickup_start_time_monday?: string;
13708
+ /**
13709
+ * The time (EST) after which pickups are available on Saturday
13710
+ * @type {string}
13711
+ * @memberof DistributionCenter
13712
+ */
13713
+ pickup_start_time_saturday?: string;
13714
+ /**
13715
+ * The time (EST) after which pickups are available on Sunday
13716
+ * @type {string}
13717
+ * @memberof DistributionCenter
13718
+ */
13719
+ pickup_start_time_sunday?: string;
13720
+ /**
13721
+ * The time (EST) after which pickups are available on Thursday
13722
+ * @type {string}
13723
+ * @memberof DistributionCenter
13724
+ */
13725
+ pickup_start_time_thursday?: string;
13726
+ /**
13727
+ * The time (EST) after which pickups are available on Tuesday
13728
+ * @type {string}
13729
+ * @memberof DistributionCenter
13730
+ */
13731
+ pickup_start_time_tuesday?: string;
13732
+ /**
13733
+ * The time (EST) after which pickups are available on Wednesday
13734
+ * @type {string}
13735
+ * @memberof DistributionCenter
13736
+ */
13737
+ pickup_start_time_wednesday?: string;
13738
+ /**
13739
+ * The IANA timezone for all pickup times
13740
+ * @type {string}
13741
+ * @memberof DistributionCenter
13742
+ */
13743
+ pickup_tz?: string;
13648
13744
  /**
13649
13745
  * Postal code of the distribution center
13650
13746
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.140",
3
+ "version": "3.10.142",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [