ultracart_rest_api_v2_typescript 3.10.150 → 3.10.152
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 -2
- package/dist/api.d.ts +25 -2
- package/dist/api.js +5 -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.152
|
|
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.152 --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.152 | 07/27/2023 | dw bi - add settings to the report and page objects |
|
|
58
|
+
| 3.10.151 | 07/19/2023 | dw bi - add data_source_uuid to filter connection obj |
|
|
57
59
|
| 3.10.150 | 07/19/2023 | dw bi - add data_source_uuid to page visualization obj |
|
|
58
60
|
| 3.10.149 | 07/19/2023 | dw bi - add data_source_uuid to report data source |
|
|
59
61
|
| 3.10.148 | 07/03/2023 | chart constant for dw report tool |
|
package/api.ts
CHANGED
|
@@ -31120,7 +31120,9 @@ export namespace OrderPayment {
|
|
|
31120
31120
|
Walmart = <any> 'Walmart',
|
|
31121
31121
|
ShopCom = <any> 'Shop.com',
|
|
31122
31122
|
Sezzle = <any> 'Sezzle',
|
|
31123
|
-
Venmo = <any> 'Venmo'
|
|
31123
|
+
Venmo = <any> 'Venmo',
|
|
31124
|
+
ApplePay = <any> 'Apple Pay',
|
|
31125
|
+
GooglePay = <any> 'Google Pay'
|
|
31124
31126
|
}
|
|
31125
31127
|
/**
|
|
31126
31128
|
* @export
|
|
@@ -31896,7 +31898,10 @@ export namespace OrderQuery {
|
|
|
31896
31898
|
PurchaseOrder = <any> 'Purchase Order',
|
|
31897
31899
|
QuoteRequest = <any> 'Quote Request',
|
|
31898
31900
|
Unknown = <any> 'Unknown',
|
|
31899
|
-
WireTransfer = <any> 'Wire Transfer'
|
|
31901
|
+
WireTransfer = <any> 'Wire Transfer',
|
|
31902
|
+
Venmo = <any> 'Venmo',
|
|
31903
|
+
ApplePay = <any> 'Apple Pay',
|
|
31904
|
+
GooglePay = <any> ' Google Pay'
|
|
31900
31905
|
}
|
|
31901
31906
|
}
|
|
31902
31907
|
|
|
@@ -33816,6 +33821,12 @@ export interface Report {
|
|
|
33816
33821
|
* @memberof Report
|
|
33817
33822
|
*/
|
|
33818
33823
|
security_level?: Report.SecurityLevelEnum;
|
|
33824
|
+
/**
|
|
33825
|
+
* A JSON representation of the settings for this report
|
|
33826
|
+
* @type {string}
|
|
33827
|
+
* @memberof Report
|
|
33828
|
+
*/
|
|
33829
|
+
settings?: string;
|
|
33819
33830
|
}
|
|
33820
33831
|
|
|
33821
33832
|
/**
|
|
@@ -34715,6 +34726,12 @@ export interface ReportFilterConnection {
|
|
|
34715
34726
|
* @memberof ReportFilterConnection
|
|
34716
34727
|
*/
|
|
34717
34728
|
data_source_name?: string;
|
|
34729
|
+
/**
|
|
34730
|
+
* A unique identifier assigned to the data source.
|
|
34731
|
+
* @type {string}
|
|
34732
|
+
* @memberof ReportFilterConnection
|
|
34733
|
+
*/
|
|
34734
|
+
data_source_uuid?: string;
|
|
34718
34735
|
}
|
|
34719
34736
|
|
|
34720
34737
|
/**
|
|
@@ -34735,6 +34752,12 @@ export interface ReportPage {
|
|
|
34735
34752
|
* @memberof ReportPage
|
|
34736
34753
|
*/
|
|
34737
34754
|
height?: number;
|
|
34755
|
+
/**
|
|
34756
|
+
* A JSON representation of the settings for this report
|
|
34757
|
+
* @type {string}
|
|
34758
|
+
* @memberof ReportPage
|
|
34759
|
+
*/
|
|
34760
|
+
settings?: string;
|
|
34738
34761
|
/**
|
|
34739
34762
|
*
|
|
34740
34763
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -30465,7 +30465,9 @@ export declare namespace OrderPayment {
|
|
|
30465
30465
|
Walmart,
|
|
30466
30466
|
ShopCom,
|
|
30467
30467
|
Sezzle,
|
|
30468
|
-
Venmo
|
|
30468
|
+
Venmo,
|
|
30469
|
+
ApplePay,
|
|
30470
|
+
GooglePay
|
|
30469
30471
|
}
|
|
30470
30472
|
/**
|
|
30471
30473
|
* @export
|
|
@@ -31224,7 +31226,10 @@ export declare namespace OrderQuery {
|
|
|
31224
31226
|
PurchaseOrder,
|
|
31225
31227
|
QuoteRequest,
|
|
31226
31228
|
Unknown,
|
|
31227
|
-
WireTransfer
|
|
31229
|
+
WireTransfer,
|
|
31230
|
+
Venmo,
|
|
31231
|
+
ApplePay,
|
|
31232
|
+
GooglePay
|
|
31228
31233
|
}
|
|
31229
31234
|
}
|
|
31230
31235
|
/**
|
|
@@ -33112,6 +33117,12 @@ export interface Report {
|
|
|
33112
33117
|
* @memberof Report
|
|
33113
33118
|
*/
|
|
33114
33119
|
security_level?: Report.SecurityLevelEnum;
|
|
33120
|
+
/**
|
|
33121
|
+
* A JSON representation of the settings for this report
|
|
33122
|
+
* @type {string}
|
|
33123
|
+
* @memberof Report
|
|
33124
|
+
*/
|
|
33125
|
+
settings?: string;
|
|
33115
33126
|
}
|
|
33116
33127
|
/**
|
|
33117
33128
|
* @export
|
|
@@ -33986,6 +33997,12 @@ export interface ReportFilterConnection {
|
|
|
33986
33997
|
* @memberof ReportFilterConnection
|
|
33987
33998
|
*/
|
|
33988
33999
|
data_source_name?: string;
|
|
34000
|
+
/**
|
|
34001
|
+
* A unique identifier assigned to the data source.
|
|
34002
|
+
* @type {string}
|
|
34003
|
+
* @memberof ReportFilterConnection
|
|
34004
|
+
*/
|
|
34005
|
+
data_source_uuid?: string;
|
|
33989
34006
|
}
|
|
33990
34007
|
/**
|
|
33991
34008
|
*
|
|
@@ -34005,6 +34022,12 @@ export interface ReportPage {
|
|
|
34005
34022
|
* @memberof ReportPage
|
|
34006
34023
|
*/
|
|
34007
34024
|
height?: number;
|
|
34025
|
+
/**
|
|
34026
|
+
* A JSON representation of the settings for this report
|
|
34027
|
+
* @type {string}
|
|
34028
|
+
* @memberof ReportPage
|
|
34029
|
+
*/
|
|
34030
|
+
settings?: string;
|
|
34008
34031
|
/**
|
|
34009
34032
|
*
|
|
34010
34033
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -1182,6 +1182,8 @@ var OrderPayment;
|
|
|
1182
1182
|
PaymentMethodEnum[PaymentMethodEnum["ShopCom"] = 'Shop.com'] = "ShopCom";
|
|
1183
1183
|
PaymentMethodEnum[PaymentMethodEnum["Sezzle"] = 'Sezzle'] = "Sezzle";
|
|
1184
1184
|
PaymentMethodEnum[PaymentMethodEnum["Venmo"] = 'Venmo'] = "Venmo";
|
|
1185
|
+
PaymentMethodEnum[PaymentMethodEnum["ApplePay"] = 'Apple Pay'] = "ApplePay";
|
|
1186
|
+
PaymentMethodEnum[PaymentMethodEnum["GooglePay"] = 'Google Pay'] = "GooglePay";
|
|
1185
1187
|
})(PaymentMethodEnum = OrderPayment.PaymentMethodEnum || (OrderPayment.PaymentMethodEnum = {}));
|
|
1186
1188
|
/**
|
|
1187
1189
|
* @export
|
|
@@ -1288,6 +1290,9 @@ var OrderQuery;
|
|
|
1288
1290
|
PaymentMethodEnum[PaymentMethodEnum["QuoteRequest"] = 'Quote Request'] = "QuoteRequest";
|
|
1289
1291
|
PaymentMethodEnum[PaymentMethodEnum["Unknown"] = 'Unknown'] = "Unknown";
|
|
1290
1292
|
PaymentMethodEnum[PaymentMethodEnum["WireTransfer"] = 'Wire Transfer'] = "WireTransfer";
|
|
1293
|
+
PaymentMethodEnum[PaymentMethodEnum["Venmo"] = 'Venmo'] = "Venmo";
|
|
1294
|
+
PaymentMethodEnum[PaymentMethodEnum["ApplePay"] = 'Apple Pay'] = "ApplePay";
|
|
1295
|
+
PaymentMethodEnum[PaymentMethodEnum["GooglePay"] = ' Google Pay'] = "GooglePay";
|
|
1291
1296
|
})(PaymentMethodEnum = OrderQuery.PaymentMethodEnum || (OrderQuery.PaymentMethodEnum = {}));
|
|
1292
1297
|
})(OrderQuery = exports.OrderQuery || (exports.OrderQuery = {}));
|
|
1293
1298
|
/**
|