mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 21:31:02 +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 var _this = this;\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(function (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, function (notifData) {\n handler(new PushNotificationIOS(notifData));\n });\n } else if (type === 'localNotification') {\n listener = PushNotificationEmitter.addListener(DEVICE_LOCAL_NOTIF_EVENT, function (notifData) {\n handler(new PushNotificationIOS(notifData));\n });\n } else if (type === 'register') {\n listener = PushNotificationEmitter.addListener(NOTIF_REGISTER_EVENT, function (registrationInfo) {\n handler(registrationInfo.deviceToken);\n });\n } else if (type === 'registrationError') {\n listener = PushNotificationEmitter.addListener(NOTIF_REGISTRATION_ERROR_EVENT, function (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(function (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":266,"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,"_this"],[38,15,538,35],[39,6,538,35],[39,10,538,35,"_classCallCheck"],[39,25,538,35],[39,26,538,35,"default"],[39,33,538,35],[39,41,538,35,"PushNotificationIOS"],[39,60,538,35],[40,6,539,4],[40,10,539,8],[40,11,539,9,"_data"],[40,16,539,14],[40,19,539,17],[40,20,539,18],[40,21,539,19],[41,6,540,4],[41,10,540,8],[41,11,540,9,"_remoteNotificationCompleteCallbackCalled"],[41,52,540,50],[41,55,540,53],[41,60,540,58],[42,6,541,4],[42,10,541,8],[42,11,541,9,"_isRemote"],[42,20,541,18],[42,23,541,21,"nativeNotif"],[42,34,541,32],[42,35,541,33,"remote"],[42,41,541,39],[43,6,542,4],[43,10,542,8],[43,14,542,12],[43,15,542,13,"_isRemote"],[43,24,542,22],[43,26,542,24],[44,8,543,6],[44,12,543,10],[44,13,543,11,"_notificationId"],[44,28,543,26],[44,31,543,29,"nativeNotif"],[44,42,543,40],[44,43,543,41,"notificationId"],[44,57,543,55],[45,6,544,4],[46,6,546,4],[46,10,546,8,"nativeNotif"],[46,21,546,19],[46,22,546,20,"remote"],[46,28,546,26],[46,30,546,28],[47,8,549,6,"Object"],[47,14,549,12],[47,15,549,13,"keys"],[47,19,549,17],[47,20,549,18,"nativeNotif"],[47,31,549,29],[47,32,549,30],[47,33,549,31,"forEach"],[47,40,549,38],[47,41,549,39],[47,51,549,39,"notifKey"],[47,59,549,47],[47,61,549,51],[48,10,550,8],[48,14,550,14,"notifVal"],[48,22,550,22],[48,25,550,25,"nativeNotif"],[48,36,550,36],[48,37,550,37,"notifKey"],[48,45,550,45],[48,46,550,46],[49,10,551,8],[49,14,551,12,"notifKey"],[49,22,551,20],[49,27,551,25],[49,32,551,30],[49,34,551,32],[50,12,552,10,"_this"],[50,17,552,14],[50,18,552,15,"_alert"],[50,24,552,21],[50,27,552,24,"notifVal"],[50,35,552,32],[50,36,552,33,"alert"],[50,41,552,38],[51,12,553,10,"_this"],[51,17,553,14],[51,18,553,15,"_sound"],[51,24,553,21],[51,27,553,24,"notifVal"],[51,35,553,32],[51,36,553,33,"sound"],[51,41,553,38],[52,12,554,10,"_this"],[52,17,554,14],[52,18,554,15,"_badgeCount"],[52,29,554,26],[52,32,554,29,"notifVal"],[52,40,554,37],[52,41,554,38,"badge"],[52,46,554,43],[53,12,555,10,"_this"],[53,17,555,14],[53,18,555,15,"_category"],[53,27,555,24],[53,30,555,27,"notifVal"],[53,38,555,35],[53,39,555,36,"category"],[53,47,555,44],[54,12,556,10,"_this"],[54,17,556,14],[54,18,556,15,"_contentAvailable"],[54,35,556,32],[54,38,556,35,"notifVal"],[54,46,556,43],[54,47,556,44],[54,66,556,63],[54,67,556,64],[55,12,557,10,"_this"],[55,17,557,14],[55,18,557,15,"_threadID"],[55,27,557,24],[55,30,557,27,"notifVal"],[55,38,557,35],[55,39,557,36],[55,50,557,47],[55,51,557,48],[56,10,558,8],[56,11,558,9],[56,17,558,15],[57,12,559,10,"_this"],[57,17,559,14],[57,18,559,15,"_data"],[57,23,559,20],[57,24,559,21,"notifKey"],[57,32,559,29],[57,33,559,30],[57,36,559,33,"notifVal"],[57,44,559,41],[58,10,560,8],[59,8,561,6],[59,9,561,7],[59,10,561,8],[60,6,562,4],[60,7,562,5],[60,13,562,11],[61,8,564,6],[61,12,564,10],[61,13,564,11,"_badgeCount"],[61,24,564,22],[61,27,564,25,"nativeNotif"],[61,38,564,36],[61,39,564,37,"applicationIconBadgeNumber"],[61,65,564,63],[62,8,565,6],[62,12,565,10],[62,13,565,11,"_sound"],[62,19,565,17],[62,22,565,20,"nativeNotif"],[62,33,565,31],[62,34,565,32,"soundName"],[62,43,565,41],[63,8,566,6],[63,12,566,10],[63,13,566,11,"_alert"],[63,19,566,17],[63,22,566,20,"nativeNotif"],[63,33,566,31],[63,34,566,32,"alertBody"],[63,43,566,41],[64,8,567,6],[64,12,567,10],[64,13,567,11,"_data"],[64,18,567,16],[64,21,567,19,"nativeNotif"],[64,32,567,30],[64,33,567,31,"userInfo"],[64,41,567,39],[65,8,568,6],[65,12,568,10],[65,13,568,11,"_category"],[65,22,568,20],[65,25,568,23,"nativeNotif"],[65,36,568,34],[65,37,568,35,"category"],[65,45,568,43],[66,6,569,4],[67,4,570,2],[68,4,570,3],[68,15,570,3,"_createClass"],[68,27,570,3],[68,28,570,3,"default"],[68,35,570,3],[68,37,570,3,"PushNotificationIOS"],[68,56,570,3],[69,6,570,3,"key"],[69,9,570,3],[70,6,570,3,"value"],[70,11,570,3],[70,13,579,2],[70,22,579,2,"finish"],[70,28,579,8,"finish"],[70,29,579,9,"fetchResult"],[70,40,579,28],[70,42,579,36],[71,8,580,4],[71,12,581,6],[71,13,581,7],[71,17,581,11],[71,18,581,12,"_isRemote"],[71,27,581,21],[71,31,582,6],[71,32,582,7],[71,36,582,11],[71,37,582,12,"_notificationId"],[71,52,582,27],[71,56,583,6],[71,60,583,10],[71,61,583,11,"_remoteNotificationCompleteCallbackCalled"],[71,102,583,52],[71,104,584,6],[72,10,585,6],[73,8,586,4],[74,8,587,4],[74,12,587,8],[74,13,587,9,"_remoteNotificationCompleteCallbackCalled"],[74,54,587,50],[74,57,587,53],[74,61,587,57],[75,8,589,4],[75,12,589,4,"invariant"],[75,21,589,13],[75,22,589,13,"default"],[75,29,589,13],[75,31,590,6,"NativePushNotificationManagerIOS"],[75,63,590,38],[75,64,590,38,"default"],[75,71,590,38],[75,73,591,6],[75,116,592,4],[75,117,592,5],[76,8,593,4,"NativePushNotificationManagerIOS"],[76,40,593,36],[76,41,593,36,"default"],[76,48,593,36],[76,49,593,37,"onFinishRemoteNotification"],[76,75,593,63],[76,76,594,6],[76,80,594,10],[76,81,594,11,"_notificationId"],[76,96,594,26],[76,98,595,6,"fetchResult"],[76,109,596,4],[76,110,596,5],[77,6,597,2],[78,4,597,3],[79,6,597,3,"key"],[79,9,597,3],[80,6,597,3,"value"],[80,11,597,3],[80,13,602,2],[80,22,602,2,"getMessage"],[80,32,602,12,"getMessage"],[80,33,602,12],[80,35,602,34],[81,8,604,4],[81,15,604,11],[81,19,604,15],[81,20,604,16,"_alert"],[81,26,604,22],[82,6,605,2],[83,4,605,3],[84,6,605,3,"key"],[84,9,605,3],[85,6,605,3,"value"],[85,11,605,3],[85,13,613,2],[85,22,613,2,"getSound"],[85,30,613,10,"getSound"],[85,31,613,10],[85,33,613,22],[86,8,614,4],[86,15,614,11],[86,19,614,15],[86,20,614,16,"_sound"],[86,26,614,22],[87,6,615,2],[88,4,615,3],[89,6,615,3,"key"],[89,9,615,3],[90,6,615,3,"value"],[90,11,615,3],[90,13,622,2],[90,22,622,2,"getCategory"],[90,33,622,13,"getCategory"],[90,34,622,13],[90,36,622,25],[91,8,623,4],[91,15,623,11],[91,19,623,15],[91,20,623,16,"_category"],[91,29,623,25],[92,6,624,2],[93,4,624,3],[94,6,624,3,"key"],[94,9,624,3],[95,6,624,3,"value"],[95,11,624,3],[95,13,632,2],[95,22,632,2,"getAlert"],[95,30,632,10,"getAlert"],[95,31,632,10],[95,33,632,32],[96,8,633,4],[96,15,633,11],[96,19,633,15],[96,20,633,16,"_alert"],[96,26,633,22],[97,6,634,2],[98,4,634,3],[99,6,634,3,"key"],[99,9,634,3],[100,6,634,3,"value"],[100,11,634,3],[100,13,641,2],[100,22,641,2,"getContentAvailable"],[100,41,641,21,"getContentAvailable"],[100,42,641,21],[100,44,641,42],[101,8,642,4],[101,15,642,11],[101,19,642,15],[101,20,642,16,"_contentAvailable"],[101,37,642,33],[102,6,643,2],[103,4,643,3],[104,6,643,3,"key"],[104,9,643,3],[105,6,643,3,"value"],[105,11,643,3],[105,13,650,2],[105,22,650,2,"getBadgeCount"],[105,35,650,15,"getBadgeCount"],[105,36,650,15],[105,38,650,27],[106,8,651,4],[106,15,651,11],[106,19,651,15],[106,20,651,16,"_badgeCount"],[106,31,651,27],[107,6,652,2],[108,4,652,3],[109,6,652,3,"key"],[109,9,652,3],[110,6,652,3,"value"],[110,11,652,3],[110,13,659,2],[110,22,659,2,"getData"],[110,29,659,9,"getData"],[110,30,659,9],[110,32,659,21],[111,8,660,4],[111,15,660,11],[111,19,660,15],[111,20,660,16,"_data"],[111,25,660,21],[112,6,661,2],[113,4,661,3],[114,6,661,3,"key"],[114,9,661,3],[115,6,661,3,"value"],[115,11,661,3],[115,13,668,2],[115,22,668,2,"getThreadID"],[115,33,668,13,"getThreadID"],[115,34,668,13],[115,36,668,25],[116,8,669,4],[116,15,669,11],[116,19,669,15],[116,20,669,16,"_threadID"],[116,29,669,25],[117,6,670,2],[118,4,670,3],[119,6,670,3,"key"],[119,9,670,3],[120,6,670,3,"value"],[120,11,670,3],[120,13,206,2],[120,22,206,9,"presentLocalNotification"],[120,46,206,33,"presentLocalNotification"],[120,47,207,4,"details"],[120,54,207,44],[120,56,208,10],[121,8,209,4],[121,12,209,4,"invariant"],[121,21,209,13],[121,22,209,13,"default"],[121,29,209,13],[121,31,210,6,"NativePushNotificationManagerIOS"],[121,63,210,38],[121,64,210,38,"default"],[121,71,210,38],[121,73,211,6],[121,116,212,4],[121,117,212,5],[122,8,214,4,"NativePushNotificationManagerIOS"],[122,40,214,36],[122,41,214,36,"default"],[122,48,214,36],[122,49,214,37,"presentLocalNotification"],[122,73,214,61],[122,74,214,62,"details"],[122,81,214,69],[122,82,214,70],[123,6,215,2],[124,4,215,3],[125,6,215,3,"key"],[125,9,215,3],[126,6,215,3,"value"],[126,11,215,3],[126,13,231,2],[126,22,231,9,"scheduleLocalNotification"],[126,47,231,34,"scheduleLocalNotification"],[126,48,232,4,"details"],[126,55,232,45],[126,57,233,10],[127,8,234,4],[127,12,234,4,"invariant"],[127,21,234,13],[127,22,234,13,"default"],[127,29,234,13],[127,31,235,6,"NativePushNotificationManagerIOS"],[127,63,235,38],[127,64,235,38,"default"],[127,71,235,38],[127,73,236,6],[127,116,237,4],[127,117,237,5],[128,8,239,4,"NativePushNotificationManagerIOS"],[128,40,239,36],[128,41,239,36,"default"],[128,48,239,36],[128,49,239,37,"scheduleLocalNotification"],[128,74,239,62],[128,75,239,63,"details"],[128,82,239,70],[128,83,239,71],[129,6,240,2],[130,4,240,3],[131,6,240,3,"key"],[131,9,240,3],[132,6,240,3,"value"],[132,11,240,3],[132,13,247,2],[132,22,247,9,"cancelAllLocalNotifications"],[132,49,247,36,"cancelAllLocalNotifications"],[132,50,247,36],[132,52,247,45],[133,8,248,4],[133,12,248,4,"invariant"],[133,21,248,13],[133,22,248,13,"default"],[133,29,248,13],[133,31,249,6,"NativePushNotificationManagerIOS"],[133,63,249,38],[133,64,249,38,"default"],[133,71,249,38],[133,73,250,6],[133,116,251,4],[133,117,251,5],[134,8,252,4,"NativePushNotificationManagerIOS"],[134,40,252,36],[134,41,252,36,"default"],[134,48,252,36],[134,49,252,37,"cancelAllLocalNotifications"],[134,76,252,64],[134,77,252,65],[134,78,252,66],[135,6,253,2],[136,4,253,3],[137,6,253,3,"key"],[137,9,253,3],[138,6,253,3,"value"],[138,11,253,3],[138,13,260,2],[138,22,260,9,"removeAllDeliveredNotifications"],[138,53,260,40,"removeAllDeliveredNotifications"],[138,54,260,40],[138,56,260,49],[139,8,261,4],[139,12,261,4,"invariant"],[139,21,261,13],[139,22,261,13,"default"],[139,29,261,13],[139,31,262,6,"NativePushNotificationManagerIOS"],[139,63,262,38],[139,64,262,38,"default"],[139,71,262,38],[139,73,263,6],[139,116,264,4],[139,117,264,5],[140,8,265,4,"NativePushNotificationManagerIOS"],[140,40,265,36],[140,41,265,36,"default"],[140,48,265,36],[140,49,265,37,"removeAllDeliveredNotifications"],[140,80,265,68],[140,81,265,69],[140,82,265,70],[141,6,266,2],[142,4,266,3],[143,6,266,3,"key"],[143,9,266,3],[144,6,266,3,"value"],[144,11,266,3],[144,13,274,2],[144,22,274,9,"getDeliveredNotifications"],[144,47,274,34,"getDeliveredNotifications"],[144,48,275,4,"callback"],[144,56,275,52],[144,58,276,10],[145,8,277,4],[145,12,277,4,"invariant"],[145,21,277,13],[145,22,277,13,"default"],[145,29,277,13],[145,31,278,6,"NativePushNotificationManagerIOS"],[145,63,278,38],[145,64,278,38,"default"],[145,71,278,38],[145,73,279,6],[145,116,280,4],[145,117,280,5],[146,8,281,4,"NativePushNotificationManagerIOS"],[146,40,281,36],[146,41,281,36,"default"],[146,48,281,36],[146,49,281,37,"getDeliveredNotifications"],[146,74,281,62],[146,75,281,63,"callback"],[146,83,281,71],[146,84,281,72],[147,6,282,2],[148,4,282,3],[149,6,282,3,"key"],[149,9,282,3],[150,6,282,3,"value"],[150,11,282,3],[150,13,289,2],[150,22,289,9,"removeDeliveredNotifications"],[150,50,289,37,"removeDeliveredNotifications"],[150,51,289,38,"identifiers"],[150,62,289,64],[150,64,289,72],[151,8,290,4],[151,12,290,4,"invariant"],[151,21,290,13],[151,22,290,13,"default"],[151,29,290,13],[151,31,291,6,"NativePushNotificationManagerIOS"],[151,63,291,38],[151,64,291,38,"default"],[151,71,291,38],[151,73,292,6],[151,116,293,4],[151,117,293,5],[152,8,294,4,"NativePushNotificationManagerIOS"],[152,40,294,36],[152,41,294,36,"default"],[152,48,294,36],[152,49,294,37,"removeDeliveredNotifications"],[152,77,294,65],[152,78,294,66,"identifiers"],[152,89,294,77],[152,90,294,78],[153,6,295,2],[154,4,295,3],[155,6,295,3,"key"],[155,9,295,3],[156,6,295,3,"value"],[156,11,295,3],[156,13,302,2],[156,22,302,9,"setApplicationIconBadgeNumber"],[156,51,302,38,"setApplicationIconBadgeNumber"],[156,52,302,39,"number"],[156,58,302,53],[156,60,302,61],[157,8,303,4],[157,12,303,4,"invariant"],[157,21,303,13],[157,22,303,13,"default"],[157,29,303,13],[157,31,304,6,"NativePushNotificationManagerIOS"],[157,63,304,38],[157,64,304,38,"default"],[157,71,304,38],[157,73,305,6],[157,116,306,4],[157,117,306,5],[158,8,307,4,"NativePushNotificationManagerIOS"],[158,40,307,36],[158,41,307,36,"default"],[158,48,307,36],[158,49,307,37,"setApplicationIconBadgeNumber"],[158,78,307,66],[158,79,307,67,"number"],[158,85,307,73],[158,86,307,74],[159,6,308,2],[160,4,308,3],[161,6,308,3,"key"],[161,9,308,3],[162,6,308,3,"value"],[162,11,308,3],[162,13,315,2],[162,22,315,9,"getApplicationIconBadgeNumber"],[162,51,315,38,"getApplicationIconBadgeNumber"],[162,52,315,39,"callback"],[162,60,315,57],[162,62,315,65],[163,8,316,4],[163,12,316,4,"invariant"],[163,21,316,13],[163,22,316,13,"default"],[163,29,316,13],[163,31,317,6,"NativePushNotificationManagerIOS"],[163,63,317,38],[163,64,317,38,"default"],[163,71,317,38],[163,73,318,6],[163,116,319,4],[163,117,319,5],[164,8,320,4,"NativePushNotificationManagerIOS"],[164,40,320,36],[164,41,320,36,"default"],[164,48,320,36],[164,49,320,37,"getApplicationIconBadgeNumber"],[164,78,320,66],[164,79,320,67,"callback"],[164,87,320,75],[164,88,320,76],[165,6,321,2],[166,4,321,3],[167,6,321,3,"key"],[167,9,321,3],[168,6,321,3,"value"],[168,11,321,3],[168,13,329,2],[168,22,329,9,"cancelLocalNotifications"],[168,46,329,33,"cancelLocalNotifications"],[168,47,329,34,"userInfo"],[168,55,329,50],[168,57,329,58],[169,8,330,4],[169,12,330,4,"invariant"],[169,21,330,13],[169,22,330,13,"default"],[169,29,330,13],[169,31,331,6,"NativePushNotificationManagerIOS"],[169,63,331,38],[169,64,331,38,"default"],[169,71,331,38],[169,73,332,6],[169,116,333,4],[169,117,333,5],[170,8,334,4,"NativePushNotificationManagerIOS"],[170,40,334,36],[170,41,334,36,"default"],[170,48,334,36],[170,49,334,37,"cancelLocalNotifications"],[170,73,334,61],[170,74,334,62,"userInfo"],[170,82,334,70],[170,83,334,71],[171,6,335,2],[172,4,335,3],[173,6,335,3,"key"],[173,9,335,3],[174,6,335,3,"value"],[174,11,335,3],[174,13,342,2],[174,22,342,9,"getScheduledLocalNotifications"],[174,52,342,39,"getScheduledLocalNotifications"],[174,53,342,40,"callback"],[174,61,342,58],[174,63,342,66],[175,8,343,4],[175,12,343,4,"invariant"],[175,21,343,13],[175,22,343,13,"default"],[175,29,343,13],[175,31,344,6,"NativePushNotificationManagerIOS"],[175,63,344,38],[175,64,344,38,"default"],[175,71,344,38],[175,73,345,6],[175,116,346,4],[175,117,346,5],[176,8,347,4,"NativePushNotificationManagerIOS"],[176,40,347,36],[176,41,347,36,"default"],[176,48,347,36],[176,49,347,37,"getScheduledLocalNotifications"],[176,79,347,67],[176,80,347,68,"callback"],[176,88,347,76],[176,89,347,77],[177,6,348,2],[178,4,348,3],[179,6,348,3,"key"],[179,9,348,3],[180,6,348,3,"value"],[180,11,348,3],[180,13,356,2],[180,22,356,9,"addEventListener"],[180,38,356,25,"addEventListener"],[180,39,357,4,"type"],[180,43,357,35],[180,45,358,4,"handler"],[180,52,358,21],[180,54,359,10],[181,8,360,4],[181,12,360,4,"invariant"],[181,21,360,13],[181,22,360,13,"default"],[181,29,360,13],[181,31,361,6,"type"],[181,35,361,10],[181,40,361,15],[181,54,361,29],[181,58,362,8,"type"],[181,62,362,12],[181,67,362,17],[181,77,362,27],[181,81,363,8,"type"],[181,85,363,12],[181,90,363,17],[181,109,363,36],[181,113,364,8,"type"],[181,117,364,12],[181,122,364,17],[181,141,364,36],[181,143,365,6],[181,258,366,4],[181,259,366,5],[182,8,367,4],[182,12,367,8,"listener"],[182,20,367,16],[183,8,368,4],[183,12,368,8,"type"],[183,16,368,12],[183,21,368,17],[183,35,368,31],[183,37,368,33],[184,10,369,6,"listener"],[184,18,369,14],[184,21,369,17,"PushNotificationEmitter"],[184,44,369,40],[184,45,369,41,"addListener"],[184,56,369,52],[184,57,370,8,"DEVICE_NOTIF_EVENT"],[184,75,370,26],[184,77,371,8],[184,87,371,8,"notifData"],[184,96,371,17],[184,98,371,21],[185,12,372,10,"handler"],[185,19,372,17],[185,20,372,18],[185,24,372,22,"PushNotificationIOS"],[185,43,372,41],[185,44,372,42,"notifData"],[185,53,372,51],[185,54,372,52],[185,55,372,53],[186,10,373,8],[186,11,374,6],[186,12,374,7],[187,8,375,4],[187,9,375,5],[187,15,375,11],[187,19,375,15,"type"],[187,23,375,19],[187,28,375,24],[187,47,375,43],[187,49,375,45],[188,10,376,6,"listener"],[188,18,376,14],[188,21,376,17,"PushNotificationEmitter"],[188,44,376,40],[188,45,376,41,"addListener"],[188,56,376,52],[188,57,377,8,"DEVICE_LOCAL_NOTIF_EVENT"],[188,81,377,32],[188,83,378,8],[188,93,378,8,"notifData"],[188,102,378,17],[188,104,378,21],[189,12,379,10,"handler"],[189,19,379,17],[189,20,379,18],[189,24,379,22,"PushNotificationIOS"],[189,43,379,41],[189,44,379,42,"notifData"],[189,53,379,51],[189,54,379,52],[189,55,379,53],[190,10,380,8],[190,11,381,6],[190,12,381,7],[191,8,382,4],[191,9,382,5],[191,15,382,11],[191,19,382,15,"type"],[191,23,382,19],[191,28,382,24],[191,38,382,34],[191,40,382,36],[192,10,383,6,"listener"],[192,18,383,14],[192,21,383,17,"PushNotificationEmitter"],[192,44,383,40],[192,45,383,41,"addListener"],[192,56,383,52],[192,57,384,8,"NOTIF_REGISTER_EVENT"],[192,77,384,28],[192,79,385,8],[192,89,385,8,"registrationInfo"],[192,105,385,24],[192,107,385,28],[193,12,386,10,"handler"],[193,19,386,17],[193,20,386,18,"registrationInfo"],[193,36,386,34],[193,37,386,35,"deviceToken"],[193,48,386,46],[193,49,386,47],[194,10,387,8],[194,11,388,6],[194,12,388,7],[195,8,389,4],[195,9,389,5],[195,15,389,11],[195,19,389,15,"type"],[195,23,389,19],[195,28,389,24],[195,47,389,43],[195,49,389,45],[196,10,390,6,"listener"],[196,18,390,14],[196,21,390,17,"PushNotificationEmitter"],[196,44,390,40],[196,45,390,41,"addListener"],[196,56,390,52],[196,57,391,8,"NOTIF_REGISTRATION_ERROR_EVENT"],[196,87,391,38],[196,89,392,8],[196,99,392,8,"errorInfo"],[196,108,392,17],[196,110,392,21],[197,12,393,10,"handler"],[197,19,393,17],[197,20,393,18,"errorInfo"],[197,29,393,27],[197,30,393,28],[198,10,394,8],[198,11,395,6],[198,12,395,7],[199,8,396,4],[200,8,397,4,"_notifHandlers"],[200,22,397,18],[200,23,397,19,"set"],[200,26,397,22],[200,27,397,23,"type"],[200,31,397,27],[200,33,397,29,"listener"],[200,41,397,37],[200,42,397,38],[201,6,398,2],[202,4,398,3],[203,6,398,3,"key"],[203,9,398,3],[204,6,398,3,"value"],[204,11,398,3],[204,13,406,2],[204,22,406,9,"removeEventListener"],[204,41,406,28,"removeEventListener"],[204,42,406,29,"type"],[204,46,406,60],[204,48,406,68],[205,8,407,4],[205,12,407,4,"invariant"],[205,21,407,13],[205,22,407,13,"default"],[205,29,407,13],[205,31,408,6,"type"],[205,35,408,10],[205,40,408,15],[205,54,408,29],[205,58,409,8,"type"],[205,62,409,12],[205,67,409,17],[205,77,409,27],[205,81,410,8,"type"],[205,85,410,12],[205,90,410,17],[205,109,410,36],[205,113,411,8,"type"],[205,117,411,12],[205,122,411,17],[205,141,411,36],[205,143,412,6],[205,258,413,4],[205,259,413,5],[206,8,414,4],[206,12,414,10,"listener"],[206,20,414,18],[206,23,414,21,"_notifHandlers"],[206,37,414,35],[206,38,414,36,"get"],[206,41,414,39],[206,42,414,40,"type"],[206,46,414,44],[206,47,414,45],[207,8,415,4],[207,12,415,8],[207,13,415,9,"listener"],[207,21,415,17],[207,23,415,19],[208,10,416,6],[209,8,417,4],[210,8,418,4,"listener"],[210,16,418,12],[210,17,418,13,"remove"],[210,23,418,19],[210,24,418,20],[210,25,418,21],[211,8,419,4,"_notifHandlers"],[211,22,419,18],[211,23,419,19,"delete"],[211,29,419,25],[211,30,419,26,"type"],[211,34,419,30],[211,35,419,31],[212,6,420,2],[213,4,420,3],[214,6,420,3,"key"],[214,9,420,3],[215,6,420,3,"value"],[215,11,420,3],[215,13,429,2],[215,22,429,9,"requestPermissions"],[215,40,429,27,"requestPermissions"],[215,41,430,4,"permissions"],[215,52,430,45],[215,54,436,5],[216,8,437,4],[216,12,437,8,"requestedPermissions"],[216,32,437,28],[216,35,437,31],[217,10,438,6,"alert"],[217,15,438,11],[217,17,438,13],[217,21,438,17],[218,10,439,6,"badge"],[218,15,439,11],[218,17,439,13],[218,21,439,17],[219,10,440,6,"sound"],[219,15,440,11],[219,17,440,13],[220,8,441,4],[220,9,441,5],[221,8,442,4],[221,12,442,8,"permissions"],[221,23,442,19],[221,25,442,21],[222,10,443,6,"requestedPermissions"],[222,30,443,26],[222,33,443,29],[223,12,444,8,"alert"],[223,17,444,13],[223,19,444,15],[223,20,444,16],[223,21,444,17,"permissions"],[223,32,444,28],[223,33,444,29,"alert"],[223,38,444,34],[224,12,445,8,"badge"],[224,17,445,13],[224,19,445,15],[224,20,445,16],[224,21,445,17,"permissions"],[224,32,445,28],[224,33,445,29,"badge"],[224,38,445,34],[225,12,446,8,"sound"],[225,17,446,13],[225,19,446,15],[225,20,446,16],[225,21,446,17,"permissions"],[225,32,446,28],[225,33,446,29,"sound"],[226,10,447,6],[226,11,447,7],[227,8,448,4],[228,8,449,4],[228,12,449,4,"invariant"],[228,21,449,13],[228,22,449,13,"default"],[228,29,449,13],[228,31,450,6,"NativePushNotificationManagerIOS"],[228,63,450,38],[228,64,450,38,"default"],[228,71,450,38],[228,73,451,6],[228,116,452,4],[228,117,452,5],[229,8,453,4],[229,15,453,11,"NativePushNotificationManagerIOS"],[229,47,453,43],[229,48,453,43,"default"],[229,55,453,43],[229,56,453,44,"requestPermissions"],[229,74,453,62],[229,75,454,6,"requestedPermissions"],[229,95,455,4],[229,96,455,5],[230,6,456,2],[231,4,456,3],[232,6,456,3,"key"],[232,9,456,3],[233,6,456,3,"value"],[233,11,456,3],[233,13,470,2],[233,22,470,9,"abandonPermissions"],[233,40,470,27,"abandonPermissions"],[233,41,470,27],[233,43,470,36],[234,8,471,4],[234,12,471,4,"invariant"],[234,21,471,13],[234,22,471,13,"default"],[234,29,471,13],[234,31,472,6,"NativePushNotificationManagerIOS"],[234,63,472,38],[234,64,472,38,"default"],[234,71,472,38],[234,73,473,6],[234,116,474,4],[234,117,474,5],[235,8,475,4,"NativePushNotificationManagerIOS"],[235,40,475,36],[235,41,475,36,"default"],[235,48,475,36],[235,49,475,37,"abandonPermissions"],[235,67,475,55],[235,68,475,56],[235,69,475,57],[236,6,476,2],[237,4,476,3],[238,6,476,3,"key"],[238,9,476,3],[239,6,476,3,"value"],[239,11,476,3],[239,13,488,2],[239,22,488,9,"checkPermissions"],[239,38,488,25,"checkPermissions"],[239,39,489,4,"callback"],[239,47,489,64],[239,49,490,10],[240,8,491,4],[240,12,491,4,"invariant"],[240,21,491,13],[240,22,491,13,"default"],[240,29,491,13],[240,31,491,14],[240,38,491,21,"callback"],[240,46,491,29],[240,51,491,34],[240,61,491,44],[240,63,491,46],[240,94,491,77],[240,95,491,78],[241,8,492,4],[241,12,492,4,"invariant"],[241,21,492,13],[241,22,492,13,"default"],[241,29,492,13],[241,31,493,6,"NativePushNotificationManagerIOS"],[241,63,493,38],[241,64,493,38,"default"],[241,71,493,38],[241,73,494,6],[241,116,495,4],[241,117,495,5],[242,8,496,4,"NativePushNotificationManagerIOS"],[242,40,496,36],[242,41,496,36,"default"],[242,48,496,36],[242,49,496,37,"checkPermissions"],[242,65,496,53],[242,66,496,54,"callback"],[242,74,496,62],[242,75,496,63],[243,6,497,2],[244,4,497,3],[245,6,497,3,"key"],[245,9,497,3],[246,6,497,3,"value"],[246,11,497,3],[246,13,505,2],[246,22,505,9,"getInitialNotification"],[246,44,505,31,"getInitialNotification"],[246,45,505,31],[246,47,505,62],[247,8,506,4],[247,12,506,4,"invariant"],[247,21,506,13],[247,22,506,13,"default"],[247,29,506,13],[247,31,507,6,"NativePushNotificationManagerIOS"],[247,63,507,38],[247,64,507,38,"default"],[247,71,507,38],[247,73,508,6],[247,116,509,4],[247,117,509,5],[248,8,510,4],[248,15,510,11,"NativePushNotificationManagerIOS"],[248,47,510,43],[248,48,510,43,"default"],[248,55,510,43],[248,56,510,44,"getInitialNotification"],[248,78,510,66],[248,79,510,67],[248,80,510,68],[248,81,510,69,"then"],[248,85,510,73],[248,86,511,6],[248,96,511,6,"notification"],[248,108,511,18],[248,110,511,22],[249,10,512,8],[249,17,512,15,"notification"],[249,29,512,27],[249,33,512,31],[249,37,512,35,"PushNotificationIOS"],[249,56,512,54],[249,57,512,55,"notification"],[249,69,512,67],[249,70,512,68],[250,8,513,6],[250,9,514,4],[250,10,514,5],[251,6,515,2],[252,4,515,3],[253,6,515,3,"key"],[253,9,515,3],[254,6,515,3,"value"],[254,11,515,3],[254,13,521,2],[254,22,521,9,"getAuthorizationStatus"],[254,44,521,31,"getAuthorizationStatus"],[254,45,522,4,"callback"],[254,53,522,51],[254,55,523,10],[255,8,524,4],[255,12,524,4,"invariant"],[255,21,524,13],[255,22,524,13,"default"],[255,29,524,13],[255,31,525,6,"NativePushNotificationManagerIOS"],[255,63,525,38],[255,64,525,38,"default"],[255,71,525,38],[255,73,526,6],[255,116,527,4],[255,117,527,5],[256,8,529,4,"NativePushNotificationManagerIOS"],[256,40,529,36],[256,41,529,36,"default"],[256,48,529,36],[256,49,529,37,"getAuthorizationStatus"],[256,71,529,59],[256,72,529,60,"callback"],[256,80,529,68],[256,81,529,69],[257,6,530,2],[258,4,530,3],[259,2,530,3],[260,2,176,6,"PushNotificationIOS"],[260,21,176,25],[260,22,188,9,"FetchResult"],[260,33,188,20],[260,36,188,36],[261,4,189,4,"NewData"],[261,11,189,11],[261,13,189,13],[261,45,189,45],[262,4,190,4,"NoData"],[262,10,190,10],[262,12,190,12],[262,43,190,43],[263,4,191,4,"ResultFailed"],[263,16,191,16],[263,18,191,18],[264,2,192,2],[264,3,192,3],[265,2,673,0],[265,6,673,0,"_default"],[265,14,673,0],[265,17,673,15,"PushNotificationIOS"],[265,36,673,34],[266,0,673,35],[266,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"}]} |