ultracart_rest_api_v2_typescript 3.10.58 → 3.10.60
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 +66 -0
- package/dist/api.d.ts +66 -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.60
|
|
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.60 --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.60 | 10/31/2022 | communication bug fix on dup annonation |
|
|
58
|
+
| 3.10.59 | 10/31/2022 | communications - addl statistics on EmailStepStat object |
|
|
57
59
|
| 3.10.58 | 10/26/2022 | esp - methods for sms testing |
|
|
58
60
|
| 3.10.57 | 10/17/2022 | conversations - add last_interactive_message_dts |
|
|
59
61
|
| 3.10.56 | 10/07/2022 | bug fix for digital items response |
|
package/api.ts
CHANGED
|
@@ -6898,6 +6898,12 @@ export interface ConversationParticipant {
|
|
|
6898
6898
|
* @memberof ConversationParticipant
|
|
6899
6899
|
*/
|
|
6900
6900
|
status?: string;
|
|
6901
|
+
/**
|
|
6902
|
+
*
|
|
6903
|
+
* @type {string}
|
|
6904
|
+
* @memberof ConversationParticipant
|
|
6905
|
+
*/
|
|
6906
|
+
timezone?: string;
|
|
6901
6907
|
/**
|
|
6902
6908
|
*
|
|
6903
6909
|
* @type {number}
|
|
@@ -17298,6 +17304,18 @@ export interface EmailStatSummaryResponse {
|
|
|
17298
17304
|
* @interface EmailStepStat
|
|
17299
17305
|
*/
|
|
17300
17306
|
export interface EmailStepStat {
|
|
17307
|
+
/**
|
|
17308
|
+
* click count (left side)
|
|
17309
|
+
* @type {number}
|
|
17310
|
+
* @memberof EmailStepStat
|
|
17311
|
+
*/
|
|
17312
|
+
left_click_count?: number;
|
|
17313
|
+
/**
|
|
17314
|
+
* click count formatted (left side)
|
|
17315
|
+
* @type {string}
|
|
17316
|
+
* @memberof EmailStepStat
|
|
17317
|
+
*/
|
|
17318
|
+
left_click_count_formatted?: string;
|
|
17301
17319
|
/**
|
|
17302
17320
|
* conversion count (left/default side)
|
|
17303
17321
|
* @type {number}
|
|
@@ -17322,6 +17340,18 @@ export interface EmailStepStat {
|
|
|
17322
17340
|
* @memberof EmailStepStat
|
|
17323
17341
|
*/
|
|
17324
17342
|
left_customer_count_formatted?: string;
|
|
17343
|
+
/**
|
|
17344
|
+
* delivered count (left side)
|
|
17345
|
+
* @type {number}
|
|
17346
|
+
* @memberof EmailStepStat
|
|
17347
|
+
*/
|
|
17348
|
+
left_delivered_count?: number;
|
|
17349
|
+
/**
|
|
17350
|
+
* delivered count formatted (left side)
|
|
17351
|
+
* @type {string}
|
|
17352
|
+
* @memberof EmailStepStat
|
|
17353
|
+
*/
|
|
17354
|
+
left_delivered_count_formatted?: string;
|
|
17325
17355
|
/**
|
|
17326
17356
|
* order count (left/default side)
|
|
17327
17357
|
* @type {number}
|
|
@@ -17358,6 +17388,42 @@ export interface EmailStepStat {
|
|
|
17358
17388
|
* @memberof EmailStepStat
|
|
17359
17389
|
*/
|
|
17360
17390
|
left_revenue_formatted?: string;
|
|
17391
|
+
/**
|
|
17392
|
+
* send count (left side)
|
|
17393
|
+
* @type {number}
|
|
17394
|
+
* @memberof EmailStepStat
|
|
17395
|
+
*/
|
|
17396
|
+
left_send_count?: number;
|
|
17397
|
+
/**
|
|
17398
|
+
* send count formatted (left side)
|
|
17399
|
+
* @type {string}
|
|
17400
|
+
* @memberof EmailStepStat
|
|
17401
|
+
*/
|
|
17402
|
+
left_send_count_formatted?: string;
|
|
17403
|
+
/**
|
|
17404
|
+
* conversion count (left side)
|
|
17405
|
+
* @type {number}
|
|
17406
|
+
* @memberof EmailStepStat
|
|
17407
|
+
*/
|
|
17408
|
+
left_skipped_count?: number;
|
|
17409
|
+
/**
|
|
17410
|
+
* skipped count formatted (left side)
|
|
17411
|
+
* @type {string}
|
|
17412
|
+
* @memberof EmailStepStat
|
|
17413
|
+
*/
|
|
17414
|
+
left_skipped_count_formatted?: string;
|
|
17415
|
+
/**
|
|
17416
|
+
* unsubscribe count (left side)
|
|
17417
|
+
* @type {number}
|
|
17418
|
+
* @memberof EmailStepStat
|
|
17419
|
+
*/
|
|
17420
|
+
left_unsubscribe_count?: number;
|
|
17421
|
+
/**
|
|
17422
|
+
* unsubscribe count formatted (left side)
|
|
17423
|
+
* @type {string}
|
|
17424
|
+
* @memberof EmailStepStat
|
|
17425
|
+
*/
|
|
17426
|
+
left_unsubscribe_count_formatted?: string;
|
|
17361
17427
|
/**
|
|
17362
17428
|
* conversion count (right side)
|
|
17363
17429
|
* @type {number}
|
package/dist/api.d.ts
CHANGED
|
@@ -6735,6 +6735,12 @@ export interface ConversationParticipant {
|
|
|
6735
6735
|
* @memberof ConversationParticipant
|
|
6736
6736
|
*/
|
|
6737
6737
|
status?: string;
|
|
6738
|
+
/**
|
|
6739
|
+
*
|
|
6740
|
+
* @type {string}
|
|
6741
|
+
* @memberof ConversationParticipant
|
|
6742
|
+
*/
|
|
6743
|
+
timezone?: string;
|
|
6738
6744
|
/**
|
|
6739
6745
|
*
|
|
6740
6746
|
* @type {number}
|
|
@@ -16918,6 +16924,18 @@ export interface EmailStatSummaryResponse {
|
|
|
16918
16924
|
* @interface EmailStepStat
|
|
16919
16925
|
*/
|
|
16920
16926
|
export interface EmailStepStat {
|
|
16927
|
+
/**
|
|
16928
|
+
* click count (left side)
|
|
16929
|
+
* @type {number}
|
|
16930
|
+
* @memberof EmailStepStat
|
|
16931
|
+
*/
|
|
16932
|
+
left_click_count?: number;
|
|
16933
|
+
/**
|
|
16934
|
+
* click count formatted (left side)
|
|
16935
|
+
* @type {string}
|
|
16936
|
+
* @memberof EmailStepStat
|
|
16937
|
+
*/
|
|
16938
|
+
left_click_count_formatted?: string;
|
|
16921
16939
|
/**
|
|
16922
16940
|
* conversion count (left/default side)
|
|
16923
16941
|
* @type {number}
|
|
@@ -16942,6 +16960,18 @@ export interface EmailStepStat {
|
|
|
16942
16960
|
* @memberof EmailStepStat
|
|
16943
16961
|
*/
|
|
16944
16962
|
left_customer_count_formatted?: string;
|
|
16963
|
+
/**
|
|
16964
|
+
* delivered count (left side)
|
|
16965
|
+
* @type {number}
|
|
16966
|
+
* @memberof EmailStepStat
|
|
16967
|
+
*/
|
|
16968
|
+
left_delivered_count?: number;
|
|
16969
|
+
/**
|
|
16970
|
+
* delivered count formatted (left side)
|
|
16971
|
+
* @type {string}
|
|
16972
|
+
* @memberof EmailStepStat
|
|
16973
|
+
*/
|
|
16974
|
+
left_delivered_count_formatted?: string;
|
|
16945
16975
|
/**
|
|
16946
16976
|
* order count (left/default side)
|
|
16947
16977
|
* @type {number}
|
|
@@ -16978,6 +17008,42 @@ export interface EmailStepStat {
|
|
|
16978
17008
|
* @memberof EmailStepStat
|
|
16979
17009
|
*/
|
|
16980
17010
|
left_revenue_formatted?: string;
|
|
17011
|
+
/**
|
|
17012
|
+
* send count (left side)
|
|
17013
|
+
* @type {number}
|
|
17014
|
+
* @memberof EmailStepStat
|
|
17015
|
+
*/
|
|
17016
|
+
left_send_count?: number;
|
|
17017
|
+
/**
|
|
17018
|
+
* send count formatted (left side)
|
|
17019
|
+
* @type {string}
|
|
17020
|
+
* @memberof EmailStepStat
|
|
17021
|
+
*/
|
|
17022
|
+
left_send_count_formatted?: string;
|
|
17023
|
+
/**
|
|
17024
|
+
* conversion count (left side)
|
|
17025
|
+
* @type {number}
|
|
17026
|
+
* @memberof EmailStepStat
|
|
17027
|
+
*/
|
|
17028
|
+
left_skipped_count?: number;
|
|
17029
|
+
/**
|
|
17030
|
+
* skipped count formatted (left side)
|
|
17031
|
+
* @type {string}
|
|
17032
|
+
* @memberof EmailStepStat
|
|
17033
|
+
*/
|
|
17034
|
+
left_skipped_count_formatted?: string;
|
|
17035
|
+
/**
|
|
17036
|
+
* unsubscribe count (left side)
|
|
17037
|
+
* @type {number}
|
|
17038
|
+
* @memberof EmailStepStat
|
|
17039
|
+
*/
|
|
17040
|
+
left_unsubscribe_count?: number;
|
|
17041
|
+
/**
|
|
17042
|
+
* unsubscribe count formatted (left side)
|
|
17043
|
+
* @type {string}
|
|
17044
|
+
* @memberof EmailStepStat
|
|
17045
|
+
*/
|
|
17046
|
+
left_unsubscribe_count_formatted?: string;
|
|
16981
17047
|
/**
|
|
16982
17048
|
* conversion count (right side)
|
|
16983
17049
|
* @type {number}
|