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

@zontle/rp-client-typescript

v0.4.4

Published

This is a plain JS/TS library, it doesn't rely on any specific framework. <br> As such, it shouldn't have any compatibility issues with other frameworks.

Downloads

2

Readme

Javascript/Typescript SDK for Santander Digital Trust Protocol

This is a plain JS/TS library, it doesn't rely on any specific framework. As such, it shouldn't have any compatibility issues with other frameworks.

How to use it

Import the dependency as a dependency

npm install @gruposantander/rp-client-typescript

The first step is to create the client and set it up:

const verifyidclient = await VerifiedIdClient.createInstance({
  wellKnownURI: 'https://live.iamid.io/.well-known/openid-configuration',
  privateJWK: resolve('./secrets/privateKey.json'),
  clientId: '12345678-aaaa-bbbb-cccc-1234567890ab'
}) // creating the client
await verifyidclient.setUpClient() // running all the setup steps (querying the well-known endpoint and storing the public jwks)

After the step above, it is possible to initiate the flow straight away, by preparing the request and then send it:

const claims = new Claims()
claims.email().withEssential(true).withPurpose('email purpose')
claims.givenName().withIAL(2)
claims.lastYearMoneyIn().withPurpose('Last year money in purpose')

const assertionClaims = new AssertionClaims()
assertionClaims.age().gt(21).withPurpose('age purpose')
assertionClaims.address()
  .withAssertion(Address.postalCode().eq('MK1 1AA'))
  .withAssertion(Address.country().eq('UK'))
  .withPurpose('Address purpose')

assertionClaims.lastYearMoneyIn()
  .withPurpose('Last year money in purpose')
  .withAssertion(Balance.amount().gt(200))

const request = new InitiateAuthorizeRequestBuilder()
  .withRedirectURI('com.myApp://callback')
  .withAssertionClaims(assertionClaims)
  .withClaims(claims)
  .withPurpose('top level purpose')
  .build()

While InitiateAuthorizeRequestBuilder follows a builder pattern, Claims and AssertionClaims use a different syntax to help readability

After the claims have been set up, the /initiate-authorize can be invoked:

const initiateAuthorizeResponse = await verifyidclient.initiateAuthorize(request)

From the above reponse, initiateAuthorizeResponse.redirectionUri can be used to redirect users to the consent journey:

https://live.iamid.io/web/login?request_uri=urn:op.iamid.io:JDAQ9YwMSLcCbiUz0Wq0HGjpu-wr4HngFDCv8tTkQa-

The consent process (happening in a browser, out of scope for this SDK) finishes with an authorization code:

302 com.myApp://callback?code=Ian06qtqg5PNUhfRUy9UFLwx4T7DIzodBLiFjoFYWmr

This code can then be used to invoke /token:

const request = new TokenRequestBuilder()
  .withRedirectUri('com.myApp://callback')
  .withCode('Ian06qtqg5PNUhfRUy9UFLwx4T7DIzodBLiFjoFYWmr')
  .build()

const token = await verifyidclient.token(request)

Supported Claims - Sharing

The following claims can be requested for sharing:

const sharingClaims = new Claims()

sharingClaims.givenName()
sharingClaims.familyName()
sharingClaims.birthdate()
sharingClaims.gender()
sharingClaims.countryOfBirth()
sharingClaims.title()
sharingClaims.nationality()
sharingClaims.civilStatus()
sharingClaims.age()
sharingClaims.companyRegisteredName()
sharingClaims.companyTradeName()
sharingClaims.companyStartDate()
sharingClaims.companyEndDate()
sharingClaims.companyType()
sharingClaims.companyCountryIncorporation()
sharingClaims.companyAge()
sharingClaims.companyOperating()
sharingClaims.phoneNumber()
sharingClaims.email()
sharingClaims.address()
sharingClaims.totalBalance()
sharingClaims.lastYearMoneyIn()
sharingClaims.lastQuarterMoneyIn()
sharingClaims.averageMonthlyMoneyIn()
sharingClaims.passportId()
sharingClaims.drivingLicenseId()
sharingClaims.nationalCardId()

For each claim, a specific value purpose, ial and/or essential can be specified:

sharingClaims.givenName().withPurpose("given name purpose").withIAL(3).withEssential(true)
sharingClaims.familyName().withIAL(TWO).withPurpose("family name purpose")
sharingClaims.birthdate().withEssential(false)
sharingClaims.gender()

None of these attributes are mandatory and they can be applied in any order

Supported Claims - Verifying

The SDK supports the same verifying claims as it does for sharing, though the data model is quite different

There are three types of assertions in this SDK: simple, comparative and complex.

  • Simple assertions: they support only the .eq (equal assertion), e.g.
    assertionClaims.email().eq("[email protected]")
    which translates into Verify that the email is "[email protected]"
  • Comparative assertions: they extend simple assertions with the .gt, .gte, .lt and .lte operations, e.g.:
     assertionClaims.age().gte(18)
    which translates into Verify that the age is greater or equal than 18
  • Complex claims: they include different properties, that can be individually asserted, for example:
    assertionClaims.totalBalance()
        .withAssertion(Balance.currency().equal(Currency.getInstance("GBP")))
        .withAssertion(Balance.amount().gt(BigDecimal.valueOf(99.99)))
    which translates into Verify that the balance currency is equal to GBP and the amount is greater than 99.99. Depending on the individual claim, the property can either support only .eq or the entire set of comparisons

Similarly to sharing claims, purpose, ial and/or essential can be attached to verifying claims:

assertionClaims.address()
    .withAssertion(Address.country().eq("UK"))
    .withAssertion(Address.postalCode().eq("MK11AA"))
    .withPurpose("This is why RP is verifying your address")

To keep the API simple and concise, Balance and Address helpers have been created with the following methods:

Balance.currency()
Balance.amount()
Address.formatted() 
Address.streetAddress()
Address.postalCode()
Address.locality()
Address.region()
Address.country()

PKCE and nonce support

This SDK supports nonce verification and PKCE. Depending on the scenario one or both of them will be automatically enforced.

  • Nonce: nonces can be passed as part of the InitiateAuthorizeRequest object:
     const request = new InitiateAuthorizeRequestBuilder()
       .withRedirectURI('com.myApp://callback')
       .withAssertionClaims(assertionClaims)
       .withClaims(claims)
       .withPurpose('top level purpose')
       .withNonce('nonce-1111')
       .build()
    If such a value is not passed, the SDK will create one and will return it as part of the response object from the initiateAuthorize method. Regardless of whether the nonce is automatically or manually generated, such value will need to be passed when invoking the token method.
  • PKCE: similarly to nonce, a code challenge can be passed:
    InitiateAuthorizeRequest request = InitiateAuthorizeRequest.builder()
        .redirectUri("https://example.com/callback")
        .claims(idClaims)
        .assertionClaims(assertionClaims)
        .codeChallenge("ii2ebegd173dg")
        .build()
    Different to the nonce case, a code verifier will be automatically generated (and the challenge calculated) if not passed to it and the redirectURI is a deep link. If a challenge is passed or a verifier is generated, the verifier needs to be passed when invoking the token method:
     TokenRequest tokenRequest = TokenRequest.builder()
         .redirectUri("com.myApp://callback")
         .authorizationCode("27IyhbWvL5uGY61f69A-RlEl7N2qRLm5vQ7_mO0tRGH")
         .codeVerifier("H-jwul2I2vbDb90ll-lfl14LXtES9lqZvgtiX3WYF44")
         .build()