Skip to content

Commit aea60b7

Browse files
committed
Merge branch 'master' into ddb-init-idempotency
2 parents f9e3b28 + d762464 commit aea60b7

File tree

8 files changed

+263
-79
lines changed

8 files changed

+263
-79
lines changed

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,11 @@ export class DataConnect {
2525
readonly app: App;
2626
// (undocumented)
2727
readonly connectorConfig: ConnectorConfig;
28-
// @beta
2928
executeGraphql<GraphqlResponse, Variables>(query: string, options?: GraphqlOptions<Variables>): Promise<ExecuteGraphqlResponse<GraphqlResponse>>;
30-
// @beta
3129
executeGraphqlRead<GraphqlResponse, Variables>(query: string, options?: GraphqlOptions<Variables>): Promise<ExecuteGraphqlResponse<GraphqlResponse>>;
32-
// @beta
3330
insert<GraphQlResponse, Variables extends object>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
34-
// @beta
3531
insertMany<GraphQlResponse, Variables extends Array<unknown>>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
36-
// @beta
3732
upsert<GraphQlResponse, Variables extends object>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
38-
// @beta
3933
upsertMany<GraphQlResponse, Variables extends Array<unknown>>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
4034
}
4135

etc/firebase-admin.messaging.api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ export interface ApnsConfig {
6161
headers?: {
6262
[key: string]: string;
6363
};
64+
liveActivityToken?: string;
6465
payload?: ApnsPayload;
6566
}
6667

package-lock.json

Lines changed: 69 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebase-admin",
3-
"version": "13.3.0",
3+
"version": "13.4.0",
44
"description": "Firebase admin SDK for Node.js",
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"license": "Apache-2.0",

src/data-connect/data-connect.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ export class DataConnect {
7979
* @param options - Optional {@link GraphqlOptions} when executing a GraphQL query or mutation.
8080
*
8181
* @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
82-
* @beta
8382
*/
8483
public executeGraphql<GraphqlResponse, Variables>(
8584
query: string,
@@ -95,7 +94,6 @@ export class DataConnect {
9594
* @param options - Optional {@link GraphqlOptions} when executing a read-only GraphQL query.
9695
*
9796
* @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
98-
* @beta
9997
*/
10098
public executeGraphqlRead<GraphqlResponse, Variables>(
10199
query: string,
@@ -110,7 +108,6 @@ export class DataConnect {
110108
* @param tableName - The name of the table to insert data into.
111109
* @param variables - The data object to insert. The keys should correspond to the column names.
112110
* @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
113-
* @beta
114111
*/
115112
public insert<GraphQlResponse, Variables extends object>(
116113
tableName: string,
@@ -125,7 +122,6 @@ export class DataConnect {
125122
* @param tableName - The name of the table to insert data into.
126123
* @param variables - An array of data objects to insert. Each object's keys should correspond to the column names.
127124
* @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
128-
* @beta
129125
*/
130126
public insertMany<GraphQlResponse, Variables extends Array<unknown>>(
131127
tableName: string,
@@ -140,7 +136,6 @@ export class DataConnect {
140136
* @param tableName - The name of the table to upsert data into.
141137
* @param variables - The data object to upsert. The keys should correspond to the column names.
142138
* @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
143-
* @beta
144139
*/
145140
public upsert<GraphQlResponse, Variables extends object>(
146141
tableName: string,
@@ -155,7 +150,6 @@ export class DataConnect {
155150
* @param tableName - The name of the table to upsert data into.
156151
* @param variables - An array of data objects to upsert. Each object's keys should correspond to the column names.
157152
* @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
158-
* @beta
159153
*/
160154
public upsertMany<GraphQlResponse, Variables extends Array<unknown>>(
161155
tableName: string,

src/messaging/messaging-api.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,10 @@ export interface WebpushNotification {
241241
* Apple documentation} for various headers and payload fields supported by APNs.
242242
*/
243243
export interface ApnsConfig {
244+
/**
245+
* APN `pushToStartToken` or `pushToken` to start or update live activities.
246+
*/
247+
liveActivityToken?: string;
244248
/**
245249
* A collection of APNs headers. Header values must be strings.
246250
*/

0 commit comments

Comments
 (0)