@vibexp/api-client 0.1.0 → 0.2.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.
@@ -1511,6 +1511,10 @@ export type Memory = {
1511
1511
  * The text content of the memory
1512
1512
  */
1513
1513
  text: string;
1514
+ /**
1515
+ * Current lifecycle status of the memory
1516
+ */
1517
+ status: 'active' | 'draft' | 'archived';
1514
1518
  /**
1515
1519
  * Additional metadata as key-value pairs
1516
1520
  */
@@ -1531,6 +1535,10 @@ export type CreateMemoryRequest = {
1531
1535
  * The text content of the memory
1532
1536
  */
1533
1537
  text: string;
1538
+ /**
1539
+ * Initial lifecycle status of the memory (defaults to active)
1540
+ */
1541
+ status?: 'active' | 'draft' | 'archived';
1534
1542
  /**
1535
1543
  * Additional metadata as key-value pairs
1536
1544
  */
@@ -1543,6 +1551,10 @@ export type UpdateMemoryRequest = {
1543
1551
  * Updated text content of the memory
1544
1552
  */
1545
1553
  text?: string;
1554
+ /**
1555
+ * Updated lifecycle status of the memory
1556
+ */
1557
+ status?: 'active' | 'draft' | 'archived';
1546
1558
  /**
1547
1559
  * Updated metadata as key-value pairs
1548
1560
  */
@@ -4803,6 +4815,10 @@ export type ListMemoriesData = {
4803
4815
  * Filter by metadata value (requires metadata_key)
4804
4816
  */
4805
4817
  metadata_value?: string;
4818
+ /**
4819
+ * Filter by lifecycle status. When omitted, archived memories are hidden (active and draft are returned); an explicit value returns only that status. Returns 400 for unknown values.
4820
+ */
4821
+ status?: 'active' | 'draft' | 'archived';
4806
4822
  /**
4807
4823
  * Field to sort results by. Allowed: text, updated_at, created_at. Returns 400 for unknown values.
4808
4824
  */
@@ -4886,6 +4902,10 @@ export type SearchMemoriesByMetadataData = {
4886
4902
  * Additional text search in memory content
4887
4903
  */
4888
4904
  search?: string;
4905
+ /**
4906
+ * Filter by lifecycle status. When omitted, archived memories are hidden (active and draft are returned); an explicit value returns only that status. Returns 400 for unknown values.
4907
+ */
4908
+ status?: 'active' | 'draft' | 'archived';
4889
4909
  /**
4890
4910
  * Page number
4891
4911
  */
package/dist/schema.d.ts CHANGED
@@ -5225,6 +5225,12 @@ export interface components {
5225
5225
  * @example Remember to update the API documentation when adding new endpoints
5226
5226
  */
5227
5227
  text: string;
5228
+ /**
5229
+ * @description Current lifecycle status of the memory
5230
+ * @example active
5231
+ * @enum {string}
5232
+ */
5233
+ status: "active" | "draft" | "archived";
5228
5234
  /**
5229
5235
  * @description Additional metadata as key-value pairs
5230
5236
  * @example {
@@ -5255,6 +5261,12 @@ export interface components {
5255
5261
  * @example Remember to update the API documentation when adding new endpoints
5256
5262
  */
5257
5263
  text: string;
5264
+ /**
5265
+ * @description Initial lifecycle status of the memory (defaults to active)
5266
+ * @example active
5267
+ * @enum {string}
5268
+ */
5269
+ status?: "active" | "draft" | "archived";
5258
5270
  /**
5259
5271
  * @description Additional metadata as key-value pairs
5260
5272
  * @example {
@@ -5273,6 +5285,12 @@ export interface components {
5273
5285
  * @example Updated reminder to include versioning in API documentation
5274
5286
  */
5275
5287
  text?: string;
5288
+ /**
5289
+ * @description Updated lifecycle status of the memory
5290
+ * @example archived
5291
+ * @enum {string}
5292
+ */
5293
+ status?: "active" | "draft" | "archived";
5276
5294
  /**
5277
5295
  * @description Updated metadata as key-value pairs
5278
5296
  * @example {
@@ -9403,6 +9421,8 @@ export interface operations {
9403
9421
  metadata_key?: string;
9404
9422
  /** @description Filter by metadata value (requires metadata_key) */
9405
9423
  metadata_value?: string;
9424
+ /** @description Filter by lifecycle status. When omitted, archived memories are hidden (active and draft are returned); an explicit value returns only that status. Returns 400 for unknown values. */
9425
+ status?: "active" | "draft" | "archived";
9406
9426
  /** @description Field to sort results by. Allowed: text, updated_at, created_at. Returns 400 for unknown values. */
9407
9427
  sort_by?: "text" | "updated_at" | "created_at";
9408
9428
  /** @description Sort direction (asc or desc, default desc) */
@@ -9495,6 +9515,8 @@ export interface operations {
9495
9515
  metadata_value: string;
9496
9516
  /** @description Additional text search in memory content */
9497
9517
  search?: string;
9518
+ /** @description Filter by lifecycle status. When omitted, archived memories are hidden (active and draft are returned); an explicit value returns only that status. Returns 400 for unknown values. */
9519
+ status?: "active" | "draft" | "archived";
9498
9520
  /** @description Page number */
9499
9521
  page?: number;
9500
9522
  /** @description Items per page */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibexp/api-client",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Typed VibeXP API client generated from the OpenAPI spec (openapi-fetch main entrypoint, axios SDK at ./axios)",
5
5
  "license": "MIT",
6
6
  "repository": {