ultracart_rest_api_v2_typescript 3.11.65 → 3.11.67
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 +19 -1
- package/dist/api.d.ts +19 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.11.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.11.67
|
|
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.11.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.11.67 --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.11.67 | 02/24/2026 | customer activity - sms and sms_stop fields added |
|
|
58
|
+
| 3.11.66 | 02/18/2026 | conversations - agent auth customer_profile flag |
|
|
57
59
|
| 3.11.65 | 02/16/2026 | item - include variant pricing in the response |
|
|
58
60
|
| 3.11.64 | 02/16/2026 | conversation - fix pbx call transcript segment speaker enum for leading space |
|
|
59
61
|
| 3.11.63 | 02/12/2026 | build automation issue |
|
package/api.ts
CHANGED
|
@@ -7265,6 +7265,12 @@ export interface ConversationAgentAuth {
|
|
|
7265
7265
|
* @memberof ConversationAgentAuth
|
|
7266
7266
|
*/
|
|
7267
7267
|
conversation_participant_name?: string;
|
|
7268
|
+
/**
|
|
7269
|
+
*
|
|
7270
|
+
* @type {boolean}
|
|
7271
|
+
* @memberof ConversationAgentAuth
|
|
7272
|
+
*/
|
|
7273
|
+
customer_profile?: boolean;
|
|
7268
7274
|
/**
|
|
7269
7275
|
* The default phone number this agent should use when making an outbound call.
|
|
7270
7276
|
* @type {string}
|
|
@@ -18556,7 +18562,7 @@ export interface Customer {
|
|
|
18556
18562
|
*/
|
|
18557
18563
|
quotes_summary?: CustomerQuotesSummary;
|
|
18558
18564
|
/**
|
|
18559
|
-
* Referral Source
|
|
18565
|
+
* Referral Source specified on the wholesale customer signup form. No other meaning than that signup flow.
|
|
18560
18566
|
* @type {string}
|
|
18561
18567
|
* @memberof Customer
|
|
18562
18568
|
*/
|
|
@@ -18701,6 +18707,18 @@ export interface CustomerActivity {
|
|
|
18701
18707
|
* @memberof CustomerActivity
|
|
18702
18708
|
*/
|
|
18703
18709
|
properties_list?: Array<Property>;
|
|
18710
|
+
/**
|
|
18711
|
+
*
|
|
18712
|
+
* @type {string}
|
|
18713
|
+
* @memberof CustomerActivity
|
|
18714
|
+
*/
|
|
18715
|
+
sms?: string;
|
|
18716
|
+
/**
|
|
18717
|
+
*
|
|
18718
|
+
* @type {boolean}
|
|
18719
|
+
* @memberof CustomerActivity
|
|
18720
|
+
*/
|
|
18721
|
+
sms_stop?: boolean;
|
|
18704
18722
|
/**
|
|
18705
18723
|
*
|
|
18706
18724
|
* @type {boolean}
|
package/dist/api.d.ts
CHANGED
|
@@ -7102,6 +7102,12 @@ export interface ConversationAgentAuth {
|
|
|
7102
7102
|
* @memberof ConversationAgentAuth
|
|
7103
7103
|
*/
|
|
7104
7104
|
conversation_participant_name?: string;
|
|
7105
|
+
/**
|
|
7106
|
+
*
|
|
7107
|
+
* @type {boolean}
|
|
7108
|
+
* @memberof ConversationAgentAuth
|
|
7109
|
+
*/
|
|
7110
|
+
customer_profile?: boolean;
|
|
7105
7111
|
/**
|
|
7106
7112
|
* The default phone number this agent should use when making an outbound call.
|
|
7107
7113
|
* @type {string}
|
|
@@ -18115,7 +18121,7 @@ export interface Customer {
|
|
|
18115
18121
|
*/
|
|
18116
18122
|
quotes_summary?: CustomerQuotesSummary;
|
|
18117
18123
|
/**
|
|
18118
|
-
* Referral Source
|
|
18124
|
+
* Referral Source specified on the wholesale customer signup form. No other meaning than that signup flow.
|
|
18119
18125
|
* @type {string}
|
|
18120
18126
|
* @memberof Customer
|
|
18121
18127
|
*/
|
|
@@ -18259,6 +18265,18 @@ export interface CustomerActivity {
|
|
|
18259
18265
|
* @memberof CustomerActivity
|
|
18260
18266
|
*/
|
|
18261
18267
|
properties_list?: Array<Property>;
|
|
18268
|
+
/**
|
|
18269
|
+
*
|
|
18270
|
+
* @type {string}
|
|
18271
|
+
* @memberof CustomerActivity
|
|
18272
|
+
*/
|
|
18273
|
+
sms?: string;
|
|
18274
|
+
/**
|
|
18275
|
+
*
|
|
18276
|
+
* @type {boolean}
|
|
18277
|
+
* @memberof CustomerActivity
|
|
18278
|
+
*/
|
|
18279
|
+
sms_stop?: boolean;
|
|
18262
18280
|
/**
|
|
18263
18281
|
*
|
|
18264
18282
|
* @type {boolean}
|