New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@oneblink/sdk

Package Overview
Dependencies
Maintainers
4
Versions
511
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oneblink/sdk - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

lib/keys.js

7

changelog.md

@@ -5,2 +5,9 @@ # Changelog

## 0.2.2 (2018-09-25)
### Added
- `Organisations` classes
- `Keys` class
## 0.2.1 (2018-09-04)

@@ -7,0 +14,0 @@

6

index.js

@@ -5,5 +5,9 @@ // @flow

const Forms = require('./lib/forms.js')
const Keys = require('./lib/keys.js')
const Organisations = require('./lib/organisations.js')
module.exports = {
Forms
Forms,
Keys,
Organisations
}

2

package.json
{
"name": "@oneblink/sdk",
"description": "OneBlink SDK to serve as an entry point for all OneBlink Services in NodeJS",
"version": "0.2.1",
"version": "0.2.2",
"bugs": {

@@ -6,0 +6,0 @@ "url": "https://github.com/blinkmobile/oneblink-sdk-js/issues"

@@ -106,2 +106,30 @@ // @flow

}
export type Key = {
id: string,
secret: string | void,
name: string,
privilege: {
'API HOSTING'?: 'DEPLOYMENT',
'PDF'?: 'BUILDER',
'WEB APP HOSTING'?: 'DEPLOYMENT',
'FORMS'?: 'FaaS'
},
links: {
organisations: string
}
}
export type Organisation = {
id: string,
name: string,
formsHostname: string,
formsCloudFrontDistributionOrigin?: string,
beeFormsCustomer: boolean,
createdAt: string,
tags: string[],
links: {
awsAccounts: string[]
}
}
*/
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