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

@turbopuffer/turbopuffer

Package Overview
Dependencies
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@turbopuffer/turbopuffer - npm Package Compare versions

Comparing version 0.2.2 to 0.3.0

14

dist/turbopuffer.d.ts

@@ -25,8 +25,9 @@ /**

export type FilterOperator = "Eq" | "NotEq" | "In" | "NotIn" | "Lt" | "Lte" | "Gt" | "Gte" | "Glob" | "NotGlob" | "IGlob" | "NotIGlob" | "And" | "Or";
export type FilterFieldsOperator = "And" | "Or";
export type FilterValue = Exclude<AttributeType, null>;
export type FilterEntry = FilterOperator | FilterValue;
export type FilterParam = FixedLengthArray<FilterEntry | FilterEntry[], 2>;
export type Filters = {
[key: string]: FilterParam[];
export type FilterParam = [FilterOperator, Array<FilterParam> | FilterValue];
export type FilterFields = {
[key: string]: FilterParam;
};
export type Filters = FilterFields | [FilterFieldsOperator, Filters | Array<Filters>];
export type QueryResults = {

@@ -147,7 +148,2 @@ id: Id;

}
interface FixedLengthArray<T extends any, L extends number> extends Array<T> {
0: T;
length: L;
}
export {};
//# sourceMappingURL=turbopuffer.d.ts.map
{
"name": "@turbopuffer/turbopuffer",
"version": "0.2.2",
"version": "0.3.0",
"description": "Official Typescript API client library for turbopuffer.com",

@@ -5,0 +5,0 @@ "scripts": {

@@ -47,3 +47,3 @@ The **official TypeScript SDK** for Turbopuffer.

filters: {
numbers: [["In", [2, 4]]],
numbers: ["In", [2, 4]],
},

@@ -50,0 +50,0 @@ });

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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