Skip to content

Commit beff97f

Browse files
committed
Merge remote-tracking branch 'origin/main' into mtewani/add-emulator-overlay
2 parents e7b292d + 080a90d commit beff97f

File tree

85 files changed

+577
-170
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+577
-170
lines changed

.changeset/cyan-frogs-relate.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/gentle-rocks-repeat.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/great-cheetahs-invite.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/hungry-snails-drive.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nice-plants-thank.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
"@firebase/database-compat": patch
3+
"@firebase/database": patch
4+
"@firebase/firestore": patch
5+
"@firebase/functions": patch
6+
"@firebase/storage": patch
7+
"@firebase/util": patch
8+
---
9+
10+
Auto Enable SSL for Firebase Studio

.changeset/nine-pugs-crash.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
"@firebase/app-check": patch
32
"@firebase/auth": patch
43
"@firebase/data-connect": patch
54
"@firebase/database-compat": patch

.changeset/odd-wolves-sit.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/slow-students-fry.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

common/api-review/storage.api.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class _FirebaseStorageImpl implements FirebaseStorage {
5858
constructor(
5959
app: FirebaseApp, _authProvider: Provider<FirebaseAuthInternalName>,
6060
_appCheckProvider: Provider<AppCheckInternalComponentName>,
61-
_url?: string | undefined, _firebaseVersion?: string | undefined);
61+
_url?: string | undefined, _firebaseVersion?: string | undefined, _isUsingEmulator?: boolean);
6262
readonly app: FirebaseApp;
6363
// (undocumented)
6464
readonly _appCheckProvider: Provider<AppCheckInternalComponentName>;
@@ -77,6 +77,8 @@ export class _FirebaseStorageImpl implements FirebaseStorage {
7777
_getAuthToken(): Promise<string | null>;
7878
get host(): string;
7979
set host(host: string);
80+
// (undocumented)
81+
_isUsingEmulator: boolean;
8082
// Warning: (ae-forgotten-export) The symbol "ConnectionType" needs to be exported by the entry point index.d.ts
8183
// Warning: (ae-forgotten-export) The symbol "RequestInfo" needs to be exported by the entry point index.d.ts
8284
// Warning: (ae-forgotten-export) The symbol "Connection" needs to be exported by the entry point index.d.ts

common/api-review/util.api.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,10 +279,8 @@ export function isBrowserExtension(): boolean;
279279
// @public
280280
export function isCloudflareWorker(): boolean;
281281

282-
// Warning: (ae-missing-release-tag) "isCloudWorkstation" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
283-
//
284282
// @public
285-
export function isCloudWorkstation(url: string): boolean;
283+
export function isCloudWorkstation(host: string): boolean;
286284

287285
// Warning: (ae-missing-release-tag) "isElectron" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
288286
//
@@ -410,6 +408,9 @@ export function ordinal(i: number): string;
410408
// @public (undocumented)
411409
export type PartialObserver<T> = Partial<Observer<T>>;
412410

411+
// @public
412+
export function pingServer(endpoint: string): Promise<boolean>;
413+
413414
// Warning: (ae-internal-missing-underscore) The name "promiseWithTimeout" should be prefixed with an underscore because the declaration is marked as @internal
414415
//
415416
// @internal

0 commit comments

Comments
 (0)