@arrowsphere/api-client 3.350.0-rc-cpe-1 → 3.350.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,21 @@
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.350.0] - 2026.03.10
7
+
8
+ ### Fixed
9
+ - Fix version package
10
+
11
+ ## [3.249.2] - 2026.03.09
12
+
13
+ ### Fixed
14
+ - Fix version package
15
+
16
+ ## [3.249.1] - 2026.03.09
17
+
18
+ ### Fixed
19
+ - [Partner] Fix Unit test
20
+
6
21
  ## [3.249.0] - 2026.03.05
7
22
 
8
23
  ### Added
@@ -10,12 +25,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
25
 
11
26
  ## [3.248.2] - 2026.03.04
12
27
 
13
- ### Updated
28
+ ### Fixed
14
29
  - [Cart] Fix type of the add and update cart endpoint payload
15
30
 
16
31
  ## [3.248.1] - 2026.02.26
17
32
 
18
- ### Updated
33
+ ### Fixed
19
34
  - [Contact] Fix type of the get and patch contact endpoint payload
20
35
 
21
36
  ## [3.248.0] - 2026.02.26
@@ -245,10 +245,7 @@ export declare type PostUpgrade = {
245
245
  billingCycle: number;
246
246
  term: number;
247
247
  quantity: number;
248
- } & ExtraInformationType;
249
- export declare type PostUpgradeToExisting = {
250
- quantity: number;
251
- } & ExtraInformationType;
248
+ };
252
249
  export declare enum SaveBillingCommentsInputFields {
253
250
  COLUMN_COMMENT_ONE = "comment1",
254
251
  COLUMN_COMMENT_TWO = "comment2"
@@ -437,7 +434,7 @@ export declare class LicensesClient extends AbstractRestfulClient {
437
434
  reactivateAutoRenew(licenseReference: string, payload?: PutReactivateAutoRenew, parameters?: Parameters): Promise<void>;
438
435
  activeRenewExtendedServiceTerm(licenseReference: string, payload?: PutActivateRenewEst, parameters?: Parameters): Promise<void>;
439
436
  upgrade(licenseReference: string, payload: PostUpgrade, parameters?: Parameters): Promise<GetResult<UpgradeResult>>;
440
- upgradeToExisting(licenseReference: string, targetLicenseReference: string, payload: PostUpgradeToExisting, parameters?: Parameters): Promise<void>;
437
+ upgradeToExisting(licenseReference: string, targetLicenseReference: string, quantity: number, parameters?: Parameters): Promise<void>;
441
438
  saveBillingComments(licenseReference: string, payload: SaveBillingCommentsInputType, parameters?: Parameters): Promise<void>;
442
439
  getConversionSku(licenseReference: string, parameters?: Parameters): Promise<GetResult<LicenseConversionSkuResult>>;
443
440
  getExistingConversionSku(licenseReference: string, parameters?: Parameters): Promise<GetResult<LicenseConversionSkuResult>>;
@@ -460,9 +460,9 @@ class LicensesClient extends abstractRestfulClient_1.AbstractRestfulClient {
460
460
  this.path = `/${licenseReference}${this.UPGRADE_PATH}`;
461
461
  return new getResult_1.GetResult(upgradeResult_1.UpgradeResult, await this.post(payload, parameters));
462
462
  }
463
- async upgradeToExisting(licenseReference, targetLicenseReference, payload, parameters = {}) {
463
+ async upgradeToExisting(licenseReference, targetLicenseReference, quantity, parameters = {}) {
464
464
  this.path = `/${licenseReference}${this.UPGRADE_PATH}/${targetLicenseReference}`;
465
- await this.post(payload, parameters);
465
+ await this.post({ quantity }, parameters);
466
466
  }
467
467
  async saveBillingComments(licenseReference, payload, parameters = {}) {
468
468
  this.path = `/${licenseReference}${this.SAVE_BILLING_COMMENTS_PATH}`;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/ArrowSphere/nodejs-api-client.git"
6
6
  },
7
- "version": "3.350.0-rc-cpe-1",
7
+ "version": "3.350.0",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",