Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ahrvo-comply-angular-sdk

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ahrvo-comply-angular-sdk

## Usage

  • 1.0.2
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

AhrvoComplyAngularSDK

Usage

Import AhrvoComplyAngularSDKModule in app.module.ts

import { AhrvoComplyAngularSDKModule } from '@ahrvocomply/ahrvo-comply-angular-sdk'

Add AhrvoComplyAngularSDKModule to imports

imports: [ ..., AhrvoComplyAngularSDKModule, ]

In the component file, where we need to use the verification component add the follwing line

<angular-comply-sdk [apikey]="''" [companyId]="" (response)="printOutput($event)"></angular-comply-sdk>

where

  • apikey(input) => api key provided by us,
  • companyId(input) => your company id
  • response(output) => After the processing is complete, we emit a new event which you can bind your function to in place of printOutput Output Response Format { data:any, success:boolean }
We also have exported Response type so you can use that as wellWe also have exported Response type so you can use that as well

import { AhrvoComplyAngularSDKService, Response, } from '@ahrvocomply/ahrvo-comply-angular-sdk'

printOutput(event: Response) { console.log('Repsoss', event); }

FAQs

Package last updated on 08 Feb 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc