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

ts-retrofit

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-retrofit - npm Package Compare versions

Comparing version 1.10.2 to 1.10.3

7

lib/baseService.js

@@ -201,3 +201,8 @@ "use strict";

if (bodyIndex >= 0) {
data = Object.assign(Object.assign({}, data), args[bodyIndex]);
if (Array.isArray(args[bodyIndex])) {
data = args[bodyIndex];
}
else {
data = Object.assign(Object.assign({}, data), args[bodyIndex]);
}
}

@@ -204,0 +209,0 @@ // @Field

2

package.json
{
"name": "ts-retrofit",
"version": "1.10.2",
"version": "1.10.3",
"description": "A declarative and axios based retrofit implementation for JavaScript and TypeScript.",

@@ -5,0 +5,0 @@ "repository": "https://github.com/nullcc/ts-retrofit",

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