Skip to content

Commit

Permalink
Build with yarn and yarn build:all
Browse files Browse the repository at this point in the history
  • Loading branch information
mieszko4 committed Dec 7, 2022
1 parent 2342b6b commit 760f006
Show file tree
Hide file tree
Showing 132 changed files with 9,425 additions and 9 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
a5e6acec3c62b76f42a6aa9b3e69cff0
49c123a13861de0f159eff82b38efd90
Original file line number Diff line number Diff line change
@@ -1 +1 @@
33f8a3285f36b70974dd3e5aa8c31510d1b0114e
5d531e6d95c84639a2647b7cd68b799dcc2c2816
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18a03a2bd8e0c4fef421663f78cfbec613d022a69dc2aba4570d7801cb6850f6
6103a0cd27cda7afbc2c1a0f95a7ec224450f49ca6de497aca1de58f03a37f4e
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0a7f78b4222094789d8e4fdac9b4979248f47d97e4bee61b6c0c3a604ef698638407b2af84265c89140ef81a9dcb9d64bc1753b51af08b2e1789e85995012566
210de1e2bf8e3e89f9fb1159d5ad304b5e9eae392da6a929db94d0c8bdb9aa208770b057907a028b6bbaa5f2b046076ddd9f62343b45483aad461cb696ff82c5
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<versions>
<version>202108261754</version>
</versions>
<lastUpdated>20220904222329</lastUpdated>
<lastUpdated>20221207184834</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dffb403a39070fd7564c7e19beb10c4d
31c18907cef663c0c4728315784368bd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8b52a26b8b001ac5ef3b9798784c3b7b882f08e2
4de3aef5e5ccf9cad85a00fdbc2d53d55ff218de
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fd12499f89f8eb68abade750378037afeae9c2142942461f546dcea534afc48d
a364e0e434efd931b146090cad2599e37a5a1647e37d118f0ae967bd88125c39
Original file line number Diff line number Diff line change
@@ -1 +1 @@
704f09a743f9e70895df203e93a09aa42d680e4dc59437dfa5575f8dac1611ab63b23fb49d3c99d9dcea4999c478add6645d6522009dbba2681939535a9b341e
0e724eed795a4e332729f807c2733fcccea15519433473ea4be45f7ebe25d14f20fc3b3ef3e48ba75360ce3d68eab1c12e49b04bf5641c3d9dc44f03f2d5ffea
53 changes: 53 additions & 0 deletions packages/react-native/dist/NotifeeApiModule.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { Module } from './types/Module';
import { AndroidChannel, AndroidChannelGroup, NativeAndroidChannel, NativeAndroidChannelGroup } from './types/NotificationAndroid';
import { InitialNotification, Notification, Event, TriggerNotification, DisplayedNotification, NotificationSettings } from './types/Notification';
import { PowerManagerInfo } from './types/PowerManagerInfo';
import { Trigger } from './types/Trigger';
import NotifeeNativeModule, { NativeModuleConfig } from './NotifeeNativeModule';
import { IOSNotificationCategory, IOSNotificationPermissions } from './types/NotificationIOS';
export default class NotifeeApiModule extends NotifeeNativeModule implements Module {
constructor(config: NativeModuleConfig);
getTriggerNotificationIds: () => Promise<string[]>;
getTriggerNotifications: () => Promise<TriggerNotification[]>;
getDisplayedNotifications: () => Promise<DisplayedNotification[]>;
isChannelBlocked: (channelId: string) => Promise<boolean>;
isChannelCreated: (channelId: string) => Promise<boolean>;
cancelAllNotifications: (notificationIds?: string[] | undefined, tag?: string | undefined) => Promise<void>;
cancelDisplayedNotifications: (notificationIds?: string[] | undefined, tag?: string | undefined) => Promise<void>;
cancelTriggerNotifications: (notificationIds?: string[] | undefined) => Promise<void>;
cancelNotification: (notificationId: string, tag?: string | undefined) => Promise<void>;
cancelDisplayedNotification: (notificationId: string, tag?: string | undefined) => Promise<void>;
cancelTriggerNotification: (notificationId: string) => Promise<void>;
createChannel: (channel: AndroidChannel) => Promise<string>;
createChannels: (channels: AndroidChannel[]) => Promise<void>;
createChannelGroup: (channelGroup: AndroidChannelGroup) => Promise<string>;
createChannelGroups: (channelGroups: AndroidChannelGroup[]) => Promise<void>;
deleteChannel: (channelId: string) => Promise<void>;
deleteChannelGroup: (channelGroupId: string) => Promise<void>;
displayNotification: (notification: Notification) => Promise<string>;
openAlarmPermissionSettings: () => Promise<void>;
createTriggerNotification: (notification: Notification, trigger: Trigger) => Promise<string>;
getChannel: (channelId: string) => Promise<NativeAndroidChannel | null>;
getChannels: () => Promise<NativeAndroidChannel[]>;
getChannelGroup: (channelGroupId: string) => Promise<NativeAndroidChannelGroup | null>;
getChannelGroups: () => Promise<NativeAndroidChannelGroup[]>;
getInitialNotification: () => Promise<InitialNotification | null>;
onBackgroundEvent: (observer: (event: Event) => Promise<void>) => void;
onForegroundEvent: (observer: (event: Event) => void) => (() => void);
openNotificationSettings: (channelId?: string | undefined) => Promise<void>;
requestPermission: (permissions?: IOSNotificationPermissions) => Promise<NotificationSettings>;
registerForegroundService(runner: (notification: Notification) => Promise<void>): void;
setNotificationCategories: (categories: IOSNotificationCategory[]) => Promise<void>;
getNotificationCategories: () => Promise<IOSNotificationCategory[]>;
getNotificationSettings: () => Promise<NotificationSettings>;
getBadgeCount: () => Promise<number>;
setBadgeCount: (count: number) => Promise<void>;
incrementBadgeCount: (incrementBy?: number | undefined) => Promise<void>;
decrementBadgeCount: (decrementBy?: number | undefined) => Promise<void>;
isBatteryOptimizationEnabled: () => Promise<boolean>;
openBatteryOptimizationSettings: () => Promise<void>;
getPowerManagerInfo: () => Promise<PowerManagerInfo>;
openPowerManagerSettings: () => Promise<void>;
stopForegroundService: () => Promise<void>;
hideNotificationDrawer: () => void;
}
Loading

0 comments on commit 760f006

Please sign in to comment.