@arrowsphere/api-client 3.77.0-rc.bdj.5 → 3.77.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,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.77.0] - 2023-12-13
7
+
8
+ ### Changed
9
+ - Add license get credentials endpoint and update get license extraData
10
+
6
11
  ## [3.76.0] - 2023-12-08
7
12
 
8
13
  ### Changed
@@ -206,8 +206,8 @@ export declare enum SaveBillingCommentsInputFields {
206
206
  COLUMN_COMMENT_TWO = "comment2"
207
207
  }
208
208
  export declare type SaveBillingCommentsInputType = {
209
- [SaveBillingCommentsInputFields.COLUMN_COMMENT_ONE]?: string;
210
- [SaveBillingCommentsInputFields.COLUMN_COMMENT_TWO]?: string;
209
+ [SaveBillingCommentsInputFields.COLUMN_COMMENT_ONE]?: string | null;
210
+ [SaveBillingCommentsInputFields.COLUMN_COMMENT_TWO]?: string | null;
211
211
  };
212
212
  export declare class LicensesClient extends AbstractRestfulClient {
213
213
  /**
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.77.0-rc.bdj.5",
7
+ "version": "3.77.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",