ts-retrofit
Advanced tools
Comparing version 1.10.2 to 1.10.3
@@ -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 |
{ | ||
"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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
64746
1261