@arrowsphere/api-client 3.358.0 → 3.360.0-rc-mel-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.359.0] - 2026.04.13
7
+
8
+ ### Added
9
+ - [license] Add customFields in late renewal request
10
+
6
11
  ## [3.358.0] - 2026.04.10
7
12
 
8
13
  ### Added
@@ -46,6 +46,7 @@ export declare type SearchBodyPriceBandsArgument = {
46
46
  restricted?: boolean;
47
47
  getFamilies?: boolean;
48
48
  quantity?: number;
49
+ bundleArrowSphereSku?: string;
49
50
  };
50
51
  export declare type SearchBodyArgument = {
51
52
  aggregatorFilter?: string[];
@@ -2,7 +2,12 @@ export declare type ExecuteLateRenewLicense = {
2
2
  numberOfSeats: number;
3
3
  licenseRef: string;
4
4
  };
5
+ export declare type CustomField = {
6
+ label: string;
7
+ value: string;
8
+ };
5
9
  export declare type ExecuteLateRenewPayload = {
6
10
  licenses: ExecuteLateRenewLicense[];
7
11
  billingComments: Record<string, string>;
12
+ customFields: CustomField[];
8
13
  };
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.358.0",
7
+ "version": "3.360.0-rc-mel-1",
8
8
  "description": "Node.js client for ArrowSphere's public API",
9
9
  "main": "build/index.js",
10
10
  "types": "build/index.d.ts",