ultracart_rest_api_v2_typescript 4.1.104 → 4.1.106

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.104
2
+ ## ultracart_rest_api_v2_typescript@4.1.106
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.104 --save
9
+ npm install ultracart_rest_api_v2_typescript@4.1.106 --save
10
10
  ```
11
11
 
12
12
  ```typescript
@@ -85,6 +85,8 @@ Not every change is committed to every SDK.
85
85
 
86
86
  | Version | Date | Comments |
87
87
  | --: | :-: | --- |
88
+ | 4.1.106 | 07/03/2026 | bulk import endpoints (alpha) |
89
+ | 4.1.105 | 07/01/2026 | conversation - updatePbxCall support additional zoho desk values |
88
90
  | 4.1.104 | 06/30/2026 | conversations - customer snapshot zoho desk tickets included |
89
91
  | 4.1.103 | 06/18/2026 | affiliate api alpha |
90
92
  | 4.1.102 | 06/17/2026 | storefront communications - new single email enrollment method |
@@ -27,6 +27,18 @@ export interface ConversationPbxCallUpdateRequest {
27
27
  * @memberof ConversationPbxCallUpdateRequest
28
28
  */
29
29
  notes?: string;
30
+ /**
31
+ * Existing zoho desk ticket id to associate this call with.
32
+ * @type {string}
33
+ * @memberof ConversationPbxCallUpdateRequest
34
+ */
35
+ zoho_desk_ticket_id?: string;
36
+ /**
37
+ * Existing zoho desk ticket URL
38
+ * @type {string}
39
+ * @memberof ConversationPbxCallUpdateRequest
40
+ */
41
+ zoho_desk_ticket_url?: string;
30
42
  }
31
43
  /**
32
44
  * Check if a given object implements the ConversationPbxCallUpdateRequest interface.
@@ -34,6 +34,8 @@ function ConversationPbxCallUpdateRequestFromJSONTyped(json, ignoreDiscriminator
34
34
  return {
35
35
  'finalize': !(0, runtime_1.exists)(json, 'finalize') ? undefined : json['finalize'],
36
36
  'notes': !(0, runtime_1.exists)(json, 'notes') ? undefined : json['notes'],
37
+ 'zoho_desk_ticket_id': !(0, runtime_1.exists)(json, 'zoho_desk_ticket_id') ? undefined : json['zoho_desk_ticket_id'],
38
+ 'zoho_desk_ticket_url': !(0, runtime_1.exists)(json, 'zoho_desk_ticket_url') ? undefined : json['zoho_desk_ticket_url'],
37
39
  };
38
40
  }
39
41
  exports.ConversationPbxCallUpdateRequestFromJSONTyped = ConversationPbxCallUpdateRequestFromJSONTyped;
@@ -47,6 +49,8 @@ function ConversationPbxCallUpdateRequestToJSON(value) {
47
49
  return {
48
50
  'finalize': value.finalize,
49
51
  'notes': value.notes,
52
+ 'zoho_desk_ticket_id': value.zoho_desk_ticket_id,
53
+ 'zoho_desk_ticket_url': value.zoho_desk_ticket_url,
50
54
  };
51
55
  }
52
56
  exports.ConversationPbxCallUpdateRequestToJSON = ConversationPbxCallUpdateRequestToJSON;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "4.1.104",
3
+ "version": "4.1.106",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "repository": {
@@ -31,6 +31,18 @@ export interface ConversationPbxCallUpdateRequest {
31
31
  * @memberof ConversationPbxCallUpdateRequest
32
32
  */
33
33
  notes?: string;
34
+ /**
35
+ * Existing zoho desk ticket id to associate this call with.
36
+ * @type {string}
37
+ * @memberof ConversationPbxCallUpdateRequest
38
+ */
39
+ zoho_desk_ticket_id?: string;
40
+ /**
41
+ * Existing zoho desk ticket URL
42
+ * @type {string}
43
+ * @memberof ConversationPbxCallUpdateRequest
44
+ */
45
+ zoho_desk_ticket_url?: string;
34
46
  }
35
47
 
36
48
 
@@ -56,6 +68,8 @@ export function ConversationPbxCallUpdateRequestFromJSONTyped(json: any, ignoreD
56
68
 
57
69
  'finalize': !exists(json, 'finalize') ? undefined : json['finalize'],
58
70
  'notes': !exists(json, 'notes') ? undefined : json['notes'],
71
+ 'zoho_desk_ticket_id': !exists(json, 'zoho_desk_ticket_id') ? undefined : json['zoho_desk_ticket_id'],
72
+ 'zoho_desk_ticket_url': !exists(json, 'zoho_desk_ticket_url') ? undefined : json['zoho_desk_ticket_url'],
59
73
  };
60
74
  }
61
75
 
@@ -70,6 +84,8 @@ export function ConversationPbxCallUpdateRequestToJSON(value?: ConversationPbxCa
70
84
 
71
85
  'finalize': value.finalize,
72
86
  'notes': value.notes,
87
+ 'zoho_desk_ticket_id': value.zoho_desk_ticket_id,
88
+ 'zoho_desk_ticket_url': value.zoho_desk_ticket_url,
73
89
  };
74
90
  }
75
91