Skip to content

chore(fdc): remove @beta tags from Data Connect APIs #2918

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions etc/firebase-admin.data-connect.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,11 @@ export class DataConnect {
readonly app: App;
// (undocumented)
readonly connectorConfig: ConnectorConfig;
// @beta
executeGraphql<GraphqlResponse, Variables>(query: string, options?: GraphqlOptions<Variables>): Promise<ExecuteGraphqlResponse<GraphqlResponse>>;
// @beta
executeGraphqlRead<GraphqlResponse, Variables>(query: string, options?: GraphqlOptions<Variables>): Promise<ExecuteGraphqlResponse<GraphqlResponse>>;
// @beta
insert<GraphQlResponse, Variables extends object>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
// @beta
insertMany<GraphQlResponse, Variables extends Array<unknown>>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
// @beta
upsert<GraphQlResponse, Variables extends object>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
// @beta
upsertMany<GraphQlResponse, Variables extends Array<unknown>>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
}

Expand Down
6 changes: 0 additions & 6 deletions src/data-connect/data-connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<GraphqlResponse, Variables>(
query: string,
Expand All @@ -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<GraphqlResponse, Variables>(
query: string,
Expand All @@ -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<GraphQlResponse, Variables extends object>(
tableName: string,
Expand All @@ -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<GraphQlResponse, Variables extends Array<unknown>>(
tableName: string,
Expand All @@ -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<GraphQlResponse, Variables extends object>(
tableName: string,
Expand All @@ -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<GraphQlResponse, Variables extends Array<unknown>>(
tableName: string,
Expand Down