Skip to content

Commit

Permalink
Release v1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaneshbs committed Jan 23, 2025
1 parent a5942ee commit 17e52df
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 46 deletions.
2 changes: 1 addition & 1 deletion lib/core.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 0 additions & 13 deletions lib/organization.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,6 @@ export default class OrganizationClient {
* @returns {Promise<Link>} The admin portal link object with expiration time and location
*/
generatePortalLink(organizationId: string): Promise<Link>;
/**
* Get admin portal links for an organization
* @param organizationId The organization id
* @returns {Promise<Link[]>} The admin portal link object with expiration time and location
*/
getPortalLinks(organizationId: string): Promise<Link[]>;
/**
* Delete admin portal link for an organization
* @param organizationId The organization id
* @param linkId The link id
* @returns {Promise<Empty>} Returns nothing
*/
deletePortalLink(organizationId: string, linkId: string): Promise<Empty>;
/**
* Update organization settings for an organization
* @param organizationId The organization id
Expand Down
27 changes: 0 additions & 27 deletions lib/organization.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/organization.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.8",
"version": "1.0.9",
"name": "@scalekit-sdk/node",
"description": "Official Scalekit Node SDK",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class CoreClient {
public keys: JWK[] = [];
public accessToken: string | null = null;
public axios: Axios;
public sdkVersion = `Scalekit-Node/1.0.8`;
public sdkVersion = `Scalekit-Node/1.0.9`;
public apiVersion = "20240430";
public userAgent = `${this.sdkVersion} Node/${process.version} (${process.platform}; ${os.arch()})`;
constructor(
Expand Down

0 comments on commit 17e52df

Please sign in to comment.