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

unb-api

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unb-api - npm Package Compare versions

Comparing version 1.0.5 to 1.1.0

eslintrc.js

9

package.json
{
"name": "unb-api",
"version": "1.0.5",
"version": "1.1.0",
"description": "API wrapper for UnbelievaBoat Discord Bot API",
"main": "src/index.js",
"types": "typings/index.d.ts",
"scripts": {
"test": "tslint 'typings/*.ts'"
},
"types": "index.d.ts",
"repository": {

@@ -24,3 +21,3 @@ "type": "git",

"@types/node": "^10.0.7",
"tslint": "^5.8.0",
"eslint": "^6.7.2",
"typescript": "^2.6.2"

@@ -27,0 +24,0 @@ },

@@ -13,3 +13,3 @@ # UnbelievaBoat API

## Documentation
Full API documentation is located at [https://unb.pizza/api/docs](https://unb.pizza/api/docs)
Full API documentation is located at [https://unbelievaboat.com/api/docs](https://unbelievaboat.com/api/docs)

@@ -19,3 +19,3 @@ ### Example

const { Client } = require('unb-api');
const client = new Client('TOKEN'); // Get your API token from https://unb.pizza/api/docs
const client = new Client('TOKEN'); // Get your API token from https://unbelievaboat.com/api/docs

@@ -66,2 +66,2 @@ const guildID = '305129477627969547';

## Support
[**Discord Server**](https://discord.gg/YMJ2dGp)
[**Discord Server**](https://discord.gg/YMJ2dGp)
module.exports = {
version: require('../package').version,
Client: require('./lib/client'),
Client: require('./lib/Client'),
User: require('./lib/structures/User')
};

@@ -37,6 +37,15 @@ /**

Object.defineProperty(this, 'rawData', {value: data});
/**
* Raw data response
* @type {object}
*/
Object.defineProperty(this, 'rawData', { value: data });
}
get id() {
return this.user_id;
}
}
module.exports = User;
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