mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 18:01:02 +00:00
1 line
38 KiB
Plaintext
1 line
38 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/interopRequireDefault","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"kslwqCIsh6ew+I1KeA1rlVRjsAk=","exportNames":["*"]}},{"name":"@babel/runtime/helpers/classCallCheck","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"yg7e6laZwmpbIvId5jovq9ugXp8=","exportNames":["*"]}},{"name":"@babel/runtime/helpers/createClass","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"Z6pzkVZ2fvxBLkFTgVVOy4UDj30=","exportNames":["*"]}},{"name":"../EventEmitter/NativeEventEmitter","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0},"end":{"line":13,"column":68}}],"key":"Jk6GODPsD+OS/XTex7hK2MSfvW0=","exportNames":["*"]}},{"name":"../Utilities/Platform","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0},"end":{"line":14,"column":45}}],"key":"WyqnBhspP5BAR0xvCwqfBv/v4uA=","exportNames":["*"]}},{"name":"./NativePushNotificationManagerIOS","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0},"end":{"line":15,"column":82}}],"key":"5gI0nEOZOUNeQiDjJGOYJlt6jvQ=","exportNames":["*"]}},{"name":"invariant","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":16,"column":0},"end":{"line":16,"column":34}}],"key":"4HPAaDQ25ZwZ2dzTLatXuUucZUM=","exportNames":["*"]}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n var _interopRequireDefault = require(_dependencyMap[0], \"@babel/runtime/helpers/interopRequireDefault\");\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.default = void 0;\n var _classCallCheck2 = _interopRequireDefault(require(_dependencyMap[1], \"@babel/runtime/helpers/classCallCheck\"));\n var _createClass2 = _interopRequireDefault(require(_dependencyMap[2], \"@babel/runtime/helpers/createClass\"));\n var _NativeEventEmitter = _interopRequireDefault(require(_dependencyMap[3], \"../EventEmitter/NativeEventEmitter\"));\n var _Platform = _interopRequireDefault(require(_dependencyMap[4], \"../Utilities/Platform\"));\n var _NativePushNotificationManagerIOS = _interopRequireDefault(require(_dependencyMap[5], \"./NativePushNotificationManagerIOS\"));\n var _invariant = _interopRequireDefault(require(_dependencyMap[6], \"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, _classCallCheck2.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, _createClass2.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 = exports.default = PushNotificationIOS;\n});","lineCount":248,"map":[[9,2,13,0],[9,6,13,0,"_NativeEventEmitter"],[9,25,13,0],[9,28,13,0,"_interopRequireDefault"],[9,50,13,0],[9,51,13,0,"require"],[9,58,13,0],[9,59,13,0,"_dependencyMap"],[9,73,13,0],[10,2,14,0],[10,6,14,0,"_Platform"],[10,15,14,0],[10,18,14,0,"_interopRequireDefault"],[10,40,14,0],[10,41,14,0,"require"],[10,48,14,0],[10,49,14,0,"_dependencyMap"],[10,63,14,0],[11,2,15,0],[11,6,15,0,"_NativePushNotificationManagerIOS"],[11,39,15,0],[11,42,15,0,"_interopRequireDefault"],[11,64,15,0],[11,65,15,0,"require"],[11,72,15,0],[11,73,15,0,"_dependencyMap"],[11,87,15,0],[12,2,16,0],[12,6,16,0,"_invariant"],[12,16,16,0],[12,19,16,0,"_interopRequireDefault"],[12,41,16,0],[12,42,16,0,"require"],[12,49,16,0],[12,50,16,0,"_dependencyMap"],[12,64,16,0],[13,2,66,0],[13,6,66,6,"PushNotificationEmitter"],[13,29,66,29],[13,32,67,2],[13,36,67,6,"NativeEventEmitter"],[13,63,67,24],[13,64,70,4,"Platform"],[13,81,70,12],[13,82,70,13,"OS"],[13,84,70,15],[13,89,70,20],[13,94,70,25],[13,97,70,28],[13,101,70,32],[13,104,70,35,"NativePushNotificationManagerIOS"],[13,145,71,2],[13,146,71,3],[14,2,73,0],[14,6,73,6,"_notifHandlers"],[14,20,73,20],[14,23,73,23],[14,27,73,27,"Map"],[14,30,73,30],[14,31,73,65],[14,32,73,66],[15,2,75,0],[15,6,75,6,"DEVICE_NOTIF_EVENT"],[15,24,75,24],[15,27,75,27],[15,55,75,55],[16,2,76,0],[16,6,76,6,"NOTIF_REGISTER_EVENT"],[16,26,76,26],[16,29,76,29],[16,60,76,60],[17,2,77,0],[17,6,77,6,"NOTIF_REGISTRATION_ERROR_EVENT"],[17,36,77,36],[17,39,77,39],[17,76,77,76],[18,2,78,0],[18,6,78,6,"DEVICE_LOCAL_NOTIF_EVENT"],[18,30,78,30],[18,33,78,33],[18,60,78,60],[19,2,78,61],[19,6,175,6,"PushNotificationIOS"],[19,25,175,25],[20,4,537,2],[20,13,537,2,"PushNotificationIOS"],[20,33,537,14,"nativeNotif"],[20,44,537,33],[20,46,537,35],[21,6,537,35],[21,10,537,35,"_classCallCheck2"],[21,26,537,35],[21,27,537,35,"default"],[21,34,537,35],[21,42,537,35,"PushNotificationIOS"],[21,61,537,35],[22,6,538,4],[22,10,538,8],[22,11,538,9,"_data"],[22,16,538,14],[22,19,538,17],[22,20,538,18],[22,21,538,19],[23,6,539,4],[23,10,539,8],[23,11,539,9,"_remoteNotificationCompleteCallbackCalled"],[23,52,539,50],[23,55,539,53],[23,60,539,58],[24,6,540,4],[24,10,540,8],[24,11,540,9,"_isRemote"],[24,20,540,18],[24,23,540,21,"nativeNotif"],[24,34,540,32],[24,35,540,33,"remote"],[24,41,540,39],[25,6,541,4],[25,10,541,8],[25,14,541,12],[25,15,541,13,"_isRemote"],[25,24,541,22],[25,26,541,24],[26,8,542,6],[26,12,542,10],[26,13,542,11,"_notificationId"],[26,28,542,26],[26,31,542,29,"nativeNotif"],[26,42,542,40],[26,43,542,41,"notificationId"],[26,57,542,55],[27,6,543,4],[28,6,545,4],[28,10,545,8,"nativeNotif"],[28,21,545,19],[28,22,545,20,"remote"],[28,28,545,26],[28,30,545,28],[29,8,548,6,"Object"],[29,14,548,12],[29,15,548,13,"keys"],[29,19,548,17],[29,20,548,18,"nativeNotif"],[29,31,548,29],[29,32,548,30],[29,33,548,31,"forEach"],[29,40,548,38],[29,41,548,39,"notifKey"],[29,49,548,47],[29,53,548,51],[30,10,549,8],[30,14,549,14,"notifVal"],[30,22,549,22],[30,25,549,25,"nativeNotif"],[30,36,549,36],[30,37,549,37,"notifKey"],[30,45,549,45],[30,46,549,46],[31,10,550,8],[31,14,550,12,"notifKey"],[31,22,550,20],[31,27,550,25],[31,32,550,30],[31,34,550,32],[32,12,551,10],[32,16,551,14],[32,17,551,15,"_alert"],[32,23,551,21],[32,26,551,24,"notifVal"],[32,34,551,32],[32,35,551,33,"alert"],[32,40,551,38],[33,12,552,10],[33,16,552,14],[33,17,552,15,"_sound"],[33,23,552,21],[33,26,552,24,"notifVal"],[33,34,552,32],[33,35,552,33,"sound"],[33,40,552,38],[34,12,553,10],[34,16,553,14],[34,17,553,15,"_badgeCount"],[34,28,553,26],[34,31,553,29,"notifVal"],[34,39,553,37],[34,40,553,38,"badge"],[34,45,553,43],[35,12,554,10],[35,16,554,14],[35,17,554,15,"_category"],[35,26,554,24],[35,29,554,27,"notifVal"],[35,37,554,35],[35,38,554,36,"category"],[35,46,554,44],[36,12,555,10],[36,16,555,14],[36,17,555,15,"_contentAvailable"],[36,34,555,32],[36,37,555,35,"notifVal"],[36,45,555,43],[36,46,555,44],[36,65,555,63],[36,66,555,64],[37,12,556,10],[37,16,556,14],[37,17,556,15,"_threadID"],[37,26,556,24],[37,29,556,27,"notifVal"],[37,37,556,35],[37,38,556,36],[37,49,556,47],[37,50,556,48],[38,10,557,8],[38,11,557,9],[38,17,557,15],[39,12,558,10],[39,16,558,14],[39,17,558,15,"_data"],[39,22,558,20],[39,23,558,21,"notifKey"],[39,31,558,29],[39,32,558,30],[39,35,558,33,"notifVal"],[39,43,558,41],[40,10,559,8],[41,8,560,6],[41,9,560,7],[41,10,560,8],[42,6,561,4],[42,7,561,5],[42,13,561,11],[43,8,563,6],[43,12,563,10],[43,13,563,11,"_badgeCount"],[43,24,563,22],[43,27,563,25,"nativeNotif"],[43,38,563,36],[43,39,563,37,"applicationIconBadgeNumber"],[43,65,563,63],[44,8,564,6],[44,12,564,10],[44,13,564,11,"_sound"],[44,19,564,17],[44,22,564,20,"nativeNotif"],[44,33,564,31],[44,34,564,32,"soundName"],[44,43,564,41],[45,8,565,6],[45,12,565,10],[45,13,565,11,"_alert"],[45,19,565,17],[45,22,565,20,"nativeNotif"],[45,33,565,31],[45,34,565,32,"alertBody"],[45,43,565,41],[46,8,566,6],[46,12,566,10],[46,13,566,11,"_data"],[46,18,566,16],[46,21,566,19,"nativeNotif"],[46,32,566,30],[46,33,566,31,"userInfo"],[46,41,566,39],[47,8,567,6],[47,12,567,10],[47,13,567,11,"_category"],[47,22,567,20],[47,25,567,23,"nativeNotif"],[47,36,567,34],[47,37,567,35,"category"],[47,45,567,43],[48,6,568,4],[49,4,569,2],[50,4,569,3],[50,15,569,3,"_createClass2"],[50,28,569,3],[50,29,569,3,"default"],[50,36,569,3],[50,38,569,3,"PushNotificationIOS"],[50,57,569,3],[51,6,569,3,"key"],[51,9,569,3],[52,6,569,3,"value"],[52,11,569,3],[52,13,578,2],[52,22,578,2,"finish"],[52,28,578,8,"finish"],[52,29,578,9,"fetchResult"],[52,40,578,28],[52,42,578,36],[53,8,579,4],[53,12,580,6],[53,13,580,7],[53,17,580,11],[53,18,580,12,"_isRemote"],[53,27,580,21],[53,31,581,6],[53,32,581,7],[53,36,581,11],[53,37,581,12,"_notificationId"],[53,52,581,27],[53,56,582,6],[53,60,582,10],[53,61,582,11,"_remoteNotificationCompleteCallbackCalled"],[53,102,582,52],[53,104,583,6],[54,10,584,6],[55,8,585,4],[56,8,586,4],[56,12,586,8],[56,13,586,9,"_remoteNotificationCompleteCallbackCalled"],[56,54,586,50],[56,57,586,53],[56,61,586,57],[57,8,588,4],[57,12,588,4,"invariant"],[57,30,588,13],[57,32,589,6,"NativePushNotificationManagerIOS"],[57,73,589,38],[57,75,590,6],[57,118,591,4],[57,119,591,5],[58,8,592,4,"NativePushNotificationManagerIOS"],[58,49,592,36],[58,50,592,37,"onFinishRemoteNotification"],[58,76,592,63],[58,77,593,6],[58,81,593,10],[58,82,593,11,"_notificationId"],[58,97,593,26],[58,99,594,6,"fetchResult"],[58,110,595,4],[58,111,595,5],[59,6,596,2],[60,4,596,3],[61,6,596,3,"key"],[61,9,596,3],[62,6,596,3,"value"],[62,11,596,3],[62,13,601,2],[62,22,601,2,"getMessage"],[62,32,601,12,"getMessage"],[62,33,601,12],[62,35,601,34],[63,8,603,4],[63,15,603,11],[63,19,603,15],[63,20,603,16,"_alert"],[63,26,603,22],[64,6,604,2],[65,4,604,3],[66,6,604,3,"key"],[66,9,604,3],[67,6,604,3,"value"],[67,11,604,3],[67,13,612,2],[67,22,612,2,"getSound"],[67,30,612,10,"getSound"],[67,31,612,10],[67,33,612,22],[68,8,613,4],[68,15,613,11],[68,19,613,15],[68,20,613,16,"_sound"],[68,26,613,22],[69,6,614,2],[70,4,614,3],[71,6,614,3,"key"],[71,9,614,3],[72,6,614,3,"value"],[72,11,614,3],[72,13,621,2],[72,22,621,2,"getCategory"],[72,33,621,13,"getCategory"],[72,34,621,13],[72,36,621,25],[73,8,622,4],[73,15,622,11],[73,19,622,15],[73,20,622,16,"_category"],[73,29,622,25],[74,6,623,2],[75,4,623,3],[76,6,623,3,"key"],[76,9,623,3],[77,6,623,3,"value"],[77,11,623,3],[77,13,631,2],[77,22,631,2,"getAlert"],[77,30,631,10,"getAlert"],[77,31,631,10],[77,33,631,32],[78,8,632,4],[78,15,632,11],[78,19,632,15],[78,20,632,16,"_alert"],[78,26,632,22],[79,6,633,2],[80,4,633,3],[81,6,633,3,"key"],[81,9,633,3],[82,6,633,3,"value"],[82,11,633,3],[82,13,640,2],[82,22,640,2,"getContentAvailable"],[82,41,640,21,"getContentAvailable"],[82,42,640,21],[82,44,640,42],[83,8,641,4],[83,15,641,11],[83,19,641,15],[83,20,641,16,"_contentAvailable"],[83,37,641,33],[84,6,642,2],[85,4,642,3],[86,6,642,3,"key"],[86,9,642,3],[87,6,642,3,"value"],[87,11,642,3],[87,13,649,2],[87,22,649,2,"getBadgeCount"],[87,35,649,15,"getBadgeCount"],[87,36,649,15],[87,38,649,27],[88,8,650,4],[88,15,650,11],[88,19,650,15],[88,20,650,16,"_badgeCount"],[88,31,650,27],[89,6,651,2],[90,4,651,3],[91,6,651,3,"key"],[91,9,651,3],[92,6,651,3,"value"],[92,11,651,3],[92,13,658,2],[92,22,658,2,"getData"],[92,29,658,9,"getData"],[92,30,658,9],[92,32,658,21],[93,8,659,4],[93,15,659,11],[93,19,659,15],[93,20,659,16,"_data"],[93,25,659,21],[94,6,660,2],[95,4,660,3],[96,6,660,3,"key"],[96,9,660,3],[97,6,660,3,"value"],[97,11,660,3],[97,13,667,2],[97,22,667,2,"getThreadID"],[97,33,667,13,"getThreadID"],[97,34,667,13],[97,36,667,25],[98,8,668,4],[98,15,668,11],[98,19,668,15],[98,20,668,16,"_threadID"],[98,29,668,25],[99,6,669,2],[100,4,669,3],[101,6,669,3,"key"],[101,9,669,3],[102,6,669,3,"value"],[102,11,669,3],[102,13,205,2],[102,22,205,9,"presentLocalNotification"],[102,46,205,33,"presentLocalNotification"],[102,47,206,4,"details"],[102,54,206,44],[102,56,207,10],[103,8,208,4],[103,12,208,4,"invariant"],[103,30,208,13],[103,32,209,6,"NativePushNotificationManagerIOS"],[103,73,209,38],[103,75,210,6],[103,118,211,4],[103,119,211,5],[104,8,213,4,"NativePushNotificationManagerIOS"],[104,49,213,36],[104,50,213,37,"presentLocalNotification"],[104,74,213,61],[104,75,213,62,"details"],[104,82,213,69],[104,83,213,70],[105,6,214,2],[106,4,214,3],[107,6,214,3,"key"],[107,9,214,3],[108,6,214,3,"value"],[108,11,214,3],[108,13,230,2],[108,22,230,9,"scheduleLocalNotification"],[108,47,230,34,"scheduleLocalNotification"],[108,48,231,4,"details"],[108,55,231,45],[108,57,232,10],[109,8,233,4],[109,12,233,4,"invariant"],[109,30,233,13],[109,32,234,6,"NativePushNotificationManagerIOS"],[109,73,234,38],[109,75,235,6],[109,118,236,4],[109,119,236,5],[110,8,238,4,"NativePushNotificationManagerIOS"],[110,49,238,36],[110,50,238,37,"scheduleLocalNotification"],[110,75,238,62],[110,76,238,63,"details"],[110,83,238,70],[110,84,238,71],[111,6,239,2],[112,4,239,3],[113,6,239,3,"key"],[113,9,239,3],[114,6,239,3,"value"],[114,11,239,3],[114,13,246,2],[114,22,246,9,"cancelAllLocalNotifications"],[114,49,246,36,"cancelAllLocalNotifications"],[114,50,246,36],[114,52,246,45],[115,8,247,4],[115,12,247,4,"invariant"],[115,30,247,13],[115,32,248,6,"NativePushNotificationManagerIOS"],[115,73,248,38],[115,75,249,6],[115,118,250,4],[115,119,250,5],[116,8,251,4,"NativePushNotificationManagerIOS"],[116,49,251,36],[116,50,251,37,"cancelAllLocalNotifications"],[116,77,251,64],[116,78,251,65],[116,79,251,66],[117,6,252,2],[118,4,252,3],[119,6,252,3,"key"],[119,9,252,3],[120,6,252,3,"value"],[120,11,252,3],[120,13,259,2],[120,22,259,9,"removeAllDeliveredNotifications"],[120,53,259,40,"removeAllDeliveredNotifications"],[120,54,259,40],[120,56,259,49],[121,8,260,4],[121,12,260,4,"invariant"],[121,30,260,13],[121,32,261,6,"NativePushNotificationManagerIOS"],[121,73,261,38],[121,75,262,6],[121,118,263,4],[121,119,263,5],[122,8,264,4,"NativePushNotificationManagerIOS"],[122,49,264,36],[122,50,264,37,"removeAllDeliveredNotifications"],[122,81,264,68],[122,82,264,69],[122,83,264,70],[123,6,265,2],[124,4,265,3],[125,6,265,3,"key"],[125,9,265,3],[126,6,265,3,"value"],[126,11,265,3],[126,13,273,2],[126,22,273,9,"getDeliveredNotifications"],[126,47,273,34,"getDeliveredNotifications"],[126,48,274,4,"callback"],[126,56,274,52],[126,58,275,10],[127,8,276,4],[127,12,276,4,"invariant"],[127,30,276,13],[127,32,277,6,"NativePushNotificationManagerIOS"],[127,73,277,38],[127,75,278,6],[127,118,279,4],[127,119,279,5],[128,8,280,4,"NativePushNotificationManagerIOS"],[128,49,280,36],[128,50,280,37,"getDeliveredNotifications"],[128,75,280,62],[128,76,280,63,"callback"],[128,84,280,71],[128,85,280,72],[129,6,281,2],[130,4,281,3],[131,6,281,3,"key"],[131,9,281,3],[132,6,281,3,"value"],[132,11,281,3],[132,13,288,2],[132,22,288,9,"removeDeliveredNotifications"],[132,50,288,37,"removeDeliveredNotifications"],[132,51,288,38,"identifiers"],[132,62,288,64],[132,64,288,72],[133,8,289,4],[133,12,289,4,"invariant"],[133,30,289,13],[133,32,290,6,"NativePushNotificationManagerIOS"],[133,73,290,38],[133,75,291,6],[133,118,292,4],[133,119,292,5],[134,8,293,4,"NativePushNotificationManagerIOS"],[134,49,293,36],[134,50,293,37,"removeDeliveredNotifications"],[134,78,293,65],[134,79,293,66,"identifiers"],[134,90,293,77],[134,91,293,78],[135,6,294,2],[136,4,294,3],[137,6,294,3,"key"],[137,9,294,3],[138,6,294,3,"value"],[138,11,294,3],[138,13,301,2],[138,22,301,9,"setApplicationIconBadgeNumber"],[138,51,301,38,"setApplicationIconBadgeNumber"],[138,52,301,39,"number"],[138,58,301,53],[138,60,301,61],[139,8,302,4],[139,12,302,4,"invariant"],[139,30,302,13],[139,32,303,6,"NativePushNotificationManagerIOS"],[139,73,303,38],[139,75,304,6],[139,118,305,4],[139,119,305,5],[140,8,306,4,"NativePushNotificationManagerIOS"],[140,49,306,36],[140,50,306,37,"setApplicationIconBadgeNumber"],[140,79,306,66],[140,80,306,67,"number"],[140,86,306,73],[140,87,306,74],[141,6,307,2],[142,4,307,3],[143,6,307,3,"key"],[143,9,307,3],[144,6,307,3,"value"],[144,11,307,3],[144,13,314,2],[144,22,314,9,"getApplicationIconBadgeNumber"],[144,51,314,38,"getApplicationIconBadgeNumber"],[144,52,314,39,"callback"],[144,60,314,57],[144,62,314,65],[145,8,315,4],[145,12,315,4,"invariant"],[145,30,315,13],[145,32,316,6,"NativePushNotificationManagerIOS"],[145,73,316,38],[145,75,317,6],[145,118,318,4],[145,119,318,5],[146,8,319,4,"NativePushNotificationManagerIOS"],[146,49,319,36],[146,50,319,37,"getApplicationIconBadgeNumber"],[146,79,319,66],[146,80,319,67,"callback"],[146,88,319,75],[146,89,319,76],[147,6,320,2],[148,4,320,3],[149,6,320,3,"key"],[149,9,320,3],[150,6,320,3,"value"],[150,11,320,3],[150,13,328,2],[150,22,328,9,"cancelLocalNotifications"],[150,46,328,33,"cancelLocalNotifications"],[150,47,328,34,"userInfo"],[150,55,328,50],[150,57,328,58],[151,8,329,4],[151,12,329,4,"invariant"],[151,30,329,13],[151,32,330,6,"NativePushNotificationManagerIOS"],[151,73,330,38],[151,75,331,6],[151,118,332,4],[151,119,332,5],[152,8,333,4,"NativePushNotificationManagerIOS"],[152,49,333,36],[152,50,333,37,"cancelLocalNotifications"],[152,74,333,61],[152,75,333,62,"userInfo"],[152,83,333,70],[152,84,333,71],[153,6,334,2],[154,4,334,3],[155,6,334,3,"key"],[155,9,334,3],[156,6,334,3,"value"],[156,11,334,3],[156,13,341,2],[156,22,341,9,"getScheduledLocalNotifications"],[156,52,341,39,"getScheduledLocalNotifications"],[156,53,341,40,"callback"],[156,61,341,58],[156,63,341,66],[157,8,342,4],[157,12,342,4,"invariant"],[157,30,342,13],[157,32,343,6,"NativePushNotificationManagerIOS"],[157,73,343,38],[157,75,344,6],[157,118,345,4],[157,119,345,5],[158,8,346,4,"NativePushNotificationManagerIOS"],[158,49,346,36],[158,50,346,37,"getScheduledLocalNotifications"],[158,80,346,67],[158,81,346,68,"callback"],[158,89,346,76],[158,90,346,77],[159,6,347,2],[160,4,347,3],[161,6,347,3,"key"],[161,9,347,3],[162,6,347,3,"value"],[162,11,347,3],[162,13,355,2],[162,22,355,9,"addEventListener"],[162,38,355,25,"addEventListener"],[162,39,356,4,"type"],[162,43,356,35],[162,45,357,4,"handler"],[162,52,357,21],[162,54,358,10],[163,8,359,4],[163,12,359,4,"invariant"],[163,30,359,13],[163,32,360,6,"type"],[163,36,360,10],[163,41,360,15],[163,55,360,29],[163,59,361,8,"type"],[163,63,361,12],[163,68,361,17],[163,78,361,27],[163,82,362,8,"type"],[163,86,362,12],[163,91,362,17],[163,110,362,36],[163,114,363,8,"type"],[163,118,363,12],[163,123,363,17],[163,142,363,36],[163,144,364,6],[163,259,365,4],[163,260,365,5],[164,8,366,4],[164,12,366,8,"listener"],[164,20,366,16],[165,8,367,4],[165,12,367,8,"type"],[165,16,367,12],[165,21,367,17],[165,35,367,31],[165,37,367,33],[166,10,368,6,"listener"],[166,18,368,14],[166,21,368,17,"PushNotificationEmitter"],[166,44,368,40],[166,45,368,41,"addListener"],[166,56,368,52],[166,57,369,8,"DEVICE_NOTIF_EVENT"],[166,75,369,26],[166,77,370,8,"notifData"],[166,86,370,17],[166,90,370,21],[167,12,371,10,"handler"],[167,19,371,17],[167,20,371,18],[167,24,371,22,"PushNotificationIOS"],[167,43,371,41],[167,44,371,42,"notifData"],[167,53,371,51],[167,54,371,52],[167,55,371,53],[168,10,372,8],[168,11,373,6],[168,12,373,7],[169,8,374,4],[169,9,374,5],[169,15,374,11],[169,19,374,15,"type"],[169,23,374,19],[169,28,374,24],[169,47,374,43],[169,49,374,45],[170,10,375,6,"listener"],[170,18,375,14],[170,21,375,17,"PushNotificationEmitter"],[170,44,375,40],[170,45,375,41,"addListener"],[170,56,375,52],[170,57,376,8,"DEVICE_LOCAL_NOTIF_EVENT"],[170,81,376,32],[170,83,377,8,"notifData"],[170,92,377,17],[170,96,377,21],[171,12,378,10,"handler"],[171,19,378,17],[171,20,378,18],[171,24,378,22,"PushNotificationIOS"],[171,43,378,41],[171,44,378,42,"notifData"],[171,53,378,51],[171,54,378,52],[171,55,378,53],[172,10,379,8],[172,11,380,6],[172,12,380,7],[173,8,381,4],[173,9,381,5],[173,15,381,11],[173,19,381,15,"type"],[173,23,381,19],[173,28,381,24],[173,38,381,34],[173,40,381,36],[174,10,382,6,"listener"],[174,18,382,14],[174,21,382,17,"PushNotificationEmitter"],[174,44,382,40],[174,45,382,41,"addListener"],[174,56,382,52],[174,57,383,8,"NOTIF_REGISTER_EVENT"],[174,77,383,28],[174,79,384,8,"registrationInfo"],[174,95,384,24],[174,99,384,28],[175,12,385,10,"handler"],[175,19,385,17],[175,20,385,18,"registrationInfo"],[175,36,385,34],[175,37,385,35,"deviceToken"],[175,48,385,46],[175,49,385,47],[176,10,386,8],[176,11,387,6],[176,12,387,7],[177,8,388,4],[177,9,388,5],[177,15,388,11],[177,19,388,15,"type"],[177,23,388,19],[177,28,388,24],[177,47,388,43],[177,49,388,45],[178,10,389,6,"listener"],[178,18,389,14],[178,21,389,17,"PushNotificationEmitter"],[178,44,389,40],[178,45,389,41,"addListener"],[178,56,389,52],[178,57,390,8,"NOTIF_REGISTRATION_ERROR_EVENT"],[178,87,390,38],[178,89,391,8,"errorInfo"],[178,98,391,17],[178,102,391,21],[179,12,392,10,"handler"],[179,19,392,17],[179,20,392,18,"errorInfo"],[179,29,392,27],[179,30,392,28],[180,10,393,8],[180,11,394,6],[180,12,394,7],[181,8,395,4],[182,8,396,4,"_notifHandlers"],[182,22,396,18],[182,23,396,19,"set"],[182,26,396,22],[182,27,396,23,"type"],[182,31,396,27],[182,33,396,29,"listener"],[182,41,396,37],[182,42,396,38],[183,6,397,2],[184,4,397,3],[185,6,397,3,"key"],[185,9,397,3],[186,6,397,3,"value"],[186,11,397,3],[186,13,405,2],[186,22,405,9,"removeEventListener"],[186,41,405,28,"removeEventListener"],[186,42,405,29,"type"],[186,46,405,60],[186,48,405,68],[187,8,406,4],[187,12,406,4,"invariant"],[187,30,406,13],[187,32,407,6,"type"],[187,36,407,10],[187,41,407,15],[187,55,407,29],[187,59,408,8,"type"],[187,63,408,12],[187,68,408,17],[187,78,408,27],[187,82,409,8,"type"],[187,86,409,12],[187,91,409,17],[187,110,409,36],[187,114,410,8,"type"],[187,118,410,12],[187,123,410,17],[187,142,410,36],[187,144,411,6],[187,259,412,4],[187,260,412,5],[188,8,413,4],[188,12,413,10,"listener"],[188,20,413,18],[188,23,413,21,"_notifHandlers"],[188,37,413,35],[188,38,413,36,"get"],[188,41,413,39],[188,42,413,40,"type"],[188,46,413,44],[188,47,413,45],[189,8,414,4],[189,12,414,8],[189,13,414,9,"listener"],[189,21,414,17],[189,23,414,19],[190,10,415,6],[191,8,416,4],[192,8,417,4,"listener"],[192,16,417,12],[192,17,417,13,"remove"],[192,23,417,19],[192,24,417,20],[192,25,417,21],[193,8,418,4,"_notifHandlers"],[193,22,418,18],[193,23,418,19,"delete"],[193,29,418,25],[193,30,418,26,"type"],[193,34,418,30],[193,35,418,31],[194,6,419,2],[195,4,419,3],[196,6,419,3,"key"],[196,9,419,3],[197,6,419,3,"value"],[197,11,419,3],[197,13,428,2],[197,22,428,9,"requestPermissions"],[197,40,428,27,"requestPermissions"],[197,41,429,4,"permissions"],[197,52,429,45],[197,54,435,5],[198,8,436,4],[198,12,436,8,"requestedPermissions"],[198,32,436,28],[198,35,436,31],[199,10,437,6,"alert"],[199,15,437,11],[199,17,437,13],[199,21,437,17],[200,10,438,6,"badge"],[200,15,438,11],[200,17,438,13],[200,21,438,17],[201,10,439,6,"sound"],[201,15,439,11],[201,17,439,13],[202,8,440,4],[202,9,440,5],[203,8,441,4],[203,12,441,8,"permissions"],[203,23,441,19],[203,25,441,21],[204,10,442,6,"requestedPermissions"],[204,30,442,26],[204,33,442,29],[205,12,443,8,"alert"],[205,17,443,13],[205,19,443,15],[205,20,443,16],[205,21,443,17,"permissions"],[205,32,443,28],[205,33,443,29,"alert"],[205,38,443,34],[206,12,444,8,"badge"],[206,17,444,13],[206,19,444,15],[206,20,444,16],[206,21,444,17,"permissions"],[206,32,444,28],[206,33,444,29,"badge"],[206,38,444,34],[207,12,445,8,"sound"],[207,17,445,13],[207,19,445,15],[207,20,445,16],[207,21,445,17,"permissions"],[207,32,445,28],[207,33,445,29,"sound"],[208,10,446,6],[208,11,446,7],[209,8,447,4],[210,8,448,4],[210,12,448,4,"invariant"],[210,30,448,13],[210,32,449,6,"NativePushNotificationManagerIOS"],[210,73,449,38],[210,75,450,6],[210,118,451,4],[210,119,451,5],[211,8,452,4],[211,15,452,11,"NativePushNotificationManagerIOS"],[211,56,452,43],[211,57,452,44,"requestPermissions"],[211,75,452,62],[211,76,453,6,"requestedPermissions"],[211,96,454,4],[211,97,454,5],[212,6,455,2],[213,4,455,3],[214,6,455,3,"key"],[214,9,455,3],[215,6,455,3,"value"],[215,11,455,3],[215,13,469,2],[215,22,469,9,"abandonPermissions"],[215,40,469,27,"abandonPermissions"],[215,41,469,27],[215,43,469,36],[216,8,470,4],[216,12,470,4,"invariant"],[216,30,470,13],[216,32,471,6,"NativePushNotificationManagerIOS"],[216,73,471,38],[216,75,472,6],[216,118,473,4],[216,119,473,5],[217,8,474,4,"NativePushNotificationManagerIOS"],[217,49,474,36],[217,50,474,37,"abandonPermissions"],[217,68,474,55],[217,69,474,56],[217,70,474,57],[218,6,475,2],[219,4,475,3],[220,6,475,3,"key"],[220,9,475,3],[221,6,475,3,"value"],[221,11,475,3],[221,13,487,2],[221,22,487,9,"checkPermissions"],[221,38,487,25,"checkPermissions"],[221,39,488,4,"callback"],[221,47,488,64],[221,49,489,10],[222,8,490,4],[222,12,490,4,"invariant"],[222,30,490,13],[222,32,490,14],[222,39,490,21,"callback"],[222,47,490,29],[222,52,490,34],[222,62,490,44],[222,64,490,46],[222,95,490,77],[222,96,490,78],[223,8,491,4],[223,12,491,4,"invariant"],[223,30,491,13],[223,32,492,6,"NativePushNotificationManagerIOS"],[223,73,492,38],[223,75,493,6],[223,118,494,4],[223,119,494,5],[224,8,495,4,"NativePushNotificationManagerIOS"],[224,49,495,36],[224,50,495,37,"checkPermissions"],[224,66,495,53],[224,67,495,54,"callback"],[224,75,495,62],[224,76,495,63],[225,6,496,2],[226,4,496,3],[227,6,496,3,"key"],[227,9,496,3],[228,6,496,3,"value"],[228,11,496,3],[228,13,504,2],[228,22,504,9,"getInitialNotification"],[228,44,504,31,"getInitialNotification"],[228,45,504,31],[228,47,504,62],[229,8,505,4],[229,12,505,4,"invariant"],[229,30,505,13],[229,32,506,6,"NativePushNotificationManagerIOS"],[229,73,506,38],[229,75,507,6],[229,118,508,4],[229,119,508,5],[230,8,509,4],[230,15,509,11,"NativePushNotificationManagerIOS"],[230,56,509,43],[230,57,509,44,"getInitialNotification"],[230,79,509,66],[230,80,509,67],[230,81,509,68],[230,82,509,69,"then"],[230,86,509,73],[230,87,510,6,"notification"],[230,99,510,18],[230,103,510,22],[231,10,511,8],[231,17,511,15,"notification"],[231,29,511,27],[231,33,511,31],[231,37,511,35,"PushNotificationIOS"],[231,56,511,54],[231,57,511,55,"notification"],[231,69,511,67],[231,70,511,68],[232,8,512,6],[232,9,513,4],[232,10,513,5],[233,6,514,2],[234,4,514,3],[235,6,514,3,"key"],[235,9,514,3],[236,6,514,3,"value"],[236,11,514,3],[236,13,520,2],[236,22,520,9,"getAuthorizationStatus"],[236,44,520,31,"getAuthorizationStatus"],[236,45,521,4,"callback"],[236,53,521,51],[236,55,522,10],[237,8,523,4],[237,12,523,4,"invariant"],[237,30,523,13],[237,32,524,6,"NativePushNotificationManagerIOS"],[237,73,524,38],[237,75,525,6],[237,118,526,4],[237,119,526,5],[238,8,528,4,"NativePushNotificationManagerIOS"],[238,49,528,36],[238,50,528,37,"getAuthorizationStatus"],[238,72,528,59],[238,73,528,60,"callback"],[238,81,528,68],[238,82,528,69],[239,6,529,2],[240,4,529,3],[241,2,529,3],[242,2,175,6,"PushNotificationIOS"],[242,21,175,25],[242,22,187,9,"FetchResult"],[242,33,187,20],[242,36,187,36],[243,4,188,4,"NewData"],[243,11,188,11],[243,13,188,13],[243,45,188,45],[244,4,189,4,"NoData"],[244,10,189,10],[244,12,189,12],[244,43,189,43],[245,4,190,4,"ResultFailed"],[245,16,190,16],[245,18,190,18],[246,2,191,2],[246,3,191,3],[247,2,191,3],[247,6,191,3,"_default"],[247,14,191,3],[247,17,191,3,"exports"],[247,24,191,3],[247,25,191,3,"default"],[247,32,191,3],[247,35,672,15,"PushNotificationIOS"],[247,54,672,34],[248,0,672,34],[248,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;AC8K;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"}},"type":"js/module"}]} |