11import { DeepClient } from '@deep-foundation/deeplinks/imports/client' ;
22import { PACKAGE_NAME } from './package-name' ;
33import { PushNotification } from './push-notification' ;
4- import { FirebasePushNotificationContains } from './contains' ;
4+ import { LinkName } from './contains' ;
55
66/**
77 * Gets push notification from deep
@@ -23,32 +23,32 @@ export async function getPushNotification({
2323} : GetPushNotificationParam ) : Promise < GetPushNotificationResult > {
2424 const titleTypeLinkId = await deep . id (
2525 PACKAGE_NAME ,
26- FirebasePushNotificationContains [
27- FirebasePushNotificationContains . PushNotificationTitle
26+ LinkName [
27+ LinkName . PushNotificationTitle
2828 ]
2929 ) ;
3030 const bodyTypeLinkId = await deep . id (
3131 PACKAGE_NAME ,
32- FirebasePushNotificationContains [
33- FirebasePushNotificationContains . PushNotificationBody
32+ LinkName [
33+ LinkName . PushNotificationBody
3434 ]
3535 ) ;
3636 const imageUrlTypeLinkId = await deep . id (
3737 PACKAGE_NAME ,
38- FirebasePushNotificationContains [
39- FirebasePushNotificationContains . PushNotificationImageUrl
38+ LinkName [
39+ LinkName . PushNotificationImageUrl
4040 ]
4141 ) ;
4242 const iconUrlTypeLinkId = await deep . id (
4343 PACKAGE_NAME ,
44- FirebasePushNotificationContains [
45- FirebasePushNotificationContains . PushNotificationIconUrl
44+ LinkName [
45+ LinkName . PushNotificationIconUrl
4646 ]
4747 ) ;
4848 const pushNotificationTreeLinkId = await deep . id (
4949 PACKAGE_NAME ,
50- FirebasePushNotificationContains [
51- FirebasePushNotificationContains . PushNotificationTree
50+ LinkName [
51+ LinkName . PushNotificationTree
5252 ]
5353 ) ;
5454
0 commit comments