mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 12:21:01 +00:00
1 line
42 KiB
Plaintext
1 line
42 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/classCallCheck","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"yg7e6laZwmpbIvId5jovq9ugXp8=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/createClass","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"Z6pzkVZ2fvxBLkFTgVVOy4UDj30=","exportNames":["*"],"imports":1}},{"name":"../EventEmitter/NativeEventEmitter","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0},"end":{"line":13,"column":68}}],"key":"Jk6GODPsD+OS/XTex7hK2MSfvW0=","exportNames":["*"],"imports":1}},{"name":"../Utilities/Platform","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0},"end":{"line":14,"column":45}}],"key":"WyqnBhspP5BAR0xvCwqfBv/v4uA=","exportNames":["*"],"imports":1}},{"name":"./NativePushNotificationManagerIOS","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0},"end":{"line":15,"column":82}}],"key":"5gI0nEOZOUNeQiDjJGOYJlt6jvQ=","exportNames":["*"],"imports":1}},{"name":"invariant","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":16,"column":0},"end":{"line":16,"column":34}}],"key":"4HPAaDQ25ZwZ2dzTLatXuUucZUM=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return _default;\n }\n });\n var _babelRuntimeHelpersClassCallCheck = require(_dependencyMap[0], \"@babel/runtime/helpers/classCallCheck\");\n var _classCallCheck = _interopDefault(_babelRuntimeHelpersClassCallCheck);\n var _babelRuntimeHelpersCreateClass = require(_dependencyMap[1], \"@babel/runtime/helpers/createClass\");\n var _createClass = _interopDefault(_babelRuntimeHelpersCreateClass);\n var _EventEmitterNativeEventEmitter = require(_dependencyMap[2], \"../EventEmitter/NativeEventEmitter\");\n var NativeEventEmitter = _interopDefault(_EventEmitterNativeEventEmitter);\n var _UtilitiesPlatform = require(_dependencyMap[3], \"../Utilities/Platform\");\n var Platform = _interopDefault(_UtilitiesPlatform);\n var _NativePushNotificationManagerIOS = require(_dependencyMap[4], \"./NativePushNotificationManagerIOS\");\n var NativePushNotificationManagerIOS = _interopDefault(_NativePushNotificationManagerIOS);\n var _invariant = require(_dependencyMap[5], \"invariant\");\n var invariant = _interopDefault(_invariant);\n var PushNotificationEmitter = new NativeEventEmitter.default(Platform.default.OS !== 'ios' ? null : NativePushNotificationManagerIOS.default);\n var _notifHandlers = new Map();\n var DEVICE_NOTIF_EVENT = 'remoteNotificationReceived';\n var NOTIF_REGISTER_EVENT = 'remoteNotificationsRegistered';\n var NOTIF_REGISTRATION_ERROR_EVENT = 'remoteNotificationRegistrationError';\n var DEVICE_LOCAL_NOTIF_EVENT = 'localNotificationReceived';\n var PushNotificationIOS = /*#__PURE__*/function () {\n function PushNotificationIOS(nativeNotif) {\n (0, _classCallCheck.default)(this, PushNotificationIOS);\n this._data = {};\n this._remoteNotificationCompleteCallbackCalled = false;\n this._isRemote = nativeNotif.remote;\n if (this._isRemote) {\n this._notificationId = nativeNotif.notificationId;\n }\n if (nativeNotif.remote) {\n Object.keys(nativeNotif).forEach(notifKey => {\n var notifVal = nativeNotif[notifKey];\n if (notifKey === 'aps') {\n this._alert = notifVal.alert;\n this._sound = notifVal.sound;\n this._badgeCount = notifVal.badge;\n this._category = notifVal.category;\n this._contentAvailable = notifVal['content-available'];\n this._threadID = notifVal['thread-id'];\n } else {\n this._data[notifKey] = notifVal;\n }\n });\n } else {\n this._badgeCount = nativeNotif.applicationIconBadgeNumber;\n this._sound = nativeNotif.soundName;\n this._alert = nativeNotif.alertBody;\n this._data = nativeNotif.userInfo;\n this._category = nativeNotif.category;\n }\n }\n return (0, _createClass.default)(PushNotificationIOS, [{\n key: \"finish\",\n value: function finish(fetchResult) {\n if (!this._isRemote || !this._notificationId || this._remoteNotificationCompleteCallbackCalled) {\n return;\n }\n this._remoteNotificationCompleteCallbackCalled = true;\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.onFinishRemoteNotification(this._notificationId, fetchResult);\n }\n }, {\n key: \"getMessage\",\n value: function getMessage() {\n return this._alert;\n }\n }, {\n key: \"getSound\",\n value: function getSound() {\n return this._sound;\n }\n }, {\n key: \"getCategory\",\n value: function getCategory() {\n return this._category;\n }\n }, {\n key: \"getAlert\",\n value: function getAlert() {\n return this._alert;\n }\n }, {\n key: \"getContentAvailable\",\n value: function getContentAvailable() {\n return this._contentAvailable;\n }\n }, {\n key: \"getBadgeCount\",\n value: function getBadgeCount() {\n return this._badgeCount;\n }\n }, {\n key: \"getData\",\n value: function getData() {\n return this._data;\n }\n }, {\n key: \"getThreadID\",\n value: function getThreadID() {\n return this._threadID;\n }\n }], [{\n key: \"presentLocalNotification\",\n value: function presentLocalNotification(details) {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.presentLocalNotification(details);\n }\n }, {\n key: \"scheduleLocalNotification\",\n value: function scheduleLocalNotification(details) {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.scheduleLocalNotification(details);\n }\n }, {\n key: \"cancelAllLocalNotifications\",\n value: function cancelAllLocalNotifications() {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.cancelAllLocalNotifications();\n }\n }, {\n key: \"removeAllDeliveredNotifications\",\n value: function removeAllDeliveredNotifications() {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.removeAllDeliveredNotifications();\n }\n }, {\n key: \"getDeliveredNotifications\",\n value: function getDeliveredNotifications(callback) {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.getDeliveredNotifications(callback);\n }\n }, {\n key: \"removeDeliveredNotifications\",\n value: function removeDeliveredNotifications(identifiers) {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.removeDeliveredNotifications(identifiers);\n }\n }, {\n key: \"setApplicationIconBadgeNumber\",\n value: function setApplicationIconBadgeNumber(number) {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.setApplicationIconBadgeNumber(number);\n }\n }, {\n key: \"getApplicationIconBadgeNumber\",\n value: function getApplicationIconBadgeNumber(callback) {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.getApplicationIconBadgeNumber(callback);\n }\n }, {\n key: \"cancelLocalNotifications\",\n value: function cancelLocalNotifications(userInfo) {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.cancelLocalNotifications(userInfo);\n }\n }, {\n key: \"getScheduledLocalNotifications\",\n value: function getScheduledLocalNotifications(callback) {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.getScheduledLocalNotifications(callback);\n }\n }, {\n key: \"addEventListener\",\n value: function addEventListener(type, handler) {\n (0, invariant.default)(type === 'notification' || type === 'register' || type === 'registrationError' || type === 'localNotification', 'PushNotificationIOS only supports `notification`, `register`, `registrationError`, and `localNotification` events');\n var listener;\n if (type === 'notification') {\n listener = PushNotificationEmitter.addListener(DEVICE_NOTIF_EVENT, notifData => {\n handler(new PushNotificationIOS(notifData));\n });\n } else if (type === 'localNotification') {\n listener = PushNotificationEmitter.addListener(DEVICE_LOCAL_NOTIF_EVENT, notifData => {\n handler(new PushNotificationIOS(notifData));\n });\n } else if (type === 'register') {\n listener = PushNotificationEmitter.addListener(NOTIF_REGISTER_EVENT, registrationInfo => {\n handler(registrationInfo.deviceToken);\n });\n } else if (type === 'registrationError') {\n listener = PushNotificationEmitter.addListener(NOTIF_REGISTRATION_ERROR_EVENT, errorInfo => {\n handler(errorInfo);\n });\n }\n _notifHandlers.set(type, listener);\n }\n }, {\n key: \"removeEventListener\",\n value: function removeEventListener(type) {\n (0, invariant.default)(type === 'notification' || type === 'register' || type === 'registrationError' || type === 'localNotification', 'PushNotificationIOS only supports `notification`, `register`, `registrationError`, and `localNotification` events');\n var listener = _notifHandlers.get(type);\n if (!listener) {\n return;\n }\n listener.remove();\n _notifHandlers.delete(type);\n }\n }, {\n key: \"requestPermissions\",\n value: function requestPermissions(permissions) {\n var requestedPermissions = {\n alert: true,\n badge: true,\n sound: true\n };\n if (permissions) {\n requestedPermissions = {\n alert: !!permissions.alert,\n badge: !!permissions.badge,\n sound: !!permissions.sound\n };\n }\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n return NativePushNotificationManagerIOS.default.requestPermissions(requestedPermissions);\n }\n }, {\n key: \"abandonPermissions\",\n value: function abandonPermissions() {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.abandonPermissions();\n }\n }, {\n key: \"checkPermissions\",\n value: function checkPermissions(callback) {\n (0, invariant.default)(typeof callback === 'function', 'Must provide a valid callback');\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.checkPermissions(callback);\n }\n }, {\n key: \"getInitialNotification\",\n value: function getInitialNotification() {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n return NativePushNotificationManagerIOS.default.getInitialNotification().then(notification => {\n return notification && new PushNotificationIOS(notification);\n });\n }\n }, {\n key: \"getAuthorizationStatus\",\n value: function getAuthorizationStatus(callback) {\n (0, invariant.default)(NativePushNotificationManagerIOS.default, 'PushNotificationManager is not available.');\n NativePushNotificationManagerIOS.default.getAuthorizationStatus(callback);\n }\n }]);\n }();\n PushNotificationIOS.FetchResult = {\n NewData: 'UIBackgroundFetchResultNewData',\n NoData: 'UIBackgroundFetchResultNoData',\n ResultFailed: 'UIBackgroundFetchResultFailed'\n };\n var _default = PushNotificationIOS;\n});","lineCount":265,"map":[[12,2,673,0,"Object"],[12,8,673,0],[12,9,673,0,"defineProperty"],[12,23,673,0],[12,24,673,0,"exports"],[12,31,673,0],[13,4,673,0,"enumerable"],[13,14,673,0],[14,4,673,0,"get"],[14,7,673,0],[14,18,673,0,"get"],[14,19,673,0],[15,6,673,0],[15,13,673,0,"_default"],[15,21,673,0],[16,4,673,0],[17,2,673,0],[18,2,673,35],[18,6,673,35,"_babelRuntimeHelpersClassCallCheck"],[18,40,673,35],[18,43,673,35,"require"],[18,50,673,35],[18,51,673,35,"_dependencyMap"],[18,65,673,35],[19,2,673,35],[19,6,673,35,"_classCallCheck"],[19,21,673,35],[19,24,673,35,"_interopDefault"],[19,39,673,35],[19,40,673,35,"_babelRuntimeHelpersClassCallCheck"],[19,74,673,35],[20,2,673,35],[20,6,673,35,"_babelRuntimeHelpersCreateClass"],[20,37,673,35],[20,40,673,35,"require"],[20,47,673,35],[20,48,673,35,"_dependencyMap"],[20,62,673,35],[21,2,673,35],[21,6,673,35,"_createClass"],[21,18,673,35],[21,21,673,35,"_interopDefault"],[21,36,673,35],[21,37,673,35,"_babelRuntimeHelpersCreateClass"],[21,68,673,35],[22,2,13,0],[22,6,13,0,"_EventEmitterNativeEventEmitter"],[22,37,13,0],[22,40,13,0,"require"],[22,47,13,0],[22,48,13,0,"_dependencyMap"],[22,62,13,0],[23,2,13,0],[23,6,13,0,"NativeEventEmitter"],[23,24,13,0],[23,27,13,0,"_interopDefault"],[23,42,13,0],[23,43,13,0,"_EventEmitterNativeEventEmitter"],[23,74,13,0],[24,2,14,0],[24,6,14,0,"_UtilitiesPlatform"],[24,24,14,0],[24,27,14,0,"require"],[24,34,14,0],[24,35,14,0,"_dependencyMap"],[24,49,14,0],[25,2,14,0],[25,6,14,0,"Platform"],[25,14,14,0],[25,17,14,0,"_interopDefault"],[25,32,14,0],[25,33,14,0,"_UtilitiesPlatform"],[25,51,14,0],[26,2,15,0],[26,6,15,0,"_NativePushNotificationManagerIOS"],[26,39,15,0],[26,42,15,0,"require"],[26,49,15,0],[26,50,15,0,"_dependencyMap"],[26,64,15,0],[27,2,15,0],[27,6,15,0,"NativePushNotificationManagerIOS"],[27,38,15,0],[27,41,15,0,"_interopDefault"],[27,56,15,0],[27,57,15,0,"_NativePushNotificationManagerIOS"],[27,90,15,0],[28,2,16,0],[28,6,16,0,"_invariant"],[28,16,16,0],[28,19,16,0,"require"],[28,26,16,0],[28,27,16,0,"_dependencyMap"],[28,41,16,0],[29,2,16,0],[29,6,16,0,"invariant"],[29,15,16,0],[29,18,16,0,"_interopDefault"],[29,33,16,0],[29,34,16,0,"_invariant"],[29,44,16,0],[30,2,66,0],[30,6,66,6,"PushNotificationEmitter"],[30,29,66,29],[30,32,67,2],[30,36,67,6,"NativeEventEmitter"],[30,54,67,24],[30,55,67,24,"default"],[30,62,67,24],[30,63,70,4,"Platform"],[30,71,70,12],[30,72,70,12,"default"],[30,79,70,12],[30,80,70,13,"OS"],[30,82,70,15],[30,87,70,20],[30,92,70,25],[30,95,70,28],[30,99,70,32],[30,102,70,35,"NativePushNotificationManagerIOS"],[30,134,70,67],[30,135,70,67,"default"],[30,142,71,2],[30,143,71,3],[31,2,73,0],[31,6,73,6,"_notifHandlers"],[31,20,73,20],[31,23,73,23],[31,27,73,27,"Map"],[31,30,73,30],[31,31,73,65],[31,32,73,66],[32,2,75,0],[32,6,75,6,"DEVICE_NOTIF_EVENT"],[32,24,75,24],[32,27,75,27],[32,55,75,55],[33,2,76,0],[33,6,76,6,"NOTIF_REGISTER_EVENT"],[33,26,76,26],[33,29,76,29],[33,60,76,60],[34,2,77,0],[34,6,77,6,"NOTIF_REGISTRATION_ERROR_EVENT"],[34,36,77,36],[34,39,77,39],[34,76,77,76],[35,2,78,0],[35,6,78,6,"DEVICE_LOCAL_NOTIF_EVENT"],[35,30,78,30],[35,33,78,33],[35,60,78,60],[36,2,78,61],[36,6,176,6,"PushNotificationIOS"],[36,25,176,25],[37,4,538,2],[37,13,538,2,"PushNotificationIOS"],[37,33,538,14,"nativeNotif"],[37,44,538,33],[37,46,538,35],[38,6,538,35],[38,10,538,35,"_classCallCheck"],[38,25,538,35],[38,26,538,35,"default"],[38,33,538,35],[38,41,538,35,"PushNotificationIOS"],[38,60,538,35],[39,6,539,4],[39,10,539,8],[39,11,539,9,"_data"],[39,16,539,14],[39,19,539,17],[39,20,539,18],[39,21,539,19],[40,6,540,4],[40,10,540,8],[40,11,540,9,"_remoteNotificationCompleteCallbackCalled"],[40,52,540,50],[40,55,540,53],[40,60,540,58],[41,6,541,4],[41,10,541,8],[41,11,541,9,"_isRemote"],[41,20,541,18],[41,23,541,21,"nativeNotif"],[41,34,541,32],[41,35,541,33,"remote"],[41,41,541,39],[42,6,542,4],[42,10,542,8],[42,14,542,12],[42,15,542,13,"_isRemote"],[42,24,542,22],[42,26,542,24],[43,8,543,6],[43,12,543,10],[43,13,543,11,"_notificationId"],[43,28,543,26],[43,31,543,29,"nativeNotif"],[43,42,543,40],[43,43,543,41,"notificationId"],[43,57,543,55],[44,6,544,4],[45,6,546,4],[45,10,546,8,"nativeNotif"],[45,21,546,19],[45,22,546,20,"remote"],[45,28,546,26],[45,30,546,28],[46,8,549,6,"Object"],[46,14,549,12],[46,15,549,13,"keys"],[46,19,549,17],[46,20,549,18,"nativeNotif"],[46,31,549,29],[46,32,549,30],[46,33,549,31,"forEach"],[46,40,549,38],[46,41,549,39,"notifKey"],[46,49,549,47],[46,53,549,51],[47,10,550,8],[47,14,550,14,"notifVal"],[47,22,550,22],[47,25,550,25,"nativeNotif"],[47,36,550,36],[47,37,550,37,"notifKey"],[47,45,550,45],[47,46,550,46],[48,10,551,8],[48,14,551,12,"notifKey"],[48,22,551,20],[48,27,551,25],[48,32,551,30],[48,34,551,32],[49,12,552,10],[49,16,552,14],[49,17,552,15,"_alert"],[49,23,552,21],[49,26,552,24,"notifVal"],[49,34,552,32],[49,35,552,33,"alert"],[49,40,552,38],[50,12,553,10],[50,16,553,14],[50,17,553,15,"_sound"],[50,23,553,21],[50,26,553,24,"notifVal"],[50,34,553,32],[50,35,553,33,"sound"],[50,40,553,38],[51,12,554,10],[51,16,554,14],[51,17,554,15,"_badgeCount"],[51,28,554,26],[51,31,554,29,"notifVal"],[51,39,554,37],[51,40,554,38,"badge"],[51,45,554,43],[52,12,555,10],[52,16,555,14],[52,17,555,15,"_category"],[52,26,555,24],[52,29,555,27,"notifVal"],[52,37,555,35],[52,38,555,36,"category"],[52,46,555,44],[53,12,556,10],[53,16,556,14],[53,17,556,15,"_contentAvailable"],[53,34,556,32],[53,37,556,35,"notifVal"],[53,45,556,43],[53,46,556,44],[53,65,556,63],[53,66,556,64],[54,12,557,10],[54,16,557,14],[54,17,557,15,"_threadID"],[54,26,557,24],[54,29,557,27,"notifVal"],[54,37,557,35],[54,38,557,36],[54,49,557,47],[54,50,557,48],[55,10,558,8],[55,11,558,9],[55,17,558,15],[56,12,559,10],[56,16,559,14],[56,17,559,15,"_data"],[56,22,559,20],[56,23,559,21,"notifKey"],[56,31,559,29],[56,32,559,30],[56,35,559,33,"notifVal"],[56,43,559,41],[57,10,560,8],[58,8,561,6],[58,9,561,7],[58,10,561,8],[59,6,562,4],[59,7,562,5],[59,13,562,11],[60,8,564,6],[60,12,564,10],[60,13,564,11,"_badgeCount"],[60,24,564,22],[60,27,564,25,"nativeNotif"],[60,38,564,36],[60,39,564,37,"applicationIconBadgeNumber"],[60,65,564,63],[61,8,565,6],[61,12,565,10],[61,13,565,11,"_sound"],[61,19,565,17],[61,22,565,20,"nativeNotif"],[61,33,565,31],[61,34,565,32,"soundName"],[61,43,565,41],[62,8,566,6],[62,12,566,10],[62,13,566,11,"_alert"],[62,19,566,17],[62,22,566,20,"nativeNotif"],[62,33,566,31],[62,34,566,32,"alertBody"],[62,43,566,41],[63,8,567,6],[63,12,567,10],[63,13,567,11,"_data"],[63,18,567,16],[63,21,567,19,"nativeNotif"],[63,32,567,30],[63,33,567,31,"userInfo"],[63,41,567,39],[64,8,568,6],[64,12,568,10],[64,13,568,11,"_category"],[64,22,568,20],[64,25,568,23,"nativeNotif"],[64,36,568,34],[64,37,568,35,"category"],[64,45,568,43],[65,6,569,4],[66,4,570,2],[67,4,570,3],[67,15,570,3,"_createClass"],[67,27,570,3],[67,28,570,3,"default"],[67,35,570,3],[67,37,570,3,"PushNotificationIOS"],[67,56,570,3],[68,6,570,3,"key"],[68,9,570,3],[69,6,570,3,"value"],[69,11,570,3],[69,13,579,2],[69,22,579,2,"finish"],[69,28,579,8,"finish"],[69,29,579,9,"fetchResult"],[69,40,579,28],[69,42,579,36],[70,8,580,4],[70,12,581,6],[70,13,581,7],[70,17,581,11],[70,18,581,12,"_isRemote"],[70,27,581,21],[70,31,582,6],[70,32,582,7],[70,36,582,11],[70,37,582,12,"_notificationId"],[70,52,582,27],[70,56,583,6],[70,60,583,10],[70,61,583,11,"_remoteNotificationCompleteCallbackCalled"],[70,102,583,52],[70,104,584,6],[71,10,585,6],[72,8,586,4],[73,8,587,4],[73,12,587,8],[73,13,587,9,"_remoteNotificationCompleteCallbackCalled"],[73,54,587,50],[73,57,587,53],[73,61,587,57],[74,8,589,4],[74,12,589,4,"invariant"],[74,21,589,13],[74,22,589,13,"default"],[74,29,589,13],[74,31,590,6,"NativePushNotificationManagerIOS"],[74,63,590,38],[74,64,590,38,"default"],[74,71,590,38],[74,73,591,6],[74,116,592,4],[74,117,592,5],[75,8,593,4,"NativePushNotificationManagerIOS"],[75,40,593,36],[75,41,593,36,"default"],[75,48,593,36],[75,49,593,37,"onFinishRemoteNotification"],[75,75,593,63],[75,76,594,6],[75,80,594,10],[75,81,594,11,"_notificationId"],[75,96,594,26],[75,98,595,6,"fetchResult"],[75,109,596,4],[75,110,596,5],[76,6,597,2],[77,4,597,3],[78,6,597,3,"key"],[78,9,597,3],[79,6,597,3,"value"],[79,11,597,3],[79,13,602,2],[79,22,602,2,"getMessage"],[79,32,602,12,"getMessage"],[79,33,602,12],[79,35,602,34],[80,8,604,4],[80,15,604,11],[80,19,604,15],[80,20,604,16,"_alert"],[80,26,604,22],[81,6,605,2],[82,4,605,3],[83,6,605,3,"key"],[83,9,605,3],[84,6,605,3,"value"],[84,11,605,3],[84,13,613,2],[84,22,613,2,"getSound"],[84,30,613,10,"getSound"],[84,31,613,10],[84,33,613,22],[85,8,614,4],[85,15,614,11],[85,19,614,15],[85,20,614,16,"_sound"],[85,26,614,22],[86,6,615,2],[87,4,615,3],[88,6,615,3,"key"],[88,9,615,3],[89,6,615,3,"value"],[89,11,615,3],[89,13,622,2],[89,22,622,2,"getCategory"],[89,33,622,13,"getCategory"],[89,34,622,13],[89,36,622,25],[90,8,623,4],[90,15,623,11],[90,19,623,15],[90,20,623,16,"_category"],[90,29,623,25],[91,6,624,2],[92,4,624,3],[93,6,624,3,"key"],[93,9,624,3],[94,6,624,3,"value"],[94,11,624,3],[94,13,632,2],[94,22,632,2,"getAlert"],[94,30,632,10,"getAlert"],[94,31,632,10],[94,33,632,32],[95,8,633,4],[95,15,633,11],[95,19,633,15],[95,20,633,16,"_alert"],[95,26,633,22],[96,6,634,2],[97,4,634,3],[98,6,634,3,"key"],[98,9,634,3],[99,6,634,3,"value"],[99,11,634,3],[99,13,641,2],[99,22,641,2,"getContentAvailable"],[99,41,641,21,"getContentAvailable"],[99,42,641,21],[99,44,641,42],[100,8,642,4],[100,15,642,11],[100,19,642,15],[100,20,642,16,"_contentAvailable"],[100,37,642,33],[101,6,643,2],[102,4,643,3],[103,6,643,3,"key"],[103,9,643,3],[104,6,643,3,"value"],[104,11,643,3],[104,13,650,2],[104,22,650,2,"getBadgeCount"],[104,35,650,15,"getBadgeCount"],[104,36,650,15],[104,38,650,27],[105,8,651,4],[105,15,651,11],[105,19,651,15],[105,20,651,16,"_badgeCount"],[105,31,651,27],[106,6,652,2],[107,4,652,3],[108,6,652,3,"key"],[108,9,652,3],[109,6,652,3,"value"],[109,11,652,3],[109,13,659,2],[109,22,659,2,"getData"],[109,29,659,9,"getData"],[109,30,659,9],[109,32,659,21],[110,8,660,4],[110,15,660,11],[110,19,660,15],[110,20,660,16,"_data"],[110,25,660,21],[111,6,661,2],[112,4,661,3],[113,6,661,3,"key"],[113,9,661,3],[114,6,661,3,"value"],[114,11,661,3],[114,13,668,2],[114,22,668,2,"getThreadID"],[114,33,668,13,"getThreadID"],[114,34,668,13],[114,36,668,25],[115,8,669,4],[115,15,669,11],[115,19,669,15],[115,20,669,16,"_threadID"],[115,29,669,25],[116,6,670,2],[117,4,670,3],[118,6,670,3,"key"],[118,9,670,3],[119,6,670,3,"value"],[119,11,670,3],[119,13,206,2],[119,22,206,9,"presentLocalNotification"],[119,46,206,33,"presentLocalNotification"],[119,47,207,4,"details"],[119,54,207,44],[119,56,208,10],[120,8,209,4],[120,12,209,4,"invariant"],[120,21,209,13],[120,22,209,13,"default"],[120,29,209,13],[120,31,210,6,"NativePushNotificationManagerIOS"],[120,63,210,38],[120,64,210,38,"default"],[120,71,210,38],[120,73,211,6],[120,116,212,4],[120,117,212,5],[121,8,214,4,"NativePushNotificationManagerIOS"],[121,40,214,36],[121,41,214,36,"default"],[121,48,214,36],[121,49,214,37,"presentLocalNotification"],[121,73,214,61],[121,74,214,62,"details"],[121,81,214,69],[121,82,214,70],[122,6,215,2],[123,4,215,3],[124,6,215,3,"key"],[124,9,215,3],[125,6,215,3,"value"],[125,11,215,3],[125,13,231,2],[125,22,231,9,"scheduleLocalNotification"],[125,47,231,34,"scheduleLocalNotification"],[125,48,232,4,"details"],[125,55,232,45],[125,57,233,10],[126,8,234,4],[126,12,234,4,"invariant"],[126,21,234,13],[126,22,234,13,"default"],[126,29,234,13],[126,31,235,6,"NativePushNotificationManagerIOS"],[126,63,235,38],[126,64,235,38,"default"],[126,71,235,38],[126,73,236,6],[126,116,237,4],[126,117,237,5],[127,8,239,4,"NativePushNotificationManagerIOS"],[127,40,239,36],[127,41,239,36,"default"],[127,48,239,36],[127,49,239,37,"scheduleLocalNotification"],[127,74,239,62],[127,75,239,63,"details"],[127,82,239,70],[127,83,239,71],[128,6,240,2],[129,4,240,3],[130,6,240,3,"key"],[130,9,240,3],[131,6,240,3,"value"],[131,11,240,3],[131,13,247,2],[131,22,247,9,"cancelAllLocalNotifications"],[131,49,247,36,"cancelAllLocalNotifications"],[131,50,247,36],[131,52,247,45],[132,8,248,4],[132,12,248,4,"invariant"],[132,21,248,13],[132,22,248,13,"default"],[132,29,248,13],[132,31,249,6,"NativePushNotificationManagerIOS"],[132,63,249,38],[132,64,249,38,"default"],[132,71,249,38],[132,73,250,6],[132,116,251,4],[132,117,251,5],[133,8,252,4,"NativePushNotificationManagerIOS"],[133,40,252,36],[133,41,252,36,"default"],[133,48,252,36],[133,49,252,37,"cancelAllLocalNotifications"],[133,76,252,64],[133,77,252,65],[133,78,252,66],[134,6,253,2],[135,4,253,3],[136,6,253,3,"key"],[136,9,253,3],[137,6,253,3,"value"],[137,11,253,3],[137,13,260,2],[137,22,260,9,"removeAllDeliveredNotifications"],[137,53,260,40,"removeAllDeliveredNotifications"],[137,54,260,40],[137,56,260,49],[138,8,261,4],[138,12,261,4,"invariant"],[138,21,261,13],[138,22,261,13,"default"],[138,29,261,13],[138,31,262,6,"NativePushNotificationManagerIOS"],[138,63,262,38],[138,64,262,38,"default"],[138,71,262,38],[138,73,263,6],[138,116,264,4],[138,117,264,5],[139,8,265,4,"NativePushNotificationManagerIOS"],[139,40,265,36],[139,41,265,36,"default"],[139,48,265,36],[139,49,265,37,"removeAllDeliveredNotifications"],[139,80,265,68],[139,81,265,69],[139,82,265,70],[140,6,266,2],[141,4,266,3],[142,6,266,3,"key"],[142,9,266,3],[143,6,266,3,"value"],[143,11,266,3],[143,13,274,2],[143,22,274,9,"getDeliveredNotifications"],[143,47,274,34,"getDeliveredNotifications"],[143,48,275,4,"callback"],[143,56,275,52],[143,58,276,10],[144,8,277,4],[144,12,277,4,"invariant"],[144,21,277,13],[144,22,277,13,"default"],[144,29,277,13],[144,31,278,6,"NativePushNotificationManagerIOS"],[144,63,278,38],[144,64,278,38,"default"],[144,71,278,38],[144,73,279,6],[144,116,280,4],[144,117,280,5],[145,8,281,4,"NativePushNotificationManagerIOS"],[145,40,281,36],[145,41,281,36,"default"],[145,48,281,36],[145,49,281,37,"getDeliveredNotifications"],[145,74,281,62],[145,75,281,63,"callback"],[145,83,281,71],[145,84,281,72],[146,6,282,2],[147,4,282,3],[148,6,282,3,"key"],[148,9,282,3],[149,6,282,3,"value"],[149,11,282,3],[149,13,289,2],[149,22,289,9,"removeDeliveredNotifications"],[149,50,289,37,"removeDeliveredNotifications"],[149,51,289,38,"identifiers"],[149,62,289,64],[149,64,289,72],[150,8,290,4],[150,12,290,4,"invariant"],[150,21,290,13],[150,22,290,13,"default"],[150,29,290,13],[150,31,291,6,"NativePushNotificationManagerIOS"],[150,63,291,38],[150,64,291,38,"default"],[150,71,291,38],[150,73,292,6],[150,116,293,4],[150,117,293,5],[151,8,294,4,"NativePushNotificationManagerIOS"],[151,40,294,36],[151,41,294,36,"default"],[151,48,294,36],[151,49,294,37,"removeDeliveredNotifications"],[151,77,294,65],[151,78,294,66,"identifiers"],[151,89,294,77],[151,90,294,78],[152,6,295,2],[153,4,295,3],[154,6,295,3,"key"],[154,9,295,3],[155,6,295,3,"value"],[155,11,295,3],[155,13,302,2],[155,22,302,9,"setApplicationIconBadgeNumber"],[155,51,302,38,"setApplicationIconBadgeNumber"],[155,52,302,39,"number"],[155,58,302,53],[155,60,302,61],[156,8,303,4],[156,12,303,4,"invariant"],[156,21,303,13],[156,22,303,13,"default"],[156,29,303,13],[156,31,304,6,"NativePushNotificationManagerIOS"],[156,63,304,38],[156,64,304,38,"default"],[156,71,304,38],[156,73,305,6],[156,116,306,4],[156,117,306,5],[157,8,307,4,"NativePushNotificationManagerIOS"],[157,40,307,36],[157,41,307,36,"default"],[157,48,307,36],[157,49,307,37,"setApplicationIconBadgeNumber"],[157,78,307,66],[157,79,307,67,"number"],[157,85,307,73],[157,86,307,74],[158,6,308,2],[159,4,308,3],[160,6,308,3,"key"],[160,9,308,3],[161,6,308,3,"value"],[161,11,308,3],[161,13,315,2],[161,22,315,9,"getApplicationIconBadgeNumber"],[161,51,315,38,"getApplicationIconBadgeNumber"],[161,52,315,39,"callback"],[161,60,315,57],[161,62,315,65],[162,8,316,4],[162,12,316,4,"invariant"],[162,21,316,13],[162,22,316,13,"default"],[162,29,316,13],[162,31,317,6,"NativePushNotificationManagerIOS"],[162,63,317,38],[162,64,317,38,"default"],[162,71,317,38],[162,73,318,6],[162,116,319,4],[162,117,319,5],[163,8,320,4,"NativePushNotificationManagerIOS"],[163,40,320,36],[163,41,320,36,"default"],[163,48,320,36],[163,49,320,37,"getApplicationIconBadgeNumber"],[163,78,320,66],[163,79,320,67,"callback"],[163,87,320,75],[163,88,320,76],[164,6,321,2],[165,4,321,3],[166,6,321,3,"key"],[166,9,321,3],[167,6,321,3,"value"],[167,11,321,3],[167,13,329,2],[167,22,329,9,"cancelLocalNotifications"],[167,46,329,33,"cancelLocalNotifications"],[167,47,329,34,"userInfo"],[167,55,329,50],[167,57,329,58],[168,8,330,4],[168,12,330,4,"invariant"],[168,21,330,13],[168,22,330,13,"default"],[168,29,330,13],[168,31,331,6,"NativePushNotificationManagerIOS"],[168,63,331,38],[168,64,331,38,"default"],[168,71,331,38],[168,73,332,6],[168,116,333,4],[168,117,333,5],[169,8,334,4,"NativePushNotificationManagerIOS"],[169,40,334,36],[169,41,334,36,"default"],[169,48,334,36],[169,49,334,37,"cancelLocalNotifications"],[169,73,334,61],[169,74,334,62,"userInfo"],[169,82,334,70],[169,83,334,71],[170,6,335,2],[171,4,335,3],[172,6,335,3,"key"],[172,9,335,3],[173,6,335,3,"value"],[173,11,335,3],[173,13,342,2],[173,22,342,9,"getScheduledLocalNotifications"],[173,52,342,39,"getScheduledLocalNotifications"],[173,53,342,40,"callback"],[173,61,342,58],[173,63,342,66],[174,8,343,4],[174,12,343,4,"invariant"],[174,21,343,13],[174,22,343,13,"default"],[174,29,343,13],[174,31,344,6,"NativePushNotificationManagerIOS"],[174,63,344,38],[174,64,344,38,"default"],[174,71,344,38],[174,73,345,6],[174,116,346,4],[174,117,346,5],[175,8,347,4,"NativePushNotificationManagerIOS"],[175,40,347,36],[175,41,347,36,"default"],[175,48,347,36],[175,49,347,37,"getScheduledLocalNotifications"],[175,79,347,67],[175,80,347,68,"callback"],[175,88,347,76],[175,89,347,77],[176,6,348,2],[177,4,348,3],[178,6,348,3,"key"],[178,9,348,3],[179,6,348,3,"value"],[179,11,348,3],[179,13,356,2],[179,22,356,9,"addEventListener"],[179,38,356,25,"addEventListener"],[179,39,357,4,"type"],[179,43,357,35],[179,45,358,4,"handler"],[179,52,358,21],[179,54,359,10],[180,8,360,4],[180,12,360,4,"invariant"],[180,21,360,13],[180,22,360,13,"default"],[180,29,360,13],[180,31,361,6,"type"],[180,35,361,10],[180,40,361,15],[180,54,361,29],[180,58,362,8,"type"],[180,62,362,12],[180,67,362,17],[180,77,362,27],[180,81,363,8,"type"],[180,85,363,12],[180,90,363,17],[180,109,363,36],[180,113,364,8,"type"],[180,117,364,12],[180,122,364,17],[180,141,364,36],[180,143,365,6],[180,258,366,4],[180,259,366,5],[181,8,367,4],[181,12,367,8,"listener"],[181,20,367,16],[182,8,368,4],[182,12,368,8,"type"],[182,16,368,12],[182,21,368,17],[182,35,368,31],[182,37,368,33],[183,10,369,6,"listener"],[183,18,369,14],[183,21,369,17,"PushNotificationEmitter"],[183,44,369,40],[183,45,369,41,"addListener"],[183,56,369,52],[183,57,370,8,"DEVICE_NOTIF_EVENT"],[183,75,370,26],[183,77,371,8,"notifData"],[183,86,371,17],[183,90,371,21],[184,12,372,10,"handler"],[184,19,372,17],[184,20,372,18],[184,24,372,22,"PushNotificationIOS"],[184,43,372,41],[184,44,372,42,"notifData"],[184,53,372,51],[184,54,372,52],[184,55,372,53],[185,10,373,8],[185,11,374,6],[185,12,374,7],[186,8,375,4],[186,9,375,5],[186,15,375,11],[186,19,375,15,"type"],[186,23,375,19],[186,28,375,24],[186,47,375,43],[186,49,375,45],[187,10,376,6,"listener"],[187,18,376,14],[187,21,376,17,"PushNotificationEmitter"],[187,44,376,40],[187,45,376,41,"addListener"],[187,56,376,52],[187,57,377,8,"DEVICE_LOCAL_NOTIF_EVENT"],[187,81,377,32],[187,83,378,8,"notifData"],[187,92,378,17],[187,96,378,21],[188,12,379,10,"handler"],[188,19,379,17],[188,20,379,18],[188,24,379,22,"PushNotificationIOS"],[188,43,379,41],[188,44,379,42,"notifData"],[188,53,379,51],[188,54,379,52],[188,55,379,53],[189,10,380,8],[189,11,381,6],[189,12,381,7],[190,8,382,4],[190,9,382,5],[190,15,382,11],[190,19,382,15,"type"],[190,23,382,19],[190,28,382,24],[190,38,382,34],[190,40,382,36],[191,10,383,6,"listener"],[191,18,383,14],[191,21,383,17,"PushNotificationEmitter"],[191,44,383,40],[191,45,383,41,"addListener"],[191,56,383,52],[191,57,384,8,"NOTIF_REGISTER_EVENT"],[191,77,384,28],[191,79,385,8,"registrationInfo"],[191,95,385,24],[191,99,385,28],[192,12,386,10,"handler"],[192,19,386,17],[192,20,386,18,"registrationInfo"],[192,36,386,34],[192,37,386,35,"deviceToken"],[192,48,386,46],[192,49,386,47],[193,10,387,8],[193,11,388,6],[193,12,388,7],[194,8,389,4],[194,9,389,5],[194,15,389,11],[194,19,389,15,"type"],[194,23,389,19],[194,28,389,24],[194,47,389,43],[194,49,389,45],[195,10,390,6,"listener"],[195,18,390,14],[195,21,390,17,"PushNotificationEmitter"],[195,44,390,40],[195,45,390,41,"addListener"],[195,56,390,52],[195,57,391,8,"NOTIF_REGISTRATION_ERROR_EVENT"],[195,87,391,38],[195,89,392,8,"errorInfo"],[195,98,392,17],[195,102,392,21],[196,12,393,10,"handler"],[196,19,393,17],[196,20,393,18,"errorInfo"],[196,29,393,27],[196,30,393,28],[197,10,394,8],[197,11,395,6],[197,12,395,7],[198,8,396,4],[199,8,397,4,"_notifHandlers"],[199,22,397,18],[199,23,397,19,"set"],[199,26,397,22],[199,27,397,23,"type"],[199,31,397,27],[199,33,397,29,"listener"],[199,41,397,37],[199,42,397,38],[200,6,398,2],[201,4,398,3],[202,6,398,3,"key"],[202,9,398,3],[203,6,398,3,"value"],[203,11,398,3],[203,13,406,2],[203,22,406,9,"removeEventListener"],[203,41,406,28,"removeEventListener"],[203,42,406,29,"type"],[203,46,406,60],[203,48,406,68],[204,8,407,4],[204,12,407,4,"invariant"],[204,21,407,13],[204,22,407,13,"default"],[204,29,407,13],[204,31,408,6,"type"],[204,35,408,10],[204,40,408,15],[204,54,408,29],[204,58,409,8,"type"],[204,62,409,12],[204,67,409,17],[204,77,409,27],[204,81,410,8,"type"],[204,85,410,12],[204,90,410,17],[204,109,410,36],[204,113,411,8,"type"],[204,117,411,12],[204,122,411,17],[204,141,411,36],[204,143,412,6],[204,258,413,4],[204,259,413,5],[205,8,414,4],[205,12,414,10,"listener"],[205,20,414,18],[205,23,414,21,"_notifHandlers"],[205,37,414,35],[205,38,414,36,"get"],[205,41,414,39],[205,42,414,40,"type"],[205,46,414,44],[205,47,414,45],[206,8,415,4],[206,12,415,8],[206,13,415,9,"listener"],[206,21,415,17],[206,23,415,19],[207,10,416,6],[208,8,417,4],[209,8,418,4,"listener"],[209,16,418,12],[209,17,418,13,"remove"],[209,23,418,19],[209,24,418,20],[209,25,418,21],[210,8,419,4,"_notifHandlers"],[210,22,419,18],[210,23,419,19,"delete"],[210,29,419,25],[210,30,419,26,"type"],[210,34,419,30],[210,35,419,31],[211,6,420,2],[212,4,420,3],[213,6,420,3,"key"],[213,9,420,3],[214,6,420,3,"value"],[214,11,420,3],[214,13,429,2],[214,22,429,9,"requestPermissions"],[214,40,429,27,"requestPermissions"],[214,41,430,4,"permissions"],[214,52,430,45],[214,54,436,5],[215,8,437,4],[215,12,437,8,"requestedPermissions"],[215,32,437,28],[215,35,437,31],[216,10,438,6,"alert"],[216,15,438,11],[216,17,438,13],[216,21,438,17],[217,10,439,6,"badge"],[217,15,439,11],[217,17,439,13],[217,21,439,17],[218,10,440,6,"sound"],[218,15,440,11],[218,17,440,13],[219,8,441,4],[219,9,441,5],[220,8,442,4],[220,12,442,8,"permissions"],[220,23,442,19],[220,25,442,21],[221,10,443,6,"requestedPermissions"],[221,30,443,26],[221,33,443,29],[222,12,444,8,"alert"],[222,17,444,13],[222,19,444,15],[222,20,444,16],[222,21,444,17,"permissions"],[222,32,444,28],[222,33,444,29,"alert"],[222,38,444,34],[223,12,445,8,"badge"],[223,17,445,13],[223,19,445,15],[223,20,445,16],[223,21,445,17,"permissions"],[223,32,445,28],[223,33,445,29,"badge"],[223,38,445,34],[224,12,446,8,"sound"],[224,17,446,13],[224,19,446,15],[224,20,446,16],[224,21,446,17,"permissions"],[224,32,446,28],[224,33,446,29,"sound"],[225,10,447,6],[225,11,447,7],[226,8,448,4],[227,8,449,4],[227,12,449,4,"invariant"],[227,21,449,13],[227,22,449,13,"default"],[227,29,449,13],[227,31,450,6,"NativePushNotificationManagerIOS"],[227,63,450,38],[227,64,450,38,"default"],[227,71,450,38],[227,73,451,6],[227,116,452,4],[227,117,452,5],[228,8,453,4],[228,15,453,11,"NativePushNotificationManagerIOS"],[228,47,453,43],[228,48,453,43,"default"],[228,55,453,43],[228,56,453,44,"requestPermissions"],[228,74,453,62],[228,75,454,6,"requestedPermissions"],[228,95,455,4],[228,96,455,5],[229,6,456,2],[230,4,456,3],[231,6,456,3,"key"],[231,9,456,3],[232,6,456,3,"value"],[232,11,456,3],[232,13,470,2],[232,22,470,9,"abandonPermissions"],[232,40,470,27,"abandonPermissions"],[232,41,470,27],[232,43,470,36],[233,8,471,4],[233,12,471,4,"invariant"],[233,21,471,13],[233,22,471,13,"default"],[233,29,471,13],[233,31,472,6,"NativePushNotificationManagerIOS"],[233,63,472,38],[233,64,472,38,"default"],[233,71,472,38],[233,73,473,6],[233,116,474,4],[233,117,474,5],[234,8,475,4,"NativePushNotificationManagerIOS"],[234,40,475,36],[234,41,475,36,"default"],[234,48,475,36],[234,49,475,37,"abandonPermissions"],[234,67,475,55],[234,68,475,56],[234,69,475,57],[235,6,476,2],[236,4,476,3],[237,6,476,3,"key"],[237,9,476,3],[238,6,476,3,"value"],[238,11,476,3],[238,13,488,2],[238,22,488,9,"checkPermissions"],[238,38,488,25,"checkPermissions"],[238,39,489,4,"callback"],[238,47,489,64],[238,49,490,10],[239,8,491,4],[239,12,491,4,"invariant"],[239,21,491,13],[239,22,491,13,"default"],[239,29,491,13],[239,31,491,14],[239,38,491,21,"callback"],[239,46,491,29],[239,51,491,34],[239,61,491,44],[239,63,491,46],[239,94,491,77],[239,95,491,78],[240,8,492,4],[240,12,492,4,"invariant"],[240,21,492,13],[240,22,492,13,"default"],[240,29,492,13],[240,31,493,6,"NativePushNotificationManagerIOS"],[240,63,493,38],[240,64,493,38,"default"],[240,71,493,38],[240,73,494,6],[240,116,495,4],[240,117,495,5],[241,8,496,4,"NativePushNotificationManagerIOS"],[241,40,496,36],[241,41,496,36,"default"],[241,48,496,36],[241,49,496,37,"checkPermissions"],[241,65,496,53],[241,66,496,54,"callback"],[241,74,496,62],[241,75,496,63],[242,6,497,2],[243,4,497,3],[244,6,497,3,"key"],[244,9,497,3],[245,6,497,3,"value"],[245,11,497,3],[245,13,505,2],[245,22,505,9,"getInitialNotification"],[245,44,505,31,"getInitialNotification"],[245,45,505,31],[245,47,505,62],[246,8,506,4],[246,12,506,4,"invariant"],[246,21,506,13],[246,22,506,13,"default"],[246,29,506,13],[246,31,507,6,"NativePushNotificationManagerIOS"],[246,63,507,38],[246,64,507,38,"default"],[246,71,507,38],[246,73,508,6],[246,116,509,4],[246,117,509,5],[247,8,510,4],[247,15,510,11,"NativePushNotificationManagerIOS"],[247,47,510,43],[247,48,510,43,"default"],[247,55,510,43],[247,56,510,44,"getInitialNotification"],[247,78,510,66],[247,79,510,67],[247,80,510,68],[247,81,510,69,"then"],[247,85,510,73],[247,86,511,6,"notification"],[247,98,511,18],[247,102,511,22],[248,10,512,8],[248,17,512,15,"notification"],[248,29,512,27],[248,33,512,31],[248,37,512,35,"PushNotificationIOS"],[248,56,512,54],[248,57,512,55,"notification"],[248,69,512,67],[248,70,512,68],[249,8,513,6],[249,9,514,4],[249,10,514,5],[250,6,515,2],[251,4,515,3],[252,6,515,3,"key"],[252,9,515,3],[253,6,515,3,"value"],[253,11,515,3],[253,13,521,2],[253,22,521,9,"getAuthorizationStatus"],[253,44,521,31,"getAuthorizationStatus"],[253,45,522,4,"callback"],[253,53,522,51],[253,55,523,10],[254,8,524,4],[254,12,524,4,"invariant"],[254,21,524,13],[254,22,524,13,"default"],[254,29,524,13],[254,31,525,6,"NativePushNotificationManagerIOS"],[254,63,525,38],[254,64,525,38,"default"],[254,71,525,38],[254,73,526,6],[254,116,527,4],[254,117,527,5],[255,8,529,4,"NativePushNotificationManagerIOS"],[255,40,529,36],[255,41,529,36,"default"],[255,48,529,36],[255,49,529,37,"getAuthorizationStatus"],[255,71,529,59],[255,72,529,60,"callback"],[255,80,529,68],[255,81,529,69],[256,6,530,2],[257,4,530,3],[258,2,530,3],[259,2,176,6,"PushNotificationIOS"],[259,21,176,25],[259,22,188,9,"FetchResult"],[259,33,188,20],[259,36,188,36],[260,4,189,4,"NewData"],[260,11,189,11],[260,13,189,13],[260,45,189,45],[261,4,190,4,"NoData"],[261,10,190,10],[261,12,190,12],[261,43,190,43],[262,4,191,4,"ResultFailed"],[262,16,191,16],[262,18,191,18],[263,2,192,2],[263,3,192,3],[264,2,673,0],[264,6,673,0,"_default"],[264,14,673,0],[264,17,673,15,"PushNotificationIOS"],[264,36,673,34],[265,0,673,35],[265,3]],"functionMap":{"names":["<global>","PushNotificationIOS","presentLocalNotification","scheduleLocalNotification","cancelAllLocalNotifications","removeAllDeliveredNotifications","getDeliveredNotifications","removeDeliveredNotifications","setApplicationIconBadgeNumber","getApplicationIconBadgeNumber","cancelLocalNotifications","getScheduledLocalNotifications","addEventListener","PushNotificationEmitter.addListener$argument_1","removeEventListener","requestPermissions","abandonPermissions","checkPermissions","getInitialNotification","NativePushNotificationManagerIOS.getInitialNotification.then$argument_0","getAuthorizationStatus","constructor","Object.keys.forEach$argument_0","finish","getMessage","getSound","getCategory","getAlert","getContentAvailable","getBadgeCount","getData","getThreadID"],"mappings":"AAA;AC+K;EC8B;GDS;EEgB;GFS;EGO;GHM;EIO;GJM;EKQ;GLQ;EMO;GNM;EOO;GPM;EQO;GRM;ESQ;GTM;EUO;GVM;EWQ;QCe;SDE;QCK;SDE;QCK;SDE;QCK;SDE;GXI;EaQ;Gbc;EcS;Gd2B;Eec;GfM;EgBY;GhBS;EiBQ;MCM;ODE;GjBE;EmBM;GnBS;EoBQ;uCCW;ODY;GpBS;EsBS;GtBkB;EuBK;GvBG;EwBQ;GxBE;EyBO;GzBE;E0BQ;G1BE;E2BO;G3BE;E4BO;G5BE;E6BO;G7BE;E8BO;G9BE;CDC"},"hasCjsExports":false},"type":"js/module"}]} |