Socket
Socket
Sign inDemoInstall

@qdrant/openapi-typescript-fetch

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qdrant/openapi-typescript-fetch - npm Package Compare versions

Comparing version 1.2.5 to 1.2.6

7

dist/cjs/fetcher.js

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

if (Number.isInteger(val) && !Number.isSafeInteger(val)) {
return BigInt(context.source);
try {
return BigInt(context.source);
}
catch {
return val;
}
}

@@ -13,0 +18,0 @@ return val;

@@ -16,3 +16,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

if (Number.isInteger(val) && !Number.isSafeInteger(val)) {
return BigInt(context.source);
try {
return BigInt(context.source);
}
catch (_a) {
return val;
}
}

@@ -19,0 +24,0 @@ return val;

@@ -7,3 +7,8 @@ import { ApiError, } from './types.js';

if (Number.isInteger(val) && !Number.isSafeInteger(val)) {
return BigInt(context.source);
try {
return BigInt(context.source);
}
catch {
return val;
}
}

@@ -10,0 +15,0 @@ return val;

2

package.json
{
"name": "@qdrant/openapi-typescript-fetch",
"description": "A typed fetch client for openapi-typescript",
"version": "1.2.5",
"version": "1.2.6",
"engines": {

@@ -6,0 +6,0 @@ "node": ">=18.0.0",

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