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

@byhealth/data-reporter

Package Overview
Dependencies
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@byhealth/data-reporter - npm Package Compare versions

Comparing version 1.0.0-beta.5 to 1.0.0-beta.6

22

dist/index.cjs.js

@@ -13,3 +13,3 @@ 'use strict';

const config = {
SDK_VERSION: "1.0.0-beta.5",
SDK_VERSION: "1.0.0-beta.6",
DEBUG: false,

@@ -359,10 +359,14 @@ API_URL: 'https://trk.by-health.com/trk-api/trk/data',

send({ token, data }) {
return wx.request({
url: config.API_URL,
method: 'POST',
header: {
'content-type': 'application/json',
'trk-project': token,
},
data,
return new Promise((resolve, reject) => {
wx.request({
url: config.API_URL,
method: 'POST',
header: {
'content-type': 'application/json',
'trk-project': token,
},
data,
success: () => resolve(true),
error: () => resolve(false),
});
});

@@ -369,0 +373,0 @@ }

@@ -11,3 +11,3 @@ import { nanoid } from 'nanoid';

const config = {
SDK_VERSION: "1.0.0-beta.5",
SDK_VERSION: "1.0.0-beta.6",
DEBUG: false,

@@ -357,10 +357,14 @@ API_URL: 'https://trk.by-health.com/trk-api/trk/data',

send({ token, data }) {
return wx.request({
url: config.API_URL,
method: 'POST',
header: {
'content-type': 'application/json',
'trk-project': token,
},
data,
return new Promise((resolve, reject) => {
wx.request({
url: config.API_URL,
method: 'POST',
header: {
'content-type': 'application/json',
'trk-project': token,
},
data,
success: () => resolve(true),
error: () => resolve(false),
});
});

@@ -367,0 +371,0 @@ }

{
"name": "@byhealth/data-reporter",
"version": "1.0.0-beta.5",
"version": "1.0.0-beta.6",
"description": "",

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

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