ultracart_rest_api_v2_typescript 4.1.132 → 4.1.133

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 CHANGED
@@ -1,12 +1,12 @@
1
1
  # UltraCart Typescript SDK
2
- ## ultracart_rest_api_v2_typescript@4.1.132
2
+ ## ultracart_rest_api_v2_typescript@4.1.133
3
3
 
4
4
  Every API method call has a sample for every language SDK. See https://github.com/UltraCart/sdk_samples
5
5
 
6
6
  Installation
7
7
 
8
8
  ```
9
- npm install ultracart_rest_api_v2_typescript@4.1.132 --save
9
+ npm install ultracart_rest_api_v2_typescript@4.1.133 --save
10
10
  ```
11
11
 
12
12
  ```typescript
@@ -85,6 +85,7 @@ Not every change is committed to every SDK.
85
85
 
86
86
  | Version | Date | Comments |
87
87
  | --: | :-: | --- |
88
+ | 4.1.133 | 08/20/2026 | conversations - pbx agent setting for creating tickets in zoho desk for outgoing calls |
88
89
  | 4.1.132 | 08/18/2026 | customer activity bug fix |
89
90
  | 4.1.131 | 08/18/2026 | customer activity now returns the SF communications active flag and last_activity_dts |
90
91
  | 4.1.130 | 08/17/2026 | order api - new method to obtain customer activity similar to the customer endpoint for a profile |
@@ -141,6 +141,18 @@ export interface ConversationPbxAgent {
141
141
  * @memberof ConversationPbxAgent
142
142
  */
143
143
  voicemail?: boolean;
144
+ /**
145
+ * Zoho Desk department ID to create outbound-call tickets in for this agent
146
+ * @type {string}
147
+ * @memberof ConversationPbxAgent
148
+ */
149
+ zoho_desk_outbound_department_id?: string;
150
+ /**
151
+ * If true, a Zoho Desk ticket is automatically created for outbound calls placed by this agent
152
+ * @type {boolean}
153
+ * @memberof ConversationPbxAgent
154
+ */
155
+ zoho_desk_outbound_ticket_enabled?: boolean;
144
156
  }
145
157
  /**
146
158
  * @export
@@ -68,6 +68,8 @@ function ConversationPbxAgentFromJSONTyped(json, ignoreDiscriminator) {
68
68
  'unavailable_say_voice': !(0, runtime_1.exists)(json, 'unavailable_say_voice') ? undefined : json['unavailable_say_voice'],
69
69
  'user_id': !(0, runtime_1.exists)(json, 'user_id') ? undefined : json['user_id'],
70
70
  'voicemail': !(0, runtime_1.exists)(json, 'voicemail') ? undefined : json['voicemail'],
71
+ 'zoho_desk_outbound_department_id': !(0, runtime_1.exists)(json, 'zoho_desk_outbound_department_id') ? undefined : json['zoho_desk_outbound_department_id'],
72
+ 'zoho_desk_outbound_ticket_enabled': !(0, runtime_1.exists)(json, 'zoho_desk_outbound_ticket_enabled') ? undefined : json['zoho_desk_outbound_ticket_enabled'],
71
73
  };
72
74
  }
73
75
  exports.ConversationPbxAgentFromJSONTyped = ConversationPbxAgentFromJSONTyped;
@@ -100,6 +102,8 @@ function ConversationPbxAgentToJSON(value) {
100
102
  'unavailable_say_voice': value.unavailable_say_voice,
101
103
  'user_id': value.user_id,
102
104
  'voicemail': value.voicemail,
105
+ 'zoho_desk_outbound_department_id': value.zoho_desk_outbound_department_id,
106
+ 'zoho_desk_outbound_ticket_enabled': value.zoho_desk_outbound_ticket_enabled,
103
107
  };
104
108
  }
105
109
  exports.ConversationPbxAgentToJSON = ConversationPbxAgentToJSON;
@@ -213,7 +213,7 @@ export interface Order {
213
213
  */
214
214
  point_of_sale?: OrderPointOfSale;
215
215
  /**
216
- * Properties, available only through update, not through insert due to the nature of how properties are handled internally
216
+ * Properties associated with the order
217
217
  * @type {Array<OrderProperty>}
218
218
  * @memberof Order
219
219
  */
@@ -139,7 +139,7 @@ export interface OrderPayment {
139
139
  */
140
140
  test_order?: boolean;
141
141
  /**
142
- * Transactions associated with processing this payment
142
+ * Transactions associated with processing this payment. Accepted on insert to carry the payment history of an order captured outside the system.
143
143
  * @type {Array<OrderPaymentTransaction>}
144
144
  * @memberof OrderPayment
145
145
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.1.132",
3
+ "version": "4.1.133",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -145,6 +145,18 @@ export interface ConversationPbxAgent {
145
145
  * @memberof ConversationPbxAgent
146
146
  */
147
147
  voicemail?: boolean;
148
+ /**
149
+ * Zoho Desk department ID to create outbound-call tickets in for this agent
150
+ * @type {string}
151
+ * @memberof ConversationPbxAgent
152
+ */
153
+ zoho_desk_outbound_department_id?: string;
154
+ /**
155
+ * If true, a Zoho Desk ticket is automatically created for outbound calls placed by this agent
156
+ * @type {boolean}
157
+ * @memberof ConversationPbxAgent
158
+ */
159
+ zoho_desk_outbound_ticket_enabled?: boolean;
148
160
  }
149
161
 
150
162
 
@@ -209,6 +221,8 @@ export function ConversationPbxAgentFromJSONTyped(json: any, ignoreDiscriminator
209
221
  'unavailable_say_voice': !exists(json, 'unavailable_say_voice') ? undefined : json['unavailable_say_voice'],
210
222
  'user_id': !exists(json, 'user_id') ? undefined : json['user_id'],
211
223
  'voicemail': !exists(json, 'voicemail') ? undefined : json['voicemail'],
224
+ 'zoho_desk_outbound_department_id': !exists(json, 'zoho_desk_outbound_department_id') ? undefined : json['zoho_desk_outbound_department_id'],
225
+ 'zoho_desk_outbound_ticket_enabled': !exists(json, 'zoho_desk_outbound_ticket_enabled') ? undefined : json['zoho_desk_outbound_ticket_enabled'],
212
226
  };
213
227
  }
214
228
 
@@ -242,6 +256,8 @@ export function ConversationPbxAgentToJSON(value?: ConversationPbxAgent | null):
242
256
  'unavailable_say_voice': value.unavailable_say_voice,
243
257
  'user_id': value.user_id,
244
258
  'voicemail': value.voicemail,
259
+ 'zoho_desk_outbound_department_id': value.zoho_desk_outbound_department_id,
260
+ 'zoho_desk_outbound_ticket_enabled': value.zoho_desk_outbound_ticket_enabled,
245
261
  };
246
262
  }
247
263
 
@@ -363,7 +363,7 @@ export interface Order {
363
363
  */
364
364
  point_of_sale?: OrderPointOfSale;
365
365
  /**
366
- * Properties, available only through update, not through insert due to the nature of how properties are handled internally
366
+ * Properties associated with the order
367
367
  * @type {Array<OrderProperty>}
368
368
  * @memberof Order
369
369
  */
@@ -189,7 +189,7 @@ export interface OrderPayment {
189
189
  */
190
190
  test_order?: boolean;
191
191
  /**
192
- * Transactions associated with processing this payment
192
+ * Transactions associated with processing this payment. Accepted on insert to carry the payment history of an order captured outside the system.
193
193
  * @type {Array<OrderPaymentTransaction>}
194
194
  * @memberof OrderPayment
195
195
  */