ultracart_rest_api_v2_typescript 4.1.24 → 4.1.25
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/dist/apis/ConversationApi.js +1 -1
- package/package.json +1 -1
- package/src/apis/ConversationApi.ts +1 -1
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.25
|
|
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.25 --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.25 | 10/20/2025 | conversation api bug fix for bad url on agent profile kb upload |
|
|
88
89
|
| 4.1.24 | 10/20/2025 | new perm flag on conversation virtual agent capabilities |
|
|
89
90
|
| 4.1.23 | 10/14/2025 | CustomerApi.deleteWishlistItem bug fix for bad response type |
|
|
90
91
|
| 4.1.22 | 10/06/2025 | added Customer.fax back into object model |
|
|
@@ -1496,7 +1496,7 @@ var ConversationApi = /** @class */ (function (_super) {
|
|
|
1496
1496
|
headerParameters["x-ultracart-simple-key"] = this.configuration.apiKey("x-ultracart-simple-key"); // ultraCartSimpleApiKey authentication
|
|
1497
1497
|
}
|
|
1498
1498
|
return [4 /*yield*/, this.request({
|
|
1499
|
-
path: "/conversation
|
|
1499
|
+
path: "/conversation/agent/profiles/{user_id}/knowledge_base/upload_url/{extension}".replace("{".concat("user_id", "}"), encodeURIComponent(String(requestParameters.userId))).replace("{".concat("extension", "}"), encodeURIComponent(String(requestParameters.extension))),
|
|
1500
1500
|
method: 'GET',
|
|
1501
1501
|
headers: headerParameters,
|
|
1502
1502
|
query: queryParameters,
|
package/package.json
CHANGED
|
@@ -3009,7 +3009,7 @@ export class ConversationApi extends runtime.BaseAPI implements ConversationApiI
|
|
|
3009
3009
|
}
|
|
3010
3010
|
|
|
3011
3011
|
const response = await this.request({
|
|
3012
|
-
path: `/conversation
|
|
3012
|
+
path: `/conversation/agent/profiles/{user_id}/knowledge_base/upload_url/{extension}`.replace(`{${"user_id"}}`, encodeURIComponent(String(requestParameters.userId))).replace(`{${"extension"}}`, encodeURIComponent(String(requestParameters.extension))),
|
|
3013
3013
|
method: 'GET',
|
|
3014
3014
|
headers: headerParameters,
|
|
3015
3015
|
query: queryParameters,
|