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

influx

Package Overview
Dependencies
Maintainers
2
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

influx - npm Package Compare versions

Comparing version 5.9.5 to 5.9.6

8

lib/src/index.d.ts

@@ -766,4 +766,8 @@ /// <reference types="node" />

writeMeasurement(measurement: string, points: IPoint[], options?: IWriteOptions): Promise<void>;
query<T>(query: string[], options?: IQueryOptions): Promise<Array<IResults<T>>>;
query<T>(query: string, options?: IQueryOptions): Promise<IResults<T>>;
query<T>(query: string[], options?: IQueryOptions): Promise<Array<IResults<T & {
time: grammar.INanoDate;
}>>>;
query<T>(query: string, options?: IQueryOptions): Promise<IResults<T & {
time: grammar.INanoDate;
}>>;
/**

@@ -770,0 +774,0 @@ * QueryRaw functions similarly to .query() but it does no fancy

@@ -0,1 +1,2 @@

import type { INanoDate } from "./grammar";
import { TimePrecision } from "./grammar";

@@ -111,3 +112,7 @@ /**

*/
export declare function parse<T>(res: IResponse, precision?: TimePrecision): Array<IResults<T>> | IResults<T>;
export declare function parse<T>(res: IResponse, precision?: TimePrecision): Array<IResults<T & {
time: INanoDate;
}>> | IResults<T & {
time: INanoDate;
}>;
/**

@@ -114,0 +119,0 @@ * ParseSingle asserts that the response contains a single result,

{
"name": "influx",
"version": "5.9.5",
"version": "5.9.6",
"description": "InfluxDB Client",

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

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