From 32c2378490cb7256ef47f3e18b0097d013c86502 Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Mon, 12 May 2025 13:41:54 -0400 Subject: [PATCH] chore(fdc): remove tags from Data Connect APIs --- etc/firebase-admin.data-connect.api.md | 6 ------ src/data-connect/data-connect.ts | 6 ------ 2 files changed, 12 deletions(-) diff --git a/etc/firebase-admin.data-connect.api.md b/etc/firebase-admin.data-connect.api.md index 2284d14b65..8a1e7a042c 100644 --- a/etc/firebase-admin.data-connect.api.md +++ b/etc/firebase-admin.data-connect.api.md @@ -25,17 +25,11 @@ export class DataConnect { readonly app: App; // (undocumented) readonly connectorConfig: ConnectorConfig; - // @beta executeGraphql(query: string, options?: GraphqlOptions): Promise>; - // @beta executeGraphqlRead(query: string, options?: GraphqlOptions): Promise>; - // @beta insert(tableName: string, variables: Variables): Promise>; - // @beta insertMany>(tableName: string, variables: Variables): Promise>; - // @beta upsert(tableName: string, variables: Variables): Promise>; - // @beta upsertMany>(tableName: string, variables: Variables): Promise>; } diff --git a/src/data-connect/data-connect.ts b/src/data-connect/data-connect.ts index 671bfe4b73..aa7d9d7e19 100644 --- a/src/data-connect/data-connect.ts +++ b/src/data-connect/data-connect.ts @@ -79,7 +79,6 @@ export class DataConnect { * @param options - Optional {@link GraphqlOptions} when executing a GraphQL query or mutation. * * @returns A promise that fulfills with a `ExecuteGraphqlResponse`. - * @beta */ public executeGraphql( query: string, @@ -95,7 +94,6 @@ export class DataConnect { * @param options - Optional {@link GraphqlOptions} when executing a read-only GraphQL query. * * @returns A promise that fulfills with a `ExecuteGraphqlResponse`. - * @beta */ public executeGraphqlRead( query: string, @@ -110,7 +108,6 @@ export class DataConnect { * @param tableName - The name of the table to insert data into. * @param variables - The data object to insert. The keys should correspond to the column names. * @returns A promise that fulfills with a `ExecuteGraphqlResponse`. - * @beta */ public insert( tableName: string, @@ -125,7 +122,6 @@ export class DataConnect { * @param tableName - The name of the table to insert data into. * @param variables - An array of data objects to insert. Each object's keys should correspond to the column names. * @returns A promise that fulfills with a `ExecuteGraphqlResponse`. - * @beta */ public insertMany>( tableName: string, @@ -140,7 +136,6 @@ export class DataConnect { * @param tableName - The name of the table to upsert data into. * @param variables - The data object to upsert. The keys should correspond to the column names. * @returns A promise that fulfills with a `ExecuteGraphqlResponse`. - * @beta */ public upsert( tableName: string, @@ -155,7 +150,6 @@ export class DataConnect { * @param tableName - The name of the table to upsert data into. * @param variables - An array of data objects to upsert. Each object's keys should correspond to the column names. * @returns A promise that fulfills with a `ExecuteGraphqlResponse`. - * @beta */ public upsertMany>( tableName: string,