npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

pi-access-sdk

v0.6.8

Published

This is a SDK for the PI Access API.

Downloads

438

Readme

Import type and Access class

import {
  Access,
  AccessBase,
  LoginInput,
  LogoutInput,
  RefreshTokenInput,
  RegisterInput,
} from 'pi-access-sdk';

Store the common input in a variable

const commonInput = {
  organization_id: '03e9eacf-0a50-4eef-855e-ab91f97f05d5',
  application_id: 'c80178cb-7b1e-4013-9fea-b4abf4c4cb02',
  client_id: '1ce52ca341',
  client_secret: 'cc0eb7dbb2c663850555',
};

Create a new client instance of AccessBase or AccessAdvanced

const basic = new AccessBase({
  application_id: "f8f5fc52-e6cf-42a9-b0a8-89f5c4e1a6e1",
  organization_id: "e7c80e31-9ce2-47b7-b4de-bc6c95755ff0",
  url: "http://wellteam.me",
});

const advaced = new AccessAdvanced({
  application_id: "f8f5fc52-e6cf-42a9-b0a8-89f5c4e1a6e1",
  organization_id: "e7c80e31-9ce2-47b7-b4de-bc6c95755ff0",
  client_id: "def25c0319",
  client_secret: "de04a1d0279491f26d89",
  url: "http://wellteam.me",
});

Now you can use the client to call the api methods like below

const loginInput: LoginInput = {
  type: 'login-username',
  response_type: 'token',
  username: 'mehedi',
  password: 'mehedi',
  email: '[email protected]',
  phone: '1479503550',
  region: 'US',
  // redirect_uri: '',
  country_code: '',
  session_option: 'clear-all',
};

const loginRes = await client.login(loginInput);
console.log(loginRes.data.data.data.user_id);

you can use sign_in_resp_fields && field_name_mappings to get the user_id from the response

sign_in_resp_fields -> ["user_id"] && field_name_mappings -> {"user_id": "id"}

const logoutInput: LogoutInput = {
  refresh_token: '',
};

const logoutRes = await client.logout(logoutInput);
console.log(logoutRes);
const refreshTokenInput: RefreshTokenInput = {
  refresh_token: '',
  grant_type: 'refresh_token',
};

const refreshTokenRes = await client.refreshToken(refreshTokenInput);
console.log(refreshTokenRes);
const registerInput: RegisterInput = {
  metadata: {
    name: 'onimesh mitra2',
    profile_picture: 'somecdnlink',
    has_business: false,
  },
  sdk_type: '',
  username: 'mehedi',
  password: 'mehedi',
  name: 'Mehedi Hasan',
  first_name: 'Mehedi',
  last_name: 'Hasan',
  email: '[email protected]',
  phone: '1479503550',
  affiliation: '',
  id_card: '',
  region: '',
  provider: '',
  code: '',
  state: '',
  redirect_uri: 'https://example.com/callback',
  method: 'POST',
  email_code: '',
  phone_code: '',
  country_code: 'BD',
  auto_sign_in: true,
  relay_state: '',
  captcha_type: '',
  captcha_token: '',
  mfa_type: '',
  passcode: '',
  recovery_code: '',
};

const registerRes = await client.register(registerInput);
console.log(registerRes);
const getUserRes = await client.getUser({
  user_id: 'cf188dae-bcf5-4069-9b4a-f4800561db31',
  sdk_type: 'frontend',
});
console.log(getUserRes);
const changePasswordRes = await client.changePassword({
  sdk_type: 'frontend',
  user_id: 'cf188dae-bcf5-4069-9b4a-f4800561db31',
  current_password: 'mehedi',
  new_password: 'mehedi',
});
console.log(changePasswordRes);
const forgetPasswordOTPSendRes = await client.forgetPasswordOTPSend({
  sdk_type: 'frontend',
  receiver_type: 'forget-phone',
  receiver: '1479503550',
  channel_type: 'email' | 'phone' //optional
});
console.log(forgetPasswordOTPSendRes);
const forgetPasswordOTPVerifyRes = await client.forgetPasswordOTPVerify({
  sdk_type: 'frontend',
  receiver_type: 'forget-phone',
  receiver: '1479503550',
  code: '597985',
  channel_type: 'email' | 'phone' //optional
});
console.log(forgetPasswordOTPVerifyRes);
const forgetPasswordRes = await client.forgetPassword({
  sdk_type: 'frontend',
  reference: 'n7gaHtXVmc0X',
  password_confirm: 'mehedi',
  password: 'mehedi',
});
console.log({ forgetPasswordRes });
const getOrganizationRes = await client.getOrganization(commonInput);
console.log(getOrganizationRes);
const getApplicationRes = await client.getApplication({
  with_organization: true,
});
console.log(getApplicationRes);