File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
+ import { ERROR_FACTORY , ErrorCode } from './util/errors' ;
18
19
import { FirebaseApp , _getProvider , getApp } from '@firebase/app' ;
19
20
import {
20
21
GetTokenOptions ,
@@ -27,15 +28,14 @@ import {
27
28
Unsubscribe ,
28
29
getModularInstance
29
30
} from '@firebase/util' ;
31
+ import { isSwSupported , isWindowSupported } from './api/isSupported' ;
30
32
31
33
import { MessagingService } from './messaging-service' ;
32
34
import { deleteToken as _deleteToken } from './api/deleteToken' ;
33
35
import { getToken as _getToken } from './api/getToken' ;
34
- import { isSwSupported , isWindowSupported } from './api/isSupported' ;
35
36
import { onBackgroundMessage as _onBackgroundMessage } from './api/onBackgroundMessage' ;
36
37
import { onMessage as _onMessage } from './api/onMessage' ;
37
38
import { _setDeliveryMetricsExportedToBigQueryEnabled } from './api/setDeliveryMetricsExportedToBigQueryEnabled' ;
38
- import { ERROR_FACTORY , ErrorCode } from './util/errors' ;
39
39
40
40
/**
41
41
* Retrieves a Firebase Cloud Messaging instance.
@@ -181,7 +181,7 @@ export function onBackgroundMessage(
181
181
*
182
182
* @public
183
183
*/
184
- export function setDeliveryMetricsExportedToBigQueryEnabled (
184
+ export function experimentalSetDeliveryMetricsExportedToBigQueryEnabled (
185
185
messaging : Messaging ,
186
186
enable : boolean
187
187
) : void {
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export * from './interfaces/public-types';
24
24
export {
25
25
onBackgroundMessage ,
26
26
getMessagingInSw as getMessaging ,
27
- setDeliveryMetricsExportedToBigQueryEnabled as experimentalSetDeliveryMetricsExportedToBigQueryEnabled
27
+ experimentalSetDeliveryMetricsExportedToBigQueryEnabled
28
28
} from './api' ;
29
29
export { isSwSupported as isSupported } from './api/isSupported' ;
30
30
You can’t perform that action at this time.
0 commit comments