ultracart_rest_api_v2_typescript 4.0.76-RC → 4.0.77-RC

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@4.0.76-RC
1
+ ## ultracart_rest_api_v2_typescript@4.0.77-RC
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@4.0.76-RC --save
39
+ npm install ultracart_rest_api_v2_typescript@4.0.77-RC --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
+ | 4.0.77-RC | 10/31/2022 | communication bug fix on dup annonation |
57
58
  | 4.0.76-RC | 10/31/2022 | communications - addl statistics on EmailStepStat object |
58
59
  | 4.0.75-RC | 10/26/2022 | esp - methods for sms testing |
59
60
  | 4.0.74-RC | 10/17/2022 | conversations - add last_interactive_message_dts |
@@ -15,6 +15,12 @@
15
15
  * @interface EmailStepStat
16
16
  */
17
17
  export interface EmailStepStat {
18
+ /**
19
+ * click count (left side)
20
+ * @type {number}
21
+ * @memberof EmailStepStat
22
+ */
23
+ left_click_count?: number;
18
24
  /**
19
25
  * click count formatted (left side)
20
26
  * @type {string}
@@ -22,7 +28,7 @@ export interface EmailStepStat {
22
28
  */
23
29
  left_click_count_formatted?: string;
24
30
  /**
25
- * click count (left side)
31
+ * conversion count (left/default side)
26
32
  * @type {number}
27
33
  * @memberof EmailStepStat
28
34
  */
@@ -24,6 +24,7 @@ function EmailStepStatFromJSONTyped(json, ignoreDiscriminator) {
24
24
  return json;
25
25
  }
26
26
  return {
27
+ 'left_click_count': !(0, runtime_1.exists)(json, 'left_click_count') ? undefined : json['left_click_count'],
27
28
  'left_click_count_formatted': !(0, runtime_1.exists)(json, 'left_click_count_formatted') ? undefined : json['left_click_count_formatted'],
28
29
  'left_conversion_count': !(0, runtime_1.exists)(json, 'left_conversion_count') ? undefined : json['left_conversion_count'],
29
30
  'left_conversion_count_formatted': !(0, runtime_1.exists)(json, 'left_conversion_count_formatted') ? undefined : json['left_conversion_count_formatted'],
@@ -64,6 +65,7 @@ function EmailStepStatToJSON(value) {
64
65
  return null;
65
66
  }
66
67
  return {
68
+ 'left_click_count': value.left_click_count,
67
69
  'left_click_count_formatted': value.left_click_count_formatted,
68
70
  'left_conversion_count': value.left_conversion_count,
69
71
  'left_conversion_count_formatted': value.left_conversion_count_formatted,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.0.76-RC",
3
+ "version": "4.0.77-RC",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -19,6 +19,12 @@ import { exists, mapValues } from '../runtime';
19
19
  * @interface EmailStepStat
20
20
  */
21
21
  export interface EmailStepStat {
22
+ /**
23
+ * click count (left side)
24
+ * @type {number}
25
+ * @memberof EmailStepStat
26
+ */
27
+ left_click_count?: number;
22
28
  /**
23
29
  * click count formatted (left side)
24
30
  * @type {string}
@@ -26,7 +32,7 @@ export interface EmailStepStat {
26
32
  */
27
33
  left_click_count_formatted?: string;
28
34
  /**
29
- * click count (left side)
35
+ * conversion count (left/default side)
30
36
  * @type {number}
31
37
  * @memberof EmailStepStat
32
38
  */
@@ -205,6 +211,7 @@ export function EmailStepStatFromJSONTyped(json: any, ignoreDiscriminator: boole
205
211
  }
206
212
  return {
207
213
 
214
+ 'left_click_count': !exists(json, 'left_click_count') ? undefined : json['left_click_count'],
208
215
  'left_click_count_formatted': !exists(json, 'left_click_count_formatted') ? undefined : json['left_click_count_formatted'],
209
216
  'left_conversion_count': !exists(json, 'left_conversion_count') ? undefined : json['left_conversion_count'],
210
217
  'left_conversion_count_formatted': !exists(json, 'left_conversion_count_formatted') ? undefined : json['left_conversion_count_formatted'],
@@ -246,6 +253,7 @@ export function EmailStepStatToJSON(value?: EmailStepStat | null): any {
246
253
  }
247
254
  return {
248
255
 
256
+ 'left_click_count': value.left_click_count,
249
257
  'left_click_count_formatted': value.left_click_count_formatted,
250
258
  'left_conversion_count': value.left_conversion_count,
251
259
  'left_conversion_count_formatted': value.left_conversion_count_formatted,