ultracart_rest_api_v2_typescript 3.11.41 → 3.11.42
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 +18 -0
- package/dist/api.d.ts +18 -0
- 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.42
|
|
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.42 --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.11.42 | 01/13/2026 | conversations - pbx methods for phone number purchasing |
|
|
57
58
|
| 3.11.41 | 01/13/2026 | conversations - pbx methods for phone number purchasing |
|
|
58
59
|
| 3.11.40 | 01/07/2026 | convseration - AI agent profile voice settings |
|
|
59
60
|
| 3.11.39 | 12/31/2025 | conversations AI - queue AI settings |
|
package/api.ts
CHANGED
|
@@ -9270,6 +9270,12 @@ export interface ConversationPbxAddress {
|
|
|
9270
9270
|
* @memberof ConversationPbxAddress
|
|
9271
9271
|
*/
|
|
9272
9272
|
street?: string;
|
|
9273
|
+
/**
|
|
9274
|
+
* Whether the address is valid (validated or verified)
|
|
9275
|
+
* @type {boolean}
|
|
9276
|
+
* @memberof ConversationPbxAddress
|
|
9277
|
+
*/
|
|
9278
|
+
valid?: boolean;
|
|
9273
9279
|
/**
|
|
9274
9280
|
* Whether the address has been validated by Twilio
|
|
9275
9281
|
* @type {boolean}
|
|
@@ -9810,6 +9816,12 @@ export interface ConversationPbxAvailablePhoneNumber {
|
|
|
9810
9816
|
* @memberof ConversationPbxAvailablePhoneNumber
|
|
9811
9817
|
*/
|
|
9812
9818
|
mms?: boolean;
|
|
9819
|
+
/**
|
|
9820
|
+
* Monthly cost for this phone number
|
|
9821
|
+
* @type {number}
|
|
9822
|
+
* @memberof ConversationPbxAvailablePhoneNumber
|
|
9823
|
+
*/
|
|
9824
|
+
monthly_cost?: number;
|
|
9813
9825
|
/**
|
|
9814
9826
|
* Phone number in E.164 format
|
|
9815
9827
|
* @type {string}
|
|
@@ -10230,6 +10242,12 @@ export interface ConversationPbxPhoneNumber {
|
|
|
10230
10242
|
* @memberof ConversationPbxPhoneNumber
|
|
10231
10243
|
*/
|
|
10232
10244
|
action_target?: string;
|
|
10245
|
+
/**
|
|
10246
|
+
* Twilio Address SID linked to this phone number for regulatory compliance
|
|
10247
|
+
* @type {string}
|
|
10248
|
+
* @memberof ConversationPbxPhoneNumber
|
|
10249
|
+
*/
|
|
10250
|
+
address_sid?: string;
|
|
10233
10251
|
/**
|
|
10234
10252
|
* Conversation Pbx Phone Number UUID
|
|
10235
10253
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -9051,6 +9051,12 @@ export interface ConversationPbxAddress {
|
|
|
9051
9051
|
* @memberof ConversationPbxAddress
|
|
9052
9052
|
*/
|
|
9053
9053
|
street?: string;
|
|
9054
|
+
/**
|
|
9055
|
+
* Whether the address is valid (validated or verified)
|
|
9056
|
+
* @type {boolean}
|
|
9057
|
+
* @memberof ConversationPbxAddress
|
|
9058
|
+
*/
|
|
9059
|
+
valid?: boolean;
|
|
9054
9060
|
/**
|
|
9055
9061
|
* Whether the address has been validated by Twilio
|
|
9056
9062
|
* @type {boolean}
|
|
@@ -9579,6 +9585,12 @@ export interface ConversationPbxAvailablePhoneNumber {
|
|
|
9579
9585
|
* @memberof ConversationPbxAvailablePhoneNumber
|
|
9580
9586
|
*/
|
|
9581
9587
|
mms?: boolean;
|
|
9588
|
+
/**
|
|
9589
|
+
* Monthly cost for this phone number
|
|
9590
|
+
* @type {number}
|
|
9591
|
+
* @memberof ConversationPbxAvailablePhoneNumber
|
|
9592
|
+
*/
|
|
9593
|
+
monthly_cost?: number;
|
|
9582
9594
|
/**
|
|
9583
9595
|
* Phone number in E.164 format
|
|
9584
9596
|
* @type {string}
|
|
@@ -9988,6 +10000,12 @@ export interface ConversationPbxPhoneNumber {
|
|
|
9988
10000
|
* @memberof ConversationPbxPhoneNumber
|
|
9989
10001
|
*/
|
|
9990
10002
|
action_target?: string;
|
|
10003
|
+
/**
|
|
10004
|
+
* Twilio Address SID linked to this phone number for regulatory compliance
|
|
10005
|
+
* @type {string}
|
|
10006
|
+
* @memberof ConversationPbxPhoneNumber
|
|
10007
|
+
*/
|
|
10008
|
+
address_sid?: string;
|
|
9991
10009
|
/**
|
|
9992
10010
|
* Conversation Pbx Phone Number UUID
|
|
9993
10011
|
* @type {string}
|