ultracart_rest_api_v2_typescript 3.10.107 → 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 +3 -2
- package/api.ts +2 -1
- package/dist/api.d.ts +2 -1
- package/dist/api.js +1 -0
- 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.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.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.108 --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.108 | 01/25/2023 | conversation - added message type of engagement prompt |
|
|
57
58
|
| 3.10.107 | 01/25/2023 | convo event for engage customer |
|
|
58
59
|
| 3.10.106 | 01/25/2023 | order api method generateInvoice |
|
|
59
60
|
| 3.10.105 | 01/24/2023 | auto order - cancel minimum and change balance options |
|
package/api.ts
CHANGED
package/dist/api.d.ts
CHANGED
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
|
/**
|