@arrowsphere/api-client 3.145.0 → 3.146.0
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [3.146.0] - 2024.10.08
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- [quote] Added customTermAndDate, partnerBuyPrice and partnerCotermBuyPrice in itemData
|
|
10
|
+
|
|
6
11
|
## [3.145.0] - 2024.10.07
|
|
7
12
|
|
|
8
13
|
### Added
|
|
@@ -40,6 +40,7 @@ export declare type QuoteItemType = {
|
|
|
40
40
|
export declare type ItemData = {
|
|
41
41
|
id?: string;
|
|
42
42
|
offerName?: string;
|
|
43
|
+
customTermEndDate?: string;
|
|
43
44
|
publicPrice?: number;
|
|
44
45
|
buyPrice?: number;
|
|
45
46
|
sellPrice?: number;
|
|
@@ -48,9 +49,21 @@ export declare type ItemData = {
|
|
|
48
49
|
partnerRateType?: string;
|
|
49
50
|
arrowBuyPrice?: number;
|
|
50
51
|
arrowCotermBuyPrice?: number;
|
|
52
|
+
/**
|
|
53
|
+
* this field will be delete shortly
|
|
54
|
+
* Use 'partnerBuyPrice' instead.
|
|
55
|
+
* @deprecated
|
|
56
|
+
*/
|
|
51
57
|
resellerBuyPrice?: number;
|
|
58
|
+
/**
|
|
59
|
+
* this field will be delete shortly
|
|
60
|
+
* Use 'partnerCotermBuyPrice' instead.
|
|
61
|
+
* @deprecated
|
|
62
|
+
*/
|
|
52
63
|
resellerCotermBuyPrice?: number;
|
|
53
64
|
endCustomerBuyPrice?: number;
|
|
65
|
+
partnerCotermBuyPrice?: number;
|
|
66
|
+
partnerBuyPrice?: number;
|
|
54
67
|
endCustomerCotermBuyPrice?: number;
|
|
55
68
|
billingTerm?: number;
|
|
56
69
|
billingCycle?: number;
|
package/package.json
CHANGED