Skip to content

Commit bad9808

Browse files
committed
npm run apidocs
1 parent 3cb6645 commit bad9808

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

etc/firebase-admin.data-connect.api.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,14 @@ export class DataConnect {
2828
readonly connectorConfig: ConnectorConfig;
2929
executeGraphql<GraphqlResponse, Variables>(query: string, options?: GraphqlOptions<Variables>): Promise<ExecuteGraphqlResponse<GraphqlResponse>>;
3030
executeGraphqlRead<GraphqlResponse, Variables>(query: string, options?: GraphqlOptions<Variables>): Promise<ExecuteGraphqlResponse<GraphqlResponse>>;
31-
executeMutation<GraphqlResponse, Variables>(options: GraphqlOptions<Variables>): Promise<ExecuteGraphqlResponse<GraphqlResponse>>;
32-
executeQuery<GraphqlResponse, Variables>(options: GraphqlOptions<Variables>): Promise<ExecuteGraphqlResponse<GraphqlResponse>>;
3331
insert<GraphQlResponse, Variables extends object>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
3432
insertMany<GraphQlResponse, Variables extends Array<unknown>>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
33+
// Warning: (ae-forgotten-export) The symbol "MutationRef" needs to be exported by the entry point index.d.ts
34+
mutationRef<Data>(options: GraphqlOptions<undefined>): MutationRef<Data, undefined>;
35+
mutationRef<Data, Variables>(options: GraphqlOptions<Variables>): MutationRef<Data, Variables>;
36+
// Warning: (ae-forgotten-export) The symbol "QueryRef" needs to be exported by the entry point index.d.ts
37+
queryRef<Data>(options: GraphqlOptions<undefined>): QueryRef<Data, undefined>;
38+
queryRef<Data, Variables>(options: GraphqlOptions<Variables>): QueryRef<Data, Variables>;
3539
upsert<GraphQlResponse, Variables extends object>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
3640
upsertMany<GraphQlResponse, Variables extends Array<unknown>>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
3741
}

0 commit comments

Comments
 (0)