ultracart_rest_api_v2_typescript 3.10.59 → 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 +3 -2
- package/api.ts +7 -1
- package/dist/api.d.ts +7 -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.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,7 @@ 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 |
|
|
57
58
|
| 3.10.59 | 10/31/2022 | communications - addl statistics on EmailStepStat object |
|
|
58
59
|
| 3.10.58 | 10/26/2022 | esp - methods for sms testing |
|
|
59
60
|
| 3.10.57 | 10/17/2022 | conversations - add last_interactive_message_dts |
|
package/api.ts
CHANGED
|
@@ -17304,6 +17304,12 @@ export interface EmailStatSummaryResponse {
|
|
|
17304
17304
|
* @interface EmailStepStat
|
|
17305
17305
|
*/
|
|
17306
17306
|
export interface EmailStepStat {
|
|
17307
|
+
/**
|
|
17308
|
+
* click count (left side)
|
|
17309
|
+
* @type {number}
|
|
17310
|
+
* @memberof EmailStepStat
|
|
17311
|
+
*/
|
|
17312
|
+
left_click_count?: number;
|
|
17307
17313
|
/**
|
|
17308
17314
|
* click count formatted (left side)
|
|
17309
17315
|
* @type {string}
|
|
@@ -17311,7 +17317,7 @@ export interface EmailStepStat {
|
|
|
17311
17317
|
*/
|
|
17312
17318
|
left_click_count_formatted?: string;
|
|
17313
17319
|
/**
|
|
17314
|
-
*
|
|
17320
|
+
* conversion count (left/default side)
|
|
17315
17321
|
* @type {number}
|
|
17316
17322
|
* @memberof EmailStepStat
|
|
17317
17323
|
*/
|
package/dist/api.d.ts
CHANGED
|
@@ -16924,6 +16924,12 @@ export interface EmailStatSummaryResponse {
|
|
|
16924
16924
|
* @interface EmailStepStat
|
|
16925
16925
|
*/
|
|
16926
16926
|
export interface EmailStepStat {
|
|
16927
|
+
/**
|
|
16928
|
+
* click count (left side)
|
|
16929
|
+
* @type {number}
|
|
16930
|
+
* @memberof EmailStepStat
|
|
16931
|
+
*/
|
|
16932
|
+
left_click_count?: number;
|
|
16927
16933
|
/**
|
|
16928
16934
|
* click count formatted (left side)
|
|
16929
16935
|
* @type {string}
|
|
@@ -16931,7 +16937,7 @@ export interface EmailStepStat {
|
|
|
16931
16937
|
*/
|
|
16932
16938
|
left_click_count_formatted?: string;
|
|
16933
16939
|
/**
|
|
16934
|
-
*
|
|
16940
|
+
* conversion count (left/default side)
|
|
16935
16941
|
* @type {number}
|
|
16936
16942
|
* @memberof EmailStepStat
|
|
16937
16943
|
*/
|