@@ -382,10 +382,10 @@ export interface MemoryUpdateParams {
382382
383383 /**
384384 * Body param: Custom metadata for filtering. Keys must be alphanumeric with
385- * underscores, max 64 chars. Values must be string, number, or boolean . Will be
386- * merged with existing metadata.
385+ * underscores, max 64 chars. Values must be string, number, boolean, or null . Will
386+ * be merged with existing metadata.
387387 */
388- metadata ?: { [ key : string ] : string | number | boolean } | unknown | null ;
388+ metadata ?: { [ key : string ] : string | number | boolean | null } | unknown | null ;
389389
390390 /**
391391 * Body param: Full text of the document. If provided, the document will be
@@ -465,9 +465,9 @@ export interface MemoryAddParams {
465465
466466 /**
467467 * Custom metadata for filtering. Keys must be alphanumeric with underscores, max
468- * 64 chars. Values must be string, number, or boolean .
468+ * 64 chars. Values must be string, number, boolean, or null .
469469 */
470- metadata ?: { [ key : string ] : string | number | boolean } | null ;
470+ metadata ?: { [ key : string ] : string | number | boolean | null } | null ;
471471
472472 /**
473473 * The resource ID to add the document to. If not provided, a new resource ID will
@@ -510,9 +510,9 @@ export namespace MemoryAddBulkParams {
510510
511511 /**
512512 * Custom metadata for filtering. Keys must be alphanumeric with underscores, max
513- * 64 chars. Values must be string, number, or boolean .
513+ * 64 chars. Values must be string, number, boolean, or null .
514514 */
515- metadata ?: { [ key : string ] : string | number | boolean } | null ;
515+ metadata ?: { [ key : string ] : string | number | boolean | null } | null ;
516516
517517 /**
518518 * The resource ID to add the document to. If not provided, a new resource ID will
0 commit comments