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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@mojaloop/dfsp-identity

v0.10.7

Published

DFSP Identity service

Downloads

13

Readme

Identity Service API


Identity Service is used for managing identity related data, like sessions, images, PINs, etc. This service contains information about all the available actions and wich roles can perform them.

Roles can be one of the following:

  • common - Default roles;
  • maker - Batch payment maker role;
  • checker - Batch payment checker role;

Actions are defined as follow:

  • bulk.batch.add - Create new batch;
  • bulk.batch.edit - Edit batch;
  • bulk.batch.fetch - Fetch batches by criteria;
  • bulk.batch.get - Get batch details;
  • bulk.batch.reject - Reject batch;
  • bulk.batch.disable - Disable batch;
  • bulk.batch.pay - Pay batch;
  • bulk.batch.check - Check batch;
  • bulk.batch.ready - Mark batch as ready;
  • bulk.batch.delete - Mark batch as deleted;
  • bulk.batch.process - Process batch;
  • bulk.payment.check - Check payment details;
  • bulk.payment.disable - Disable payment;
  • bulk.payment.edit - Edit payment;
  • bulk.payment.fetch - Fetch payments;
  • bulk.payment.add - Create payment;
  • bulk.paymentStatus.fetch - Fetch list with payment statuses;
  • bulk.batchStatus.fetch - Fetch list with batch statuse;
  • core.transaltion.fetch - Translation fetch;
  • rule.rule.fetch - Rule fetch;
  • rule.item.fetch - Item fetch;
  • rule.rule.add - Rule add;
  • rule.rule.edit - Rule edit;
  • ledger.account.fetch - Fetch accounts;

Identity service has exposed the following private API calls:

Login action

  • URL

    /login

  • Method

    POST

  • Data Params

    Required

    • actorId [string] - Actor id
    • username [string] - Username
    • password [string] - Login password
    • sessionId [string] - Generated session id
  • Success Response

    • Code: 200 Content
      • identity.check [json] - json containing following fields
        • actorId [string] - Actor id
        • sessionId [string] - Session id
      • permission.get [json] - json containing following fields
        • actionId [string]- action id
        • objectId [string] - object id
        • description [string] - action description
      • language [json] - json with user language
      • localisation [json] - json with the following fields
        • dateFormat [string] - Date format
        • numberFormat [string] - Number format
      • roles [json] - json containing user roles
      • screenHeader [string] - Screen header

Identity add

  • URL

    /rpc/identity/add

  • Method

    POST

  • Data Params

    Required

    • actorId [string] - Actor id
    • type [string] - Type
    • identifier [string] - User identifier
    • algorithm [string] - Used algorithm
    • params [string] - Input params
    • value [string] - Input value
    • roles [string array] - Array of role names
  • Success Response

    • Code: 200 Content
      • actor [json] - json containing following fields
        • actorId [string] - Actor id

Identity close session

  • URL

    /rpc/identity/closeSession

  • Method

    POST

  • Data Params

    Required

    • actorId [string] - Actor id
    • sessionId [string] - Generated session id
  • Success Response

    • Code: 200 Content
      • data [json] - json containing empty array

Identity get

  • URL

    /rpc/identity/get

  • Method

    POST

  • Data Params

    Required

    • username [string] - Username
    • actorId [string] - Actor id
    • type [string] - Type: password/ussd
  • Success Response

    • Code: 200 Content
      • hashParams [json] - json containing following fields
        • params [string] - params
        • algorithm [string] - algorithm
        • actorId [string] - Actor id
        • type [string] - Type: password/ussd
      • roles [json] - json containing all assigned roles for this actorId