ultracart_rest_api_v2_typescript 3.10.147 → 3.10.149
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 +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.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.149
|
|
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.149 --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.149 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
|
|
58
|
+
| 3.10.148 | 07/03/2023 | chart constant for dw report tool |
|
|
57
59
|
| 3.10.147 | 06/23/2023 | gauge constant for page visualization library |
|
|
58
60
|
| 3.10.146 | 06/20/2023 | auto order - establishAutoOrderByReferenceOrderId method added |
|
|
59
61
|
| 3.10.145 | 06/20/2023 | coupon add allowed values for usable_by and new OncePerNewCustomerForItem flag |
|
package/api.ts
CHANGED
|
@@ -5229,6 +5229,12 @@ export interface ChannelPartner {
|
|
|
5229
5229
|
* @memberof ChannelPartner
|
|
5230
5230
|
*/
|
|
5231
5231
|
communication_method?: string;
|
|
5232
|
+
/**
|
|
5233
|
+
* True if shipments should immediately process for this channel partner.
|
|
5234
|
+
* @type {boolean}
|
|
5235
|
+
* @memberof ChannelPartner
|
|
5236
|
+
*/
|
|
5237
|
+
dont_hold_shipment?: boolean;
|
|
5232
5238
|
/**
|
|
5233
5239
|
* True if the channel partner is inactive
|
|
5234
5240
|
* @type {boolean}
|
|
@@ -34379,6 +34385,12 @@ export namespace ReportDataSetSchema {
|
|
|
34379
34385
|
* @interface ReportDataSource
|
|
34380
34386
|
*/
|
|
34381
34387
|
export interface ReportDataSource {
|
|
34388
|
+
/**
|
|
34389
|
+
* A unique identifier assigned to the data source.
|
|
34390
|
+
* @type {string}
|
|
34391
|
+
* @memberof ReportDataSource
|
|
34392
|
+
*/
|
|
34393
|
+
data_source_uuid?: string;
|
|
34382
34394
|
/**
|
|
34383
34395
|
*
|
|
34384
34396
|
* @type {string}
|
|
@@ -34852,7 +34864,8 @@ export namespace ReportPageVisualization {
|
|
|
34852
34864
|
BarChart = <any> 'bar chart',
|
|
34853
34865
|
Text = <any> 'text',
|
|
34854
34866
|
Table = <any> 'table',
|
|
34855
|
-
Gauge = <any> 'gauge'
|
|
34867
|
+
Gauge = <any> 'gauge',
|
|
34868
|
+
PieChart = <any> 'pie chart'
|
|
34856
34869
|
}
|
|
34857
34870
|
}
|
|
34858
34871
|
|
package/dist/api.d.ts
CHANGED
|
@@ -5101,6 +5101,12 @@ export interface ChannelPartner {
|
|
|
5101
5101
|
* @memberof ChannelPartner
|
|
5102
5102
|
*/
|
|
5103
5103
|
communication_method?: string;
|
|
5104
|
+
/**
|
|
5105
|
+
* True if shipments should immediately process for this channel partner.
|
|
5106
|
+
* @type {boolean}
|
|
5107
|
+
* @memberof ChannelPartner
|
|
5108
|
+
*/
|
|
5109
|
+
dont_hold_shipment?: boolean;
|
|
5104
5110
|
/**
|
|
5105
5111
|
* True if the channel partner is inactive
|
|
5106
5112
|
* @type {boolean}
|
|
@@ -33660,6 +33666,12 @@ export declare namespace ReportDataSetSchema {
|
|
|
33660
33666
|
* @interface ReportDataSource
|
|
33661
33667
|
*/
|
|
33662
33668
|
export interface ReportDataSource {
|
|
33669
|
+
/**
|
|
33670
|
+
* A unique identifier assigned to the data source.
|
|
33671
|
+
* @type {string}
|
|
33672
|
+
* @memberof ReportDataSource
|
|
33673
|
+
*/
|
|
33674
|
+
data_source_uuid?: string;
|
|
33663
33675
|
/**
|
|
33664
33676
|
*
|
|
33665
33677
|
* @type {string}
|
|
@@ -34119,7 +34131,8 @@ export declare namespace ReportPageVisualization {
|
|
|
34119
34131
|
BarChart,
|
|
34120
34132
|
Text,
|
|
34121
34133
|
Table,
|
|
34122
|
-
Gauge
|
|
34134
|
+
Gauge,
|
|
34135
|
+
PieChart
|
|
34123
34136
|
}
|
|
34124
34137
|
}
|
|
34125
34138
|
/**
|
package/dist/api.js
CHANGED
|
@@ -1461,6 +1461,7 @@ var ReportPageVisualization;
|
|
|
1461
1461
|
TypeEnum[TypeEnum["Text"] = 'text'] = "Text";
|
|
1462
1462
|
TypeEnum[TypeEnum["Table"] = 'table'] = "Table";
|
|
1463
1463
|
TypeEnum[TypeEnum["Gauge"] = 'gauge'] = "Gauge";
|
|
1464
|
+
TypeEnum[TypeEnum["PieChart"] = 'pie chart'] = "PieChart";
|
|
1464
1465
|
})(TypeEnum = ReportPageVisualization.TypeEnum || (ReportPageVisualization.TypeEnum = {}));
|
|
1465
1466
|
})(ReportPageVisualization = exports.ReportPageVisualization || (exports.ReportPageVisualization = {}));
|
|
1466
1467
|
/**
|