From a660c5a50a61d1337f382d1e42733d413ed21310 Mon Sep 17 00:00:00 2001 From: zach Date: Tue, 12 Mar 2024 20:03:23 -0700 Subject: [PATCH] chore: add var max to manifest (#79) --- src/Extism.Sdk/Manifest.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Extism.Sdk/Manifest.cs b/src/Extism.Sdk/Manifest.cs index bba5c3f..0bf6e6a 100644 --- a/src/Extism.Sdk/Manifest.cs +++ b/src/Extism.Sdk/Manifest.cs @@ -119,6 +119,13 @@ public class MemoryOptions /// [JsonPropertyName("max_http_response_bytes")] public int MaxHttpResponseBytes { get; set; } + + + /// + /// Max number of bytes allowed in the Extism var store + /// + [JsonPropertyName("max_var_bytes")] + public int MaxVarBytes { get; set; } } ///