ultracart_rest_api_v2_typescript 3.10.72 → 3.10.74

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.72
1
+ ## ultracart_rest_api_v2_typescript@3.10.74
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.72 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.74 --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.74 | 12/02/2022 | conversations - customer last unresponded dts |
58
+ | 3.10.73 | 11/30/2022 | conversations - add order and auto order information to webchat context |
57
59
  | 3.10.72 | 11/30/2022 | order item - addl fields for linking kits to kit components |
58
60
  | 3.10.71 | 11/29/2022 | converstation marked convo read method |
59
61
  | 3.10.70 | 11/21/2022 | coupon - addl optional minimums for percent off msrp items coupon |
package/api.ts CHANGED
@@ -6313,6 +6313,12 @@ export interface Conversation {
6313
6313
  * @memberof Conversation
6314
6314
  */
6315
6315
  conversation_uuid?: string;
6316
+ /**
6317
+ * Date/time of the first customer message that is unresponded to.
6318
+ * @type {string}
6319
+ * @memberof Conversation
6320
+ */
6321
+ customer_first_message_unresponded_to_dts?: string;
6316
6322
  /**
6317
6323
  *
6318
6324
  * @type {string}
@@ -7116,6 +7122,12 @@ export interface ConversationSummary {
7116
7122
  * @memberof ConversationSummary
7117
7123
  */
7118
7124
  conversation_uuid?: string;
7125
+ /**
7126
+ * Date/time of the first customer message that is unresponded to.
7127
+ * @type {string}
7128
+ * @memberof ConversationSummary
7129
+ */
7130
+ customer_first_message_unresponded_to_dts?: string;
7119
7131
  /**
7120
7132
  *
7121
7133
  * @type {string}
@@ -7231,6 +7243,12 @@ export interface ConversationTwilioAccount {
7231
7243
  * @interface ConversationWebchatContext
7232
7244
  */
7233
7245
  export interface ConversationWebchatContext {
7246
+ /**
7247
+ *
7248
+ * @type {Array<AutoOrder>}
7249
+ * @memberof ConversationWebchatContext
7250
+ */
7251
+ auto_orders?: Array<AutoOrder>;
7234
7252
  /**
7235
7253
  *
7236
7254
  * @type {Cart}
@@ -7243,6 +7261,12 @@ export interface ConversationWebchatContext {
7243
7261
  * @memberof ConversationWebchatContext
7244
7262
  */
7245
7263
  current_url?: string;
7264
+ /**
7265
+ *
7266
+ * @type {Array<Order>}
7267
+ * @memberof ConversationWebchatContext
7268
+ */
7269
+ orders?: Array<Order>;
7246
7270
  /**
7247
7271
  *
7248
7272
  * @type {Array<HitPageView>}
package/dist/api.d.ts CHANGED
@@ -6166,6 +6166,12 @@ export interface Conversation {
6166
6166
  * @memberof Conversation
6167
6167
  */
6168
6168
  conversation_uuid?: string;
6169
+ /**
6170
+ * Date/time of the first customer message that is unresponded to.
6171
+ * @type {string}
6172
+ * @memberof Conversation
6173
+ */
6174
+ customer_first_message_unresponded_to_dts?: string;
6169
6175
  /**
6170
6176
  *
6171
6177
  * @type {string}
@@ -6946,6 +6952,12 @@ export interface ConversationSummary {
6946
6952
  * @memberof ConversationSummary
6947
6953
  */
6948
6954
  conversation_uuid?: string;
6955
+ /**
6956
+ * Date/time of the first customer message that is unresponded to.
6957
+ * @type {string}
6958
+ * @memberof ConversationSummary
6959
+ */
6960
+ customer_first_message_unresponded_to_dts?: string;
6949
6961
  /**
6950
6962
  *
6951
6963
  * @type {string}
@@ -7058,6 +7070,12 @@ export interface ConversationTwilioAccount {
7058
7070
  * @interface ConversationWebchatContext
7059
7071
  */
7060
7072
  export interface ConversationWebchatContext {
7073
+ /**
7074
+ *
7075
+ * @type {Array<AutoOrder>}
7076
+ * @memberof ConversationWebchatContext
7077
+ */
7078
+ auto_orders?: Array<AutoOrder>;
7061
7079
  /**
7062
7080
  *
7063
7081
  * @type {Cart}
@@ -7070,6 +7088,12 @@ export interface ConversationWebchatContext {
7070
7088
  * @memberof ConversationWebchatContext
7071
7089
  */
7072
7090
  current_url?: string;
7091
+ /**
7092
+ *
7093
+ * @type {Array<Order>}
7094
+ * @memberof ConversationWebchatContext
7095
+ */
7096
+ orders?: Array<Order>;
7073
7097
  /**
7074
7098
  *
7075
7099
  * @type {Array<HitPageView>}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.72",
3
+ "version": "3.10.74",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [