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

@becomposable/common

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@becomposable/common - npm Package Compare versions

Comparing version 0.34.0 to 0.35.0

5

lib/types/payload.d.ts
import { FacetSpec } from "./facets.js";
import { InteractionSearchQuery, ObjectSearchQuery, PromptSearchQuery, SimpleSearchQuery } from "./query.js";
import { InteractionSearchQuery, ObjectSearchQuery, ObjectTypeSearchQuery, PromptSearchQuery, SimpleSearchQuery } from "./query.js";
export interface SearchPayload {

@@ -18,2 +18,5 @@ query?: SimpleSearchQuery;

}
export interface ObjectTypeSearchPayload extends SearchPayload {
query?: ObjectTypeSearchQuery;
}
export interface PromptSearchPayload extends SearchPayload {

@@ -20,0 +23,0 @@ query?: PromptSearchQuery;

3

lib/types/query.d.ts

@@ -29,2 +29,5 @@ import { ExecutionRunStatus } from "./interaction.js";

}
export interface ObjectTypeSearchQuery extends SimpleSearchQuery {
chunckable?: boolean;
}
export interface PromptSearchQuery extends SimpleSearchQuery {

@@ -31,0 +34,0 @@ role?: string;

@@ -78,3 +78,11 @@ import { Facet, FacetResult } from "./facets.js";

parent?: string[] | false;
/**
* An ISO date string to use as an anchor start date for the search.
*/
start?: string;
/**
* An ISO date string to use as an anchor end date for the search.
*/
end?: string;
}
//# sourceMappingURL=runs.d.ts.map
{
"name": "@becomposable/common",
"version": "0.34.0",
"version": "0.35.0",
"type": "module",

@@ -5,0 +5,0 @@ "types": "./lib/types/index.d.ts",

import { FacetSpec } from "./facets.js";
import { InteractionSearchQuery, ObjectSearchQuery, PromptSearchQuery, SimpleSearchQuery } from "./query.js";
import { InteractionSearchQuery, ObjectSearchQuery, ObjectTypeSearchQuery, PromptSearchQuery, SimpleSearchQuery } from "./query.js";

@@ -23,2 +23,6 @@ export interface SearchPayload {

export interface ObjectTypeSearchPayload extends SearchPayload {
query?: ObjectTypeSearchQuery;
}
export interface PromptSearchPayload extends SearchPayload {

@@ -25,0 +29,0 @@ query?: PromptSearchQuery;

@@ -34,2 +34,6 @@ import { ExecutionRunStatus } from "./interaction.js";

export interface ObjectTypeSearchQuery extends SimpleSearchQuery {
chunckable?: boolean;
}
export interface PromptSearchQuery extends SimpleSearchQuery {

@@ -36,0 +40,0 @@ role?: string;

@@ -91,2 +91,12 @@ import { Facet, FacetResult } from "./facets.js";

parent?: string[] | false;
/**
* An ISO date string to use as an anchor start date for the search.
*/
start?: string,
/**
* An ISO date string to use as an anchor end date for the search.
*/
end?: string;
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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