ultracart_rest_api_v2_typescript 3.10.75 → 3.10.77

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@3.10.75
1
+ ## ultracart_rest_api_v2_typescript@3.10.77
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.75 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.77 --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.77 | 12/08/2022 | communications - expose the rebuild percentage |
58
+ | 3.10.76 | 12/06/2022 | convo - add session_start_dts to webchat context, cart - add customer_profile.signup_dts |
57
59
  | 3.10.75 | 12/06/2022 | customer api - expose edi information and editor values |
58
60
  | 3.10.74 | 12/02/2022 | conversations - customer last unresponded dts |
59
61
  | 3.10.73 | 11/30/2022 | conversations - add order and auto order information to webchat context |
package/api.ts CHANGED
@@ -2809,7 +2809,7 @@ export interface CartCustomerProfile {
2809
2809
  */
2810
2810
  free_shipping?: boolean;
2811
2811
  /**
2812
- * The minimum aount that this profile has to purchase to qualify for free shipping
2812
+ * The minimum amount that this profile has to purchase to qualify for free shipping
2813
2813
  * @type {number}
2814
2814
  * @memberof CartCustomerProfile
2815
2815
  */
@@ -2862,6 +2862,12 @@ export interface CartCustomerProfile {
2862
2862
  * @memberof CartCustomerProfile
2863
2863
  */
2864
2864
  shipping_addresses?: Array<CartCustomerProfileAddress>;
2865
+ /**
2866
+ * Signup date
2867
+ * @type {string}
2868
+ * @memberof CartCustomerProfile
2869
+ */
2870
+ signup_dts?: string;
2865
2871
  /**
2866
2872
  * True if this profile is exempt from sales tax
2867
2873
  * @type {boolean}
@@ -7329,6 +7335,12 @@ export interface ConversationWebchatContext {
7329
7335
  * @memberof ConversationWebchatContext
7330
7336
  */
7331
7337
  session_start?: HitSessionStart;
7338
+ /**
7339
+ * Date/time that the session was started (if known)
7340
+ * @type {string}
7341
+ * @memberof ConversationWebchatContext
7342
+ */
7343
+ session_start_dts?: string;
7332
7344
  /**
7333
7345
  *
7334
7346
  * @type {HitSessionUtm}
@@ -16760,6 +16772,12 @@ export interface EmailSegment {
16760
16772
  * @memberof EmailSegment
16761
16773
  */
16762
16774
  rank_json?: string;
16775
+ /**
16776
+ * Percentage of completion for a rebuild. The value range will be 0-1. Multiply by 100 to format for display.
16777
+ * @type {number}
16778
+ * @memberof EmailSegment
16779
+ */
16780
+ rebuild_percentage?: number;
16763
16781
  /**
16764
16782
  * True if a rebuild is required because some part of the segment has changed
16765
16783
  * @type {boolean}
package/dist/api.d.ts CHANGED
@@ -2739,7 +2739,7 @@ export interface CartCustomerProfile {
2739
2739
  */
2740
2740
  free_shipping?: boolean;
2741
2741
  /**
2742
- * The minimum aount that this profile has to purchase to qualify for free shipping
2742
+ * The minimum amount that this profile has to purchase to qualify for free shipping
2743
2743
  * @type {number}
2744
2744
  * @memberof CartCustomerProfile
2745
2745
  */
@@ -2792,6 +2792,12 @@ export interface CartCustomerProfile {
2792
2792
  * @memberof CartCustomerProfile
2793
2793
  */
2794
2794
  shipping_addresses?: Array<CartCustomerProfileAddress>;
2795
+ /**
2796
+ * Signup date
2797
+ * @type {string}
2798
+ * @memberof CartCustomerProfile
2799
+ */
2800
+ signup_dts?: string;
2795
2801
  /**
2796
2802
  * True if this profile is exempt from sales tax
2797
2803
  * @type {boolean}
@@ -7155,6 +7161,12 @@ export interface ConversationWebchatContext {
7155
7161
  * @memberof ConversationWebchatContext
7156
7162
  */
7157
7163
  session_start?: HitSessionStart;
7164
+ /**
7165
+ * Date/time that the session was started (if known)
7166
+ * @type {string}
7167
+ * @memberof ConversationWebchatContext
7168
+ */
7169
+ session_start_dts?: string;
7158
7170
  /**
7159
7171
  *
7160
7172
  * @type {HitSessionUtm}
@@ -16388,6 +16400,12 @@ export interface EmailSegment {
16388
16400
  * @memberof EmailSegment
16389
16401
  */
16390
16402
  rank_json?: string;
16403
+ /**
16404
+ * Percentage of completion for a rebuild. The value range will be 0-1. Multiply by 100 to format for display.
16405
+ * @type {number}
16406
+ * @memberof EmailSegment
16407
+ */
16408
+ rebuild_percentage?: number;
16391
16409
  /**
16392
16410
  * True if a rebuild is required because some part of the segment has changed
16393
16411
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.75",
3
+ "version": "3.10.77",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [