ultracart_rest_api_v2_typescript 3.10.141 → 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 +3 -2
- package/api.ts +90 -0
- package/dist/api.d.ts +90 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.10.
|
|
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.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.142 --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.10.142 | 06/09/2023 | distribution center pickup times |
|
|
57
58
|
| 3.10.141 | 06/08/2023 | customer profile qb tax exempt reason code field |
|
|
58
59
|
| 3.10.140 | 06/06/2023 | auto order add_ons |
|
|
59
60
|
| 3.10.139 | 05/25/2023 | added venmo constants for payment type |
|
package/api.ts
CHANGED
|
@@ -13984,6 +13984,96 @@ export interface DistributionCenter {
|
|
|
13984
13984
|
* @memberof DistributionCenter
|
|
13985
13985
|
*/
|
|
13986
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;
|
|
13987
14077
|
/**
|
|
13988
14078
|
* Postal code of the distribution center
|
|
13989
14079
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -13651,6 +13651,96 @@ export interface DistributionCenter {
|
|
|
13651
13651
|
* @memberof DistributionCenter
|
|
13652
13652
|
*/
|
|
13653
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;
|
|
13654
13744
|
/**
|
|
13655
13745
|
* Postal code of the distribution center
|
|
13656
13746
|
* @type {string}
|