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

@replicode/parallax

Package Overview
Dependencies
Maintainers
1
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@replicode/parallax - npm Package Compare versions

Comparing version 1.1.34 to 1.1.35

8

dist/parallax.service.js

@@ -67,7 +67,11 @@ "use strict";

let body = {
userID: userID,
address: address
};
try {
let response = await this.client.post(route, body);
let response = await this.client.post(route, body, {
headers: {
'X-EXTERNAL-ID': userID,
'X-EXTERNAL-TYPE': 'discord'
}
});
let didAdd = response.data;

@@ -74,0 +78,0 @@ return didAdd;

{
"name": "@replicode/parallax",
"version": "1.1.34",
"version": "1.1.35",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/index",

@@ -76,3 +76,2 @@ import { Injectable, Logger } from '@nestjs/common';

let body = {
userID: userID,
address: address

@@ -83,3 +82,8 @@ };

let response:AxiosResponse = await this.client.post(route, body);
let response:AxiosResponse = await this.client.post(route, body, {
headers: {
'X-EXTERNAL-ID': userID,
'X-EXTERNAL-TYPE': 'discord'
}
});
let didAdd: Boolean = response.data as Boolean;

@@ -86,0 +90,0 @@ return didAdd;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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