@ammarahmed/notifee-react-native 7.4.5 → 7.4.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types/Trigger.d.ts
CHANGED
package/dist/types/Trigger.js
CHANGED
|
@@ -13,7 +13,7 @@ var RepeatFrequency;
|
|
|
13
13
|
RepeatFrequency[RepeatFrequency["DAILY"] = 1] = "DAILY";
|
|
14
14
|
RepeatFrequency[RepeatFrequency["WEEKLY"] = 2] = "WEEKLY";
|
|
15
15
|
RepeatFrequency[RepeatFrequency["MONTHLY"] = 3] = "MONTHLY";
|
|
16
|
-
RepeatFrequency[RepeatFrequency["YEARLY"] =
|
|
16
|
+
RepeatFrequency[RepeatFrequency["YEARLY"] = 4] = "YEARLY";
|
|
17
17
|
})(RepeatFrequency = exports.RepeatFrequency || (exports.RepeatFrequency = {}));
|
|
18
18
|
/**
|
|
19
19
|
* An interface representing the different units of time which can be used with `IntervalTrigger.timeUnit`.
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "7.4.
|
|
1
|
+
export declare const version = "7.4.6";
|
|
@@ -42,7 +42,7 @@ typedef NS_ENUM(NSInteger, NotifeeCoreRepeatFrequency) {
|
|
|
42
42
|
NotifeeCoreRepeatFrequencyHourly = 0,
|
|
43
43
|
NotifeeCoreRepeatFrequencyDaily = 1,
|
|
44
44
|
NotifeeCoreRepeatFrequencyWeekly = 2,
|
|
45
|
-
NotifeeCoreRepeatFrequencyMonthly = 3
|
|
45
|
+
NotifeeCoreRepeatFrequencyMonthly = 3,
|
|
46
46
|
NotifeeCoreRepeatFrequencyYearly = 4
|
|
47
47
|
};
|
|
48
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ammarahmed/notifee-react-native",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.7",
|
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
|
5
5
|
"description": "Notifee - a feature rich notifications library for React Native.",
|
|
6
6
|
"main": "dist/index.js",
|
package/src/types/Trigger.ts
CHANGED
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '7.4.
|
|
2
|
+
export const version = '7.4.6';
|