ultracart_rest_api_v2_typescript 3.10.107 → 3.10.109
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 +4 -2
- package/api.ts +9 -2
- package/dist/api.d.ts +9 -2
- package/dist/api.js +2 -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.109
|
|
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.109 --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.109 | 01/26/2023 | typo in ConversationWebsocketMessage |
|
|
58
|
+
| 3.10.108 | 01/25/2023 | conversation - added message type of engagement prompt |
|
|
57
59
|
| 3.10.107 | 01/25/2023 | convo event for engage customer |
|
|
58
60
|
| 3.10.106 | 01/25/2023 | order api method generateInvoice |
|
|
59
61
|
| 3.10.105 | 01/24/2023 | auto order - cancel minimum and change balance options |
|
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,7 +8959,7 @@ export namespace ConversationWebsocketMessage {
|
|
|
8958
8959
|
Rrweb = <any> 'rrweb',
|
|
8959
8960
|
ParticipantUpdate = <any> 'participant update',
|
|
8960
8961
|
ParticipantJoin = <any> 'participant join',
|
|
8961
|
-
|
|
8962
|
+
ParticipantLeft = <any> 'participant left',
|
|
8962
8963
|
ReadMessage = <any> 'read message',
|
|
8963
8964
|
Typing = <any> 'typing',
|
|
8964
8965
|
AddCoupon = <any> 'add coupon',
|
|
@@ -32267,6 +32268,12 @@ export interface PricingTier {
|
|
|
32267
32268
|
* @memberof PricingTier
|
|
32268
32269
|
*/
|
|
32269
32270
|
exclude_from_free_promotion?: boolean;
|
|
32271
|
+
/**
|
|
32272
|
+
* Exempt from Loyalty Rewards
|
|
32273
|
+
* @type {boolean}
|
|
32274
|
+
* @memberof PricingTier
|
|
32275
|
+
*/
|
|
32276
|
+
exempt_loyalty_rewards?: boolean;
|
|
32270
32277
|
/**
|
|
32271
32278
|
* Exempt shipping handling charge
|
|
32272
32279
|
* @type {boolean}
|
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,7 +8744,7 @@ export declare namespace ConversationWebsocketMessage {
|
|
|
8743
8744
|
Rrweb,
|
|
8744
8745
|
ParticipantUpdate,
|
|
8745
8746
|
ParticipantJoin,
|
|
8746
|
-
|
|
8747
|
+
ParticipantLeft,
|
|
8747
8748
|
ReadMessage,
|
|
8748
8749
|
Typing,
|
|
8749
8750
|
AddCoupon,
|
|
@@ -31592,6 +31593,12 @@ export interface PricingTier {
|
|
|
31592
31593
|
* @memberof PricingTier
|
|
31593
31594
|
*/
|
|
31594
31595
|
exclude_from_free_promotion?: boolean;
|
|
31596
|
+
/**
|
|
31597
|
+
* Exempt from Loyalty Rewards
|
|
31598
|
+
* @type {boolean}
|
|
31599
|
+
* @memberof PricingTier
|
|
31600
|
+
*/
|
|
31601
|
+
exempt_loyalty_rewards?: boolean;
|
|
31595
31602
|
/**
|
|
31596
31603
|
* Exempt shipping handling charge
|
|
31597
31604
|
* @type {boolean}
|
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,7 +606,7 @@ 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["
|
|
609
|
+
EventTypeEnum[EventTypeEnum["ParticipantLeft"] = 'participant left'] = "ParticipantLeft";
|
|
609
610
|
EventTypeEnum[EventTypeEnum["ReadMessage"] = 'read message'] = "ReadMessage";
|
|
610
611
|
EventTypeEnum[EventTypeEnum["Typing"] = 'typing'] = "Typing";
|
|
611
612
|
EventTypeEnum[EventTypeEnum["AddCoupon"] = 'add coupon'] = "AddCoupon";
|