Socket
Socket
Sign inDemoInstall

@ahrvocomply/ahrvo-comply-angular-sdk

Package Overview
Dependencies
1
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ahrvocomply/ahrvo-comply-angular-sdk

## Usage


Version published
Maintainers
2

Readme

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

Last updated on 15 Feb 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc