ultracart_rest_api_v2_typescript 3.10.106 → 3.10.108

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.106
1
+ ## ultracart_rest_api_v2_typescript@3.10.108
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.106 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.108 --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.108 | 01/25/2023 | conversation - added message type of engagement prompt |
58
+ | 3.10.107 | 01/25/2023 | convo event for engage customer |
57
59
  | 3.10.106 | 01/25/2023 | order api method generateInvoice |
58
60
  | 3.10.105 | 01/24/2023 | auto order - cancel minimum and change balance options |
59
61
  | 3.10.104 | 01/23/2023 | conversation - method to fetch single engagement record |
package/api.ts CHANGED
@@ -7841,7 +7841,8 @@ export namespace ConversationMessage {
7841
7841
  */
7842
7842
  export enum TypeEnum {
7843
7843
  Message = <any> 'message',
7844
- Notice = <any> 'notice'
7844
+ Notice = <any> 'notice',
7845
+ EngagementPrompt = <any> 'engagement prompt'
7845
7846
  }
7846
7847
  }
7847
7848
 
@@ -8958,12 +8959,13 @@ export namespace ConversationWebsocketMessage {
8958
8959
  Rrweb = <any> 'rrweb',
8959
8960
  ParticipantUpdate = <any> 'participant update',
8960
8961
  ParticipantJoin = <any> 'participant join',
8961
- ParticipantLeft = <any> 'participant left',
8962
+ ParticipantLeave = <any> 'participant leave',
8962
8963
  ReadMessage = <any> 'read message',
8963
8964
  Typing = <any> 'typing',
8964
8965
  AddCoupon = <any> 'add coupon',
8965
8966
  AddItem = <any> 'add item',
8966
- WebchatContext = <any> 'webchat context'
8967
+ WebchatContext = <any> 'webchat context',
8968
+ EngageCustomer = <any> 'engage customer'
8967
8969
  }
8968
8970
  /**
8969
8971
  * @export
package/dist/api.d.ts CHANGED
@@ -7653,7 +7653,8 @@ export declare namespace ConversationMessage {
7653
7653
  */
7654
7654
  enum TypeEnum {
7655
7655
  Message,
7656
- Notice
7656
+ Notice,
7657
+ EngagementPrompt
7657
7658
  }
7658
7659
  }
7659
7660
  /**
@@ -8743,12 +8744,13 @@ export declare namespace ConversationWebsocketMessage {
8743
8744
  Rrweb,
8744
8745
  ParticipantUpdate,
8745
8746
  ParticipantJoin,
8746
- ParticipantLeft,
8747
+ ParticipantLeave,
8747
8748
  ReadMessage,
8748
8749
  Typing,
8749
8750
  AddCoupon,
8750
8751
  AddItem,
8751
- WebchatContext
8752
+ WebchatContext,
8753
+ EngageCustomer
8752
8754
  }
8753
8755
  /**
8754
8756
  * @export
package/dist/api.js CHANGED
@@ -506,6 +506,7 @@ var ConversationMessage;
506
506
  (function (TypeEnum) {
507
507
  TypeEnum[TypeEnum["Message"] = 'message'] = "Message";
508
508
  TypeEnum[TypeEnum["Notice"] = 'notice'] = "Notice";
509
+ TypeEnum[TypeEnum["EngagementPrompt"] = 'engagement prompt'] = "EngagementPrompt";
509
510
  })(TypeEnum = ConversationMessage.TypeEnum || (ConversationMessage.TypeEnum = {}));
510
511
  })(ConversationMessage = exports.ConversationMessage || (exports.ConversationMessage = {}));
511
512
  /**
@@ -605,12 +606,13 @@ var ConversationWebsocketMessage;
605
606
  EventTypeEnum[EventTypeEnum["Rrweb"] = 'rrweb'] = "Rrweb";
606
607
  EventTypeEnum[EventTypeEnum["ParticipantUpdate"] = 'participant update'] = "ParticipantUpdate";
607
608
  EventTypeEnum[EventTypeEnum["ParticipantJoin"] = 'participant join'] = "ParticipantJoin";
608
- EventTypeEnum[EventTypeEnum["ParticipantLeft"] = 'participant left'] = "ParticipantLeft";
609
+ EventTypeEnum[EventTypeEnum["ParticipantLeave"] = 'participant leave'] = "ParticipantLeave";
609
610
  EventTypeEnum[EventTypeEnum["ReadMessage"] = 'read message'] = "ReadMessage";
610
611
  EventTypeEnum[EventTypeEnum["Typing"] = 'typing'] = "Typing";
611
612
  EventTypeEnum[EventTypeEnum["AddCoupon"] = 'add coupon'] = "AddCoupon";
612
613
  EventTypeEnum[EventTypeEnum["AddItem"] = 'add item'] = "AddItem";
613
614
  EventTypeEnum[EventTypeEnum["WebchatContext"] = 'webchat context'] = "WebchatContext";
615
+ EventTypeEnum[EventTypeEnum["EngageCustomer"] = 'engage customer'] = "EngageCustomer";
614
616
  })(EventTypeEnum = ConversationWebsocketMessage.EventTypeEnum || (ConversationWebsocketMessage.EventTypeEnum = {}));
615
617
  /**
616
618
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.106",
3
+ "version": "3.10.108",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [