@arrowsphere/api-client 3.81.0 → 3.81.1
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.81.1] - 2023-12-21
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- Fixed get license rate for null value
|
|
10
|
+
|
|
6
11
|
## [3.81.0] - 2023-12-21
|
|
7
12
|
|
|
8
13
|
### Added
|
|
@@ -161,7 +161,7 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
161
161
|
? new priceBandGetResult_1.PriceBandGetResult(licenseGetDataInput[LicenseGetFields.COLUMN_PRICE_BAND])
|
|
162
162
|
: undefined, "f");
|
|
163
163
|
__classPrivateFieldSet(this, _LicenseGetResult_vendorCode, licenseGetDataInput[LicenseGetFields.COLUMN_VENDOR_CODE], "f");
|
|
164
|
-
__classPrivateFieldSet(this, _LicenseGetResult_rates, licenseGetDataInput[LicenseGetFields.COLUMN_RATES]
|
|
164
|
+
__classPrivateFieldSet(this, _LicenseGetResult_rates, licenseGetDataInput[LicenseGetFields.COLUMN_RATES]
|
|
165
165
|
? new ratesGetResult_1.RatesGetResult(licenseGetDataInput[LicenseGetFields.COLUMN_RATES])
|
|
166
166
|
: undefined, "f");
|
|
167
167
|
}
|
package/package.json
CHANGED