ultracart_rest_api_v2_typescript 3.10.197 → 3.10.199
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 +4 -2
- package/api.ts +125 -0
- package/dist/api.d.ts +125 -0
- package/dist/api.js +19 -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.199
|
|
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.199 --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.199 | 05/13/2024 | conversation pbx - allow nullable day of week in time range |
|
|
58
|
+
| 3.10.198 | 05/08/2024 | added echeck fields to channel partner order import |
|
|
57
59
|
| 3.10.197 | 05/02/2024 | conversation - new method to load pbx audio usage |
|
|
58
60
|
| 3.10.196 | 05/02/2024 | autoorder - fields to record merge association and tstamp |
|
|
59
61
|
| 3.10.195 | 05/01/2024 | getConversationPbxAudioUploadUrl - fix the response obj def |
|
package/api.ts
CHANGED
|
@@ -2781,6 +2781,12 @@ export interface CartCheckout {
|
|
|
2781
2781
|
* @memberof CartCheckout
|
|
2782
2782
|
*/
|
|
2783
2783
|
comments?: string;
|
|
2784
|
+
/**
|
|
2785
|
+
* Current step of the checkout (read only)
|
|
2786
|
+
* @type {string}
|
|
2787
|
+
* @memberof CartCheckout
|
|
2788
|
+
*/
|
|
2789
|
+
current_step?: string;
|
|
2784
2790
|
/**
|
|
2785
2791
|
* Custom field 1
|
|
2786
2792
|
* @type {string}
|
|
@@ -5796,6 +5802,66 @@ export interface ChannelPartnerOrder {
|
|
|
5796
5802
|
* @memberof ChannelPartnerOrder
|
|
5797
5803
|
*/
|
|
5798
5804
|
delivery_date?: string;
|
|
5805
|
+
/**
|
|
5806
|
+
* eCheck bank ABA code
|
|
5807
|
+
* @type {string}
|
|
5808
|
+
* @memberof ChannelPartnerOrder
|
|
5809
|
+
*/
|
|
5810
|
+
echeck_bank_aba_code?: string;
|
|
5811
|
+
/**
|
|
5812
|
+
* eCheck bank account name
|
|
5813
|
+
* @type {string}
|
|
5814
|
+
* @memberof ChannelPartnerOrder
|
|
5815
|
+
*/
|
|
5816
|
+
echeck_bank_account_name?: string;
|
|
5817
|
+
/**
|
|
5818
|
+
* eCheck bank account number
|
|
5819
|
+
* @type {string}
|
|
5820
|
+
* @memberof ChannelPartnerOrder
|
|
5821
|
+
*/
|
|
5822
|
+
echeck_bank_account_number?: string;
|
|
5823
|
+
/**
|
|
5824
|
+
* eCheck bank account type
|
|
5825
|
+
* @type {string}
|
|
5826
|
+
* @memberof ChannelPartnerOrder
|
|
5827
|
+
*/
|
|
5828
|
+
echeck_bank_account_type?: ChannelPartnerOrder.EcheckBankAccountTypeEnum;
|
|
5829
|
+
/**
|
|
5830
|
+
* eCheck bank name
|
|
5831
|
+
* @type {string}
|
|
5832
|
+
* @memberof ChannelPartnerOrder
|
|
5833
|
+
*/
|
|
5834
|
+
echeck_bank_name?: string;
|
|
5835
|
+
/**
|
|
5836
|
+
* eCheck bank owner type
|
|
5837
|
+
* @type {string}
|
|
5838
|
+
* @memberof ChannelPartnerOrder
|
|
5839
|
+
*/
|
|
5840
|
+
echeck_bank_owner_type?: ChannelPartnerOrder.EcheckBankOwnerTypeEnum;
|
|
5841
|
+
/**
|
|
5842
|
+
* eCheck customer tax id
|
|
5843
|
+
* @type {string}
|
|
5844
|
+
* @memberof ChannelPartnerOrder
|
|
5845
|
+
*/
|
|
5846
|
+
echeck_customer_tax_id?: string;
|
|
5847
|
+
/**
|
|
5848
|
+
* eCheck drivers license dob
|
|
5849
|
+
* @type {string}
|
|
5850
|
+
* @memberof ChannelPartnerOrder
|
|
5851
|
+
*/
|
|
5852
|
+
echeck_drivers_license_dob?: string;
|
|
5853
|
+
/**
|
|
5854
|
+
* eCheck drivers license number
|
|
5855
|
+
* @type {string}
|
|
5856
|
+
* @memberof ChannelPartnerOrder
|
|
5857
|
+
*/
|
|
5858
|
+
echeck_drivers_license_number?: string;
|
|
5859
|
+
/**
|
|
5860
|
+
* eCheck drivers license state
|
|
5861
|
+
* @type {string}
|
|
5862
|
+
* @memberof ChannelPartnerOrder
|
|
5863
|
+
*/
|
|
5864
|
+
echeck_drivers_license_state?: string;
|
|
5799
5865
|
/**
|
|
5800
5866
|
* Email
|
|
5801
5867
|
* @type {string}
|
|
@@ -6055,6 +6121,22 @@ export interface ChannelPartnerOrder {
|
|
|
6055
6121
|
* @namespace ChannelPartnerOrder
|
|
6056
6122
|
*/
|
|
6057
6123
|
export namespace ChannelPartnerOrder {
|
|
6124
|
+
/**
|
|
6125
|
+
* @export
|
|
6126
|
+
* @enum {string}
|
|
6127
|
+
*/
|
|
6128
|
+
export enum EcheckBankAccountTypeEnum {
|
|
6129
|
+
Checking = <any> 'Checking',
|
|
6130
|
+
Savings = <any> 'Savings'
|
|
6131
|
+
}
|
|
6132
|
+
/**
|
|
6133
|
+
* @export
|
|
6134
|
+
* @enum {string}
|
|
6135
|
+
*/
|
|
6136
|
+
export enum EcheckBankOwnerTypeEnum {
|
|
6137
|
+
Business = <any> 'Business',
|
|
6138
|
+
Personal = <any> 'Personal'
|
|
6139
|
+
}
|
|
6058
6140
|
/**
|
|
6059
6141
|
* @export
|
|
6060
6142
|
* @enum {string}
|
|
@@ -6065,6 +6147,7 @@ export namespace ChannelPartnerOrder {
|
|
|
6065
6147
|
Check = <any> 'Check',
|
|
6066
6148
|
COD = <any> 'COD',
|
|
6067
6149
|
CreditCard = <any> 'Credit Card',
|
|
6150
|
+
ECheck = <any> 'eCheck',
|
|
6068
6151
|
LoanHero = <any> 'LoanHero',
|
|
6069
6152
|
MoneyOrder = <any> 'Money Order',
|
|
6070
6153
|
PayPal = <any> 'PayPal',
|
|
@@ -8792,6 +8875,12 @@ export interface ConversationPbxAudio {
|
|
|
8792
8875
|
* @memberof ConversationPbxAudio
|
|
8793
8876
|
*/
|
|
8794
8877
|
mime_type?: string;
|
|
8878
|
+
/**
|
|
8879
|
+
* URL
|
|
8880
|
+
* @type {string}
|
|
8881
|
+
* @memberof ConversationPbxAudio
|
|
8882
|
+
*/
|
|
8883
|
+
url?: string;
|
|
8795
8884
|
/**
|
|
8796
8885
|
* User Id
|
|
8797
8886
|
* @type {number}
|
|
@@ -35840,6 +35929,42 @@ export interface OrderUtm {
|
|
|
35840
35929
|
* @memberof OrderUtm
|
|
35841
35930
|
*/
|
|
35842
35931
|
glcid?: string;
|
|
35932
|
+
/**
|
|
35933
|
+
*
|
|
35934
|
+
* @type {string}
|
|
35935
|
+
* @memberof OrderUtm
|
|
35936
|
+
*/
|
|
35937
|
+
itm_campaign?: string;
|
|
35938
|
+
/**
|
|
35939
|
+
*
|
|
35940
|
+
* @type {string}
|
|
35941
|
+
* @memberof OrderUtm
|
|
35942
|
+
*/
|
|
35943
|
+
itm_content?: string;
|
|
35944
|
+
/**
|
|
35945
|
+
*
|
|
35946
|
+
* @type {string}
|
|
35947
|
+
* @memberof OrderUtm
|
|
35948
|
+
*/
|
|
35949
|
+
itm_id?: string;
|
|
35950
|
+
/**
|
|
35951
|
+
*
|
|
35952
|
+
* @type {string}
|
|
35953
|
+
* @memberof OrderUtm
|
|
35954
|
+
*/
|
|
35955
|
+
itm_medium?: string;
|
|
35956
|
+
/**
|
|
35957
|
+
*
|
|
35958
|
+
* @type {string}
|
|
35959
|
+
* @memberof OrderUtm
|
|
35960
|
+
*/
|
|
35961
|
+
itm_source?: string;
|
|
35962
|
+
/**
|
|
35963
|
+
*
|
|
35964
|
+
* @type {string}
|
|
35965
|
+
* @memberof OrderUtm
|
|
35966
|
+
*/
|
|
35967
|
+
itm_term?: string;
|
|
35843
35968
|
/**
|
|
35844
35969
|
*
|
|
35845
35970
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -2710,6 +2710,12 @@ export interface CartCheckout {
|
|
|
2710
2710
|
* @memberof CartCheckout
|
|
2711
2711
|
*/
|
|
2712
2712
|
comments?: string;
|
|
2713
|
+
/**
|
|
2714
|
+
* Current step of the checkout (read only)
|
|
2715
|
+
* @type {string}
|
|
2716
|
+
* @memberof CartCheckout
|
|
2717
|
+
*/
|
|
2718
|
+
current_step?: string;
|
|
2713
2719
|
/**
|
|
2714
2720
|
* Custom field 1
|
|
2715
2721
|
* @type {string}
|
|
@@ -5661,6 +5667,66 @@ export interface ChannelPartnerOrder {
|
|
|
5661
5667
|
* @memberof ChannelPartnerOrder
|
|
5662
5668
|
*/
|
|
5663
5669
|
delivery_date?: string;
|
|
5670
|
+
/**
|
|
5671
|
+
* eCheck bank ABA code
|
|
5672
|
+
* @type {string}
|
|
5673
|
+
* @memberof ChannelPartnerOrder
|
|
5674
|
+
*/
|
|
5675
|
+
echeck_bank_aba_code?: string;
|
|
5676
|
+
/**
|
|
5677
|
+
* eCheck bank account name
|
|
5678
|
+
* @type {string}
|
|
5679
|
+
* @memberof ChannelPartnerOrder
|
|
5680
|
+
*/
|
|
5681
|
+
echeck_bank_account_name?: string;
|
|
5682
|
+
/**
|
|
5683
|
+
* eCheck bank account number
|
|
5684
|
+
* @type {string}
|
|
5685
|
+
* @memberof ChannelPartnerOrder
|
|
5686
|
+
*/
|
|
5687
|
+
echeck_bank_account_number?: string;
|
|
5688
|
+
/**
|
|
5689
|
+
* eCheck bank account type
|
|
5690
|
+
* @type {string}
|
|
5691
|
+
* @memberof ChannelPartnerOrder
|
|
5692
|
+
*/
|
|
5693
|
+
echeck_bank_account_type?: ChannelPartnerOrder.EcheckBankAccountTypeEnum;
|
|
5694
|
+
/**
|
|
5695
|
+
* eCheck bank name
|
|
5696
|
+
* @type {string}
|
|
5697
|
+
* @memberof ChannelPartnerOrder
|
|
5698
|
+
*/
|
|
5699
|
+
echeck_bank_name?: string;
|
|
5700
|
+
/**
|
|
5701
|
+
* eCheck bank owner type
|
|
5702
|
+
* @type {string}
|
|
5703
|
+
* @memberof ChannelPartnerOrder
|
|
5704
|
+
*/
|
|
5705
|
+
echeck_bank_owner_type?: ChannelPartnerOrder.EcheckBankOwnerTypeEnum;
|
|
5706
|
+
/**
|
|
5707
|
+
* eCheck customer tax id
|
|
5708
|
+
* @type {string}
|
|
5709
|
+
* @memberof ChannelPartnerOrder
|
|
5710
|
+
*/
|
|
5711
|
+
echeck_customer_tax_id?: string;
|
|
5712
|
+
/**
|
|
5713
|
+
* eCheck drivers license dob
|
|
5714
|
+
* @type {string}
|
|
5715
|
+
* @memberof ChannelPartnerOrder
|
|
5716
|
+
*/
|
|
5717
|
+
echeck_drivers_license_dob?: string;
|
|
5718
|
+
/**
|
|
5719
|
+
* eCheck drivers license number
|
|
5720
|
+
* @type {string}
|
|
5721
|
+
* @memberof ChannelPartnerOrder
|
|
5722
|
+
*/
|
|
5723
|
+
echeck_drivers_license_number?: string;
|
|
5724
|
+
/**
|
|
5725
|
+
* eCheck drivers license state
|
|
5726
|
+
* @type {string}
|
|
5727
|
+
* @memberof ChannelPartnerOrder
|
|
5728
|
+
*/
|
|
5729
|
+
echeck_drivers_license_state?: string;
|
|
5664
5730
|
/**
|
|
5665
5731
|
* Email
|
|
5666
5732
|
* @type {string}
|
|
@@ -5919,6 +5985,22 @@ export interface ChannelPartnerOrder {
|
|
|
5919
5985
|
* @namespace ChannelPartnerOrder
|
|
5920
5986
|
*/
|
|
5921
5987
|
export declare namespace ChannelPartnerOrder {
|
|
5988
|
+
/**
|
|
5989
|
+
* @export
|
|
5990
|
+
* @enum {string}
|
|
5991
|
+
*/
|
|
5992
|
+
enum EcheckBankAccountTypeEnum {
|
|
5993
|
+
Checking,
|
|
5994
|
+
Savings
|
|
5995
|
+
}
|
|
5996
|
+
/**
|
|
5997
|
+
* @export
|
|
5998
|
+
* @enum {string}
|
|
5999
|
+
*/
|
|
6000
|
+
enum EcheckBankOwnerTypeEnum {
|
|
6001
|
+
Business,
|
|
6002
|
+
Personal
|
|
6003
|
+
}
|
|
5922
6004
|
/**
|
|
5923
6005
|
* @export
|
|
5924
6006
|
* @enum {string}
|
|
@@ -5929,6 +6011,7 @@ export declare namespace ChannelPartnerOrder {
|
|
|
5929
6011
|
Check,
|
|
5930
6012
|
COD,
|
|
5931
6013
|
CreditCard,
|
|
6014
|
+
ECheck,
|
|
5932
6015
|
LoanHero,
|
|
5933
6016
|
MoneyOrder,
|
|
5934
6017
|
PayPal,
|
|
@@ -8582,6 +8665,12 @@ export interface ConversationPbxAudio {
|
|
|
8582
8665
|
* @memberof ConversationPbxAudio
|
|
8583
8666
|
*/
|
|
8584
8667
|
mime_type?: string;
|
|
8668
|
+
/**
|
|
8669
|
+
* URL
|
|
8670
|
+
* @type {string}
|
|
8671
|
+
* @memberof ConversationPbxAudio
|
|
8672
|
+
*/
|
|
8673
|
+
url?: string;
|
|
8585
8674
|
/**
|
|
8586
8675
|
* User Id
|
|
8587
8676
|
* @type {number}
|
|
@@ -35096,6 +35185,42 @@ export interface OrderUtm {
|
|
|
35096
35185
|
* @memberof OrderUtm
|
|
35097
35186
|
*/
|
|
35098
35187
|
glcid?: string;
|
|
35188
|
+
/**
|
|
35189
|
+
*
|
|
35190
|
+
* @type {string}
|
|
35191
|
+
* @memberof OrderUtm
|
|
35192
|
+
*/
|
|
35193
|
+
itm_campaign?: string;
|
|
35194
|
+
/**
|
|
35195
|
+
*
|
|
35196
|
+
* @type {string}
|
|
35197
|
+
* @memberof OrderUtm
|
|
35198
|
+
*/
|
|
35199
|
+
itm_content?: string;
|
|
35200
|
+
/**
|
|
35201
|
+
*
|
|
35202
|
+
* @type {string}
|
|
35203
|
+
* @memberof OrderUtm
|
|
35204
|
+
*/
|
|
35205
|
+
itm_id?: string;
|
|
35206
|
+
/**
|
|
35207
|
+
*
|
|
35208
|
+
* @type {string}
|
|
35209
|
+
* @memberof OrderUtm
|
|
35210
|
+
*/
|
|
35211
|
+
itm_medium?: string;
|
|
35212
|
+
/**
|
|
35213
|
+
*
|
|
35214
|
+
* @type {string}
|
|
35215
|
+
* @memberof OrderUtm
|
|
35216
|
+
*/
|
|
35217
|
+
itm_source?: string;
|
|
35218
|
+
/**
|
|
35219
|
+
*
|
|
35220
|
+
* @type {string}
|
|
35221
|
+
* @memberof OrderUtm
|
|
35222
|
+
*/
|
|
35223
|
+
itm_term?: string;
|
|
35099
35224
|
/**
|
|
35100
35225
|
*
|
|
35101
35226
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -302,6 +302,24 @@ var CartKitComponentOption;
|
|
|
302
302
|
*/
|
|
303
303
|
var ChannelPartnerOrder;
|
|
304
304
|
(function (ChannelPartnerOrder) {
|
|
305
|
+
/**
|
|
306
|
+
* @export
|
|
307
|
+
* @enum {string}
|
|
308
|
+
*/
|
|
309
|
+
var EcheckBankAccountTypeEnum;
|
|
310
|
+
(function (EcheckBankAccountTypeEnum) {
|
|
311
|
+
EcheckBankAccountTypeEnum[EcheckBankAccountTypeEnum["Checking"] = 'Checking'] = "Checking";
|
|
312
|
+
EcheckBankAccountTypeEnum[EcheckBankAccountTypeEnum["Savings"] = 'Savings'] = "Savings";
|
|
313
|
+
})(EcheckBankAccountTypeEnum = ChannelPartnerOrder.EcheckBankAccountTypeEnum || (ChannelPartnerOrder.EcheckBankAccountTypeEnum = {}));
|
|
314
|
+
/**
|
|
315
|
+
* @export
|
|
316
|
+
* @enum {string}
|
|
317
|
+
*/
|
|
318
|
+
var EcheckBankOwnerTypeEnum;
|
|
319
|
+
(function (EcheckBankOwnerTypeEnum) {
|
|
320
|
+
EcheckBankOwnerTypeEnum[EcheckBankOwnerTypeEnum["Business"] = 'Business'] = "Business";
|
|
321
|
+
EcheckBankOwnerTypeEnum[EcheckBankOwnerTypeEnum["Personal"] = 'Personal'] = "Personal";
|
|
322
|
+
})(EcheckBankOwnerTypeEnum = ChannelPartnerOrder.EcheckBankOwnerTypeEnum || (ChannelPartnerOrder.EcheckBankOwnerTypeEnum = {}));
|
|
305
323
|
/**
|
|
306
324
|
* @export
|
|
307
325
|
* @enum {string}
|
|
@@ -313,6 +331,7 @@ var ChannelPartnerOrder;
|
|
|
313
331
|
PaymentMethodEnum[PaymentMethodEnum["Check"] = 'Check'] = "Check";
|
|
314
332
|
PaymentMethodEnum[PaymentMethodEnum["COD"] = 'COD'] = "COD";
|
|
315
333
|
PaymentMethodEnum[PaymentMethodEnum["CreditCard"] = 'Credit Card'] = "CreditCard";
|
|
334
|
+
PaymentMethodEnum[PaymentMethodEnum["ECheck"] = 'eCheck'] = "ECheck";
|
|
316
335
|
PaymentMethodEnum[PaymentMethodEnum["LoanHero"] = 'LoanHero'] = "LoanHero";
|
|
317
336
|
PaymentMethodEnum[PaymentMethodEnum["MoneyOrder"] = 'Money Order'] = "MoneyOrder";
|
|
318
337
|
PaymentMethodEnum[PaymentMethodEnum["PayPal"] = 'PayPal'] = "PayPal";
|