From f6bc18d918aef6ca28468df1f6ecf603ac0b3065 Mon Sep 17 00:00:00 2001 From: Zeyu Li Date: Thu, 7 Mar 2024 16:45:22 -0800 Subject: [PATCH] fix extract api --- packages/appsync-modelgen-plugin/API.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages/appsync-modelgen-plugin/API.md b/packages/appsync-modelgen-plugin/API.md index 803cb2dc2..740d80256 100644 --- a/packages/appsync-modelgen-plugin/API.md +++ b/packages/appsync-modelgen-plugin/API.md @@ -100,6 +100,14 @@ export type FieldType = 'ID' | 'String' | 'Int' | 'Float' | 'AWSDate' | 'AWSTime model: string; } | { nonModel: string; +} | { + input: string; +}; + +// @public (undocumented) +export type Input = { + name: string; + arguments: Arguments; }; // @public (undocumented) @@ -119,6 +127,7 @@ export type ModelIntrospectionSchema = { queries?: SchemaQueries; mutations?: SchemaMutations; subscriptions?: SchemaSubscriptions; + inputs?: SchemaInputs; }; // Warning: (ae-forgotten-export) The symbol "RawAppSyncModelConfig" needs to be exported by the entry point index.d.ts @@ -145,6 +154,9 @@ export type SchemaEnum = { // @public (undocumented) export type SchemaEnums = Record; +// @public (undocumented) +export type SchemaInputs = Record; + // @public (undocumented) export type SchemaModel = { name: string;