ultracart_rest_api_v2_typescript 3.11.23 → 3.11.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 +4 -2
- package/api.ts +25 -1
- package/dist/api.d.ts +24 -0
- package/dist/api.js +1 -1
- 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.25
|
|
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.25 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.11.25 | 10/20/2025 | conversation api bug fix for bad url on agent profile kb upload |
|
|
58
|
+
| 3.11.24 | 10/20/2025 | new perm flag on conversation virtual agent capabilities |
|
|
57
59
|
| 3.11.23 | 10/14/2025 | CustomerApi.deleteWishlistItem bug fix for bad response type |
|
|
58
60
|
| 3.11.22 | 10/06/2025 | added Customer.fax back into object model |
|
|
59
61
|
| 3.11.21 | 09/09/2025 | added OrderRestApi.replaceOrderItemMerchantItemId |
|
package/api.ts
CHANGED
|
@@ -11367,6 +11367,12 @@ export interface ConversationVirtualAgentBudgetResponse {
|
|
|
11367
11367
|
* @interface ConversationVirtualAgentCapabilities
|
|
11368
11368
|
*/
|
|
11369
11369
|
export interface ConversationVirtualAgentCapabilities {
|
|
11370
|
+
/**
|
|
11371
|
+
* Permission flag to allow this Agent access to the storefront and item information.
|
|
11372
|
+
* @type {boolean}
|
|
11373
|
+
* @memberof ConversationVirtualAgentCapabilities
|
|
11374
|
+
*/
|
|
11375
|
+
access_storefront_and_item?: boolean;
|
|
11370
11376
|
/**
|
|
11371
11377
|
*
|
|
11372
11378
|
* @type {boolean}
|
|
@@ -16583,6 +16589,24 @@ export interface CustomerLoyalty {
|
|
|
16583
16589
|
* @memberof CustomerLoyalty
|
|
16584
16590
|
*/
|
|
16585
16591
|
ledger_entries?: Array<CustomerLoyaltyLedger>;
|
|
16592
|
+
/**
|
|
16593
|
+
* Loyalty tier expiration date (read only because of SDK addition)
|
|
16594
|
+
* @type {string}
|
|
16595
|
+
* @memberof CustomerLoyalty
|
|
16596
|
+
*/
|
|
16597
|
+
loyalty_tier_expiration_dts?: string;
|
|
16598
|
+
/**
|
|
16599
|
+
* Loyalty tier name
|
|
16600
|
+
* @type {string}
|
|
16601
|
+
* @memberof CustomerLoyalty
|
|
16602
|
+
*/
|
|
16603
|
+
loyalty_tier_name?: string;
|
|
16604
|
+
/**
|
|
16605
|
+
* Loyalty tier oid (set to zero to remove the tier)
|
|
16606
|
+
* @type {number}
|
|
16607
|
+
* @memberof CustomerLoyalty
|
|
16608
|
+
*/
|
|
16609
|
+
loyalty_tier_oid?: number;
|
|
16586
16610
|
/**
|
|
16587
16611
|
* Pending Points
|
|
16588
16612
|
* @type {number}
|
|
@@ -54084,7 +54108,7 @@ export const ConversationApiFetchParamCreator = function (configuration?: Config
|
|
|
54084
54108
|
if (extension === null || extension === undefined) {
|
|
54085
54109
|
throw new RequiredError('extension','Required parameter extension was null or undefined when calling getConversationKnowledgeBaseDocumentUploadUrl.');
|
|
54086
54110
|
}
|
|
54087
|
-
const localVarPath = `/conversation
|
|
54111
|
+
const localVarPath = `/conversation/agent/profiles/{user_id}/knowledge_base/upload_url/{extension}`
|
|
54088
54112
|
.replace(`{${"user_id"}}`, encodeURIComponent(String(user_id)))
|
|
54089
54113
|
.replace(`{${"extension"}}`, encodeURIComponent(String(extension)));
|
|
54090
54114
|
const localVarUrlObj = url.parse(localVarPath, true);
|
package/dist/api.d.ts
CHANGED
|
@@ -11094,6 +11094,12 @@ export interface ConversationVirtualAgentBudgetResponse {
|
|
|
11094
11094
|
* @interface ConversationVirtualAgentCapabilities
|
|
11095
11095
|
*/
|
|
11096
11096
|
export interface ConversationVirtualAgentCapabilities {
|
|
11097
|
+
/**
|
|
11098
|
+
* Permission flag to allow this Agent access to the storefront and item information.
|
|
11099
|
+
* @type {boolean}
|
|
11100
|
+
* @memberof ConversationVirtualAgentCapabilities
|
|
11101
|
+
*/
|
|
11102
|
+
access_storefront_and_item?: boolean;
|
|
11097
11103
|
/**
|
|
11098
11104
|
*
|
|
11099
11105
|
* @type {boolean}
|
|
@@ -16184,6 +16190,24 @@ export interface CustomerLoyalty {
|
|
|
16184
16190
|
* @memberof CustomerLoyalty
|
|
16185
16191
|
*/
|
|
16186
16192
|
ledger_entries?: Array<CustomerLoyaltyLedger>;
|
|
16193
|
+
/**
|
|
16194
|
+
* Loyalty tier expiration date (read only because of SDK addition)
|
|
16195
|
+
* @type {string}
|
|
16196
|
+
* @memberof CustomerLoyalty
|
|
16197
|
+
*/
|
|
16198
|
+
loyalty_tier_expiration_dts?: string;
|
|
16199
|
+
/**
|
|
16200
|
+
* Loyalty tier name
|
|
16201
|
+
* @type {string}
|
|
16202
|
+
* @memberof CustomerLoyalty
|
|
16203
|
+
*/
|
|
16204
|
+
loyalty_tier_name?: string;
|
|
16205
|
+
/**
|
|
16206
|
+
* Loyalty tier oid (set to zero to remove the tier)
|
|
16207
|
+
* @type {number}
|
|
16208
|
+
* @memberof CustomerLoyalty
|
|
16209
|
+
*/
|
|
16210
|
+
loyalty_tier_oid?: number;
|
|
16187
16211
|
/**
|
|
16188
16212
|
* Pending Points
|
|
16189
16213
|
* @type {number}
|
package/dist/api.js
CHANGED
|
@@ -8075,7 +8075,7 @@ var ConversationApiFetchParamCreator = function (configuration) {
|
|
|
8075
8075
|
if (extension === null || extension === undefined) {
|
|
8076
8076
|
throw new RequiredError('extension', 'Required parameter extension was null or undefined when calling getConversationKnowledgeBaseDocumentUploadUrl.');
|
|
8077
8077
|
}
|
|
8078
|
-
var localVarPath = "/conversation
|
|
8078
|
+
var localVarPath = "/conversation/agent/profiles/{user_id}/knowledge_base/upload_url/{extension}"
|
|
8079
8079
|
.replace("{".concat("user_id", "}"), encodeURIComponent(String(user_id)))
|
|
8080
8080
|
.replace("{".concat("extension", "}"), encodeURIComponent(String(extension)));
|
|
8081
8081
|
var localVarUrlObj = url.parse(localVarPath, true);
|