@vibexp/api-client 0.31.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 +8 -0
- package/dist/schema.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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
|
@@ -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