ultracart_rest_api_v2_typescript 4.1.116 → 4.1.117
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.
|
|
2
|
+
## ultracart_rest_api_v2_typescript@4.1.117
|
|
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.
|
|
9
|
+
npm install ultracart_rest_api_v2_typescript@4.1.117 --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.117 | 07/14/2026 | conversation - join method resolve_only flag added |
|
|
88
89
|
| 4.1.116 | 07/10/2026 | customer - method to search quickbooks online customers |
|
|
89
90
|
| 4.1.115 | 07/10/2026 | customer profile birthday |
|
|
90
91
|
| 4.1.114 | 07/08/2026 | tax - anrok tax provider |
|
|
@@ -33,6 +33,12 @@ export interface ConversationStartRequest {
|
|
|
33
33
|
* @memberof ConversationStartRequest
|
|
34
34
|
*/
|
|
35
35
|
conversation_webchat_queue_uuid?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof ConversationStartRequest
|
|
40
|
+
*/
|
|
41
|
+
resolve_only?: boolean;
|
|
36
42
|
}
|
|
37
43
|
/**
|
|
38
44
|
* Check if a given object implements the ConversationStartRequest interface.
|
|
@@ -35,6 +35,7 @@ function ConversationStartRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
35
|
'add_conversation_participant_arns': !(0, runtime_1.exists)(json, 'add_conversation_participant_arns') ? undefined : json['add_conversation_participant_arns'],
|
|
36
36
|
'conversation_arn': !(0, runtime_1.exists)(json, 'conversation_arn') ? undefined : json['conversation_arn'],
|
|
37
37
|
'conversation_webchat_queue_uuid': !(0, runtime_1.exists)(json, 'conversation_webchat_queue_uuid') ? undefined : json['conversation_webchat_queue_uuid'],
|
|
38
|
+
'resolve_only': !(0, runtime_1.exists)(json, 'resolve_only') ? undefined : json['resolve_only'],
|
|
38
39
|
};
|
|
39
40
|
}
|
|
40
41
|
exports.ConversationStartRequestFromJSONTyped = ConversationStartRequestFromJSONTyped;
|
|
@@ -49,6 +50,7 @@ function ConversationStartRequestToJSON(value) {
|
|
|
49
50
|
'add_conversation_participant_arns': value.add_conversation_participant_arns,
|
|
50
51
|
'conversation_arn': value.conversation_arn,
|
|
51
52
|
'conversation_webchat_queue_uuid': value.conversation_webchat_queue_uuid,
|
|
53
|
+
'resolve_only': value.resolve_only,
|
|
52
54
|
};
|
|
53
55
|
}
|
|
54
56
|
exports.ConversationStartRequestToJSON = ConversationStartRequestToJSON;
|
package/package.json
CHANGED
|
@@ -37,6 +37,12 @@ export interface ConversationStartRequest {
|
|
|
37
37
|
* @memberof ConversationStartRequest
|
|
38
38
|
*/
|
|
39
39
|
conversation_webchat_queue_uuid?: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {boolean}
|
|
43
|
+
* @memberof ConversationStartRequest
|
|
44
|
+
*/
|
|
45
|
+
resolve_only?: boolean;
|
|
40
46
|
}
|
|
41
47
|
|
|
42
48
|
|
|
@@ -63,6 +69,7 @@ export function ConversationStartRequestFromJSONTyped(json: any, ignoreDiscrimin
|
|
|
63
69
|
'add_conversation_participant_arns': !exists(json, 'add_conversation_participant_arns') ? undefined : json['add_conversation_participant_arns'],
|
|
64
70
|
'conversation_arn': !exists(json, 'conversation_arn') ? undefined : json['conversation_arn'],
|
|
65
71
|
'conversation_webchat_queue_uuid': !exists(json, 'conversation_webchat_queue_uuid') ? undefined : json['conversation_webchat_queue_uuid'],
|
|
72
|
+
'resolve_only': !exists(json, 'resolve_only') ? undefined : json['resolve_only'],
|
|
66
73
|
};
|
|
67
74
|
}
|
|
68
75
|
|
|
@@ -78,6 +85,7 @@ export function ConversationStartRequestToJSON(value?: ConversationStartRequest
|
|
|
78
85
|
'add_conversation_participant_arns': value.add_conversation_participant_arns,
|
|
79
86
|
'conversation_arn': value.conversation_arn,
|
|
80
87
|
'conversation_webchat_queue_uuid': value.conversation_webchat_queue_uuid,
|
|
88
|
+
'resolve_only': value.resolve_only,
|
|
81
89
|
};
|
|
82
90
|
}
|
|
83
91
|
|