ultracart_rest_api_v2_typescript 3.10.53 → 3.10.55
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 +38 -1
- package/dist/api.d.ts +38 -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.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.55
|
|
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.10.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.55 --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.10.55 | 10/05/2022 | storefront rest file cdn icon urls |
|
|
58
|
+
| 3.10.54 | 10/04/2022 | bug fix for new storefront file mgr |
|
|
57
59
|
| 3.10.53 | 09/29/2022 | page_paths search category for search2 method |
|
|
58
60
|
| 3.10.52 | 09/29/2022 | storefront file mgr calls tweaks |
|
|
59
61
|
| 3.10.51 | 09/29/2022 | storefront methods for file manager ui |
|
package/api.ts
CHANGED
|
@@ -2468,6 +2468,18 @@ export interface CartBilling {
|
|
|
2468
2468
|
* @memberof CartBilling
|
|
2469
2469
|
*/
|
|
2470
2470
|
cc_emails?: Array<string>;
|
|
2471
|
+
/**
|
|
2472
|
+
* Cell phone
|
|
2473
|
+
* @type {string}
|
|
2474
|
+
* @memberof CartBilling
|
|
2475
|
+
*/
|
|
2476
|
+
cell_phone?: string;
|
|
2477
|
+
/**
|
|
2478
|
+
* Cell phone (E164 format)
|
|
2479
|
+
* @type {string}
|
|
2480
|
+
* @memberof CartBilling
|
|
2481
|
+
*/
|
|
2482
|
+
cell_phone_e164?: string;
|
|
2471
2483
|
/**
|
|
2472
2484
|
* City
|
|
2473
2485
|
* @type {string}
|
|
@@ -18492,6 +18504,24 @@ export interface FileManagerFile {
|
|
|
18492
18504
|
* @memberof FileManagerFile
|
|
18493
18505
|
*/
|
|
18494
18506
|
storefront_oid?: number;
|
|
18507
|
+
/**
|
|
18508
|
+
* CDN thumbnail 16x16 size
|
|
18509
|
+
* @type {string}
|
|
18510
|
+
* @memberof FileManagerFile
|
|
18511
|
+
*/
|
|
18512
|
+
thumbnail_16_url?: string;
|
|
18513
|
+
/**
|
|
18514
|
+
* CDN thumbnail 32x32 size
|
|
18515
|
+
* @type {string}
|
|
18516
|
+
* @memberof FileManagerFile
|
|
18517
|
+
*/
|
|
18518
|
+
thumbnail_32_url?: string;
|
|
18519
|
+
/**
|
|
18520
|
+
* CDN thumbnail 64x64 size
|
|
18521
|
+
* @type {string}
|
|
18522
|
+
* @memberof FileManagerFile
|
|
18523
|
+
*/
|
|
18524
|
+
thumbnail_64_url?: string;
|
|
18495
18525
|
/**
|
|
18496
18526
|
*
|
|
18497
18527
|
* @type {string}
|
|
@@ -18656,6 +18686,12 @@ export interface FileManagerUploadUrlResponse {
|
|
|
18656
18686
|
* @memberof FileManagerUploadUrlResponse
|
|
18657
18687
|
*/
|
|
18658
18688
|
success?: boolean;
|
|
18689
|
+
/**
|
|
18690
|
+
*
|
|
18691
|
+
* @type {string}
|
|
18692
|
+
* @memberof FileManagerUploadUrlResponse
|
|
18693
|
+
*/
|
|
18694
|
+
url?: string;
|
|
18659
18695
|
/**
|
|
18660
18696
|
*
|
|
18661
18697
|
* @type {Warning}
|
|
@@ -25927,7 +25963,8 @@ export namespace Order {
|
|
|
25927
25963
|
QuoteSent = <any> 'Quote Sent',
|
|
25928
25964
|
LeastCostRouting = <any> 'Least Cost Routing',
|
|
25929
25965
|
Unknown = <any> 'Unknown',
|
|
25930
|
-
PreOrdered = <any> 'Pre-ordered'
|
|
25966
|
+
PreOrdered = <any> 'Pre-ordered',
|
|
25967
|
+
AdvancedOrderRouting = <any> 'Advanced Order Routing'
|
|
25931
25968
|
}
|
|
25932
25969
|
}
|
|
25933
25970
|
|
package/dist/api.d.ts
CHANGED
|
@@ -2403,6 +2403,18 @@ export interface CartBilling {
|
|
|
2403
2403
|
* @memberof CartBilling
|
|
2404
2404
|
*/
|
|
2405
2405
|
cc_emails?: Array<string>;
|
|
2406
|
+
/**
|
|
2407
|
+
* Cell phone
|
|
2408
|
+
* @type {string}
|
|
2409
|
+
* @memberof CartBilling
|
|
2410
|
+
*/
|
|
2411
|
+
cell_phone?: string;
|
|
2412
|
+
/**
|
|
2413
|
+
* Cell phone (E164 format)
|
|
2414
|
+
* @type {string}
|
|
2415
|
+
* @memberof CartBilling
|
|
2416
|
+
*/
|
|
2417
|
+
cell_phone_e164?: string;
|
|
2406
2418
|
/**
|
|
2407
2419
|
* City
|
|
2408
2420
|
* @type {string}
|
|
@@ -18089,6 +18101,24 @@ export interface FileManagerFile {
|
|
|
18089
18101
|
* @memberof FileManagerFile
|
|
18090
18102
|
*/
|
|
18091
18103
|
storefront_oid?: number;
|
|
18104
|
+
/**
|
|
18105
|
+
* CDN thumbnail 16x16 size
|
|
18106
|
+
* @type {string}
|
|
18107
|
+
* @memberof FileManagerFile
|
|
18108
|
+
*/
|
|
18109
|
+
thumbnail_16_url?: string;
|
|
18110
|
+
/**
|
|
18111
|
+
* CDN thumbnail 32x32 size
|
|
18112
|
+
* @type {string}
|
|
18113
|
+
* @memberof FileManagerFile
|
|
18114
|
+
*/
|
|
18115
|
+
thumbnail_32_url?: string;
|
|
18116
|
+
/**
|
|
18117
|
+
* CDN thumbnail 64x64 size
|
|
18118
|
+
* @type {string}
|
|
18119
|
+
* @memberof FileManagerFile
|
|
18120
|
+
*/
|
|
18121
|
+
thumbnail_64_url?: string;
|
|
18092
18122
|
/**
|
|
18093
18123
|
*
|
|
18094
18124
|
* @type {string}
|
|
@@ -18249,6 +18279,12 @@ export interface FileManagerUploadUrlResponse {
|
|
|
18249
18279
|
* @memberof FileManagerUploadUrlResponse
|
|
18250
18280
|
*/
|
|
18251
18281
|
success?: boolean;
|
|
18282
|
+
/**
|
|
18283
|
+
*
|
|
18284
|
+
* @type {string}
|
|
18285
|
+
* @memberof FileManagerUploadUrlResponse
|
|
18286
|
+
*/
|
|
18287
|
+
url?: string;
|
|
18252
18288
|
/**
|
|
18253
18289
|
*
|
|
18254
18290
|
* @type {Warning}
|
|
@@ -25378,7 +25414,8 @@ export declare namespace Order {
|
|
|
25378
25414
|
QuoteSent,
|
|
25379
25415
|
LeastCostRouting,
|
|
25380
25416
|
Unknown,
|
|
25381
|
-
PreOrdered
|
|
25417
|
+
PreOrdered,
|
|
25418
|
+
AdvancedOrderRouting
|
|
25382
25419
|
}
|
|
25383
25420
|
}
|
|
25384
25421
|
/**
|
package/dist/api.js
CHANGED
|
@@ -810,6 +810,7 @@ var Order;
|
|
|
810
810
|
CurrentStageEnum[CurrentStageEnum["LeastCostRouting"] = 'Least Cost Routing'] = "LeastCostRouting";
|
|
811
811
|
CurrentStageEnum[CurrentStageEnum["Unknown"] = 'Unknown'] = "Unknown";
|
|
812
812
|
CurrentStageEnum[CurrentStageEnum["PreOrdered"] = 'Pre-ordered'] = "PreOrdered";
|
|
813
|
+
CurrentStageEnum[CurrentStageEnum["AdvancedOrderRouting"] = 'Advanced Order Routing'] = "AdvancedOrderRouting";
|
|
813
814
|
})(CurrentStageEnum = Order.CurrentStageEnum || (Order.CurrentStageEnum = {}));
|
|
814
815
|
})(Order = exports.Order || (exports.Order = {}));
|
|
815
816
|
/**
|