![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@liblab/sdk
Advanced tools
The Typescript SDK for Liblab.
npm install @liblab/sdk
To see whether an endpoint needs a specific type of authentication check the endpoint's documentation.
The Liblab API uses bearer tokens for authentication, but these bearer tokens have a short expiration time. Refresh tokens have longer duration, and they have the ability to obtain new bearer tokens. The bearer and refresh token can be set when initializing the SDK like this:
sdk = new Liblab('YOUR_REFRESH_TOKEN', 'YOUR_BEARER_TOKEN')
Or at a later stage:
sdk = new Liblab()
sdk.setBearerToken('YOUR_BEARER_TOKEN');
sdk.setRefreshToken('YOUR_REFRESH_TOKEN');
After the refresh token has been set, the SDK will automatically refresh the bearer token when needed.
Here is a simple program demonstrating usage of this SDK. It is also available in the sample.js
file in this directory.
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Org
.getByCurrentUser();
console.log(result);
})();
Here is the list of all available environments:
DEFAULT = 'https://api-dev.liblab.com',
PRODUCTION = 'https://api.liblab.com',
STAGING = 'https://api-staging.liblab.com',
DEVELOPMENT = 'https://api-dev.liblab.com'
How to set the environment:
const sdk = new Liblab();
sdk.setEnvironment(Environment.DEFAULT);
A list of all services and services methods.
Services
Method | Description |
---|---|
buildSdk | |
buildDoc | |
getBuilds | |
getById | |
tag | |
untag |
Method | Description |
---|---|
create | |
getApis | |
getById | |
update | |
remove | |
getApiMembers | |
getApiSdks | |
getApiDocs | |
getApiBuilds | |
getApiByOrgSlugAndApiSlug |
Method | Description |
---|---|
create | |
getByCurrentUser | |
getById | |
update | |
remove | |
getApis | |
getPayments | |
getArtifacts | |
getDocs |
Method | Description |
---|---|
createMember | |
getByOrgId | |
updateMember | |
removeMember | |
leaveOrg | |
enableAllMembers | |
disableAllMembers |
Method | Description |
---|---|
create | |
getArtifacts | |
getById | |
remove |
Method | Description |
---|---|
create | |
findSdks | |
getById | |
remove |
Method | Description |
---|---|
getApprovedByOrgSlugAndApiSlug | |
getAllApprovedByOrgSlugAndApiSlug | |
create | |
findDocs | |
approve | |
unapprove | |
getById | |
remove | |
update | |
getDownloadUrl |
Method | Description |
---|---|
getCurrentUser | |
create | |
getUsers | |
getById | |
update | |
remove | |
updateEmailSubscription | |
getUserOrgs | |
getUserApis |
Method | Description |
---|---|
signup | |
login | |
logout | |
refreshToken | |
resetPassword | |
oneTimeLogin | |
changePassword | |
verifyEmail | |
resendVerifictionEmail |
Method | Description |
---|---|
create | |
findByUserId | |
getById | |
remove |
Method | Description |
---|---|
getOrgPlanHistory | |
updateOrgPlan | |
getStripePaymentPortalUrl |
Method | Description |
---|---|
stripeWebhook |
Method | Description |
---|---|
healthCheckControllerCheck |
Method | Description |
---|---|
track |
Method | Description |
---|---|
createInvite | |
acceptInvite | |
declineInvite | |
inviteCode | |
getInvitesByUser |
Method | Description |
---|---|
create | |
search |
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {};
const result = await sdk.Build.buildSdk(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
aliquip_68e: 'sint',
apiId: 1,
aute_2a: 'Duis',
nulla_8: 3900328.4805417657,
openApiUrl:
'https://dev-order-bucket.s3.amazonaws.com/specs/doc-specs/alpaca-broker+api_api_1.0.0.json',
quis_e: 'proident elit exercitation',
ut28: -25358790.201143086,
Utd: true,
};
const result = await sdk.Build.buildDoc(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
offset | number | |
limit | number | |
apiId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Build.getBuilds(50998585.60952249, 34448689.40997523, 82103765.40988502);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Build.getById(-54385936.31367215);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
buildId | number | |
tagId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Build.tag(-21279866.275118083, 95365229.68582454);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
buildId | number | |
tagId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Build.untag(-52336153.032788694, -98933487.5433542);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {};
const result = await sdk.Api.create(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Api.getApis(-34780563.49413206);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Api.getById(-12746852.865771309);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number | |
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = { name: 'My api name', version: '1.0.1' };
const result = await sdk.Api.update(input, 54605705.35315007);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Api.remove(-6769023.574184045);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Api.getApiMembers(88573509.82116604);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number | |
offset | number | |
limit | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Api.getApiSdks(
6300474.52682519,
-20605394.52961035,
-59499076.157343686,
);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number | |
offset | number | |
limit | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Api.getApiDocs(
330038.93745316565,
14111021.319987535,
-84164118.19386989,
);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number | |
offset | number | |
limit | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Api.getApiBuilds(
62765820.89400014,
-86992410.87735859,
-99299889.79556446,
);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgSlug | string | |
apiSlug | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
ApiGetApiByOrgSlugAndApiSlug200Response
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Api.getApiByOrgSlugAndApiSlug('laborum est', 'nostrud dolore');
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
description: 'Example Org Description',
domain: 'business.com',
name: 'Example Org',
website: 'https://example.com',
};
const result = await sdk.Org.create(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
OrgGetByCurrentUser200Response
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Org.getByCurrentUser();
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Org.getById(32739767.079175934);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number | |
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
description: 'Example Org Description',
domain: 'example.com',
isAllowedForBeta: true,
name: 'Example Org',
website: 'https://example.com',
};
const result = await sdk.Org.update(input, -45856011.00720038);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Org.remove(71050751.20156235);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Org.getApis(16853190.416517764);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Org.getPayments(-37463280.611082084);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Org.getArtifacts(-36838851.37771221);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Org.getDocs(84577701.66815904);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number | |
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
ad_73: false,
culpa_d: false,
exercitation_4f2: 94123569.38021961,
id_5da: 'dolor est dolore',
in_f: true,
irure_f2c: 'laborum incididunt culpa aliqua quis',
pariatur837: false,
role: 'MEMBER',
userId: 1,
Utac: -46750687.229388356,
};
const result = await sdk.OrgMember.createMember(input, 35333435.987508744);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
OrgMemberGetByOrgId200Response
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.OrgMember.getByOrgId(-42973304.87604341);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
memberId | number | |
orgId | number | |
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = { magna8: 'velit', role: 'MEMBER', ullamco_08: -92582698 };
const result = await sdk.OrgMember.updateMember(input, -26733532.6907534, -47613427.81445328);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
memberId | number | |
orgId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.OrgMember.removeMember(-96264145.33637187, 11877317.071031839);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.OrgMember.leaveOrg(-37779718.23008395);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.OrgMember.enableAllMembers(-940305.147328198);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.OrgMember.disableAllMembers(77775331.11030546);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
aliquip68: 83293463,
artifactType: 'DOC',
bucketKey: 'dolor ad cillum',
bucketName: 'officia aliquip ipsum aute elit',
buildId: 1,
dolor9_: 'consequat labore fugiat ex sed',
laborum_9: -3550044.1756960154,
ut_3e: true,
};
const result = await sdk.Artifact.create(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
buildId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
ArtifactGetArtifacts200Response
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Artifact.getArtifacts(-53259667.14113544);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Artifact.getById(4247015.854546055);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Artifact.remove(-25011723.93495606);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
artifactId: 1,
Duis_: -30547809.240548134,
fileLocation: 'https://my-file.location',
language: 'JAVA',
version: '1.0',
};
const result = await sdk.Sdk.create(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
offset | number | |
limit | number | |
artifactId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Sdk.findSdks(25476204.79595971, -72709706.65334983, 35623554.87777057);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Sdk.getById(-53446244.94250389);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Sdk.remove(36297160.67072436);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgSlug | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|---|---|
apiSlug | string | |
apiVersion | string |
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Doc.getApprovedByOrgSlugAndApiSlug(
'reprehenderit officia eiusmod fugiat magna',
{ apiSlug: 'eiusmod tempor ut', apiVersion: 'in proident cillum culpa' },
);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgSlug | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|---|---|
apiSlug | string | |
apiVersion | string |
Return Type
DocGetAllApprovedByOrgSlugAndApiSlug200Response
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Doc.getAllApprovedByOrgSlugAndApiSlug('velit ut nisi labore', {
apiSlug: 'sint',
apiVersion: 'veniam aute occaecat cillum et',
});
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
ad_479: 74576056.04846683,
apiId: -17516950.320457175,
artifactId: 1,
Duis_2: false,
esse_43e: -89477124.30277397,
eu_8: -15556645.116853878,
fileLocation: 'https://example.com',
fugiat4: 29082178,
previewSlug: 'esse aute',
sed_d6: 'anim irure ad elit ipsum',
sit_f1c: true,
tempora57: -39596042,
version: '1.0.0',
};
const result = await sdk.Doc.create(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
offset | number | |
limit | number | |
artifactId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Doc.findDocs(-45277044.86007291, 50517336.26992151, -86821828.17851585);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
previewSlug | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Doc.approve('sint qui deserunt aute Duis');
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
previewSlug | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Doc.unapprove('reprehenderit ea consequat');
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Doc.getById(29124600.011696383);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Doc.remove(40472090.63856134);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number | |
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = { fileLocation: 'https://example.com', version: '1.0.0' };
const result = await sdk.Doc.update(input, -29464564.162298143);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Doc.getDownloadUrl(-3606925.6346167773);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.User.getCurrentUser();
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
email: 'someone@example.com',
firstName: 'John',
lastName: 'Doe',
password: 'Password123!',
};
const result = await sdk.User.create(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
offset | number | |
limit | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|---|---|
orgId | number | |
search | string |
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.User.getUsers(-98496919.00778347, 92702783.28566363, {
orgId: 60319882.11388376,
search: 'sed',
});
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.User.getById(70554082.80846295);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number | |
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
email: 'someone@example.com',
firstName: 'John',
isEnabled: true,
isLiblabAdmin: true,
lastName: 'Doe',
refreshTokenHash: 'refreshTokenHash',
};
const result = await sdk.User.update(input, 15143246.338607416);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.User.remove(86102174.07376224);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
amet66: true,
culpa49: -27615749.04610002,
et5a9: true,
in_378: -43830207.46886466,
incididuntf23: -59017771,
isSubscribedToEmails: true,
ullamco1: 'consequat in veniam',
};
const result = await sdk.User.updateEmailSubscription(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.User.getUserOrgs();
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.User.getUserApis();
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
email: 'someone@example.com',
ex_2: true,
laborum73: false,
magna_c: false,
occaecatba: -78530073,
password: 'Password123!',
qui_3b: -68156621,
tempor3c: false,
};
const result = await sdk.Auth.signup(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
anim_96c: true,
email: 'someone@example.com',
enim5c: -81025489.72365823,
Lorem2: 'velit id deserunt ullamco',
nulla0: 95985549,
password: 'Password123!',
sed_e4: 'minim deserunt id occaecat',
};
const result = await sdk.Auth.login(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Auth.logout();
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
dolore_fc: false,
refreshToken: 'refreshToken',
sint5ed: 57284659,
ut_: 59134730.923157096,
};
const result = await sdk.Auth.refreshToken(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
ada: false,
do2: false,
email: 'someone@example.com',
laboris_28c: 4090994.427719921,
Lorem5f: 'incididunt quis laboris',
sed_5b_: 68955461.76843745,
Ut_976: false,
};
const result = await sdk.Auth.resetPassword(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = { code: 'code', email: 'someone@example.com', quis__1f: false };
const result = await sdk.Auth.oneTimeLogin(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
culpa_65: -87639890.79108895,
occaecat_a56: 'incididunt elit',
password: 'Password123!',
proident_: 26451778,
quis_29: -64851788.39387191,
};
const result = await sdk.Auth.changePassword(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
amet_f7: -57475031.16615924,
code: 'code',
consequat_a: 46104690.193740875,
email: 'someone@example.com',
};
const result = await sdk.Auth.verifyEmail(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = { dolorbdc: 'culpa', email: 'someone@example.com' };
const result = await sdk.Auth.resendVerifictionEmail(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
expiresAt: '2023-06-01T20:28:07.0Z',
name: 'My token',
scope: ['API', 'DOC', 'SDK', 'BUILD', 'ARTIFACT', 'ORG'],
};
const result = await sdk.Token.create(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
userId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Token.findByUserId(-35089539.626076594);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Token.getById(61508526.13302925);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
id | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Token.remove(-90879058.84059277);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
OrgPlanGetOrgPlanHistory200Response
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.OrgPlan.getOrgPlanHistory(6448048.715268761);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number | |
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
aliquip445: 'labore aliqua sed',
consequat_c1: 38032643,
eu_f: true,
nulla_fd6: -92157232.24646774,
plan: 'COMMUNITY',
};
const result = await sdk.OrgPlan.updateOrgPlan(input, -85753739.36180419);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number | |
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
consequat_ce4: true,
elit_8e: -12250194,
irure_9: -17960712,
qui_ef: false,
returnUrl: 'https://app.liblab.com/',
};
const result = await sdk.OrgPlan.getStripePaymentPortalUrl(input, 68170072.99719834);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
stripeSignature | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Stripe.stripeWebhook('Lorem fugiat minim');
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.HealthCheck.healthCheckControllerCheck();
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = {
metadata: { foo: 'bar' },
name: 'my-event',
userToken: 'velit ea reprehenderit minim',
};
const result = await sdk.Event.track(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
orgId | number | |
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
InvitationResponse InvitationResponse
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = { email: 'someone@example.com', name: 'John Doe', role: 'MEMBER' };
const result = await sdk.Invitation.createInvite(input, 16732389.838797167);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
inviteCode | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Invitation.acceptInvite('magna incididunt nostrud');
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
inviteCode | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Returns a dict object.
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Invitation.declineInvite('Lorem minim adipisicing amet elit');
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
inviteCode | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Invitation.inviteCode('aliquip');
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
offset | number | |
limit | number |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
InvitationGetInvitesByUser200Response
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Invitation.getInvitesByUser(37698660.78296295, -44851302.56129093);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
input | object | Request body. |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const input = { aliquac_: -91834510.84407456, name: 'tag' };
const result = await sdk.Tags.create(input);
console.log(result);
})();
Required Parameters
Name | Type | Description |
---|---|---|
offset | number | |
limit | number | |
searchQuery | string |
Optional Parameters
Optional parameters are passed as part of the last parameter to the method. Ex. {optionalParam1 : 'value1', optionalParam2: 'value2'}
Name | Type | Description |
---|
Return Type
Example Usage Code Snippet
import { Liblab } from './src';
const sdk = new Liblab();
(async () => {
const result = await sdk.Tags.search(-64333966.79884695, 20059536.64084612, 'eu ut');
console.log(result);
})();
FAQs
Liblab
We found that @liblab/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.