mirror of
https://github.com/musix-org/musix-oss
synced 2025-06-17 13:56:01 +00:00
Modules
This commit is contained in:
24
node_modules/@firebase/messaging/dist/interfaces/app-config.d.ts
generated
vendored
Normal file
24
node_modules/@firebase/messaging/dist/interfaces/app-config.d.ts
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2019 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
export interface AppConfig {
|
||||
readonly appName: string;
|
||||
readonly projectId: string;
|
||||
readonly apiKey: string;
|
||||
readonly appId: string;
|
||||
/** Only used for old DB migration. */
|
||||
readonly senderId: string;
|
||||
}
|
27
node_modules/@firebase/messaging/dist/interfaces/internal-dependencies.d.ts
generated
vendored
Normal file
27
node_modules/@firebase/messaging/dist/interfaces/internal-dependencies.d.ts
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2019 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { FirebaseInstallations } from '@firebase/installations-types';
|
||||
import { FirebaseAnalyticsInternalName } from '@firebase/analytics-interop-types';
|
||||
import { Provider } from '@firebase/component';
|
||||
import { AppConfig } from './app-config';
|
||||
import { FirebaseApp } from '@firebase/app-types';
|
||||
export interface FirebaseInternalDependencies {
|
||||
app: FirebaseApp;
|
||||
appConfig: AppConfig;
|
||||
installations: FirebaseInstallations;
|
||||
analyticsProvider: Provider<FirebaseAnalyticsInternalName>;
|
||||
}
|
27
node_modules/@firebase/messaging/dist/interfaces/internal-message.d.ts
generated
vendored
Normal file
27
node_modules/@firebase/messaging/dist/interfaces/internal-message.d.ts
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2017 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { MessagePayload } from './message-payload';
|
||||
export declare enum MessageType {
|
||||
PUSH_RECEIVED = "push-received",
|
||||
NOTIFICATION_CLICKED = "notification-clicked"
|
||||
}
|
||||
export interface InternalMessage {
|
||||
firebaseMessaging: {
|
||||
type: MessageType;
|
||||
payload: MessagePayload;
|
||||
};
|
||||
}
|
36
node_modules/@firebase/messaging/dist/interfaces/message-payload.d.ts
generated
vendored
Normal file
36
node_modules/@firebase/messaging/dist/interfaces/message-payload.d.ts
generated
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2018 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { CONSOLE_CAMPAIGN_ID, CONSOLE_CAMPAIGN_TIME, CONSOLE_CAMPAIGN_NAME, CONSOLE_CAMPAIGN_ANALYTICS_ENABLED } from '../util/constants';
|
||||
export interface NotificationDetails extends NotificationOptions {
|
||||
title: string;
|
||||
click_action?: string;
|
||||
}
|
||||
export interface FcmOptions {
|
||||
link?: string;
|
||||
}
|
||||
export interface MessagePayload {
|
||||
fcmOptions?: FcmOptions;
|
||||
notification?: NotificationDetails;
|
||||
data?: unknown;
|
||||
}
|
||||
/** Additional data of a message sent from the FN Console. */
|
||||
export interface ConsoleMessageData {
|
||||
[CONSOLE_CAMPAIGN_ID]: string;
|
||||
[CONSOLE_CAMPAIGN_TIME]: string;
|
||||
[CONSOLE_CAMPAIGN_NAME]?: string;
|
||||
[CONSOLE_CAMPAIGN_ANALYTICS_ENABLED]?: '1';
|
||||
}
|
32
node_modules/@firebase/messaging/dist/interfaces/token-details.d.ts
generated
vendored
Normal file
32
node_modules/@firebase/messaging/dist/interfaces/token-details.d.ts
generated
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2018 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
export interface TokenDetails {
|
||||
token: string;
|
||||
createTime: number;
|
||||
/** Does not exist in Safari since it's not using Push API. */
|
||||
subscriptionOptions?: SubscriptionOptions;
|
||||
}
|
||||
/**
|
||||
* Additional options and values required by a Push API subscription.
|
||||
*/
|
||||
export interface SubscriptionOptions {
|
||||
vapidKey: string;
|
||||
swScope: string;
|
||||
endpoint: string;
|
||||
auth: string;
|
||||
p256dh: string;
|
||||
}
|
Reference in New Issue
Block a user