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

@nftx/query

Package Overview
Dependencies
Maintainers
0
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nftx/query - npm Package Compare versions

Comparing version 3.7.3 to 3.7.4

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [3.7.4](https://github.com/NFTX-project/nftxjs/compare/v3.7.3...v3.7.4) (2024-07-22)
### Bug Fixes
* dont force multpart/form-data ([652cca0](https://github.com/NFTX-project/nftxjs/commit/652cca0bac5bb2fd993ae488b25a4206017017cf))
## [3.7.3](https://github.com/NFTX-project/nftxjs/compare/v3.7.2...v3.7.3) (2024-07-22)

@@ -8,0 +19,0 @@

3

dist/cjs/query.js

@@ -114,3 +114,4 @@ 'use strict';

if (sourceData instanceof FormData) {
headers['Content-Type'] = 'multipart/form-data';
// Don't need to set the content type for a raw FormData instance
// headers['Content-Type'] = 'multipart/form-data';
} else if (sourceData && typeof sourceData === 'object') {

@@ -117,0 +118,0 @@ headers['Content-Type'] = 'application/json';

@@ -110,3 +110,4 @@ /** Processes a graphql string

if (sourceData instanceof FormData) {
headers['Content-Type'] = 'multipart/form-data';
// Don't need to set the content type for a raw FormData instance
// headers['Content-Type'] = 'multipart/form-data';
} else if (sourceData && typeof sourceData === 'object') {

@@ -113,0 +114,0 @@ headers['Content-Type'] = 'application/json';

{
"name": "@nftx/query",
"version": "3.7.3",
"version": "3.7.4",
"description": "",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/NFTX-project/nftxjs",

@@ -130,3 +130,4 @@ type Fetch = typeof fetch;

if (sourceData instanceof FormData) {
headers['Content-Type'] = 'multipart/form-data';
// Don't need to set the content type for a raw FormData instance
// headers['Content-Type'] = 'multipart/form-data';
} else if (sourceData && typeof sourceData === 'object') {

@@ -133,0 +134,0 @@ headers['Content-Type'] = 'application/json';

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