@vibexp/api-client 0.4.0 → 0.5.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.
@@ -1324,6 +1324,10 @@ export type FeedItem = {
1324
1324
  * Server-set timestamp when the item was posted
1325
1325
  */
1326
1326
  posted_at: string;
1327
+ /**
1328
+ * Number of replies to this item. Populated with the real count on list endpoints; always 0 on single-item and create responses.
1329
+ */
1330
+ reply_count: number;
1327
1331
  };
1328
1332
  export type CreateFeedRequest = {
1329
1333
  /**
@@ -1563,6 +1567,14 @@ export type Memory = {
1563
1567
  * ID of the user who owns this memory
1564
1568
  */
1565
1569
  user_id: string;
1570
+ /**
1571
+ * ID of the team this memory belongs to
1572
+ */
1573
+ team_id: string;
1574
+ /**
1575
+ * ID of the project this memory belongs to
1576
+ */
1577
+ project_id: string;
1566
1578
  /**
1567
1579
  * The text content of the memory
1568
1580
  */
@@ -1585,6 +1597,10 @@ export type Memory = {
1585
1597
  * Timestamp when the memory was last updated
1586
1598
  */
1587
1599
  updated_at: string;
1600
+ /**
1601
+ * Version number for optimistic concurrency control
1602
+ */
1603
+ version: number;
1588
1604
  };
1589
1605
  export type CreateMemoryRequest = {
1590
1606
  /**
package/dist/schema.d.ts CHANGED
@@ -5000,6 +5000,11 @@ export interface components {
5000
5000
  * @example 2024-01-15T10:30:00Z
5001
5001
  */
5002
5002
  posted_at: string;
5003
+ /**
5004
+ * @description Number of replies to this item. Populated with the real count on list endpoints; always 0 on single-item and create responses.
5005
+ * @example 3
5006
+ */
5007
+ reply_count: number;
5003
5008
  };
5004
5009
  CreateFeedRequest: {
5005
5010
  /**
@@ -5299,6 +5304,16 @@ export interface components {
5299
5304
  * @example user-123
5300
5305
  */
5301
5306
  user_id: string;
5307
+ /**
5308
+ * @description ID of the team this memory belongs to
5309
+ * @example 01234567-89ab-cdef-0123-456789abcdef
5310
+ */
5311
+ team_id: string;
5312
+ /**
5313
+ * @description ID of the project this memory belongs to
5314
+ * @example 01234567-89ab-cdef-0123-456789abcdef
5315
+ */
5316
+ project_id: string;
5302
5317
  /**
5303
5318
  * @description The text content of the memory
5304
5319
  * @example Remember to update the API documentation when adding new endpoints
@@ -5333,6 +5348,12 @@ export interface components {
5333
5348
  * @example 2024-01-15T14:30:00Z
5334
5349
  */
5335
5350
  updated_at: string;
5351
+ /**
5352
+ * Format: int64
5353
+ * @description Version number for optimistic concurrency control
5354
+ * @example 1
5355
+ */
5356
+ version: number;
5336
5357
  };
5337
5358
  CreateMemoryRequest: {
5338
5359
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibexp/api-client",
3
- "version": "0.4.0",
3
+ "version": "0.5.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": {