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

@vepler/http-sdk

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vepler/http-sdk - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

2

dist/config.d.ts

@@ -8,4 +8,4 @@ interface SDKConfig {

}
export declare const initializeSDK: (config: SDKConfig, env?: 'production' | 'development') => void;
export declare const initializeSDK: (config?: SDKConfig, env?: 'production' | 'development') => void;
export declare const getApiInstance: (service: string) => any;
export {};

@@ -42,2 +42,3 @@ "use strict";

var initializeSDK = function (config, env) {
if (config === void 0) { config = defaultConfig.production; }
if (env === void 0) { env = 'production'; }

@@ -44,0 +45,0 @@ var environmentConfig = defaultConfig[env];

{
"name": "@vepler/http-sdk",
"version": "1.0.5",
"version": "1.0.6",
"description": "The Official Propbar HTTP SDK.",

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

@@ -36,3 +36,3 @@ // config.ts

export const initializeSDK = (config: SDKConfig, env: 'production' | 'development' = 'production') => {
export const initializeSDK = (config: SDKConfig = defaultConfig.production, env: 'production' | 'development' = 'production') => {
const environmentConfig = defaultConfig[env];

@@ -39,0 +39,0 @@

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