@arrowsphere/api-client 3.75.0-rc.bdj.1 → 3.75.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,7 +3,12 @@
|
|
|
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.
|
|
6
|
+
## [3.75.0] - 2023-12-07
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- Add license conversion sku endpoints
|
|
10
|
+
|
|
11
|
+
## [3.74.0] - 2023-12-06
|
|
7
12
|
|
|
8
13
|
### Changed
|
|
9
14
|
- [Customers Contact] Add xcp invitation data in customer contact call
|
|
@@ -274,7 +274,7 @@ export declare class LicensesClient extends AbstractRestfulClient {
|
|
|
274
274
|
/**
|
|
275
275
|
* The path of license all existing skus
|
|
276
276
|
*/
|
|
277
|
-
private
|
|
277
|
+
private GET_LICENSE_EXISTING_CONVERSION_SKU;
|
|
278
278
|
/**
|
|
279
279
|
* Returns the raw result from the find endpoint call
|
|
280
280
|
*
|
|
@@ -312,7 +312,7 @@ export declare class LicensesClient extends AbstractRestfulClient {
|
|
|
312
312
|
upgrade(licenseReference: string, payload: PostUpgrade, parameters?: Parameters): Promise<GetResult<UpgradeResult>>;
|
|
313
313
|
saveOrderEavs(licenseReference: string, saveOrderEavsData: SaveOrderEavsInputType, parameters?: Parameters): Promise<void>;
|
|
314
314
|
getConversionSku(licenseReference: string, parameters?: Parameters): Promise<GetResult<LicenseConversionSkuResult>>;
|
|
315
|
-
|
|
315
|
+
getExistingConversionSku(licenseReference: string, parameters?: Parameters): Promise<GetResult<LicenseConversionSkuResult>>;
|
|
316
316
|
private createFilters;
|
|
317
317
|
private createKeywords;
|
|
318
318
|
}
|
|
@@ -180,7 +180,7 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
180
180
|
/**
|
|
181
181
|
* The path of license all existing skus
|
|
182
182
|
*/
|
|
183
|
-
this.
|
|
183
|
+
this.GET_LICENSE_EXISTING_CONVERSION_SKU = '/conversion/existing';
|
|
184
184
|
}
|
|
185
185
|
/**
|
|
186
186
|
* Returns the raw result from the find endpoint call
|
|
@@ -314,8 +314,8 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
|
|
|
314
314
|
this.path = `/${licenseReference}${this.GET_LICENSE_CONVERSION_SKU}`;
|
|
315
315
|
return new getResult_1.GetResult(licenseConversionSkuResult_1.LicenseConversionSkuResult, await this.get(parameters));
|
|
316
316
|
}
|
|
317
|
-
async
|
|
318
|
-
this.path = `/${licenseReference}${this.
|
|
317
|
+
async getExistingConversionSku(licenseReference, parameters = {}) {
|
|
318
|
+
this.path = `/${licenseReference}${this.GET_LICENSE_EXISTING_CONVERSION_SKU}`;
|
|
319
319
|
return new getResult_1.GetResult(licenseConversionSkuResult_1.LicenseConversionSkuResult, await this.get(parameters));
|
|
320
320
|
}
|
|
321
321
|
createFilters(parameters, keyParent) {
|
package/package.json
CHANGED