@becomposable/common
Advanced tools
Comparing version 0.34.0 to 0.35.0
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; |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
231020
4242