@vibexp/api-client 0.30.0 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/axios/types.gen.d.ts +12 -4
- package/dist/schema.d.ts +8 -4
- package/package.json +1 -1
|
@@ -291,7 +291,7 @@ export type Prompt = {
|
|
|
291
291
|
/**
|
|
292
292
|
* Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses.
|
|
293
293
|
*/
|
|
294
|
-
related
|
|
294
|
+
related?: Array<RelatedResource>;
|
|
295
295
|
/**
|
|
296
296
|
* Computed embedding-similarity neighborhood of this resource (up to 5), derived live at read time from vector similarity — NOT stored edges and distinct from `related`. Populated on the detail GET; empty otherwise.
|
|
297
297
|
*/
|
|
@@ -1238,7 +1238,7 @@ export type Artifact = {
|
|
|
1238
1238
|
/**
|
|
1239
1239
|
* Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses.
|
|
1240
1240
|
*/
|
|
1241
|
-
related
|
|
1241
|
+
related?: Array<RelatedResource>;
|
|
1242
1242
|
/**
|
|
1243
1243
|
* Computed embedding-similarity neighborhood of this resource (up to 5), derived live at read time from vector similarity — NOT stored edges and distinct from `related`. Populated on the detail GET; empty otherwise.
|
|
1244
1244
|
*/
|
|
@@ -1828,7 +1828,7 @@ export type Memory = {
|
|
|
1828
1828
|
/**
|
|
1829
1829
|
* Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses.
|
|
1830
1830
|
*/
|
|
1831
|
-
related
|
|
1831
|
+
related?: Array<RelatedResource>;
|
|
1832
1832
|
/**
|
|
1833
1833
|
* Computed embedding-similarity neighborhood of this resource (up to 5), derived live at read time from vector similarity — NOT stored edges and distinct from `related`. Populated on the detail GET; empty otherwise.
|
|
1834
1834
|
*/
|
|
@@ -2055,7 +2055,7 @@ export type Blueprint = {
|
|
|
2055
2055
|
/**
|
|
2056
2056
|
* Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses.
|
|
2057
2057
|
*/
|
|
2058
|
-
related
|
|
2058
|
+
related?: Array<RelatedResource>;
|
|
2059
2059
|
/**
|
|
2060
2060
|
* Computed embedding-similarity neighborhood of this resource (up to 5), derived live at read time from vector similarity — NOT stored edges and distinct from `related`. Populated on the detail GET; empty otherwise.
|
|
2061
2061
|
*/
|
|
@@ -8171,6 +8171,10 @@ export type ListFeedItemsByFeedData = {
|
|
|
8171
8171
|
* Filter by AI assistant name
|
|
8172
8172
|
*/
|
|
8173
8173
|
ai_assistant_name?: string;
|
|
8174
|
+
/**
|
|
8175
|
+
* Search in feed item title and content (case-insensitive substring)
|
|
8176
|
+
*/
|
|
8177
|
+
search?: string;
|
|
8174
8178
|
/**
|
|
8175
8179
|
* Filter by archived status: 'true' (archived only), 'false' (active only, default), 'all'
|
|
8176
8180
|
*/
|
|
@@ -8266,6 +8270,10 @@ export type ListFeedItemsData = {
|
|
|
8266
8270
|
* Filter by AI assistant name
|
|
8267
8271
|
*/
|
|
8268
8272
|
ai_assistant_name?: string;
|
|
8273
|
+
/**
|
|
8274
|
+
* Search in feed item title and content (case-insensitive substring)
|
|
8275
|
+
*/
|
|
8276
|
+
search?: string;
|
|
8269
8277
|
/**
|
|
8270
8278
|
* Filter by archived status: 'true' (archived only), 'false' (active only, default), 'all'
|
|
8271
8279
|
*/
|
package/dist/schema.d.ts
CHANGED
|
@@ -4225,7 +4225,7 @@ export interface components {
|
|
|
4225
4225
|
*/
|
|
4226
4226
|
version: number;
|
|
4227
4227
|
/** @description Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses. */
|
|
4228
|
-
related
|
|
4228
|
+
related?: components["schemas"]["RelatedResource"][];
|
|
4229
4229
|
/** @description Computed embedding-similarity neighborhood of this resource (up to 5), derived live at read time from vector similarity — NOT stored edges and distinct from `related`. Populated on the detail GET; empty otherwise. */
|
|
4230
4230
|
similar?: components["schemas"]["SimilarResource"][];
|
|
4231
4231
|
};
|
|
@@ -5484,7 +5484,7 @@ export interface components {
|
|
|
5484
5484
|
[key: string]: unknown;
|
|
5485
5485
|
};
|
|
5486
5486
|
/** @description Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses. */
|
|
5487
|
-
related
|
|
5487
|
+
related?: components["schemas"]["RelatedResource"][];
|
|
5488
5488
|
/** @description Computed embedding-similarity neighborhood of this resource (up to 5), derived live at read time from vector similarity — NOT stored edges and distinct from `related`. Populated on the detail GET; empty otherwise. */
|
|
5489
5489
|
similar?: components["schemas"]["SimilarResource"][];
|
|
5490
5490
|
};
|
|
@@ -6255,7 +6255,7 @@ export interface components {
|
|
|
6255
6255
|
*/
|
|
6256
6256
|
version: number;
|
|
6257
6257
|
/** @description Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses. */
|
|
6258
|
-
related
|
|
6258
|
+
related?: components["schemas"]["RelatedResource"][];
|
|
6259
6259
|
/** @description Computed embedding-similarity neighborhood of this resource (up to 5), derived live at read time from vector similarity — NOT stored edges and distinct from `related`. Populated on the detail GET; empty otherwise. */
|
|
6260
6260
|
similar?: components["schemas"]["SimilarResource"][];
|
|
6261
6261
|
};
|
|
@@ -6554,7 +6554,7 @@ export interface components {
|
|
|
6554
6554
|
content_sha?: string;
|
|
6555
6555
|
source?: components["schemas"]["BlueprintSource"];
|
|
6556
6556
|
/** @description Depth-1 typed neighborhood of this resource — the relations touching it in both directions, newest first, capped at 20. Typed summaries only, never bodies. Populated on the detail GET; empty in list responses. */
|
|
6557
|
-
related
|
|
6557
|
+
related?: components["schemas"]["RelatedResource"][];
|
|
6558
6558
|
/** @description Computed embedding-similarity neighborhood of this resource (up to 5), derived live at read time from vector similarity — NOT stored edges and distinct from `related`. Populated on the detail GET; empty otherwise. */
|
|
6559
6559
|
similar?: components["schemas"]["SimilarResource"][];
|
|
6560
6560
|
};
|
|
@@ -14542,6 +14542,8 @@ export interface operations {
|
|
|
14542
14542
|
project_id?: string;
|
|
14543
14543
|
/** @description Filter by AI assistant name */
|
|
14544
14544
|
ai_assistant_name?: string;
|
|
14545
|
+
/** @description Search in feed item title and content (case-insensitive substring) */
|
|
14546
|
+
search?: string;
|
|
14545
14547
|
/** @description Filter by archived status: 'true' (archived only), 'false' (active only, default), 'all' */
|
|
14546
14548
|
archived?: "true" | "false" | "all";
|
|
14547
14549
|
/** @description Page number (default 1) */
|
|
@@ -14663,6 +14665,8 @@ export interface operations {
|
|
|
14663
14665
|
project_id?: string;
|
|
14664
14666
|
/** @description Filter by AI assistant name */
|
|
14665
14667
|
ai_assistant_name?: string;
|
|
14668
|
+
/** @description Search in feed item title and content (case-insensitive substring) */
|
|
14669
|
+
search?: string;
|
|
14666
14670
|
/** @description Filter by archived status: 'true' (archived only), 'false' (active only, default), 'all' */
|
|
14667
14671
|
archived?: "true" | "false" | "all";
|
|
14668
14672
|
/** @description Page number (default 1) */
|
package/package.json
CHANGED