We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e9cdc6 commit 9b66b31Copy full SHA for 9b66b31
src/api/Elastic.Documentation.Api.Lambda/Program.cs
@@ -6,6 +6,7 @@
6
using Amazon.Lambda.APIGatewayEvents;
7
using Amazon.Lambda.Serialization.SystemTextJson;
8
using Elastic.Documentation.Api.Core;
9
+using Elastic.Documentation.Api.Core.AskAi;
10
using Elastic.Documentation.Api.Infrastructure;
11
12
var builder = WebApplication.CreateSlimBuilder(args);
@@ -22,4 +23,5 @@
22
23
24
[JsonSerializable(typeof(APIGatewayHttpApiV2ProxyRequest))]
25
[JsonSerializable(typeof(APIGatewayHttpApiV2ProxyResponse))]
-internal sealed partial class LambdaJsonSerializerContext : ApiJsonContext;
26
+[JsonSerializable(typeof(AskAiRequest))]
27
+internal sealed partial class LambdaJsonSerializerContext : JsonSerializerContext;
0 commit comments