Skip to content

Commit 507629a

Browse files
Rename file to link-name
1 parent ee206ed commit 507629a

8 files changed

+7
-7
lines changed

src/get-push-notification.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { DeepClient } from '@deep-foundation/deeplinks/imports/client';
22
import { PACKAGE_NAME } from './package-name';
33
import { PushNotification } from './push-notification';
4-
import { LinkName } from './contains';
4+
import { LinkName } from './link-name';
55

66
/**
77
* Gets push notification from deep

src/insert-device-registration-token.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { DeepClient } from "@deep-foundation/deeplinks/imports/client";
22
import { PACKAGE_NAME } from "./package-name";
3-
import { LinkName } from "./contains";
3+
import { LinkName } from "./link-name";
44

55
/**
66
* Inserts device registration token

src/insert-push-notification.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {NotificationPayload} from '@firebase/messaging';
22
import { DeepClient } from "@deep-foundation/deeplinks/imports/client";
33
import { PACKAGE_NAME } from "./package-name";
44
import { PushNotification } from './push-notification';
5-
import { LinkName } from './contains';
5+
import { LinkName } from './link-name';
66

77
/**
88
* Inserts push notification

src/insert-service-account.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { DeepClient } from '@deep-foundation/deeplinks/imports/client';
22
import { BoolExpLink } from '@deep-foundation/deeplinks/imports/client_types';
33
import { PACKAGE_NAME } from './package-name';
4-
import { LinkName } from './contains';
4+
import { LinkName } from './link-name';
55

66
/**
77
* Inserts service account

src/insert-web-push-certificate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { DeepClient } from '@deep-foundation/deeplinks/imports/client';
22
import { PACKAGE_NAME } from './package-name';
3-
import { LinkName } from './contains';
3+
import { LinkName } from './link-name';
44

55
/**
66
* Inserts web push sertificate
File renamed without changes.

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export {LinkName as Contains} from './contains'
1+
export {LinkName as Contains} from './link-name'
22
export {getPushNotification, type GetPushNotificationParam, type GetPushNotificationResult} from './get-push-notification'
33
export {insertDeviceRegistrationToken, type InsertDeviceRegistrationTokenParam, type InsertDeviceRegistrationTokenResult} from './insert-device-registration-token'
44
export {insertPushNotification, type InsertPushNotificationParam, type InsertPushNotificationResult} from './insert-push-notification'

src/register-device.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { BoolExpLink } from '@deep-foundation/deeplinks/imports/client_types';
55
import { getToken, Messaging, onMessage } from '@firebase/messaging';
66
import { insertDeviceRegistrationToken } from './insert-device-registration-token';
77
import { PACKAGE_NAME } from './package-name';
8-
import { LinkName } from './contains';
8+
import { LinkName } from './link-name';
99

1010
/**
1111
* Registers device

0 commit comments

Comments
 (0)