ultracart_rest_api_v2_typescript 3.11.9 → 3.11.10
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 +6 -0
- package/dist/api.d.ts +6 -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.10
|
|
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.10 --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.10 | 05/06/2025 | conversation - ConversationAgentProfile.user_id added for agent profiles call |
|
|
57
58
|
| 3.11.9 | 05/05/2025 | conversations - method to fetch all agent profiles for admin screens |
|
|
58
59
|
| 3.11.8 | 04/22/2025 | order property fields for created_by and created_dts |
|
|
59
60
|
| 3.11.7 | 04/21/2025 | conversation agent additional fields |
|
package/api.ts
CHANGED
|
@@ -7369,6 +7369,12 @@ export interface ConversationAgentProfile {
|
|
|
7369
7369
|
* @memberof ConversationAgentProfile
|
|
7370
7370
|
*/
|
|
7371
7371
|
profile_image_url?: string;
|
|
7372
|
+
/**
|
|
7373
|
+
* User ID associated with the agent. Populated by getAgentProfiles call only.
|
|
7374
|
+
* @type {number}
|
|
7375
|
+
* @memberof ConversationAgentProfile
|
|
7376
|
+
*/
|
|
7377
|
+
user_id?: number;
|
|
7372
7378
|
}
|
|
7373
7379
|
|
|
7374
7380
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -7205,6 +7205,12 @@ export interface ConversationAgentProfile {
|
|
|
7205
7205
|
* @memberof ConversationAgentProfile
|
|
7206
7206
|
*/
|
|
7207
7207
|
profile_image_url?: string;
|
|
7208
|
+
/**
|
|
7209
|
+
* User ID associated with the agent. Populated by getAgentProfiles call only.
|
|
7210
|
+
* @type {number}
|
|
7211
|
+
* @memberof ConversationAgentProfile
|
|
7212
|
+
*/
|
|
7213
|
+
user_id?: number;
|
|
7208
7214
|
}
|
|
7209
7215
|
/**
|
|
7210
7216
|
* @export
|