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