ultracart_rest_api_v2_typescript 3.10.193 → 3.10.194
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 +81 -3
- package/dist/api.d.ts +80 -2
- package/dist/api.js +1 -1
- 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.194
|
|
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.194 --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.194 | 04/24/2024 | esp - add fields for external generation on email |
|
|
57
58
|
| 3.10.193 | 04/04/2024 | AutoOrder.calculated_next_shipment_dts |
|
|
58
59
|
| 3.10.192 | 04/01/2024 | added merchant_id as read-only top level property of AutoOrder object |
|
|
59
60
|
| 3.10.191 | 03/26/2024 | WorkflowTask - added assigned_to_user_or_group field |
|
package/api.ts
CHANGED
|
@@ -6953,12 +6953,30 @@ export interface ConversationAgentAuth {
|
|
|
6953
6953
|
* @memberof ConversationAgentAuth
|
|
6954
6954
|
*/
|
|
6955
6955
|
merchant_id?: string;
|
|
6956
|
+
/**
|
|
6957
|
+
*
|
|
6958
|
+
* @type {boolean}
|
|
6959
|
+
* @memberof ConversationAgentAuth
|
|
6960
|
+
*/
|
|
6961
|
+
pbx_admin?: boolean;
|
|
6956
6962
|
/**
|
|
6957
6963
|
*
|
|
6958
6964
|
* @type {string}
|
|
6959
6965
|
* @memberof ConversationAgentAuth
|
|
6960
6966
|
*/
|
|
6961
6967
|
pbx_jwt?: string;
|
|
6968
|
+
/**
|
|
6969
|
+
*
|
|
6970
|
+
* @type {boolean}
|
|
6971
|
+
* @memberof ConversationAgentAuth
|
|
6972
|
+
*/
|
|
6973
|
+
pbx_supervisor?: boolean;
|
|
6974
|
+
/**
|
|
6975
|
+
*
|
|
6976
|
+
* @type {boolean}
|
|
6977
|
+
* @memberof ConversationAgentAuth
|
|
6978
|
+
*/
|
|
6979
|
+
pbx_user?: boolean;
|
|
6962
6980
|
/**
|
|
6963
6981
|
*
|
|
6964
6982
|
* @type {string}
|
|
@@ -9359,6 +9377,12 @@ export interface ConversationPbxQueue {
|
|
|
9359
9377
|
* @memberof ConversationPbxQueue
|
|
9360
9378
|
*/
|
|
9361
9379
|
wait_warning_seconds?: number;
|
|
9380
|
+
/**
|
|
9381
|
+
* Wrap up time in seconds
|
|
9382
|
+
* @type {number}
|
|
9383
|
+
* @memberof ConversationPbxQueue
|
|
9384
|
+
*/
|
|
9385
|
+
wrap_up_seconds?: number;
|
|
9362
9386
|
}
|
|
9363
9387
|
|
|
9364
9388
|
/**
|
|
@@ -16812,6 +16836,54 @@ export interface EmailCommseqEmail {
|
|
|
16812
16836
|
* @memberof EmailCommseqEmail
|
|
16813
16837
|
*/
|
|
16814
16838
|
email_template_vm_path?: string;
|
|
16839
|
+
/**
|
|
16840
|
+
*
|
|
16841
|
+
* @type {boolean}
|
|
16842
|
+
* @memberof EmailCommseqEmail
|
|
16843
|
+
*/
|
|
16844
|
+
external_generation?: boolean;
|
|
16845
|
+
/**
|
|
16846
|
+
*
|
|
16847
|
+
* @type {string}
|
|
16848
|
+
* @memberof EmailCommseqEmail
|
|
16849
|
+
*/
|
|
16850
|
+
external_generation_authentication?: string;
|
|
16851
|
+
/**
|
|
16852
|
+
*
|
|
16853
|
+
* @type {string}
|
|
16854
|
+
* @memberof EmailCommseqEmail
|
|
16855
|
+
*/
|
|
16856
|
+
external_generation_basic_password?: string;
|
|
16857
|
+
/**
|
|
16858
|
+
*
|
|
16859
|
+
* @type {string}
|
|
16860
|
+
* @memberof EmailCommseqEmail
|
|
16861
|
+
*/
|
|
16862
|
+
external_generation_basic_username?: string;
|
|
16863
|
+
/**
|
|
16864
|
+
*
|
|
16865
|
+
* @type {string}
|
|
16866
|
+
* @memberof EmailCommseqEmail
|
|
16867
|
+
*/
|
|
16868
|
+
external_generation_header_name?: string;
|
|
16869
|
+
/**
|
|
16870
|
+
*
|
|
16871
|
+
* @type {string}
|
|
16872
|
+
* @memberof EmailCommseqEmail
|
|
16873
|
+
*/
|
|
16874
|
+
external_generation_header_value?: string;
|
|
16875
|
+
/**
|
|
16876
|
+
*
|
|
16877
|
+
* @type {string}
|
|
16878
|
+
* @memberof EmailCommseqEmail
|
|
16879
|
+
*/
|
|
16880
|
+
external_generation_id?: string;
|
|
16881
|
+
/**
|
|
16882
|
+
*
|
|
16883
|
+
* @type {string}
|
|
16884
|
+
* @memberof EmailCommseqEmail
|
|
16885
|
+
*/
|
|
16886
|
+
external_generation_url?: string;
|
|
16815
16887
|
/**
|
|
16816
16888
|
* Filter profile equation json
|
|
16817
16889
|
* @type {string}
|
|
@@ -25853,13 +25925,13 @@ export interface ItemChannelPartnerMapping {
|
|
|
25853
25925
|
*/
|
|
25854
25926
|
export interface ItemChargeback {
|
|
25855
25927
|
/**
|
|
25856
|
-
* Addendums
|
|
25928
|
+
* Addendums (deprecated)
|
|
25857
25929
|
* @type {Array<ItemChargebackAddendum>}
|
|
25858
25930
|
* @memberof ItemChargeback
|
|
25859
25931
|
*/
|
|
25860
25932
|
addendums?: Array<ItemChargebackAddendum>;
|
|
25861
25933
|
/**
|
|
25862
|
-
* Adjustment requests
|
|
25934
|
+
* Adjustment requests (deprecated)
|
|
25863
25935
|
* @type {Array<ItemChargebackAdjustmentRequest>}
|
|
25864
25936
|
* @memberof ItemChargeback
|
|
25865
25937
|
*/
|
|
@@ -34573,6 +34645,12 @@ export interface OrderRefundableResponse {
|
|
|
34573
34645
|
* @memberof OrderRefundableResponse
|
|
34574
34646
|
*/
|
|
34575
34647
|
order_level_refund_reasons?: Array<OrderReason>;
|
|
34648
|
+
/**
|
|
34649
|
+
* True if the order level reject reason is required
|
|
34650
|
+
* @type {boolean}
|
|
34651
|
+
* @memberof OrderRefundableResponse
|
|
34652
|
+
*/
|
|
34653
|
+
order_level_reject_reason_required?: boolean;
|
|
34576
34654
|
/**
|
|
34577
34655
|
* Reject codes available at the order level.
|
|
34578
34656
|
* @type {Array<OrderReason>}
|
|
@@ -53688,7 +53766,7 @@ export const ConversationApiFetchParamCreator = function (configuration?: Config
|
|
|
53688
53766
|
if (recording_sid === null || recording_sid === undefined) {
|
|
53689
53767
|
throw new RequiredError('recording_sid','Required parameter recording_sid was null or undefined when calling listenedPbxQueueVoicemail.');
|
|
53690
53768
|
}
|
|
53691
|
-
const localVarPath = `/conversation/pbx/{queue_uuid}/voicemails/
|
|
53769
|
+
const localVarPath = `/conversation/pbx/queues/{queue_uuid}/voicemails/{recording_sid}/listened`
|
|
53692
53770
|
.replace(`{${"queue_uuid"}}`, encodeURIComponent(String(queue_uuid)))
|
|
53693
53771
|
.replace(`{${"recording_sid"}}`, encodeURIComponent(String(recording_sid)));
|
|
53694
53772
|
const localVarUrlObj = url.parse(localVarPath, true);
|
package/dist/api.d.ts
CHANGED
|
@@ -6794,12 +6794,30 @@ export interface ConversationAgentAuth {
|
|
|
6794
6794
|
* @memberof ConversationAgentAuth
|
|
6795
6795
|
*/
|
|
6796
6796
|
merchant_id?: string;
|
|
6797
|
+
/**
|
|
6798
|
+
*
|
|
6799
|
+
* @type {boolean}
|
|
6800
|
+
* @memberof ConversationAgentAuth
|
|
6801
|
+
*/
|
|
6802
|
+
pbx_admin?: boolean;
|
|
6797
6803
|
/**
|
|
6798
6804
|
*
|
|
6799
6805
|
* @type {string}
|
|
6800
6806
|
* @memberof ConversationAgentAuth
|
|
6801
6807
|
*/
|
|
6802
6808
|
pbx_jwt?: string;
|
|
6809
|
+
/**
|
|
6810
|
+
*
|
|
6811
|
+
* @type {boolean}
|
|
6812
|
+
* @memberof ConversationAgentAuth
|
|
6813
|
+
*/
|
|
6814
|
+
pbx_supervisor?: boolean;
|
|
6815
|
+
/**
|
|
6816
|
+
*
|
|
6817
|
+
* @type {boolean}
|
|
6818
|
+
* @memberof ConversationAgentAuth
|
|
6819
|
+
*/
|
|
6820
|
+
pbx_user?: boolean;
|
|
6803
6821
|
/**
|
|
6804
6822
|
*
|
|
6805
6823
|
* @type {string}
|
|
@@ -9138,6 +9156,12 @@ export interface ConversationPbxQueue {
|
|
|
9138
9156
|
* @memberof ConversationPbxQueue
|
|
9139
9157
|
*/
|
|
9140
9158
|
wait_warning_seconds?: number;
|
|
9159
|
+
/**
|
|
9160
|
+
* Wrap up time in seconds
|
|
9161
|
+
* @type {number}
|
|
9162
|
+
* @memberof ConversationPbxQueue
|
|
9163
|
+
*/
|
|
9164
|
+
wrap_up_seconds?: number;
|
|
9141
9165
|
}
|
|
9142
9166
|
/**
|
|
9143
9167
|
*
|
|
@@ -16422,6 +16446,54 @@ export interface EmailCommseqEmail {
|
|
|
16422
16446
|
* @memberof EmailCommseqEmail
|
|
16423
16447
|
*/
|
|
16424
16448
|
email_template_vm_path?: string;
|
|
16449
|
+
/**
|
|
16450
|
+
*
|
|
16451
|
+
* @type {boolean}
|
|
16452
|
+
* @memberof EmailCommseqEmail
|
|
16453
|
+
*/
|
|
16454
|
+
external_generation?: boolean;
|
|
16455
|
+
/**
|
|
16456
|
+
*
|
|
16457
|
+
* @type {string}
|
|
16458
|
+
* @memberof EmailCommseqEmail
|
|
16459
|
+
*/
|
|
16460
|
+
external_generation_authentication?: string;
|
|
16461
|
+
/**
|
|
16462
|
+
*
|
|
16463
|
+
* @type {string}
|
|
16464
|
+
* @memberof EmailCommseqEmail
|
|
16465
|
+
*/
|
|
16466
|
+
external_generation_basic_password?: string;
|
|
16467
|
+
/**
|
|
16468
|
+
*
|
|
16469
|
+
* @type {string}
|
|
16470
|
+
* @memberof EmailCommseqEmail
|
|
16471
|
+
*/
|
|
16472
|
+
external_generation_basic_username?: string;
|
|
16473
|
+
/**
|
|
16474
|
+
*
|
|
16475
|
+
* @type {string}
|
|
16476
|
+
* @memberof EmailCommseqEmail
|
|
16477
|
+
*/
|
|
16478
|
+
external_generation_header_name?: string;
|
|
16479
|
+
/**
|
|
16480
|
+
*
|
|
16481
|
+
* @type {string}
|
|
16482
|
+
* @memberof EmailCommseqEmail
|
|
16483
|
+
*/
|
|
16484
|
+
external_generation_header_value?: string;
|
|
16485
|
+
/**
|
|
16486
|
+
*
|
|
16487
|
+
* @type {string}
|
|
16488
|
+
* @memberof EmailCommseqEmail
|
|
16489
|
+
*/
|
|
16490
|
+
external_generation_id?: string;
|
|
16491
|
+
/**
|
|
16492
|
+
*
|
|
16493
|
+
* @type {string}
|
|
16494
|
+
* @memberof EmailCommseqEmail
|
|
16495
|
+
*/
|
|
16496
|
+
external_generation_url?: string;
|
|
16425
16497
|
/**
|
|
16426
16498
|
* Filter profile equation json
|
|
16427
16499
|
* @type {string}
|
|
@@ -25298,13 +25370,13 @@ export interface ItemChannelPartnerMapping {
|
|
|
25298
25370
|
*/
|
|
25299
25371
|
export interface ItemChargeback {
|
|
25300
25372
|
/**
|
|
25301
|
-
* Addendums
|
|
25373
|
+
* Addendums (deprecated)
|
|
25302
25374
|
* @type {Array<ItemChargebackAddendum>}
|
|
25303
25375
|
* @memberof ItemChargeback
|
|
25304
25376
|
*/
|
|
25305
25377
|
addendums?: Array<ItemChargebackAddendum>;
|
|
25306
25378
|
/**
|
|
25307
|
-
* Adjustment requests
|
|
25379
|
+
* Adjustment requests (deprecated)
|
|
25308
25380
|
* @type {Array<ItemChargebackAdjustmentRequest>}
|
|
25309
25381
|
* @memberof ItemChargeback
|
|
25310
25382
|
*/
|
|
@@ -33847,6 +33919,12 @@ export interface OrderRefundableResponse {
|
|
|
33847
33919
|
* @memberof OrderRefundableResponse
|
|
33848
33920
|
*/
|
|
33849
33921
|
order_level_refund_reasons?: Array<OrderReason>;
|
|
33922
|
+
/**
|
|
33923
|
+
* True if the order level reject reason is required
|
|
33924
|
+
* @type {boolean}
|
|
33925
|
+
* @memberof OrderRefundableResponse
|
|
33926
|
+
*/
|
|
33927
|
+
order_level_reject_reason_required?: boolean;
|
|
33850
33928
|
/**
|
|
33851
33929
|
* Reject codes available at the order level.
|
|
33852
33930
|
* @type {Array<OrderReason>}
|
package/dist/api.js
CHANGED
|
@@ -9769,7 +9769,7 @@ var ConversationApiFetchParamCreator = function (configuration) {
|
|
|
9769
9769
|
if (recording_sid === null || recording_sid === undefined) {
|
|
9770
9770
|
throw new RequiredError('recording_sid', 'Required parameter recording_sid was null or undefined when calling listenedPbxQueueVoicemail.');
|
|
9771
9771
|
}
|
|
9772
|
-
var localVarPath = "/conversation/pbx/{queue_uuid}/voicemails/
|
|
9772
|
+
var localVarPath = "/conversation/pbx/queues/{queue_uuid}/voicemails/{recording_sid}/listened"
|
|
9773
9773
|
.replace("{".concat("queue_uuid", "}"), encodeURIComponent(String(queue_uuid)))
|
|
9774
9774
|
.replace("{".concat("recording_sid", "}"), encodeURIComponent(String(recording_sid)));
|
|
9775
9775
|
var localVarUrlObj = url.parse(localVarPath, true);
|