ultracart_rest_api_v2_typescript 3.11.26 → 3.11.27
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 +14 -1
- package/dist/api.d.ts +14 -1
- package/dist/api.js +1 -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.27
|
|
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.27 --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.27 | 11/06/2025 | conversation ai knowledge base changes |
|
|
57
58
|
| 3.11.26 | 10/20/2025 | conversation api bug fixes |
|
|
58
59
|
| 3.11.25 | 10/20/2025 | conversation api bug fix for bad url on agent profile kb upload |
|
|
59
60
|
| 3.11.24 | 10/20/2025 | new perm flag on conversation virtual agent capabilities |
|
package/api.ts
CHANGED
|
@@ -8285,6 +8285,12 @@ export interface ConversationEventWebchatContext {
|
|
|
8285
8285
|
* @interface ConversationInsertKnowledgeBaseDocumentRequest
|
|
8286
8286
|
*/
|
|
8287
8287
|
export interface ConversationInsertKnowledgeBaseDocumentRequest {
|
|
8288
|
+
/**
|
|
8289
|
+
*
|
|
8290
|
+
* @type {string}
|
|
8291
|
+
* @memberof ConversationInsertKnowledgeBaseDocumentRequest
|
|
8292
|
+
*/
|
|
8293
|
+
original_file_name?: string;
|
|
8288
8294
|
/**
|
|
8289
8295
|
*
|
|
8290
8296
|
* @type {string}
|
|
@@ -8405,6 +8411,12 @@ export interface ConversationKnowledgeBaseDocument {
|
|
|
8405
8411
|
* @memberof ConversationKnowledgeBaseDocument
|
|
8406
8412
|
*/
|
|
8407
8413
|
s3_key?: string;
|
|
8414
|
+
/**
|
|
8415
|
+
*
|
|
8416
|
+
* @type {string}
|
|
8417
|
+
* @memberof ConversationKnowledgeBaseDocument
|
|
8418
|
+
*/
|
|
8419
|
+
s3_url?: string;
|
|
8408
8420
|
}
|
|
8409
8421
|
|
|
8410
8422
|
/**
|
|
@@ -35997,7 +36009,8 @@ export namespace OrderPayment {
|
|
|
35997
36009
|
ApplePay = <any> 'Apple Pay',
|
|
35998
36010
|
GooglePay = <any> 'Google Pay',
|
|
35999
36011
|
HealthBenefitCard = <any> 'Health Benefit Card',
|
|
36000
|
-
PayPalFastlane = <any> 'PayPal Fastlane'
|
|
36012
|
+
PayPalFastlane = <any> 'PayPal Fastlane',
|
|
36013
|
+
Klarna = <any> 'Klarna'
|
|
36001
36014
|
}
|
|
36002
36015
|
/**
|
|
36003
36016
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -8090,6 +8090,12 @@ export interface ConversationEventWebchatContext {
|
|
|
8090
8090
|
* @interface ConversationInsertKnowledgeBaseDocumentRequest
|
|
8091
8091
|
*/
|
|
8092
8092
|
export interface ConversationInsertKnowledgeBaseDocumentRequest {
|
|
8093
|
+
/**
|
|
8094
|
+
*
|
|
8095
|
+
* @type {string}
|
|
8096
|
+
* @memberof ConversationInsertKnowledgeBaseDocumentRequest
|
|
8097
|
+
*/
|
|
8098
|
+
original_file_name?: string;
|
|
8093
8099
|
/**
|
|
8094
8100
|
*
|
|
8095
8101
|
* @type {string}
|
|
@@ -8207,6 +8213,12 @@ export interface ConversationKnowledgeBaseDocument {
|
|
|
8207
8213
|
* @memberof ConversationKnowledgeBaseDocument
|
|
8208
8214
|
*/
|
|
8209
8215
|
s3_key?: string;
|
|
8216
|
+
/**
|
|
8217
|
+
*
|
|
8218
|
+
* @type {string}
|
|
8219
|
+
* @memberof ConversationKnowledgeBaseDocument
|
|
8220
|
+
*/
|
|
8221
|
+
s3_url?: string;
|
|
8210
8222
|
}
|
|
8211
8223
|
/**
|
|
8212
8224
|
*
|
|
@@ -35236,7 +35248,8 @@ export declare namespace OrderPayment {
|
|
|
35236
35248
|
ApplePay,
|
|
35237
35249
|
GooglePay,
|
|
35238
35250
|
HealthBenefitCard,
|
|
35239
|
-
PayPalFastlane
|
|
35251
|
+
PayPalFastlane,
|
|
35252
|
+
Klarna
|
|
35240
35253
|
}
|
|
35241
35254
|
/**
|
|
35242
35255
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -1427,6 +1427,7 @@ var OrderPayment;
|
|
|
1427
1427
|
PaymentMethodEnum[PaymentMethodEnum["GooglePay"] = 'Google Pay'] = "GooglePay";
|
|
1428
1428
|
PaymentMethodEnum[PaymentMethodEnum["HealthBenefitCard"] = 'Health Benefit Card'] = "HealthBenefitCard";
|
|
1429
1429
|
PaymentMethodEnum[PaymentMethodEnum["PayPalFastlane"] = 'PayPal Fastlane'] = "PayPalFastlane";
|
|
1430
|
+
PaymentMethodEnum[PaymentMethodEnum["Klarna"] = 'Klarna'] = "Klarna";
|
|
1430
1431
|
})(PaymentMethodEnum = OrderPayment.PaymentMethodEnum || (OrderPayment.PaymentMethodEnum = {}));
|
|
1431
1432
|
/**
|
|
1432
1433
|
* @export
|