@arrowsphere/api-client 3.100.0-rc.bdj.5 → 3.100.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,14 @@
|
|
|
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.100.0] - 2024.02.27
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- [consumption] add endpoint to get and update budget settings
|
|
11
|
+
- [graphql-api] add license budget
|
|
12
|
+
- [licenses] add new field vendor_code
|
|
13
|
+
|
|
6
14
|
## [3.99.0] - 2024.02.20
|
|
7
15
|
|
|
8
16
|
### Added
|
|
@@ -303,6 +303,9 @@ class LicenseGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
303
303
|
get priceBand() {
|
|
304
304
|
return __classPrivateFieldGet(this, _LicenseGetResult_priceBand, "f");
|
|
305
305
|
}
|
|
306
|
+
/*
|
|
307
|
+
* @deprecated use vendor_code() instead
|
|
308
|
+
*/
|
|
306
309
|
get vendorCode() {
|
|
307
310
|
return __classPrivateFieldGet(this, _LicenseGetResult_vendorCode, "f");
|
|
308
311
|
}
|
|
@@ -262,7 +262,6 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
262
262
|
...this.createFilters(postData.sort, 'endCustomerOrganizationUnit'),
|
|
263
263
|
};
|
|
264
264
|
}
|
|
265
|
-
console.info('RAW_LICENSE_PAYLOAD => ', rawLicensePayload);
|
|
266
265
|
const response = await this.findRaw(rawLicensePayload, parameters);
|
|
267
266
|
return new findResult_1.FindResult(response, this, rawLicensePayload, parameters);
|
|
268
267
|
}
|
package/package.json
CHANGED