Skip to content

Commit

Permalink
fix extract api
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronZyLee committed Mar 8, 2024
1 parent c2279ea commit f6bc18d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/appsync-modelgen-plugin/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand All @@ -145,6 +154,9 @@ export type SchemaEnum = {
// @public (undocumented)
export type SchemaEnums = Record<string, SchemaEnum>;

// @public (undocumented)
export type SchemaInputs = Record<string, Input>;

// @public (undocumented)
export type SchemaModel = {
name: string;
Expand Down

0 comments on commit f6bc18d

Please sign in to comment.