{"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"dist-tags":{"latest":"7.8.0","beta":"7.0.0-beta.3","v4-backports":"4.6.4"},"author":{"name":"André Augusto Tissot"},"description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","readme":"# Google Firebase Cloud Messaging Cordova Push Plugin\n> Extremely easy plug&play push notification plugin for Cordova applications with Google Firebase FCM.\n\n[![Donate](https://img.shields.io/badge/Donate-Paypal-0a83fc.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B33LA4QVUGVBW&source=url)\n[![npm downloads](https://img.shields.io/npm/dt/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm per month](https://img.shields.io/npm/dm/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm version](https://img.shields.io/npm/v/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues)\n[![GitHub forks](https://img.shields.io/github/forks/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/network)\n[![GitHub stars](https://img.shields.io/github/stars/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/stargazers)\n[![Known Vulnerabilities](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated?targetFile=package.json)\n[![DeepScan grade](https://deepscan.io/api/teams/3417/projects/5068/branches/39495/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3417&pid=5068&bid=39495)\n\n[How it works](#how-it-works) | [Installation](#installation) | [Push Payload Configuration](#push-payload-configuration) |  [Features](#features) | [Example Apps](#example-apps) | [Companion Plugins](#companion-plugins) | [Changelog](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/master/CHANGELOG.md) | [Authorship](#authorship)\n\n## How it works\nSend a push notification to a single device or topic.\n\n- Application is in foreground:\n\n  - The notification data is received in the JavaScript callback without notification bar message (this is the normal behavior of mobile push notifications).\n  - For Android, to show the notification received on the foreground, it's recommended to use [cordova-plugin-local-notification](https://github.com/katzer/cordova-plugin-local-notifications#readme) as it provides many presentation and interaction features.\n\n- Application is in background or closed:\n\n  - The device displays the notification message in the device notification bar.\n  - If the user taps the notification, the application comes to foreground and the notification data is received in the JavaScript callback.\n  - If the user does not tap the notification but opens the application, nothing happens until the notification is tapped.\n  \n### Push Notifications on iOS\n\nOn Android, push notifications don't require any special permission and can be tested from emulators freely.\n\nUnfortunately, Apple is not as nice to work with, requiring:\n- The running device to be a real device, no simulators allowed;\n- Application has require the `UIBackgroundModes=[remote-notification]` permission (automatically configured by this plugin);\n- The user running the application has to manually allow the application to receive push notifications;\n- The application must be build with credentials created from a paid account (or team) that is allowed to receive push notifications;\n- The build installed has to have come from either Apple Store or TestFlight; Or, be build with a special certificate (https://customersupport.doubledutch.me/hc/en-us/articles/229495568-iOS-How-to-Create-a-Push-Notification-Certificate)\n\n## Installation\n\nMake sure you have ‘google-services.json’ for Android and/or ‘GoogleService-Info.plist’ for iOS in your Cordova project root folder.\n\n#### Preferences\n\n|Preference|Default Value|Description|\n|---|---|---|\n|ANDROID_DEFAULT_NOTIFICATION_ICON|@mipmap/ic_launcher|Default notification icon.|\n|ANDROID_FCM_VERSION|21.0.0|Native Firebase Message SDK version.<br>:warning: Replaced by BoM versioning on Gradle >= 3.4.|\n|ANDROID_FIREBASE_BOM_VERSION|26.0.0|[Firebase BoM](https://firebase.google.com/docs/android/learn-more#bom) version.|\n|ANDROID_GOOGLE_SERVICES_VERSION|4.3.4|Native Google Services SDK version.|\n|ANDROID_GRADLE_TOOLS_VERSION|4.1.0|Gradle tools version.|\n|IOS_FIREBASE_MESSAGING_VERSION|~> 7.4.0|Native Firebase Message SDK version|\n\n#### Cordova\n\nDefault preferences:\n\n```sh\nnpm install -g cordova@latest # Version 9 or higher required\nnpm uninstall @ionic-native/fcm # Ionic support is included and conflicts with @ionic-native's implementation.\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\nComplete:\n\n```sh\nnpm install -g cordova@latest # Version 9 or higher required\nnpm uninstall @ionic-native/fcm # Ionic support is included and conflicts with @ionic-native's implementation.\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated \\\n  --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/ic_launcher\" \\\n  --variable ANDROID_FIREBASE_BOM_VERSION=\"26.0.0\" \\\n  --variable ANDROID_GOOGLE_SERVICES_VERSION=\"4.3.4\" \\\n  --variable ANDROID_GRADLE_TOOLS_VERSION=\"4.1.0\" \\\n  --variable IOS_FIREBASE_MESSAGING_VERSION=\"~> 7.4.0\"\n```\n\n#### Ionic\n\nDefault preferences:\n\n```sh\nnpm install -g cordova@latest # Version 9 or higher required\nnpm uninstall @ionic-native/fcm # Ionic support is included and conflicts with @ionic-native's implementation.\nionic cordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\nComplete:\n\n```sh\nnpm install -g cordova@latest # Version 9 or higher required\nnpm uninstall @ionic-native/fcm # Ionic support is included and conflicts with @ionic-native's implementation.\nionic cordova plugin add cordova-plugin-fcm-with-dependecy-updated \\\n  --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/ic_launcher\" \\\n  --variable ANDROID_FIREBASE_BOM_VERSION=\"26.0.0\" \\\n  --variable ANDROID_GOOGLE_SERVICES_VERSION=\"4.3.4\" \\\n  --variable ANDROID_GRADLE_TOOLS_VERSION=\"4.1.0\" \\\n  --variable IOS_FIREBASE_MESSAGING_VERSION=\"~> 7.4.0\"\n```\n\n## Push Payload Configuration\n\nBesides common FCM configuration (https://firebase.google.com/docs/cloud-messaging/ios/certs), the Push payload should contain \"notification\" and \"data\" keys and \"click_action\" equals to \"FCM_PLUGIN_ACTIVITY\" within \"notification\".\n\nStructure expected:\n```js\n{\n  ...,\n  \"notification\": {\n    ...\n  },\n  \"data\": {\n    ...\n  },\n  \"android\": {\n    \"notification\": {\n      \"click_action\": \"FCM_PLUGIN_ACTIVITY\"\n    }\n  },\n  ...,\n}\n```\n\nExample:\n```json\n{\n  \"token\": \"[FCM token]\",\n  \"notification\":{\n    \"title\":\"Notification title\",\n    \"body\":\"Notification body\",\n    \"sound\":\"default\",\n  },\n  \"data\":{\n    \"param1\":\"value1\",\n    \"param2\":\"value2\"\n  },\n  \"android\": {\n    \"notification\": {\n      \"icon\":\"fcm_push_icon\",\n      \"click_action\": \"FCM_PLUGIN_ACTIVITY\"\n    }\n  }\n}\n```\n\n\n## Features\n\n- [As its own](#as-its-own)\n  - [FCM.clearAllNotifications()](#fcmclearallnotifications)\n  - [FCM.createNotificationChannel()](#fcmcreatenotificationchannel)\n  - [FCM.deleteInstanceId()](#fcmdeleteinstanceid)\n  - [FCM.getAPNSToken()](#fcmgetapnstoken)\n  - [FCM.getInitialPushPayload()](#fcmgetinitialpushpayload)\n  - [FCM.getToken()](#fcmgettoken)\n  - [FCM.hasPermission()](#fcmhaspermission)\n  - [FCM.onNotification()](#fcmonnotification)\n  - [FCM.onTokenRefresh()](#fcmontokenrefresh)\n  - [**FCM.requestPushPermission()**](#fcmrequestpushpermission)\n  - [FCM.subscribeToTopic()](#fcmsubscribetotopic)\n  - [FCM.unsubscribeFromTopic()](#fcmunsubscribefromtopic)\n  - [FCM.eventTarget](#fcmeventtarget)\n- [**With Ionic**](#with-ionic)\n  - [FCM.onNotification()](#fcmonnotification-1)\n  - [FCM.onTokenRefresh()](#fcmontokenrefresh-1)\n\n#### As its own\n\nThe JS functions are now as written bellow and do require Promise support. Which, for Android API 19 support, it can be fulfilled by a polyfill.\n\n##### FCM.clearAllNotifications()\n\nRemoves existing push notifications from the notifications center.\n```typescript\nawait FCM.clearAllNotifications();\n```\n\n##### FCM.createNotificationChannel()\n\nFor Android, some notification properties are only defined programmatically.\nChannel can define the default behavior for notifications on Android 8.0+.\nOnce a channel is created, it stays unchangeable until the user uninstalls the app.\n```typescript\nawait FCM.createNotificationChannel({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification\n  sound: \"alert_sound\", // In the \"alert_sound\" example, the file should located as resources/raw/alert_sound.mp3\n  lights: true, // enable lights for notifications\n  vibration: true // enable vibration for notifications\n});\n```\n\n##### FCM.deleteInstanceId()\n\nDeletes the InstanceId, revoking all tokens.\n```typescript\nawait FCM.deleteInstanceId();\n```\n\n##### FCM.getAPNSToken()\n\nGets iOS device's current APNS token.\n```typescript\nconst apnsToken: string = await FCM.getAPNSToken();\n```\n\n##### FCM.getInitialPushPayload()\n\nRetrieves the message that, on tap, opened the app. And `null`, if the app was open normally.\n```typescript\nconst pushPayload: object = await FCM.getInitialPushPayload()\n```\n\n##### FCM.getToken()\n\nGets device's current registration id.\n```typescript\nconst fcmToken: string = await FCM.getToken()\n```\n\n##### FCM.hasPermission()\n\nChecking for permissions on iOS. On android, it always returns `true`.\n```typescript\nconst doesIt: boolean = await FCM.hasPermission()\n```\n\n##### FCM.onNotification()\n\nCallback firing when receiving new notifications. It serves as a shortcut to listen to eventTarget's \"notification\" event.\n```typescript\nconst disposable = FCM.onNotification((payload: object) => {\n  // ...\n})\n// ...\ndisposable.dispose() // To remove listener\n```\n\n:warning: If the subscription to notification events happens after the notification has been fired, it'll be lost. As it is expected that you'd not always be able to catch the notification payload that the opened the app, the `FCM.getInitialPushPayload()` method was introduced.\n\n##### FCM.onTokenRefresh()\n\nCallback firing when receiving a new Firebase token. It serves as a shortcut to listen to eventTarget's \"tokenRefresh\" event.\n```typescript\nconst disposable = FCM.onTokenRefresh((fcmToken: string) => {\n  // ...\n})\n// ...\ndisposable.dispose() // To remove listener\n```\n\n##### FCM.requestPushPermission()\n\nRequest push notification permission on iOS, alerting the user if he/she/they have not yet accepted or denied.\nFor Android, it'll always return true.\n```typescript\nconst wasPermissionGiven: boolean = await FCM.requestPushPermission({\n  ios9Support: {\n    timeout: 10,  // How long it will wait for a decision from the user before returning `false`\n    interval: 0.3 // How long between each permission verification\n  }\n})\n```\n\n:warning: Without this request, the Application won't receive any notification on iOS!\n:warning: The user will only have its permition required once, after that time, this call will only return if the permission was given that time.\n\n##### FCM.subscribeToTopic()\n\nSubscribes you to a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.subscribeToTopic(topic)\n```\n\n##### FCM.unsubscribeFromTopic()\n\nUnsubscribes you from a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.unsubscribeFromTopic(topic)\n```\n\n##### FCM.eventTarget\n\nEventTarget object for native-sourced custom events. Useful for more advanced listening handling.\n```typescript\nconst listener = (data) => {\n  const payload = data.detail\n  // ...\n}\nFCM.eventTarget.addEventListener(\"notification\", listener, false);\n// ...\nFCM.eventTarget.removeEventListener(\"notification\", listener, false);\n```\n\n#### With Ionic\n\nIonic support was implemented as part of this plugin to allow users to have access to newer features with the type support. It is available in 3 flavors:\n- Ionic v5:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic\";\n```\n- Ionic ngx:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/ngx\";\n```\n- Ionic v4 (also works for Ionic v3):\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/v4\";\n```\n\nIt brings the same behavior as the native implementation, except for `FCM.onNotification()` and `FCM.onTokenRefresh()`, which gain rxjs' Observable support.\n\nTo avoid confusion, it's suggested to also remove the redundant @ionic-native/fcm package.\n\n##### FCM.onNotification()\n\nEvent firing when receiving new notifications.\n```typescript\nthis.fcm.onNotification().subscribe((payload: object) => {\n  // ...\n});\n```\n\n##### FCM.onTokenRefresh()\n\nEvent firing when receiving a new Firebase token.\n```typescript\nthis.fcm.onTokenRefresh().subscribe((token: string) => {\n  // ...\n});\n```\n\n## Example Apps\n\n### Cordova\n\nhttps://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated-app-example\n\n### Ionic v3\n\nhttps://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated-ionic-v3-example\n\n### Ionic v5\n\nhttps://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated-ionic-v5-example\n\n## Companion Plugins\n\n### Optional standalone FCM Image Support for Cordova iOS\n\nAfter a lot of work, the first release of the plugin is out. Which should enable the support, just by installing it.\n\nLink: https://github.com/andrehtissot/cordova-plugin-fcm-image-support \n\n### Optional standalone Cocoapods CDN source switcher\n\nWhen the environment supports, the cocoapods source is automatically set to the official CDN instead of the slow Github repository.\n\nLink: https://github.com/andrehtissot/cordova-plugin-cocoapods-cdn\n\n## Authorship\nThis started as a fork from https://github.com/fechanique/cordova-plugin-fcm and, gradually, had most of its implementation rewritten and improved, for newer dependency versions support, jitpack and cocoapods support, and new useful features.\n","repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"license":"MIT","versions":{"2.1.1":{"version":"2.1.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"779e06af5d0f0274c722d8075552fde4823e0f31","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.1.1","scripts":{},"_shasum":"203df35bcf141d6fd3cc1b4cc6e81aa261682d22","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"shasum":"203df35bcf141d6fd3cc1b4cc6e81aa261682d22","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.1.1.tgz","integrity":"sha512-b3zoFF+NeAIIzNijgVJXYMLtxruw7je7VaYvq0kSqM76FW2HxS06jx3Sr6OC5WtBctXLNwjESqk0o1kAGyPSmw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA+2rTTqhsRNvRiGZw24m8d2bQxOK8TBsLW1dGF+sYvjAiBFcd3fj4Aayzo+HlCbCQqsaN/nwuj4ep6+bHJeqQG1ng=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated-2.1.1.tgz_1496000785455_0.3987426108215004"},"directories":{}},"2.1.2":{"version":"2.1.2","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"62858f97bc3da7ea605558fc0ade91d41b7d2a90","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.1.2","scripts":{},"_shasum":"d8d7dc77e5b017624370ac01e6537a1078864ca7","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"shasum":"d8d7dc77e5b017624370ac01e6537a1078864ca7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.1.2.tgz","integrity":"sha512-pYioKPnsyJVcNyNa/QCEjnTQdHgeCvN/Mbgz8w6RTHNWOQ4WzJudnE3bc6dBeeTjlf1edvWW83XCXArMuEMGNg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH+mXXtFwWEXtggmAFfOUwaViSfr61qD4LrrwBcCSeJyAiA3MRPzjRjnnWEg8dhB/O5kdpBr2qlLEjCv9dlqL0dBug=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated-2.1.2.tgz_1496001666244_0.334671518066898"},"directories":{}},"2.1.3":{"version":"2.1.3","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"b70558ad748f3fe02e7557ffd5364a4ea8ee554c","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.1.3","scripts":{},"_shasum":"5191f7672e02ee83cebd1db72fda330fc5691c5b","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"shasum":"5191f7672e02ee83cebd1db72fda330fc5691c5b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.1.3.tgz","integrity":"sha512-zJGbIwRxBdl3Cyw3Bo0WtIMM7k8Lpsnzd2x7tAIXzqsa3Xim/K8bEEVA1YEDYFnJIfU5vvGhpaDfDhsrZbxPMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDKXeGaZ4ORf7cWgtPfM+hgQPCzbaEPn0dQDI5TJHVixgIhAMniy3pXBowHfzlbSg3ttNjaJ7gTSgON9VzdwjDLGiIp"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated-2.1.3.tgz_1496002676578_0.8221740054432303"},"directories":{}},"2.1.4":{"version":"2.1.4","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"0c27e2021af6419668f2030e4f4ee00f26f0c118","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.1.4","scripts":{},"_shasum":"cd86cc01ba30994f6e1e461d2e2fe1c1e1782c00","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"shasum":"cd86cc01ba30994f6e1e461d2e2fe1c1e1782c00","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.1.4.tgz","integrity":"sha512-rCno2/3WiDrHol39wg8bDEyxUwbsWK7yhVwLBbsIucG8wI4Iu8ATApjTFvV2je3xoykZPnmvxR2uadQjKgqKvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF6ZbRNpEcugRbpw2tkmijJrokhFAwHR1VZRM+X+0gJiAiEA313DDTQtWyG+G5OV1RAPPH19VzQbGsBLYtdqcDwcJsg="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated-2.1.4.tgz_1496018816579_0.5685667362995446"},"directories":{}},"2.2.0":{"version":"2.2.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"05fadd0e3ad223a853dd0e7d8457a3adad1e37eb","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.2.0","scripts":{},"_shasum":"8aafa27a26379653c94d0939736c7c0ba98585e4","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"shasum":"8aafa27a26379653c94d0939736c7c0ba98585e4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.2.0.tgz","integrity":"sha512-9z6V4/v7S9b1m1ogZNcWl/DH9xY29An5JEE3sX5BnBbITyTy4ytZ0/wZJVeJsQwv5TFA6Kki6dNniZj5V3pObQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICOl0PZBMTx+OrseKUh7Cv1dg0yyu3n79DN+Lc1GB7LQAiBgdegw6T4pKGIrYWzdCD0gNvOpgWLaKDTweTNGg5CU4Q=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated-2.2.0.tgz_1496331124309_0.7258192722219974"},"directories":{}},"2.2.1":{"version":"2.2.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"5997e05bf9659739dcf7512ddc92c55e98660bd3","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.2.1","scripts":{},"_shasum":"bfebf43d6aeb6f69f86bc832dbe0ddaa6ae41f3e","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"shasum":"bfebf43d6aeb6f69f86bc832dbe0ddaa6ae41f3e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.2.1.tgz","integrity":"sha512-gBjImktFiCQYcJI8GSapTG6BHGZdbThSIg4RUCCQG7zBELXb+sh7FGWiUXoZctx9ucCgb4kRe3rLbauRhIbNIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDB+BWUB5LIAtsi9WzwI8SondHBtfjSpzdIlkVPUPgHvwIgUp589ZtLWhR5kkhcZJdKVTlP3WlSC9MTQNCzsczixkY="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated-2.2.1.tgz_1496332920760_0.8649608052801341"},"directories":{}},"2.2.2":{"version":"2.2.2","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"80673d3cd7bc305deeca43cb112109a1a6cb369b","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.2.2","scripts":{},"_shasum":"8edfe286dc5a9d7261b784be97c1210fe93cf357","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"shasum":"8edfe286dc5a9d7261b784be97c1210fe93cf357","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.2.2.tgz","integrity":"sha512-QmML3XgpNZbJ3JZEqFOGU1ChMZB0+TeKEe3lYhRZ3t1/mijrCOrU1ZiNk7Swx8XNGrjDAQ9bClOYmeqUw6d/ng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfecCC3buQNvG8Oj1RWtiSDJ6J+iWWmhjh68DBuED24QIgKvE8Wo/eqvEXzc/jXWf2V4kK45mt0e3YphU3G1A+AZE="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated-2.2.2.tgz_1503930477557_0.2749959910288453"},"directories":{}},"2.2.3":{"version":"2.2.3","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"f1e8f44b11a845e2c9dd16e8f88daebff501dacb","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.2.3","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"integrity":"sha512-Qg3Y5jbI2ey3Wkq0CJFuW1rOAxVl/c+jygZJcLjb/Nx5/0t5oSUTQu3yjfmDJSo8MWQ/yUURDB4fyXRMdj6I7A==","shasum":"fed54b4e41ae3c010aa029512c4c26411e6a1bd5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.2.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFlHjLK5cToO5A3VuaiqyUYqDwP7ESthiVSZBzgc+MpnAiBNycNUVmN0YcBHfhHTRlbMeXNA7CiMbwmBUJs1bnMPBQ=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated-2.2.3.tgz_1515190271048_0.09788657794706523"},"directories":{}},"2.2.4":{"version":"2.2.4","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"7b6c3f9289c05909331a0c61542bf6065873da85","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.2.4","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"integrity":"sha512-uMA/k16e49otxFF4e8S9v+4RI98EjA+eceEJVK6k0UND24hWbyDDKHeRwAPJjgyB0iY60J5aHBZjEDrGF6RUBg==","shasum":"dd49bfa1b94f7fa7e1b2a3612cef021ea14e783e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.2.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCREbdnsljY4Tv8c5Z31RE41zUIwT5HjkDew5xsj3zcTgIgeLYGSFkAsHllfGjd3K10fIBOchXplwnsnkf+X95F8ls="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated-2.2.4.tgz_1515192011119_0.6134807420894504"},"directories":{}},"2.2.5":{"version":"2.2.5","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"cb69e89ab4d55de52ef542bc55030b6cac75c21d","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.2.5","_npmVersion":"6.4.1","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"integrity":"sha512-+KNXkso+uQZTomw+TX9QmFNLePOd+Jxv1ha5GAOv9Ak1hiYrntSPncpJzPupR9oaQCt5hU+vgaqI+4Z6yJte1w==","shasum":"aa7abcce8c3e03d758e12d85a94a37ef901f1289","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.2.5.tgz","fileCount":48,"unpackedSize":24776207,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbuN2GCRA9TVsSAnZWagAAmEkQAKMrjvPRFuLMgofGvsXu\nQ1LHB6H9qsxyZjFRShPkwKLEeta4N8ZQgVPtf026D7Otj6fg0d3p7zBL8V7e\nS9Fc9Xm5eJecxrHtFWEWrJs8BFPzc60SgykNlgC73IfIdWVoDIRZ6JOZCURc\nVaNdUXHO5OIu3LgZekMW2yJJzmeO+9228qPuHiTVX6wH8B0UFoVRbGWerXUi\ndOlwrswPhGny8C5pF7Co2sWFH+BwDxq156+OzP9wrZNSyzySISNqrpBvUA0O\npjSK1Ygs74MHAuHsOr+wsb8WbLilBFoIXkTBM85Wc0mFzdtM4ZAw29AUEL+7\ngxxB0LMpcbB191ZWPtFjinJl0OTrL1EM2p26bg+lYV6o9eWwbLd+MAlGxFWO\nivZpHsvGBWx9ip0FjDjEAnxx0rjX+dvsUeIGiWEln8i/v0pTyk7tUSLG3npi\nSun1K/97Ezvb4CEBYE1C9d+Ys7lFvFyWABCbDzEXG+f01TKTon7JMPsuSZwu\ncq8rFZ+3dYbOmtny6jjQk57J96Z1gyRpkarhoYJwzrWI7uZgBbEoMXHAIlsy\nQjuALS5pWpUCxNWaVrOP6x/YSKXC2R5A1vaXqcfNgjwLXRCfKk+4K4rN/Zqz\nE7zR39IcN2JSUSV01FnGjVc7LLFqoKl+IBeClb73JId4zeTKsQ0KSFFrdg7f\nilCR\r\n=7wUw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIECMWF5raMjS7uhOiU/HifpKUH407aBSCEySfUpuVGfGAiBGKs43uHzSFLuhwAyiMavO3C9BloI3zBTs8eubMxSbzQ=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_2.2.5_1538841989753_0.5767957557418932"},"_hasShrinkwrap":false},"2.2.6":{"version":"2.2.6","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"a7274eada42aac04471267e5c117a54fff9c55dc","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.2.6","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"integrity":"sha512-cOzNjWQKnT8RMzWSfKb5tWBW8ro0b8OWhRC9CGdo4uAsTMs0wcIFvwGST0Eqkjf+KF5RusQs7hSg+7yXJTB+tQ==","shasum":"cf95118f2aeb8e71b70664e1e6e518c209827885","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.2.6.tgz","fileCount":48,"unpackedSize":24776884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1aW/CRA9TVsSAnZWagAAKyMQAJgS2vPgI3qW1nBIMJsp\nxc2f3lyu4+zpGOgN3/WyMWYhuUFdNi63SSj1IvJl+KQ9L7Rig/lG+cc2N+nf\nHStRsTMPgK9Z/UmhsH9iNGtfEGGjd6EpTu99oB5BCjkI7VIXB589NJvlrESE\neJcre78/Qv3xEi9xaJr8gPo86MwapROhvM/K3QWjXjKSnwZrpEEcz+sc5d5j\nPsryDQV/396mi4zAZS6eGFarFRqolDKXWAag2QE5XV63AqYAXoiwc4rhB0ef\nA6PKzgu7yGnHjhjZkeEUWoGpfKY+p3Zph5EcaNqa8me/lBItfIJ7EKoM0roR\nky806qOBFoc/0QM0F9pbgFvGxA3Sk4nlfhZUF2tF2HnTGRYApBO6yalh67/X\n3WX62BJH5Yldkf2ytaVUp9I46sRjY37LFLSoPb+gQIGPWepO/qiHzdjgKZVc\nA6fCUpA73Zx5kl1SsmRAaJKLEFsG31FuWxOQH7/QfsEw/N6Cj1y83mGQ+KKt\n9MZXGX5goemAgzRB5oOD+cko6B5FLLTzdqhqHrFOdChjGbBuuO6piAgFgA4a\nan8Y7E/RsDSbLOOb8nlq2foXNOLywkcC1CELfPFW0/no0fHOYUguYq+Xt09M\nqxmdwtVxJ0TCwsIzf5blamVLSri6+zFUzGX1nDoSH/hvAOhHWoil/LrP7Ssm\namio\r\n=mJBH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCX8h0vJjhmYIBQa4miEKUDhD+SKYuza61J3VeUBwppUgIhAL94qWl3ykATZWsySU5qJndozn21HvvADOA6fOJ8ZoUS"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_2.2.6_1540728254503_0.08568405566598636"},"_hasShrinkwrap":false},"2.3.0":{"version":"2.3.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"da68aa1ef352b7e94f42153647a25d266a38d14a","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.3.0","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"integrity":"sha512-D0IuRcJIfa5ZZy436GgThaB52+ilIW2w8NLagJOPpaW37BOe2ajBQqVsBVYzqCKJsTH0l4xtZ1naP71ysMWS8w==","shasum":"c37cc96ff296a92cc16046ded665f8c32c8107d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.3.0.tgz","fileCount":48,"unpackedSize":24777259,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/aZACRA9TVsSAnZWagAAHDYP/0TiL/Xyie5QrM5osyyd\nmxnMRkyPEWavraJRhg4mdjO/j/7y6XmT0VaNzlGkbwSuDiV9t0RBzOWOHwaK\nNIhVU1jjSovWjlZyza+mmbd3pZZw6sCtTyIhh08VcQZnN8vMI/YR9Jjhg+uY\nx99gsfqIislwAC2KLdVk1NVyneaD+7afQpyC9TpB6Vl7GuVXbqM9djSDb/zw\nJTX//45fLVdltbJl34YEUHQirJcC6zgQJPBMZ+SLLs+vAeWBaOOtg9eabJrg\njXjfhb78a3hruqKCqDzZjQkB7m16uMBLP7GMe7x7KmtZ0PyG73utedBY9ZQc\nCnydwsK+4qw6MwBQw+GiPTMApAFvo3wastGkDyr0Sl3cF9XJ8t/z5Am2FA89\nEiQZhTUdL08qAaBw6vG96Jmb0XMHEjEOq2rAIL+QCEMrr/Dhn9BEoliCglTY\nXFGm54kin3FoPJYhtJtT2utNk5sGm23C0Mur0tAPnt39yTdq+BpMcgflFgyK\nMakQlj8sHGtKGyh5jhHgBp8Zgw1/v86o7/AgCAEjUNPFWPIRKuU0WHfxHmDe\nvvhumntDDfkGYrA4gLVEsQ4gnXgWrqmwG7FYQhCn9C44SioyLmOzI+al+BRh\nZbBb1Oi/ucm6PUupXx9p0UrbUXPpN6kPFXt6wX9Ij0QfOPfZ7q8wPHZ+sgpB\nPgYr\r\n=xR2B\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHphQsDKyQiBIQ0Sht2ddxPBihxXIsClxM9HTdqXou9GAiEAwwgPEqv27fK6Y5tkNBRvknVIrbXxYMWLzxeyQoOVHto="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_2.3.0_1543349823677_0.5543067841195963"},"_hasShrinkwrap":false},"2.4.0":{"version":"2.4.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"80a287d935b35cea8c510a02490e5fade2faa5e5","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@2.4.0","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"dist":{"integrity":"sha512-L199FSZBdCwBPND+eemN44MRDTqsOJA05/hmUmjMRN6Z4HoEn//x8PwphIovvQyDscW4Hrc6fRlHQBvVzFIQrQ==","shasum":"675408e44793d5f5ee899f263a0c3b2a79363455","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-2.4.0.tgz","fileCount":48,"unpackedSize":24777302,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEWIHCRA9TVsSAnZWagAAuAMP+gKNI0vQynGLxqkGluar\noFh9cxeNdsgaozgerjQ06M9BplDgb/rchz5gz8+5k4tCl1vyZMt7NaUz1JpL\nGcGez62rogns6VtlypgyLTQ5AZFShUlMDyzz/e55poWeBm/AckWDt+WrUR5M\nyLLROWLm/CRXjAlPwsY+LVvcmTo7Mv/9222b6dBxMhyAx5mDcFcDTFULO3H1\nM87EoR7KI6BEF/MkkI+4S1PtV1OiBHgQ3P3q/Yv2JD1LHX7vpS9nn6kr9V+P\n0uqXf/CYPP0Y0sUJVsAj/Qn5sDVfuYLS2SoPXSfflPLFXb6PBhH7KIKpVoWw\nZaA7IQB8yv0nYRY7qQT1K7ZKgqBD3Xpw4CLDH0ElYzsTff0779FxDmrgKAbq\nBr+mrXEHfv9/YeLwXdqV7Gq/rQTre2iA64UTZ13t4gJe9FkOaduzZkouMdC/\nTgvuUCDFy9aPL1XQwFtbc6HDBSlZS4cNDpNXcSGDdQYhydcQSw6znkZl6bTI\nDPruEDmQ3JAXrTSbjpb69/8WHgDLoitbtzUpmq0KS6r/cmGZB4Ru7goOhPnW\niJnZC8YZSc5+UfsF33HCs8GhKn91UQW03aad6glEV4vO2Eg26biq6gWhSI0P\nPPt6S5nInz5NCbeZRbmd9R8ZzwCUripz3JLlJWIZLj29hrxUGE2QLs8IVc+4\ntEIR\r\n=5qgE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOI1wwc0Sj07/5R08kdCmsbX4Wowj5io/O+2fvmgas8gIhALeGd4nKJlbIwFHz1oDJbvknk4xHTXWQiWRo1r2fGWsM"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_2.4.0_1544643075286_0.9138670810175105"},"_hasShrinkwrap":false},"3.0.0":{"version":"3.0.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"cb9169799e003bb47353e11e407e1095e35a82db","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@3.0.0","_nodeVersion":"10.15.3","_npmVersion":"6.11.2","dist":{"integrity":"sha512-eEY4E607GLDn+XjxDNB6azXDxRhqALUW/Jgfputsc5gnBAEkYErnvc4HElfloy6MbyOHhGNjLkzJlthSirP4EQ==","shasum":"44d475b12bdbfc24d622fe5ff3af9e52651e32ad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-3.0.0.tgz","fileCount":94,"unpackedSize":24949819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdYbWbCRA9TVsSAnZWagAARnUQAJIRukatIkwQEnrkYkIA\nJXPXUS6LY3aOctaPyBjcCFYO39nHmUa3CRqWnwqPaNt0lgkYSneZl5NDWv/R\nwTe8tpOsAEjMosSAblQ/30spY4E4fLbTDGuqA0x9XAzWwJkYIAkBJvq/Uxgb\nBolndpcHYCkQOe+pW9lwgDT8p4GIeGxs1mn3jOJ8AR8aUM9kmW5+x6v39ZCJ\nHkB/FJBIa72EwHTmbPXZ7Ly8pU9CO7/c13CnJd6vzQ/dy1CeSErPytkaroz6\nCcARBvJzGzm0RJa8npv0aypotkG5nELRHzQmq+bW+2b+Lm/WUf4OUHwoPHcn\nudIjK3AhDjQxqOpFEdBsl9B3F3uhof7cO2Grn4VniC0xVvjNplsSQuxrlZ1M\nD1FTcSTzH3GL3us17XVTE/zfExlFRAnaFJLudOuo4wvZ/cJ7G8Jf9W0uReE6\ntuz5uAzZrglzJ21Pst7v6ZAMwGE+NDQrvRyskp3Q0c69avQTOKOr4r5Vbxpw\nqYFht3RpmS0NLCIZDkTHF6sjV8+ThSgZNV2T9CSoY+JB6aYfuKQiE6Bjpqxx\nrsF5xB1u4zI9G4bvNXUNl1f6aQXA8Ole+a18uK1FYOAsntsNR0JV1W870ue1\nOQn0nFbb8/rjgOJxuW3vgXpjQcu9iy84f+WqyrPf8MaSbPYNtrUnJ0IAmstn\nyDUn\r\n=75y2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHU33kBoIAJAwYt/e0sTW21+Ba/vTJnY99e1zb0UUiG7AiBfRioK2yBh8wR3tyLSe2IDScoOWPJB5yIZ+CmMQPZ7sg=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_3.0.0_1566684570767_0.2952890781447606"},"_hasShrinkwrap":false},"3.1.0":{"version":"3.1.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"8401fb8da576c311a62c921ed978c3ffeecdcc8f","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@3.1.0","_nodeVersion":"10.16.3","_npmVersion":"6.11.3","dist":{"integrity":"sha512-9hzaGxkjUNCTpnn1eDhZhrz16CV5wvBRSYy0DUa2PIzI0fhZ2sAVSyYhblW1+O7dYCjlKrPbRUVnWAT7MV/+JQ==","shasum":"7f63077dcbb5a80041013dcf548eb45cb5e3eba4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-3.1.0.tgz","fileCount":94,"unpackedSize":24950126,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdfohYCRA9TVsSAnZWagAAThoP/3IgUFAmGMIUj6F7KnbM\n/WFoBF+n18Oc3ChVx0noIrf6DOp0RqcYdhDWHCPMF6HJ0POfhARqnhcoFyr0\nunPHaOitdMMNWim+YoitEbEZKVqa3SMEQpD3wOw3/sh/9JuG07WPbf3JsFHS\nI+UiDVgbteS/ICNm5Kc9Yaytbn7pv3B73p2khET83cCS2+AHVuVlCSANb/63\nbajdHPQ1dlQCnnP2wQS7naNQnkgYDse5H7oIG9jR25Qkbkdh7BRzGt03ELKS\nqnvxaAqH0FwNJAlT1iQEAyDRdRwtmYaEeKQRCvtF8m4amTg8g2BgvjtTZgrp\n1faJeeZuUOjxFjTTDSfBRtPTMQrHIaP0oGiiUu/J8QZQkV1kztSzk0wAan4N\nGj3dHFfpaQCirwY/g24egnS/IEmHxXXHeDAb5yGqW1jjzuP+LvMWeySZbMdV\nIaE7Asgef0KOhIAhciubO31g100XkXm46J5EaTHj/0YIC3fNs2AAMD78jUhK\nI9T6FIm6RGLXau6OeWNfhYu3d3/fOwKcIa+f8oIRzpOYFIBl9bumB6U36bMN\ni/c9GUwf3/iHQSxO7VwOnOlNKpZ6wtOPzsLY/KNXKBqd0Y92DBm2yQxjM5uB\nLq6a4r6zOJC34FUs/Q7jVNpjbpn/v3o6LugfXX9OH8ipf8WcJDn2dizjeVql\nhdsO\r\n=dSEq\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGNRIyOy+7/JABniFfQhI9h5rPDp8LKwA2GFDyFyXl/7AiAsGbrw1hObgF0RpBlVb8gfHvWcCWuG8HdKjK/BXyao1A=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_3.1.0_1568573527369_0.10940677133971732"},"_hasShrinkwrap":false},"3.2.0":{"version":"3.2.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"68c369202d3e3e125cb4013348e87e6b3f4d2f09","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@3.2.0","_nodeVersion":"10.16.3","_npmVersion":"6.11.3","dist":{"integrity":"sha512-9V2AzKNnUw1kHoVazXk4u4WrXsCxqqufVHtF1l/tBVbZbB1a6XeQViRkl+FVOuP4zP/rfp01qusYC+tq9MwiMw==","shasum":"1703d06a0a4cacd7558b342ea9c1098a1750e0e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-3.2.0.tgz","fileCount":94,"unpackedSize":24952085,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdf9Y5CRA9TVsSAnZWagAAFq0QAIznPzKJY0/y93OiHyv7\nuihFeYutc8j4b6HSqazIOKsB0O7ISkF7uo3FMhW/Y0vFpuK/4xjWP0lzmcyK\na7WN7ZQrukKw8WLv6ujy+FMshKVcaQ+2i+yC1xwAP1i8QmZ0hiMonCOn4t3b\nAXcIaOeeA4QfJti0w7nkAHToeX8PJp9RDRnsrl1LuiKK+cYNroTTFt5kC1rv\nFrGYMRB14twXZs3qwm7CIQ9PHAjunjQDp8h2H+Cq2cDoGPsVFq+ZvgIdDJh7\ntdyNBASKTvMNk3csL2/9jaJedp8atAHJiewFc6dFu27cFyF3Dk2Y61lJiUnv\nk5XH32s5/vB/aBJa809tuT7Wo4bGOAJbAn01c4R+WPPYl0bXu/a0ENVckYxx\njZCjq3im+5WVPceN6oPt9YBwpbYd4TKR934DH97/aENCmz37fSQfrkpiR11I\nPggx7Vy+F3zEVjMNrkKRMN4VsLQJtU+yXSJaKyyqT1u5xA3zZ5ixAy0TbupN\nRBiT+sKBzMNccpqQSWCYWnZS9zjiIWAXrvY0XfgwKVjpfeHvdiDf0YLqrK2x\ndUxu3/l/suVpHbMdWH+Qgeb+VxbUpAAhnjqM8m2EEzYTwLMgqj1FzzmqfEPw\ngQOHOu8GzEy7nS6U9YQX309d7mV9jxsmiYayzsKECGFX5VVr4fI9+gB2z/wE\nOP89\r\n=oc9L\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDx8UifytSSWH+rEwlp6BTlBHJWysS0jvK1zcPa1EcvgwIhAOf4wsio4J4BssGcVIO1vAfFxisUJrCEdwrptjJtPww7"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_3.2.0_1568659000364_0.3349174235254453"},"_hasShrinkwrap":false},"4.0.0":{"version":"4.0.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"1b9e7cd333d40401bdfbed82dd842ce3c9258742","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.0.0","_nodeVersion":"10.16.3","_npmVersion":"6.12.0","dist":{"integrity":"sha512-AnIKW5mijCuuwS9MDnX4GJP8Utb5RpffxJEiDGk2zr7i7utGsWYgUZQnCWaShsfeFgJQbWjf3VoL/ngy5bdnVg==","shasum":"96bd309421f6c17af6a0d6c28ae013c5177cd68a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.0.0.tgz","fileCount":63,"unpackedSize":224830,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdodL3CRA9TVsSAnZWagAAO0cQAI7WY1vVnBAX9Ft6ZVhK\n25/w/6dcEVwYt4tvyS2NnYlC5IM3z5psM2KJIqENnwS3x91oO5WpmwV9CG2j\naayMBsTUY16EZ/Ea+Jy56S+YN9JETHC6bMbBve4JOSKJ7eKnnYPHBc6hQLcV\nwK9TT8j1pQrtB7/m2Z6kwTuIRUJWO8XWX8lwrtlUwKjNf9BswCdSS84mK0z8\nOuJ0xSSHpDE4I5hH2QXvQSjKu1k5IPL63eQw2FoCo+cnvEp6BF2Z2PRfVR7i\nUrHotOLpstAFFV6E8Jv/Dnre8kIXMIkIZc9EKbVXcmHdknJHn+VQ97PX7Aae\ngaFahyXObi5Oo+2Bt9zrDzUx8jFl4R7X1NtqHwiP5+MqN8w0kAEkEfCiFWEQ\neUNlICPfWkDf8c/DfyM1qG0RrXjmGAnhjxkUgzWCbjy9vadLS08J6ABK25ta\nQbklIGPun1f2W2X/BTDKPtrnKqQ3zroDkOY15BU9EFE7yWTanpMfIhbiXHWR\nlcxV5IwDorG2H0F0UFxnSoEHk9GGNvefzNjdH0zHa5CCz4iIWz0qEMmhphQm\nuZt2eaQwwEZa4Qz8vVWfaoIVIqrjtmHlSbnYpRxqbcBJp+2X2oxpe+rpnTeM\nIG62Cg6ZFlftG5/wcR2NZSo/Es9SdL+53oZrI7Lkurf/+QIE0DWiUUU5/DhB\njUbC\r\n=n+7r\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCFtPUye2Uo9G2zrRIDGG8NfgWMcFRkaG0WUEgmefSf6gIgbt0sqRZt97ABZTb/Kh12OcKXZUNTWglnVYIaoy1z7aI="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.0.0_1570886391074_0.5143443972332611"},"_hasShrinkwrap":false},"4.0.1":{"version":"4.0.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"7046acd758535c073d5cc2913c346b06014d85c2","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.0.1","_nodeVersion":"10.16.3","_npmVersion":"6.12.0","dist":{"integrity":"sha512-xq6L5waUb/Bwk5TD8DBepEiS4Uj7j9dhPN4hRpSmcDPkL2qtwOEOaheEZxeG6cbtSJXb89R6Qqwlf9R30s+Z2Q==","shasum":"965726ef98009ea6d5d4bc1ad9a315db0150781a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.0.1.tgz","fileCount":63,"unpackedSize":225173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsgEWCRA9TVsSAnZWagAA8BYP/2sp98JLFQEBS0WEgTLt\nH7XHbL5RjtdPu8DuJJvk3sum5jQEbnr+RAIFxjCWo1NDwZho+ZmM0wg9faVH\n0+drPk9Frrs3DnshbHyRUW+kZB2fPlfKZRcUgjt22522GDz13w9zaT5n1h4H\nj96HEbZPQCOjRlAGlKDeLF7z+wphhg+OCUbXJSW7exzPSMMMy3b4VQt95Mv7\n25k5Q93e/TITdP6Hbc6/hxLOENbxTdl6ww33K095rvZR0NtIzxO04SJsGVtw\ne5y4fd9g84ijS/srwsGYk3tuCMTq6jCLxRuLfvoa5GemijaZjQrr2zPkpyKh\nDF32FftSbE8Jdjdfn5R1mK/OAtDEKid+rpvSyIDl0Hhg7dZbqZJ98aoVNW52\ns3AhRSJtm0XEy1N06+199AHF++4z8a1r8nsiRccenaMXgcDDBrZk+mhYgqY2\nGzMiW0aD4VZk3Ted3pzF6GNlMGpI1A6kkHuuyZxaftb+awO+3q8dxAmJz7Km\nPuBYgJ3lUE6mR2VAkLwj0F7LXTZkH5neAk+fuzz+4n5jDc85t+B01mn5u0JC\nuQfN7lVMyh19AMjl4G5XKhnkn2euhv1zXb8DlrrL6xdlvI0AJ09pYcl0FJAl\nFAOw54yy9Qx4ZSjSZEvrpdHAdsbhxBpZ8XQ6m35/i6Q4yEmtQYyP2o8cXuN7\nVI2q\r\n=9bxU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPpYYuMz8bH83nhKT7BpKxBpgLMeHpL1vuIymMJuOvJAIgesMZe2kiXihX+smj3LiXoIWbPQiHLAmnxrOujfsOcn4="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.0.1_1571946773937_0.1113223490112043"},"_hasShrinkwrap":false},"4.1.0":{"version":"4.1.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"ec250170035c388127c9e3fc0b3ae3d8a7d24574","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.1.0","_nodeVersion":"10.16.3","_npmVersion":"6.12.0","dist":{"integrity":"sha512-vNmsDPQNe7OGiqTLILojz1IwOdlXjui4GbhlpEg3UMPYOGxOepe6rCW6M7XGf+f72hiIdFnO4W9L20lOqLyLZA==","shasum":"a7f28d93228010a421966c36169ccec1cff765a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.1.0.tgz","fileCount":63,"unpackedSize":226897,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJds/1iCRA9TVsSAnZWagAALBIP/Rk9k/1eM0JV+7xOmLbR\n7qG1g95AraFRtOf/H9edeHlMHOuJiD7syicClmDtCci7qWmy7/SAP7yXVcOE\n2b2YRMohuADZgjowlNxje3CfsV/moAkPp+pp/QnAjaw84tb6FlvcZRCAlcbk\nzKKHmnS+QtuGyyjYrDqHwNIFYUDjO4hkWCMdW78G2Lh6u9QrVtx8Cj1WfYdG\n5azaMO49n84CeXva/jXXpwCAN/nqhuforDkoqCNGCQtmBcxu8EpoFo6q8K/j\nNtJWoz6+edj7/WsUGcym3Wg6rn0rGtA3UZ/O9Y5QeSbh3KS67rXkZywo7sAr\nDv3nbRoGvrVbAy0xCeXlrO1Kimp9AjF4TWgiQDMhI6tbDVIasUtKzV22axGG\nc3WMiHVaNQM6bvBl8OjLDL3te86KcF3cdnHnIzXE6C3e2r8dHMFs6kuuACpW\n7MmTGi86guqlZlkbYO5ORzB4DRGPlmLGYSw0wXutnSCmH3cOO8OQPQtDbBbr\nFgsGoKQS7fcXBl4cDmYLHiFLXpHgDuV68r7NsgRIBsv7eZPjtWgW9Zx5ag5D\nioL6VlXpe6SrDLicq7AdpUu3ag48X4XxxujbOMYh4CJxeHrKndBHC12XfAOy\nynilRVhX5I3pWPbJ/1hXi3PX8R/DWnYHy0JV43hAE1ED6LNpj8omtT4UDAx0\nAwCa\r\n=6R3t\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC3aeUjhoLbvs0gcWBg17Lc8OMJ+YQAMqygYk2cMNMvtAIhAIwkzkl85wJKx9ikRpb48viI4SGujTOpxunZOnN+eXGu"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.1.0_1572076897691_0.8781380926418536"},"_hasShrinkwrap":false},"4.1.1":{"version":"4.1.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"3b778ae9f85d82a2cc404933e48fffa39f908d9b","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.1.1","_nodeVersion":"13.1.0","_npmVersion":"6.13.1","dist":{"integrity":"sha512-2pZZ9EZ2tAGOE3KlyzBuWEPAB6DqDt8GIMMXAnAaHWlpZ5warL3DcoUKJJ/pEAUsEhXQ0+4OqlgBLGiyBBIRJw==","shasum":"b33258af2293261ea768983de038335be5c6512e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.1.1.tgz","fileCount":63,"unpackedSize":227383,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5upjCRA9TVsSAnZWagAAKHAP/2pJa9CQ4XlW/OcSHTRb\n5cMyuSbl9PvDCw5bkqn1IJzNAXjmFoBfCHfNoWgbI8w+phEFxKh9q+3bjLDt\n2wr2Oq1kHQHGXJ1pf1cpFEqF0e26o/YpALVEd13E3GpcGHzKt7bDH64n7sRe\nzHnJTBewIcPCvZ4lZhiTSkP1b4Ogx0Bct8tjs0fQDPKEYYJev71cG+Elw8y9\nYc7vU4G7BL0gIsJEY57BcfDUAR+IIUkd5sjofn6kMOh7Lor/Gm3zkcU0a7dt\nxjJKpUFEcLm5Dfuopg6FU2aFE/gk3NbToFeHMQ8aPo9oBHOIbiy/qx+sDBvj\nptdaSAvLw8ErL5hN5DU1MWyFPHjOaTOzYFh+dpI8BZsckehVpklyYZvOBaef\nnRLE1vEADzEHwi6s+lpud5swCMoBFq7cbjn1LkzZnZ0WUuZ+PlB8pqhTbUq8\nK2KCRmZB/fz3tvJQQtKzZW+gAZnu0+tV33TypWTEGhFU/xn3p1gP0hUGgQPE\nGFm9PVUA9DZ75cO93oLhBsdvZjNTyRYt1e1w9AIVquZdvou5oNxRSIErPoQU\nST4rCG9ocZuVUUKgpenkoQ/sWXD3aRF9erytQSgcPbvPuJyf1PZpHp9tkUvK\npZ/DJsyOQJAtXFf4WvcWOYmOlFfhbYuAVVOm0ouXvPMwhTdjRNasQ/Cunz/c\nhPvw\r\n=ksj4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCxrwxfrGWT7BIKKv+CvTiVEtUeIoDft8/y/dHh5Ub2igIgFrlXgbmT1i1nE1VoAg58fMLzdMDLc7WhUipfbrkf5tQ="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.1.1_1575414371133_0.2592786860022125"},"_hasShrinkwrap":false},"4.2.0":{"version":"4.2.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"65989762c0d98e4c5fd7ff1a13f92ad35c7848c1","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.2.0","_nodeVersion":"13.1.0","_npmVersion":"6.13.7","dist":{"integrity":"sha512-StgKWEjgNmqYXqYTBduoNfxufkWITGy0J18hzA3OleRj1Qck8vJOuaP0fPHEobQf6RFI5Hv4Pi8Pr9WLrbLoMA==","shasum":"3f12d659ea940c4e5d3e84618113d036786ba7ab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.2.0.tgz","fileCount":64,"unpackedSize":227879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVDlcCRA9TVsSAnZWagAAJSsP/2Fs9PS/Kun+jPv6HMIW\nKH4smguEeQWta8t8Wrd9WZxkjqXRcjhAZkbg2VcQej7GBcb3EfK32jQ38nxG\nT9GbkeuWXmf3EVIPi7Q+o87fNaxpu92UmXbsAHbxzqRycj4TfO0Qv5wTPrfk\nyw4u1e7+HO6iK2OPrp/vVhA0vvvoh3xAQRntbkziEnBCMGAzV6WjL2jxcSRY\n62qY4mv9bBccM6/qqXv470GFGLzuCHiKzvZT07YsvAvue4VUeIK/oAOdXGqC\nY3E+UooGTAzuCUFANIW1cXbgofr013rjeGyWfdM8dMUd1aQDz2+HMtEK+ruc\nUuB3Q3c7A2eUX4Ma0s1s2ljUfbIowHb/A1xaq/YtwSVCH1mz6VujER/9c//u\nIZ4+Gs4Xd6Ocktj452kpfJ+lEq/Ts163Zr0fsLONsfTg/wN60hqVpRyAcNkj\n5SkUDCHK3ERBy3/JuQk7aACG3bm40gWW4pg4pog5JC3MGPGNuRJBbodYGypt\nTkmX5qUNvmYETbuT6d2Jz/mjzoiKwTo+yaTIDWcda9ttWboeofy7Z0mGJHrM\nz+cdfwqjTnFv7x42JYS0PjVByvmrrPROW8I4Qq+khcg2c9kn/lq7B7DxjAYz\nxaZK2le3fLAxY660tKWu3xTRiIP11k9GHZ3P//R797doSHSf34/FRkoHeuac\nIzYq\r\n=Y/fv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCRpo6SL2N8XFMtG1FPtQfBRNSh1tJpU9Km2VEqFgrXCwIhAJPdoOeCcEjJxpiU3LUXk/vnVhZS062+oyO1V5Cs5pbF"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.2.0_1582578011546_0.7287244864754838"},"_hasShrinkwrap":false},"4.3.0":{"version":"4.3.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"4ed0bb09b130a50614ffbfbb52cb35d26bcc6f1a","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.3.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.2","dist":{"integrity":"sha512-9cVNfIEvzmAkGQjueDYY+UgiUZQqScrfJcoFSAzVLG8PDKoN/MJAbjZ6LW8WV09LT/8b+Oyc/FwhJgoQ7DgghQ==","shasum":"fab611267a05b225fced29e90609d664dbe7c0e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.3.0.tgz","fileCount":64,"unpackedSize":227879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeb7spCRA9TVsSAnZWagAA9WkP/3CgDesjLdgCyL2vn6FL\nBBgo5rs8a92ctQo5wImys8JK6S94zhibjLd6LndzW6L7khwTGZ44P0eELYBS\novGGx9Vn/6hBCCrb9VMTAarH4k4jvgzdzxMbvIhDgpSYTOSUPy1hrc0wfa6O\nsDEcxkjQEkEAygmvnUtl36GwrIYXsin8Z0nooeVCTBRE6b1DL2h9T/mT/rH9\nlxSow7mAIrzLOyK2qBZwbQLjfDaRkq1HVqSczeo4CZmpbOoi2ZvZbq+U1kLt\n2CqaKz9TpntsGDKrdJS080MLxXsbu7eTrdjg8/lqlKKURJDpio9XIqiFdban\neTsdizBdi6BiHCQUb6oNSbrtutooYj9x3Y2l9e6nmKMFm9nqi8G2lrIIOLyZ\n/7x3e02zN0z9tVKudmbl40AwWZJr4KZjApRvrLTTWz++Fl6nZTQbhJ5Gprst\nA4KSb8tdoo5wZiW28lRpPH5VsRaXUgxnEycHzHtbZqrJryZIyGHshfLib5t+\ntZirG1lgGkyZjnNKdsYHst8cTG3X6tG+jrWW8k6aEnhTW+SrwlTXqQsdo8iV\naphyPfpbXIMX9ltqRlcYtnfzqvzteHE45/gKuHpiEHBZeOqF+ACLKY2k9j2u\nRkEG5rB6hKmubzov7NrOltpW7N1iXIu46Ih3596Awxa1rdCxQJbI51rpbgcO\nAT8O\r\n=oWCv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEtM7bMja+R0sEBJ/IRarebDZ5mOy/lGPqEA+LqDfqRxAiEA5NijTujlo+sL49v1TAqOjMLUPQqEifGSmh2ylJR7vCE="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.3.0_1584380713201_0.12096126887315606"},"_hasShrinkwrap":false},"4.4.0":{"version":"4.4.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"6d03fb45b137d82e043d16f1ac662966e69a1a4a","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.4.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.2","dist":{"integrity":"sha512-LS2OHVCopWvYxU/mEhONBoJhh65mc0meG0mgmGkE9OqCNUph2zGpqR3RqAHmLEa1UaJXgxnI8rk8DzrLLDhZvQ==","shasum":"0965bd262fe2f6e0a537365603d341169a7d6aa9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.4.0.tgz","fileCount":64,"unpackedSize":227795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeb7zPCRA9TVsSAnZWagAAW4MQAKLwPJpKIueoUm4L1Nh0\nvk3r5LbYYwnUA6cWuJ/GcvUXBE1fMQuwJb8hGzzvj1y9KB1Ry+MvrEMBy3wQ\nw3nHJEvtJ1hCNa1EZrYI1SLK0K8l5XuANqV2Bvwikd2OGbP31aHjr2QrovFG\nXUCaq8JXbrBpvW0o1Y4NyEGNhJlBIOasbHHeIDGn8HHzdeMrbrJAFrDgzWUe\n0zIx+uQfxWSxWi4iOZwdskXzgqaAMzm9UaTvI2b6MnH5bDKrTsCeWJk87Bo8\nirX2MnJFjQTnAkN8XcW3KaLa8VGHYItTmpxT5Ymus8F2TVVsyISaaEz6xM4T\nNv4IeIFWZLFP3Nuu7eIYbCCXruNvIsEkR7oAHU9dfx3KE2y+AR8+bwjPCxoJ\ny2qySEB+qzmdFovYrPntNHDokurjBJ+kYQjY+cL8MTNb7TfiIVrXkis8osNo\nY0vvsCNknomsXUsHA6lbLjYAM2bdJsQpT1218jtEPMD9BwPyu4nGjrjOvnqI\n981VXN6pTOFd1rA9TXw7VKosE464dl0EDXYkWU9w+umb32zmFLdFQejwRuLo\nmg0wL/kYYVrai2mWKgCW1UyF9tVZdrHNghZJkRz/ogoDa0T/YB+Wwwz1mrOo\ny1gXOnwIMe6MMAHaPi9G6LhZB24J0SQNx4yCTpi6UbPd08ZO8xdVfMqNHPyW\nXYw8\r\n=fURR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID614Mj+QLHPTYBpGMspBcY0hMx3z1DE6ZXbjnpWwnAnAiAQcT1Qy+Km4neJrZfsQrlQRH2l/0sPV715+FWCxHc7AQ=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.4.0_1584381135060_0.4378389876437154"},"_hasShrinkwrap":false},"4.4.1":{"version":"4.4.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"64bf978dce089c983e4866db2841f815fb51668c","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.4.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-ZQjM02vIXvl4gXVZNJhXfrIJ0vSwITplpJIb0scRPtrO9YeJDpfiZlNHnS9TibYasp/9C1jbKsgFJIeWJVBEbQ==","shasum":"0731fa4988b09365929e7b95060cd866b240d01c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.4.1.tgz","fileCount":64,"unpackedSize":227728,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefONrCRA9TVsSAnZWagAAw3QP/iPT1wloLMvb5bEth5xX\nfJMBN9KGyAvRwBWnsywSIoPlvA+Cm9+AJv3Vj4yaiukBXHzW2vcXJXPG5hdW\nI/JHi5zgUNsBNC995WQlZWN3bMRJpt1bR5194hJm8uj6FVwnwyLzMNS/B9v+\n6jjFziWvmUuRLpfJ/FTO6nTL1fDT2lAq0V1h0MZ6wzAOH6Z0+CGvEyDZUJSK\np0Y00KqDF45pLQkQuQFQUJUQeZvQjn/qOCBdIIJoXMzhLQWoLO6fEuRGrsYj\nphQUUCio44KZLOBE2kXGoeDTOQPgT6aX2VdwUd02ZOsEf2P//nZuqkJVUi7a\nJvScLiUNK/5VO/+ULmK+cZ68XXTII9h+JcNn+ZE9YxBpQgQlPMGFY1h8U6oM\njZ7LS0j7b5S1ACtbp6xuZdZImFMG+a4fZioMHYm0LX3bUB36BtiXG0j7uW0y\nIibwotm65BsD6GmNQpRQYw+7hDvf5pYwCKPeGVvgXHBuC0fIN9ZtSQD1YFo6\nfrFpp//PF/4Oo42QIfauPUOurHfdwhRnV7TgOrQsawok7pZJ/8mwEB/OhMT7\nPAxtr0V68ppHAWn/F4UjAWl4TVr8NN5QOfQm8mVCi4rdBRGtg+WvyFEMu+5g\npjjhqDGEWvyG4EPiiPU5ecYsZehpe1BCYua/htVJb0t0Cs3cFVdlWBRA9wmX\nyR1B\r\n=2pvp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHzO5cAA7203EfExxjGaQOac/XxIuMLqzANBzDLYoQwxAiEA94dXU3sF1QLFvazTAHqRe4msm/SwKyYNORqLuhuZAh0="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.4.1_1585242986617_0.9182481482904739"},"_hasShrinkwrap":false},"4.4.3":{"version":"4.4.3","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"256788fb12c93dd2c5e97a1fb66724e7e23b1ace","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.4.3","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-2GAeU1+3Fa5rxummPZw595kzMBWu+TM6qOgSxh2pCbbeV9kOycGNN88GzPNVtbEaQJL2y6Nh7aFtd8+2snkJGA==","shasum":"a2c760bea8cd4ae6cc1e16181c33cff365ed545b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.4.3.tgz","fileCount":64,"unpackedSize":229156,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJegON/CRA9TVsSAnZWagAAYZIQAJ9iLMApPTc51HHyfVPe\nLZ0ZovWUuWARZYjYdErhB5kvXlX6S4duBDyKQlL4jErJYB9addsIDUfKEh9U\nDrwYXmMtZktJFWtlZcvS+I3HPrVIpbjb/kMGEHt29/WWLMAV9SllTQlfk2Ve\nP+NEHHiO76imc0My/j9X0BoZ+kKNNj4aP1auvf8KgNIMTtWGzPkNQ17ZMICh\nqqOdaC24ELof20+zDT0fYVMDyihpwamlrSRyNMUL1viwzNiGGskL6aJiv4rs\nDECNnO70nZtvsyivUo7+tqGJ98SP/jhvxKB53tmdAb64F58xxYIYOC/bLi3W\nOxUmhYNS/sVH/U+POMLzpk0PiD8n7DHRZtlQ5i2v/Y0y0fRcCIFklTuxwgBK\nk6nU9AYufYysJYvVq/vb0ujYO+YQ8zqoJf+YBXZB6gpag/uufUXleQi+kYua\nRd+2/k6dibDwFy0ECF4Yy7noH5I6Qr6fbDRaDBkdQj7fBVMSRhCCsi/YivBy\n0nbh6ox6Iu03rQk+gNVtPxpTigPodwygU0L274knrxThPVnf5N+R0kUzWlzI\nyyBQt9gLaXdLaLOIZTHpJTvBkgP9NzH1VM+N1tMkC4Lq9Jhsa7OwTeNC6YE5\nKdaiVVHux2xgb8zY1ShF62FgLaefBqwiH17q7adcSKcJxXGy+uD63i35TsYy\nUUme\r\n=eV2W\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICnU2byP1OU8ovzGgU5j78wq3NXqWTcHrOFHIANQYJxBAiB2nYBmwijx7zM/XH/jdCIizdJEQ9rQ1bzzl/SdGO+WGA=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.4.3_1585505150261_0.7505828008034388"},"_hasShrinkwrap":false},"4.5.0":{"version":"4.5.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"b031a91ccd0dfda18a8431c19e433a452cf63587","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.5.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-Zf/s/bEahQya9C+7wAe0nRcExzXLgTKWK7APlfQ1VOBqgSoen0JnYdQYT3/ffLpB0gQOhupX/SmIoJi5aErIdw==","shasum":"df97ffd623806f8c94cc849e6814e0b0f552cf35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.5.0.tgz","fileCount":64,"unpackedSize":229634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJegQshCRA9TVsSAnZWagAASQcP+gPbq9a651reVQGKJHKX\nUsjxPb+VQRNFCgcgQjJwEmmyhJZnlVct5sogIln38a31mmUnelmFPFeHP2A2\nZcEJPGoxXPOLgv9WIB2ExduCg+iO1u/wOo15cc28AAaLBN1hTgRk2ax9YdQN\nXUeWsW+ZcaNfwG3/Om1otG24CeEjulZZWMPP2yP2nb1rZYDN/tDi5v3wKNtz\nJi+v81J6rNnWh8RORFZRql0GmYKgp8VQSH23o/BawlGs3Z19AfOOGXyVZrjs\nxr8qKArmMN4X2xbZNoIqGgWHyDj4cS9nxS2giewAnAUztBy22VRDC9419NjW\nL8vp0eNg7llG2LFZno8MQ/8vX3Iu3t+2sDxK8lkV/IPww9VMpue755S2PdIj\nn3VmhY5hUny+JpWIlKDGIb33aM6A/pPahddl1a4vbqa9phQRGWch2uuqB9Lp\n+AcMO3mUhB57u1IuhVKC3srE608EnrhnpVClyXOnw1uY0Uyct5yxGNfo6g4K\ncfFLW5/B1F1W5T5RZe6o3qF8VSBo0VeBn2t8WBRyVa/Y9otYLnlLqdbZ5+rP\nDCdLKrpL2CQIFxHgY/P2dEgNfRFVSIOnByMDxYww90uKHU4eiJgkSjgiZTBY\nxtY0+ax9UX8U/TTf8k/wtJvdxFu2nVpf/QihdklHCm5ofDQOJ4LEiGI9aUIN\n/eX0\r\n=QPWU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA6IpNgS4f8o/LO9/Jf9YjewNgtNjfvraPUGC7Tf2kncAiEA2qE7Ck33iOx5vZd+42Ws/0ZAHVYeLd2o8h9rX/rLub8="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.5.0_1585515296604_0.18107784261920723"},"_hasShrinkwrap":false},"4.5.1":{"version":"4.5.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"9342279729c6ed07e252eba82678c06ee40dd7c4","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.5.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-hIJkHWzJFfnqHDwUYJ7MoBDfjAlZeGzaHHVd3oHQU+7CAvwqpz8ABfbh+43WkNGNojSEchZ4G5qyI0NOpvCAjg==","shasum":"181091867017d8cd3208d28d759adadb39af8c09","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.5.1.tgz","fileCount":67,"unpackedSize":230624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJegj1jCRA9TVsSAnZWagAAgy0P/jINNHql9tFWqGyzwQi8\nl4wkGyjfV2bk+xcbdn4Zpgjbi8nztimjuER8S0YbDCBPohhFornJYeXDV1tl\nlJS3Tq6jfDJNgs0K4AOelQ22h2olHFE+Ao2ZzyX2dgJReh0qc+0K1PFwj2kE\nrLhSZtlC2mNppGkrzW+O2uICfX9zd5gX7dd+DBJ9NNYvFsIYehcdESxmCsFY\nRF9qoM/wjL466ZTHUgs/L/sB5wsvmX78Lw/tWh/AJPNxpgCkH7i7UPte4wxW\nMpgsUlbj4ETGVq2mTkQR8Gx4hSaH/2YvrbIX/JxaHpaaIeZ4cMd03+AUPjHc\nKjmbK4ocYQx0PQj9SHSenmfBod6dx6hrdyoAvxRHtQpNCjN/XWinSmmkqmTT\n1D40OjR8cfKjuo/52BXdzlQiF0pwlIOuk2n9oYUrxr9pI1lqIT1D1CeGwpqj\nWB0OfYuAb3noglq5fYKRnHioyXxZxqutD87vBrKkRcmegP1Seg47GlwcMfL3\nmtvlfP9eSVPiWjtYUev49AGBSdvim4gB6kjc4KRty3p5R6UkpOINoc7e+fr7\n8jU8XkPZHYS4+kiecLwYQCNQ0i5mV3Qx8xmDBtcy+5Ln3qMOsjbS1ln4iWdL\n9trZlqmF+EM2DvYvnHV9GZW3Lhb9JO73meSrZAKYcSw/Gvereti6Eu37VpW1\nnNlw\r\n=5AW1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDp8eVXWgNyA7qvduvuVmF0zx3OL1DTzPYo5b0TylORZgIhAM94GwsfgYU/3gIzGTBdr6oCOuiGoUOl4wTBw7qVzRlf"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.5.1_1585593699169_0.7808553292345004"},"_hasShrinkwrap":false},"4.5.2":{"version":"4.5.2","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"94d0d45e82a77c50f79bf5c2a108a2159786bfa7","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.5.2","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-Lnxay6WibIVOnoh/3xEAsoh9N82WdrxCcQ8Xply1cEIk4Bkme8+NYkjwsfVvubv/kPiC85IPYMupQwKtnmgVFQ==","shasum":"885ba1dded75bf98124a6d83f182fa7e07ce0f8f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.5.2.tgz","fileCount":67,"unpackedSize":231104,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJehlSCCRA9TVsSAnZWagAAdMwP+gLYywP2RHArssr+gdeM\nP7kmhJGv6c5efDrADHzCV5wsHppSTxokMQrmHoM1dk4V4fg6Sy99bOH88UV0\niy+xME12f58SwlQTen+aHP5O2L57SJpFsKZZzQewjHTeF+ZT4mSyzT+1zbCr\naer/Bhax6dTiSFlcsh6LszYdTG4AKnGpIzqgXL9w/C8YKgf3hW/AeWj6W5aH\nks+rmHb8qO+cmsxQVdOOjqAAd0mG4NLO5KdGf49lQPHleB+E1ELQSw1JdUjd\nLZMmVmk1IQeIkzE2aRmQhntjb3jtJC6M7hcPlb+t0JM3ZMxkmxT8F9rjAQl5\nf7WZTivpNud+N3YjDa/THHR6KqHtjoqA2qbW19QRdEFTDyVlhuF3GZ+btxZB\nW2HuMfZib9zMolmshvOLnih+Vgm1CyXrBGp8owLfeujPU3Yx7QeL8ln/RgHz\nhiY544zz9UaojwTNbZ7s5KQ7v0PshQ8JzQYQvjtNPnpohXcfE3eR5EixjOQ9\nwZz2y6EcZmEUcdV5tCRyZLbYIJk+oOkk0eAuTckWqp1d0mAYQHDKE8L5p863\nE5U+ZG7L7ghwqTjioPbiz73kZsjweapodwCcdNqM3B+GiHBw6/w1e32Ndf7Y\nTjSPj5z6iNdlyK1aHq2Lz90jO5SSZZArBfchFB1vJzgXzUNB3M//DgGbawoZ\nA/pv\r\n=ttbR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJK3/a84z8p83txgHjySUckkxKtYZloAcJtpaJEc8TmAIgHs3pturOj3rk59NcvyVuadd2sPFlEK40sqRx5qIOTws="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.5.2_1585861761748_0.7032910905526668"},"_hasShrinkwrap":false},"4.5.3":{"version":"4.5.3","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"2da28e2f9cb79fecb74072f1c7aaa947ec9eb016","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.5.3","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-weIp/mHGeXYNNqngmst8GoO4Ox4r0sBr6C2Bsk2yUZXl7dr3huzXG+XZJJoxTdCsunJ7pIPfHedJSb6j2uGTJw==","shasum":"0ce44bb4fd62dacb64f2091d305a9d46be6fcbb4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.5.3.tgz","fileCount":67,"unpackedSize":231919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJehlzCCRA9TVsSAnZWagAAf5YQAJ6XJzMWdFFgn+BS6dll\nAvX6tcL886iG37o+DwqAW+LMkZmDVq3olnlwsLpwDgCdw+FrVYWpihPAqupP\nzLGu1BgQwNuNZt4Xc8WSY3As0193184sao1SHSLc7PtMpjlXdjueDco2jH2s\nxTz8ikcorW/0H/IP23trYMmhN1CLk/ZT3E1bqGOAfttcfq+rOrxpMsrKuUVm\nkRaE7GIIatPl7YVNcXBlnssoqY6ALYKOxXYDYfBpkqHf9++zaZwo1b5ZQGhh\nYPiA4KfeWhz6QNO51QPkwKE27p548tKji/TLqiXMcIuFeuR6TaIdPWKT3JQf\nzzGl9icZUYlw62TEmzSOg4tQxcNFexr050C0r/fPS7FFU/qG1EKPDobLAt9a\nkskT69whRSBg01a6DRYiaCq57ahuRt61T0pUsslF42jaghnSLkSKuPlDTKpJ\nnr2ipmJY/MukhAcZtL44Jo6ZyIZsqMGlbl1+vNFsw/Y3KHPyaUPmGX9mwzxQ\nnxa9PeXCZPibftyXisQR26164hkNaMdy/bKNGTxCzM9Z+UueAsWxY4k4cTQC\nUlnPu0Nm3nnyLsHdAbt9yg4HzeYN1aJmD+v4t5iXxgEsNQhDkJY+V3ct+1HH\nJ8sXz5QcRv4m24tCDRsd+N8Ynzdw00DcTzpY44VbOkfmF3wbcq9FI49BmN1e\nSIDy\r\n=22ve\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHwnR6TaML7FgyMV2RM9Qh2TK2Y3fFhm53PgME4+Vx3ZAiBwD4qwze8aNQPgLLiCxaJK3AQ42UOyamSCBS0PZzC4pw=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.5.3_1585863874179_0.4365067518322525"},"_hasShrinkwrap":false},"4.5.4":{"version":"4.5.4","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"ac6260c0261c71c09dc188e1479f513bd399962f","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.5.4","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-n5e9WJJN0sq6yckiokQ8NeDVNOC9YaFEdx8W/azo3Tmsq1u3U+HP1UwGdO62HKRmfN83EW2mq+QA/1J+0gtL+Q==","shasum":"f1335d70506a177d12a3c83e7bb8c6dd8b96fc13","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.5.4.tgz","fileCount":67,"unpackedSize":232430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiJE+CRA9TVsSAnZWagAAoMcP/jiPDSIBixhqQ71PLTgc\nFSbJhTuKawmmJW3WlbJ9iAhm6GcWaqjs5lnqoFvHCgZP2l6BkOTWmnasI9Nb\ndTMZ3vzIWp1yhUoIr9rUpg+xfcSIfLQKbemDivLu9NaJlFQhc9WgP3yjSE37\nOrIueqPrpuJ+vGlAz5e+enXotfACGez7ra1eCiiaPp9QDUk0PUsCpEw1YHNg\n4i9FMhJLawSewc35C/D6Tx+p844sKF0V9kHHj1fvfdnzUVU1FRU+WHjhtNCX\nAiNJn60mPNFKnhQu8ysyZ0Vv7qrikptVUhxgrmjTvelXH5caHz1qhiZcXd0o\njVuOmb0INMUw+Oc14+rhBsXXbUXEhb/9/wrbb1UfLpukpUc3x1sDFucI7Z1F\n7K0ZUrg8Q9qYQrMu5byz4mMSumFGrmZ3Bmxtlu0mZfqd+BCbZfIuGrIvb/u1\nZPmfqXCeS+TxKE8BS5JiY6X6Ajg/0DlCOdo+/j3cKxV5VK2xsVvxkx0XccvT\nqRfMSYabGfqK0oj3K0rhN0JHdPxQk+KPVkICUzJe604W1qZHkG4j2TqnT74x\n4C1sTa0M4uLH4mlOKQBE/cccBThf9MIhKIqAznjaBI1lbLhy2/OBRD+X/dPb\nJ+C5U0QSdXzrHMvJobSf/CwN906wls/WewoV5YpI4qQnZakqERijgRNYyyo2\nOIYn\r\n=brKc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGalZHvj0T+u6z6XCAAI3mrjeZsK4qlw5FCI4PMNZSlPAiBTGtEIFZsfyz42RRwDbKn7HVS0ZPrxTnHY5mxHd9GQ1w=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.5.4_1586008381599_0.37208295310327033"},"_hasShrinkwrap":false},"4.5.5":{"version":"4.5.5","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"d67ce66bf0df0fe93a6d73ae494a516e5f200c77","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.5.5","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-PlfJxCjQXOZMTcgxQESlMW9OHErF97raHKnUwyIWHUUfmtqO6ezdEcXil6OYHdDzBygqODoicR9HDqY0AakXFw==","shasum":"160a5a2646ac1c80f93092febb00088bf44db155","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.5.5.tgz","fileCount":67,"unpackedSize":232504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiMH1CRA9TVsSAnZWagAAjoEP/ig3XNfqByAnQzHux9zA\nomb9HMD2FoZHgxYNTusUI/tmD/3cbjFzludiJNIbeP6CST1m2fUrDuvTmrDV\nXOK+HvIGuhBAFUWhYF/uE8RPJGkKSuruvDGJweJONaiSvheuF750Gh80JvfT\nOfzrlUyKqC4X+AnJ+InAhBXOGOJpPVjPkTc0cC1nD+/KxwuPBfwF0TCHvcyZ\nE2WFX/yDzW26PMYLwXdf5dpjENBV1N4JNCMZnIb2baSoje5nkOYeHnMp1+j/\n5aqU6guA6D9ymSjvkWG5RVfzezBMeAHFhJUjstnAF5LgtVenooTQr7xN0Czd\nFDir06JZqz0T9i8d6BDj6SNcUH0DPIv2DbF+7H12oculuF/aGH+Ng7JvLPfK\nYWZ79IsRpGAFOssVzD3KvFX/1Iv+TY8K32S6FM2oRMPZPnWto9WLRpsX0wO0\nWm55y2aVpEC+jVsR48R4CK1bHt52XaufkPr51zxfwXcWeiblRXCJCQJlOPCR\nzRbtkYsJvA1S4VTOx0e/HxRt5/efdhcpHVtEzowVkXEjfRpopHTQs9qw9vK+\nbD82U3A0OPEJeWL653sWImdYnBWFfGn5wdhuL8gsNKP/+wUzYPISbZ2pztrB\n8dZHlrrFEHjlkN326xsfKBkkY3yFIdrQkkbe744ciOWDok16VOfqnh5MMle9\nFSBt\r\n=zJD3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBFPclhAdWdUR0tZNt82AGc3+EotpEn42YnH4cr3gI3EAiEAj4Cs5PEUDzc6+yP3seCd2bY0aO19BzX1PfBn+0PaSXg="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.5.5_1586020852694_0.6935930248116704"},"_hasShrinkwrap":false},"4.6.0":{"version":"4.6.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"48d4883a4ea3dc2125f471f93b4ddae7eb43dc5b","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.6.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-VMSHYE7aIbCddW6aabcikW48bXHbERX6p3pD0mHt43EL91Lpq6st/pMQNZaXsrXqP/Wm19X25k00MurcUshP6Q==","shasum":"99fbfe20773582706cd907645182b3001c4f8d1f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.6.0.tgz","fileCount":67,"unpackedSize":235347,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiMzrCRA9TVsSAnZWagAAUPwP/3Bxs/VZmp6BzN8d+I0p\nh+o3YnZ7QXqQRF5yA0tOzqYTsy0kl4idOKw6lcm9i99sVummtPhCbPiDSnLe\ndnSr6lk1E0JRDLo7FOs4dQUyEKKCExF4jOsTY0IBXytZXBFNDWU5HEwdHQve\nm/TTpLMnOXhuJ4//QQz2eAm087cIP4l/wEKcOqulNgKpjTdobtt4Zr6s1Tf5\nnOnxvGpZwwfGOTZJpDx32y+n+po2QITvl7P7Nm19nI8z22XCjOuJu6jQhTwk\nOIA+RPA5zixInSOeajfaKgLm72rxcm6/udxZiAG25H5G0f22Nk//VfnZ2eyc\nINufuTjEILhXtcIFi+FwlfT0LZ8WQaebJfGtuHG4Zle5xGe2a0VJk9raRQUE\n1rp1sDXhj+UJ/3rq0mlP9PWvvSVZfYsZMdEy4Q+amY2E5Y1TEXBHUiT6jzoa\nQvRBH+ixR5d9gB5png83RQ87iRZKjTgZIByUoIpOprAd3ecUrzUKOxmQCwvH\nQ8WQL17gkZci1YxZb/+YOGk8Dagdi4mT4/tn5d/rB2Irzf0qe83iRQOwsvdT\nOs5uW4J9KnuNVNziNL5U5tqqJ4PkeUS++uezgAHowsGDu2cseIc/XaQf0WWt\nFMEtD8lx0f9mLpFDXjbfhAlH3DTyPDshuGrMfsS3X9QnQHMho4zAYHqZoIf4\nrmEw\r\n=+acr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIALsoM7uNyX4G684WuzwZlMMKZjCpN8vXDTdQ+xkYPxMAiBKzedb/aihaZZ4RzZiYNQE8XxnsWt9gbxeb0BK1cOHDg=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.6.0_1586023659241_0.2909417735065587"},"_hasShrinkwrap":false},"4.6.1":{"version":"4.6.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"e73c6cba29950486036c12c22f092b660a6aa14a","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.6.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-Isblz0w3iweSMeHmQVKMTvGjqvHSJ8BBHwmOThbYz9mJ0xPMd9hyfEp4+k18RajRpgCYWm58WIKw4vKwV14JjQ==","shasum":"631f9545304aa92f14b217a2badc0bb9e37a75b3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.6.1.tgz","fileCount":67,"unpackedSize":235377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekJFACRA9TVsSAnZWagAAcGgP/jFr7EdyeiXkUzPxGWAb\nhpZvujiHUh/BmErzgNmak3MWISH1Za/9SEvKLJU72o5CUasWxXOSi0mRyYs+\npfCc2S4tmbO5mvqGInnHEIue/HE5f01dHmIF8vQ3HuhmHVh+QsdcyPQXqCIl\nlAwaePspTGIDpVzRDn6HBM8IcYHmg/wZJYGP4Uh0cbP/1Mjk53SMbTv1O55C\nAkGDsYKs+6CXLcSIH1OlaOVd0ALFbxDcND4IrvjrmorpbQOODbzaVUgRP66S\nVF8Pm3vU+pRH7zfzrQWNP5m30HIncAjclt+uPrNypFmhpHetUwZbCUJnq3OT\nagxLM40wKsa6PX3f/VUdJ20HQQasMljAdU0/4F2AkYBcCGk0zKAxrZ/xqArD\nZ6KaA7kUXfjXh02YXi41xD9B1TS72qcnzYwzZ+zjTzJ/p6rgKni+tqm8mzI2\nBV4oB6EoBjA6irz4vfqRf4n+0VVDiHM+kiNuHwp2LzzTzW3I/yNylx55fhdw\n8g2H0i/cYGw5ozOCKuIXPO5lh7xznkgZxp21PQwKC4XSUseFj3W4XlHDHttP\nGf9w46EFS3z2xHFoF3ky9aW+LqIjU3RCCA3B516BucQZT9sIomhVhJhUvzoP\n9oPE75HBASrKsj9IKjkHMmNxli+8XdhVVllG/f/5pPEjSK+itfgqSsrxPo/B\nrYmL\r\n=j/M7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICDZauNnz4a/puP1SC06EhuAi12LqEi+vRsjHp2Sk7tHAiBnj1XtZHoRHNdyaKcYlNRYzG2k3m1pBwsoggB5Xp7qag=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.6.1_1586532672088_0.19675974228865067"},"_hasShrinkwrap":false},"5.0.0-beta.0":{"version":"5.0.0-beta.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"52e67d32bcc2b094d53e1de9dc754fe691eb3c95","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@5.0.0-beta.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-OCHLKK8knrQQnjpn5E4K2SPC/UbCjNdtnYznxRVPG3lor6U4SawEy2F1IimyAogpzAivBepVYrv3yu9F9toaGg==","shasum":"398d385c545da23d57eb44d24e1109dc25202614","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-5.0.0-beta.0.tgz","fileCount":67,"unpackedSize":229527,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekjdNCRA9TVsSAnZWagAAbU8QAJXvai0HjZX6+yP31lAx\npJ/Poxr7br8hH3zP1YM7zKQQ8/Rtq9x6OVghaWNBdlpbu37P26A02A+uFnbK\n0tLl/uV+H9FKnYOgfhtypTxui3X7OfE+8mE7bs+NZxsWw+jEuCavGCaRqWpY\nLZ4UEtD+9ady3FQ59T7OmEVVJWFf3lkTDxgJZLeErOTPjyB5kmt2rk4hqwRx\nOKMu5t8MpFmI0GzZwc5Cp75kWwAPCPIeFr1WmWneYsv9zCq2ArdxkIdI1m+r\nobw2v5qQ4vNxXknX3jctxfvEEdaVJUj6GuURQ3+IRRMnSu8S4nK98txVvG2B\nLyo+CTwCTo7aIxwEs8/8KyUMhiqSCTp7n1FcQ1MyRKbULCl/9b4M3FYPEObO\n9igfmGpxgvWl2E1s4P+fW9o2tyvksVqKjImCUIJdpmVtJxekGP/9HQeOmqF8\nHcNroy0MQbrDRW9TR2QaM+8LdRNZMuJ0uJtplcFCaPAMxjQ2tnfRmXj+c8K+\nceem5/No+dhiRZdR0uubUM6/FXLgOBKqJXNdC/KaPeBn8yv0W6jzkHwK7Y+i\nlEBLQZVzpcaT/OgZXN5A2tlG4CBjg4QGV1Mongmkf92969bA/vYtodpMmywu\nROlZPYHYdRmztk53dZHqRd5VNpUhzCWhgyT7pGLws+XRoWZ/t5tYe7cXI40M\nNMxN\r\n=zW77\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD95nYFlU+YVNJv1UMs4roqpROq5aIvpsHRLFXilGx7RQIhAINU82oVCrXtq71cpXPGXwlfoqJirtOMQzgl1MCaC3hd"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_5.0.0-beta.0_1586640717288_0.7674367464175811"},"_hasShrinkwrap":false},"5.0.0-beta.1":{"version":"5.0.0-beta.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","readme":"# Google Firebase Cloud Messaging Cordova Push Plugin\n> Extremely easy plug&play push notification plugin for Cordova applications with Google Firebase FCM.\n\n[![npm downloads](https://img.shields.io/npm/dt/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm per month](https://img.shields.io/npm/dm/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm version](https://img.shields.io/npm/v/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues)\n[![GitHub forks](https://img.shields.io/github/forks/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/network)\n[![GitHub stars](https://img.shields.io/github/stars/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/stargazers)\n[![Known Vulnerabilities](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated?targetFile=package.json)\n[![DeepScan grade](https://deepscan.io/api/teams/3417/projects/5068/branches/39495/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3417&pid=5068&bid=39495)\n\n### Version 4.6.0 (04/04/2020)\n\nFor the IOS, if app is on the foreground and the app receives a `data` push notification, the data can be retrieved by setting the callback to the new method: `FCMPlugin.onFirebaseDataNotificationIOS`.\n\n```javascript\nFCMPlugin.onFirebaseDataNotificationIOS(\n  function(payload) {\n    console.info(\"Message id: \"+payload.messageID)\n    console.info(\"Data parameters: \"+payload.appData)\n  }\n);\n```\n\nThis method is specifically implemented on IOS due to specific payload format ([src/FCMPlugin.d.ts](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/master/src/FCMPlugin.d.ts)).\n\n\n### Version 4.5.1 (30/03/2020)\n\nDue to a bug introduced in v4.4.3, the file `platforms/android/app/src/main/res/values/strings.xml` had two tags included on install, tags which, on build, are also included by cordova-android@8.x.x. Hence failing the build process.\n\nTo apply the fix, install the new version and remove these two tags from your values/strings.xml:\n* `<string name=\"google_app_id\">...</string>`\n* `<string name=\"google_api_key\">...</string>`\n\n### Version 4.2.0 (24/02/2020)\n\n`ANDROID_DEFAULT_NOTIFICATION_ICON` included as a variable.\n\nTo define the default icon for notifications (`com.google.firebase.messaging.default_notification_icon`), install this plugin like:\n```bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/notification_icon\"\n```\n\n### Version 4.1.0 (26/10/2019)\n\nOlder notifications can be cleared from notification center.\nWorks on both IOS and Android.\n\n```javascript\n//FCMPlugin.clearAllNotifications( successCallback(msg), errorCallback(err) );\nFCMPlugin.clearAllNotifications();\n```\n\n### Version 4.0.0 (12/10/2019)\nThe old `FCMPlugin.getToken` is focused on retrieving the FCM Token.\nFor the IOS, APNS token can now be retrieved by the new method:\n\n```javascript\nFCMPlugin.getAPNSToken(\n  function(token) {\n    console.info(\"Retrieved token: \"+token)\n  },\n  function(error) {\n    console.error(error);\n  }\n);\n```\n\nOn android, it will always return `null`.\n\nThe APNS token, once given, should not change for the same user (as commented on in https://stackoverflow.com/questions/6652242/does-the-apns-device-token-ever-change-once-created).\n\nAlthough, contrary to APNS, the FCM tokens do expire, and for this reason, `FCMPlugin.onTokenRefresh` will be called with the new one FCM token.\n\n### Version 3.2.0 (16/09/2019)\n#### Checking for permissions\nUseful for IOS. On android, it will always return `true`.\n\n```javascript\nFCMPlugin.hasPermission(function(doesIt){\n    // doesIt === true => yes, push was allowed\n    // doesIt === false => nope, push will not be available\n    // doesIt === null => still not answered, recommended checking again later\n    if(doesIt) {\n        haveFun();\n    }\n});\n```\n\n### Version 2.1.2 (03/06/2017)\n- Tested on Android and iOS using Cordova cli 6.4.0, Cordova android 6.0.0 and Cordova ios 4.3.1\n- Available sdk functions: onTokenRefresh, getToken, subscribeToTopic, unsubscribeFromTopic and onNotification\n- 'google-services.json' and 'GoogleService-Info.plist' are added automatically from Cordova project root to platform folders\n- Added data payload parameter to check whether the user tapped on the notification or was received while in foreground.\n- **Free testing server available for free! https://cordova-plugin-fcm.appspot.com**\n\n## Installation\nMake sure you have ‘google-services.json’ for Android or  ‘GoogleService-Info.plist’ for iOS in your Cordova project root folder. You don´t need to configure anything else in order to have push notification working for both platforms, everything is magic.\n```Bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\n### Firebase configuration files\nGet the needed configuration files for Android or iOS from the Firebase Console (see docs: https://firebase.google.com/docs/).\n\n### Android compilation details\nPut the downloaded file 'google-services.json' in the Cordova project root folder.\n\nYou will need to ensure that you have installed the appropiate Android SDK libraries.\n\n:warning: For Android >5.0 status bar icon, you must include transparent solid color icon with name 'fcm_push_icon.png' in the 'res' folder in the same way you add the other application icons.\nIf you do not set this resource, then the SDK will use the default icon for your app which may not meet the standards for Android >5.0.\n\n### iOS compilation details\nPut the downloaded file 'GoogleService-Info.plist' in the Cordova project root folder.\n\n## Usage\n\n:warning: It's highly recommended to use REST API to send push notifications because Firebase console does not have all the functionalities. **Pay attention to the payload example in order to use the plugin properly**.  \nYou can also test your notifications with the free testing server: https://cordova-plugin-fcm.appspot.com\n\n### Receiving Token Refresh\n\n```javascript\n//FCMPlugin.onTokenRefresh( onTokenRefreshCallback(token) );\n//Note that this callback will be fired everytime a new token is generated, including the first time.\nFCMPlugin.onTokenRefresh(function(token){\n    alert( token );\n});\n```\n\n### Get token\n\n```javascript\n//FCMPlugin.getToken( successCallback(token), errorCallback(err) );\n//Keep in mind the function will return null if the token has not been established yet.\nFCMPlugin.getToken(function(token){\n    alert(token);\n});\n```\n\n### Subscribe to topic\n\n```javascript\n//FCMPlugin.subscribeToTopic( topic, successCallback(msg), errorCallback(err) );\n//All devices are subscribed automatically to 'all' and 'ios' or 'android' topic respectively.\n//Must match the following regular expression: \"[a-zA-Z0-9-_.~%]{1,900}\".\nFCMPlugin.subscribeToTopic('topicExample');\n```\n\n### Unsubscribe from topic\n\n```javascript\n//FCMPlugin.unsubscribeFromTopic( topic, successCallback(msg), errorCallback(err) );\nFCMPlugin.unsubscribeFromTopic('topicExample');\n```\n\n### Receiving push notification data\n\n```javascript\n//FCMPlugin.onNotification( onNotificationCallback(data), successCallback(msg), errorCallback(err) )\n//Here you define your application behaviour based on the notification data.\nFCMPlugin.onNotification(function(data){\n    if(data.wasTapped){\n      //Notification was received on device tray and tapped by the user.\n      alert( JSON.stringify(data) );\n    }else{\n      //Notification was received in foreground. Maybe the user needs to be notified.\n      alert( JSON.stringify(data) );\n    }\n});\n```\n\n### Send notification. Payload example (REST API)\nFull documentation: https://firebase.google.com/docs/cloud-messaging/http-server-ref  \nFree testing server: https://cordova-plugin-fcm.appspot.com\n```javascript\n//POST: https://fcm.googleapis.com/fcm/send\n//HEADER: Content-Type: application/json\n//HEADER: Authorization: key=AIzaSy*******************\n{\n  \"notification\":{\n    \"title\":\"Notification title\",\n    \"body\":\"Notification body\",\n    \"sound\":\"default\",\n    \"click_action\":\"FCM_PLUGIN_ACTIVITY\",\n    \"icon\":\"fcm_push_icon\"\n  },\n  \"data\":{\n    \"param1\":\"value1\",\n    \"param2\":\"value2\"\n  },\n    \"to\":\"/topics/topicExample\",\n    \"priority\":\"high\",\n    \"restricted_package_name\":\"\"\n}\n//sound: optional field if you want sound with the notification\n//click_action: must be present with the specified value for Android\n//icon: white icon resource name for Android >5.0\n//data: put any \"param\":\"value\" and retreive them in the JavaScript notification callback\n//to: device token or /topic/topicExample\n//priority: must be set to \"high\" for delivering notifications on closed iOS apps\n//restricted_package_name: optional field if you want to send only to a restricted app package (i.e: com.myapp.test)\n```\n\n## How it works\nSend a push notification to a single device or topic.\n\n+ Application is in foreground:\n\n   The notification data is received in the JavaScript callback without notification bar message (this is the normal behaviour of mobile push notifications).\n   \n+ Application is in background or closed:\n\n  1. The device displays the notification message in the device notification bar.\n  2. If the user taps the notification, the application comes to foreground and the notification data is received in the JavaScript callback.\n  3. If the user does not tap the notification but opens the applicacion, nothing happens until the notification is tapped.\n\n\n## Authorship\nThis is a fork from https://github.com/fechanique/cordova-plugin-fcm, which has dependencies versions upgraded, jitpack and cocoapods support, and newer features.\n","readmeFilename":"README.md","gitHead":"2620633d04e1923e776dd365c762cc65f340791c","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@5.0.0-beta.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-4Pf2E3o1ebcofpo7dsP43wmVOSi2Jxe0rKSc8gpPlEo3Y06+qZVn2UzNSFvtiYUaLaTqXNfq5R6+q2XxUANVLQ==","shasum":"b96dc6fa40dd520b8bc633930a8999834c86fc55","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-5.0.0-beta.1.tgz","fileCount":67,"unpackedSize":229527,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekjoUCRA9TVsSAnZWagAAugMP/A2w/NfOD7lbaTV1v7UM\nery6Ra3P5h/yLN5MPvOGrTtGdq981++wgVbXWw/C4MFHV50QlhxPn572Vb36\nTkGFkLCypfvLlSIYherKliF9ApWXXedZv2YG8kaP9WeU4tCOe2DkWvv8j5DQ\nlDqP3EfbL1d2+k0fIh3tgRH/U9F9zB9uxXak4Pw9KvyQBAMV411jpOuFLdXc\nqVgMUKnQsDYQebQRCX+IMTGZBXQ8zeXZBp812pqWsYkSEZ0qQgfIR020VUe+\nb9SgCS9/FQGNsIzyVUzs9JjH3YjjUeRvkrogqD02pVgfMs4K9luZBT4B/JLU\nQK5nJ2LDJ67EDhpDIVNOBHV2SslIfKyu5VW4+zccpW8NPE1j+sZEMH0qhOmD\nXEeIznW2kj7veW8+iF6mZXbABLi0jTakzzwv08GneccyURpPCZlxUGMIkXIW\nApSdGLWUY1wkkJfjO6X0lU9pucM5bi7kBTCawWWfNfCJjZCW9n9KzwnH6nP1\n/hX7ZF0UTtaV21jYv8davA8+Yo2MG4Bwy60xNJEq24R7U68hL/3r36J6DSAW\n+DdoYwMjdLaa2SSGz5hJW4Z2Ny4DY5V1WBGIfCeZexgOOk5IznlvsJR9DeAB\n0GH/kDSdJTf7HswkwYZ8k1YE9rarOdG05wFEOlfKkhCSQJB+KXav6Y2Xk0ud\nj5ci\r\n=LaWg\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGu2rJZl6nwxfQaDXuNfdwA9WE48+9afGSipgGnuou+yAiAP15sVDWynKIDO5BLJh1IxpCuPgZDP8ofzjl7NqgiEPA=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_5.0.0-beta.1_1586641428278_0.7640976264897152"},"_hasShrinkwrap":false},"4.6.2":{"version":"4.6.2","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"402e806d86767c4dc0d34ab8acfeda9f7bc52ca3","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.6.2","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-I61OYpSYx9hO++h01otxSlXhz8P3S5tSm9Rx4Mpr/MmYcSIOquhRF4PhGJA+z3QH9iaKCzl1snI4OKZJufC6tQ==","shasum":"8ab92ae1f82a7dd674a7f7a6043dee6505ce45ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.6.2.tgz","fileCount":67,"unpackedSize":235377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekjptCRA9TVsSAnZWagAA0JMQAJtBSKze/LjJqnSp6SlD\nF3KBNarfSW/X1MGO04ycMGt9pShbxIf1kY3CwzRxQ81MqoLokWMDX+XvDD+k\n08iWRzLFODSkdvVbTHG+m9Fsbi2igw7enUBNtyw7BeGvpYe5VTtrOHBEOdnD\nHVeq4TJ64n7YIfIgQYei7Mrz2YJM/E6Z0VpPKC7+ZsSkhuiSA8y5crQwRjVQ\nso2dv1uTye3wcK3Tdvo7ec8b/TVLRwD7GY4+ezavfTKrSqJ7ycFTDKRVJZDt\nFq8JArZnojJt22aithucbqzMQ4PAjLoNG2VoqFLTJ024vUNZVIkCMcPLwA4f\nSyk2AZVc1KpSx3i8jBzBoqdV+SSVumuDUxg+v9P0RZZ88s+l7he7bnAvK+9g\nApsl1SUIZ6CsBwqYb9QfjMi+z2I7/EXgxaJJe31jIEcrUqMOmqJAXUD+dCB5\nkkrsALqD1ZSKUyScS/mjqj8VJ1qhcme8TDzVDTZmXiGJtu62ssBF6jz0uLe0\nwvxvkV55jILE9bdjvpP2qyW2VQ9LgROtfQSanupyOthHDM2C80YdwwdxN69W\nRYiWw+KBnOO/enNX7CqMMS3CO9/tNsJgrHGZZ+vP8Ltv9RCWasDXqryl8Prs\nTf8OIxGnzyZwHB/+uQsOJ7CSzkgGuVGM17ubHCMhc7cFKLla2pPP2yTiWO7I\nfNId\r\n=DL/T\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICJaGLM8uQ/DpaAePfufC+r8VRZ8ligQ5y9dFOxmKNCGAiEA0RynRPIaDfnqdJJlkkKeFjTOFF+D+edJOg9ZLdhPVwM="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.6.2_1586641517282_0.7867406728140498"},"_hasShrinkwrap":false},"5.0.0-beta.2":{"version":"5.0.0-beta.2","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","readme":"# Google Firebase Cloud Messaging Cordova Push Plugin\n> Extremely easy plug&play push notification plugin for Cordova applications with Google Firebase FCM.\n\n[![npm downloads](https://img.shields.io/npm/dt/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm per month](https://img.shields.io/npm/dm/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm version](https://img.shields.io/npm/v/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues)\n[![GitHub forks](https://img.shields.io/github/forks/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/network)\n[![GitHub stars](https://img.shields.io/github/stars/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/stargazers)\n[![Known Vulnerabilities](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated?targetFile=package.json)\n[![DeepScan grade](https://deepscan.io/api/teams/3417/projects/5068/branches/39495/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3417&pid=5068&bid=39495)\n\n### Version 4.6.0 (04/04/2020)\n\nFor the IOS, if app is on the foreground and the app receives a `data` push notification, the data can be retrieved by setting the callback to the new method: `FCMPlugin.onFirebaseDataNotificationIOS`.\n\n```javascript\nFCMPlugin.onFirebaseDataNotificationIOS(\n  function(payload) {\n    console.info(\"Message id: \"+payload.messageID)\n    console.info(\"Data parameters: \"+payload.appData)\n  }\n);\n```\n\nThis method is specifically implemented on IOS due to specific payload format ([src/FCMPlugin.d.ts](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/master/src/FCMPlugin.d.ts)).\n\n\n### Version 4.5.1 (30/03/2020)\n\nDue to a bug introduced in v4.4.3, the file `platforms/android/app/src/main/res/values/strings.xml` had two tags included on install, tags which, on build, are also included by cordova-android@8.x.x. Hence failing the build process.\n\nTo apply the fix, install the new version and remove these two tags from your values/strings.xml:\n* `<string name=\"google_app_id\">...</string>`\n* `<string name=\"google_api_key\">...</string>`\n\n### Version 4.2.0 (24/02/2020)\n\n`ANDROID_DEFAULT_NOTIFICATION_ICON` included as a variable.\n\nTo define the default icon for notifications (`com.google.firebase.messaging.default_notification_icon`), install this plugin like:\n```bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/notification_icon\"\n```\n\n### Version 4.1.0 (26/10/2019)\n\nOlder notifications can be cleared from notification center.\nWorks on both IOS and Android.\n\n```javascript\n//FCMPlugin.clearAllNotifications( successCallback(msg), errorCallback(err) );\nFCMPlugin.clearAllNotifications();\n```\n\n### Version 4.0.0 (12/10/2019)\nThe old `FCMPlugin.getToken` is focused on retrieving the FCM Token.\nFor the IOS, APNS token can now be retrieved by the new method:\n\n```javascript\nFCMPlugin.getAPNSToken(\n  function(token) {\n    console.info(\"Retrieved token: \"+token)\n  },\n  function(error) {\n    console.error(error);\n  }\n);\n```\n\nOn android, it will always return `null`.\n\nThe APNS token, once given, should not change for the same user (as commented on in https://stackoverflow.com/questions/6652242/does-the-apns-device-token-ever-change-once-created).\n\nAlthough, contrary to APNS, the FCM tokens do expire, and for this reason, `FCMPlugin.onTokenRefresh` will be called with the new one FCM token.\n\n### Version 3.2.0 (16/09/2019)\n#### Checking for permissions\nUseful for IOS. On android, it will always return `true`.\n\n```javascript\nFCMPlugin.hasPermission(function(doesIt){\n    // doesIt === true => yes, push was allowed\n    // doesIt === false => nope, push will not be available\n    // doesIt === null => still not answered, recommended checking again later\n    if(doesIt) {\n        haveFun();\n    }\n});\n```\n\n### Version 2.1.2 (03/06/2017)\n- Tested on Android and iOS using Cordova cli 6.4.0, Cordova android 6.0.0 and Cordova ios 4.3.1\n- Available sdk functions: onTokenRefresh, getToken, subscribeToTopic, unsubscribeFromTopic and onNotification\n- 'google-services.json' and 'GoogleService-Info.plist' are added automatically from Cordova project root to platform folders\n- Added data payload parameter to check whether the user tapped on the notification or was received while in foreground.\n- **Free testing server available for free! https://cordova-plugin-fcm.appspot.com**\n\n## Installation\nMake sure you have ‘google-services.json’ for Android or  ‘GoogleService-Info.plist’ for iOS in your Cordova project root folder. You don´t need to configure anything else in order to have push notification working for both platforms, everything is magic.\n```Bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\n### Firebase configuration files\nGet the needed configuration files for Android or iOS from the Firebase Console (see docs: https://firebase.google.com/docs/).\n\n### Android compilation details\nPut the downloaded file 'google-services.json' in the Cordova project root folder.\n\nYou will need to ensure that you have installed the appropiate Android SDK libraries.\n\n:warning: For Android >5.0 status bar icon, you must include transparent solid color icon with name 'fcm_push_icon.png' in the 'res' folder in the same way you add the other application icons.\nIf you do not set this resource, then the SDK will use the default icon for your app which may not meet the standards for Android >5.0.\n\n### iOS compilation details\nPut the downloaded file 'GoogleService-Info.plist' in the Cordova project root folder.\n\n## Usage\n\n:warning: It's highly recommended to use REST API to send push notifications because Firebase console does not have all the functionalities. **Pay attention to the payload example in order to use the plugin properly**.  \nYou can also test your notifications with the free testing server: https://cordova-plugin-fcm.appspot.com\n\n### Receiving Token Refresh\n\n```javascript\n//FCMPlugin.onTokenRefresh( onTokenRefreshCallback(token) );\n//Note that this callback will be fired everytime a new token is generated, including the first time.\nFCMPlugin.onTokenRefresh(function(token){\n    alert( token );\n});\n```\n\n### Get token\n\n```javascript\n//FCMPlugin.getToken( successCallback(token), errorCallback(err) );\n//Keep in mind the function will return null if the token has not been established yet.\nFCMPlugin.getToken(function(token){\n    alert(token);\n});\n```\n\n### Subscribe to topic\n\n```javascript\n//FCMPlugin.subscribeToTopic( topic, successCallback(msg), errorCallback(err) );\n//All devices are subscribed automatically to 'all' and 'ios' or 'android' topic respectively.\n//Must match the following regular expression: \"[a-zA-Z0-9-_.~%]{1,900}\".\nFCMPlugin.subscribeToTopic('topicExample');\n```\n\n### Unsubscribe from topic\n\n```javascript\n//FCMPlugin.unsubscribeFromTopic( topic, successCallback(msg), errorCallback(err) );\nFCMPlugin.unsubscribeFromTopic('topicExample');\n```\n\n### Receiving push notification data\n\n```javascript\n//FCMPlugin.onNotification( onNotificationCallback(data), successCallback(msg), errorCallback(err) )\n//Here you define your application behaviour based on the notification data.\nFCMPlugin.onNotification(function(data){\n    if(data.wasTapped){\n      //Notification was received on device tray and tapped by the user.\n      alert( JSON.stringify(data) );\n    }else{\n      //Notification was received in foreground. Maybe the user needs to be notified.\n      alert( JSON.stringify(data) );\n    }\n});\n```\n\n### Send notification. Payload example (REST API)\nFull documentation: https://firebase.google.com/docs/cloud-messaging/http-server-ref  \nFree testing server: https://cordova-plugin-fcm.appspot.com\n```javascript\n//POST: https://fcm.googleapis.com/fcm/send\n//HEADER: Content-Type: application/json\n//HEADER: Authorization: key=AIzaSy*******************\n{\n  \"notification\":{\n    \"title\":\"Notification title\",\n    \"body\":\"Notification body\",\n    \"sound\":\"default\",\n    \"click_action\":\"FCM_PLUGIN_ACTIVITY\",\n    \"icon\":\"fcm_push_icon\"\n  },\n  \"data\":{\n    \"param1\":\"value1\",\n    \"param2\":\"value2\"\n  },\n    \"to\":\"/topics/topicExample\",\n    \"priority\":\"high\",\n    \"restricted_package_name\":\"\"\n}\n//sound: optional field if you want sound with the notification\n//click_action: must be present with the specified value for Android\n//icon: white icon resource name for Android >5.0\n//data: put any \"param\":\"value\" and retreive them in the JavaScript notification callback\n//to: device token or /topic/topicExample\n//priority: must be set to \"high\" for delivering notifications on closed iOS apps\n//restricted_package_name: optional field if you want to send only to a restricted app package (i.e: com.myapp.test)\n```\n\n## How it works\nSend a push notification to a single device or topic.\n\n+ Application is in foreground:\n\n   The notification data is received in the JavaScript callback without notification bar message (this is the normal behaviour of mobile push notifications).\n   \n+ Application is in background or closed:\n\n  1. The device displays the notification message in the device notification bar.\n  2. If the user taps the notification, the application comes to foreground and the notification data is received in the JavaScript callback.\n  3. If the user does not tap the notification but opens the applicacion, nothing happens until the notification is tapped.\n\n\n## Authorship\nThis is a fork from https://github.com/fechanique/cordova-plugin-fcm, which has dependencies versions upgraded, jitpack and cocoapods support, and newer features.\n","readmeFilename":"README.md","gitHead":"d348da916b7e4d264691b5e91edd2401fcbcc055","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@5.0.0-beta.2","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-afFkAMbdMyZ9Zbn2C8seO24lHIcj060IGQwQGvkP1mMnWvYkZ0KKeKVpqvkheVG+Jefgm2e0ZmzBT+DEJOs5Ig==","shasum":"0b88fd70f11b54f54170a2cbdf8762a8952cdebf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-5.0.0-beta.2.tgz","fileCount":67,"unpackedSize":229644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJelgLeCRA9TVsSAnZWagAAzxAP/R3dc98+VW87zb8jE1dF\nuS6wzpGgOX49PTj8sSmqRvrf6+ZSsuro+me6hj1aafF7DSLwbLOFAUAt/2WX\njUGpteKdRGhQlfvVk/XwR8j+DLIOAx3aEeKRUITV4uD8fnsdtFVUvdK/H7Nm\nMHpFGj26uLxg9gXWZ4pwl98COTKk8qFelEIXsfJ1FIrW43JaWDDIqhTa33/g\nFHSDU+H3+iU91y5QTOXbJMpNQr/EomKoZIntZodlpOQz7m8v7PF+1XZVwGLV\n93SCzv9Rd7Kdjs+ZWIMvG8x1ivI7nbhhFN0oQ9mVv74mUgLqrHmn2K5zc3Mt\nY8xIcO51DfFl91O381wBJg4fLQTYfj96//JjyvrvAXJXfXeIWzpMuWOBzQ4I\nvTKGlVlJwmbmeccP8NwdkX+HLJ7dfpDPR87palbrYWqyNwVe+GbuV7ihPIr+\n0oZUZBelNCUzTJyFUbCiGNvbHh8+DpqWLk9Np4pBbNdZo02P5pzhQz/Jimyb\nBRVaOSBZMm5Pf+1Gl7HocKYZvUCYg4HcvqGL5thAed4IwJZY3yKt1bMtWY34\nOOGnio3nNVysf7f2REBujurjf54SpmN02sU/booHh6c+/jL3bQEo6JaEIreF\n7QKIkJdYbEeaCdUx6+uwih52S4WU8nB3/KOqw86TlOLH5lcZGzqhUw4+QjeY\ncDMV\r\n=9j7+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4ID9tapAQ1cXm7dVgOnCkdfKN2roILHbgURpIameOGQIhAN7Bm8QOzfImlF/TDYeFoGT5lIDxR0syki6nmTUuA2oR"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_5.0.0-beta.2_1586889438227_0.6618940131333506"},"_hasShrinkwrap":false},"4.6.3":{"version":"4.6.3","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"16faac53a8880311710201edc8765c7eaf0b9694","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.6.3","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-o94r9uHh5tMDMbv0fiwlNDpe4Ex0Bo6N5PA1aqjPSY/tTGqo7j1Kd85N9cJSMGqgHzjCycZeaNLwdFX9Ee/HXQ==","shasum":"533f8b70ef13f197b0ab39709389e52553e0607c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.6.3.tgz","fileCount":67,"unpackedSize":235605,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJelgL/CRA9TVsSAnZWagAAEqUP/1sGu1uttA+LUCDNKr45\nXZdbVcK+9LKn7mzPSjfudBnO4Ipkt2XxV+vezM5zomH9lClS29G9uufJ81/V\nlrx5O2TW2jUiOp+RJKY17UDTVn0Dl8BxvqZYA3RTp9SXCfvI8gffXzH9yduN\nG7mQZ7hjF82ESOsjbdY1e9HhKcDEQ7DqSi3/4tMbSYugKT+fotqJKAhlgtXT\nrDkGYBba7hptRdUbOcIoYLvU9rWquj7UJgBtLfj/LcM2cbNs5ifvq7VOdDxI\nRxkA7wYaHSkNHxu29x1v4ZAfm+1nZEu1ABO4nHIncuYK4qUGIYmXWnzqVTj/\nT37spfbk72/nBJXkMLlOpzEEOw7pUc6BeCLJtRsNZlyAnQ4CsvcCXjL3QQSG\nKZvI4qWg2hd1aqI2mw7q05802+tUEnLRMYxI80fAnhSvT/yJKd6jYHo+3bwn\nI4+LRY8p4zE8gNj2n333qIvhvLPLDQ+HPfgeqhIEqaT9QCrogVk88ROekIhB\nshfXqWOiXHJ9FSzBqarnkPHnECuT+G3subqjtOSulAKwtqA1FapM2Q65NzQL\nkneAQ4dHpo2J9tna2jYM+JvrTH8sGLZp3fxT5nRTGOpE+7ybmpz9L2LTQ9VS\nYu4EkRI/IAcFoUgaqDNurOYvS+9ttEpmSmL9EmJR/XiyBN/WBbhd266D8GC0\nNA/H\r\n=pamt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFjhc5e5fsdzyYIJbmCdZOOzs9BmU0ixTRZwOuZTnijrAiEA7ZcunBBJhrbFTIn1r+3FCp7y6em9jIzz5fpaUZTlRCU="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.6.3_1586889470495_0.31725741400444796"},"_hasShrinkwrap":false},"5.0.0-beta.3":{"version":"5.0.0-beta.3","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","readme":"# Google Firebase Cloud Messaging Cordova Push Plugin\n> Extremely easy plug&play push notification plugin for Cordova applications with Google Firebase FCM.\n\n[![npm downloads](https://img.shields.io/npm/dt/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm per month](https://img.shields.io/npm/dm/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm version](https://img.shields.io/npm/v/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues)\n[![GitHub forks](https://img.shields.io/github/forks/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/network)\n[![GitHub stars](https://img.shields.io/github/stars/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/stargazers)\n[![Known Vulnerabilities](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated?targetFile=package.json)\n[![DeepScan grade](https://deepscan.io/api/teams/3417/projects/5068/branches/39495/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3417&pid=5068&bid=39495)\n\n### Version 4.6.0 (04/04/2020)\n\nFor the IOS, if app is on the foreground and the app receives a `data` push notification, the data can be retrieved by setting the callback to the new method: `FCMPlugin.onFirebaseDataNotificationIOS`.\n\n```javascript\nFCMPlugin.onFirebaseDataNotificationIOS(\n  function(payload) {\n    console.info(\"Message id: \"+payload.messageID)\n    console.info(\"Data parameters: \"+payload.appData)\n  }\n);\n```\n\nThis method is specifically implemented on IOS due to specific payload format ([src/FCMPlugin.d.ts](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/master/src/FCMPlugin.d.ts)).\n\n\n### Version 4.5.1 (30/03/2020)\n\nDue to a bug introduced in v4.4.3, the file `platforms/android/app/src/main/res/values/strings.xml` had two tags included on install, tags which, on build, are also included by cordova-android@8.x.x. Hence failing the build process.\n\nTo apply the fix, install the new version and remove these two tags from your values/strings.xml:\n* `<string name=\"google_app_id\">...</string>`\n* `<string name=\"google_api_key\">...</string>`\n\n### Version 4.2.0 (24/02/2020)\n\n`ANDROID_DEFAULT_NOTIFICATION_ICON` included as a variable.\n\nTo define the default icon for notifications (`com.google.firebase.messaging.default_notification_icon`), install this plugin like:\n```bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/notification_icon\"\n```\n\n### Version 4.1.0 (26/10/2019)\n\nOlder notifications can be cleared from notification center.\nWorks on both IOS and Android.\n\n```javascript\n//FCMPlugin.clearAllNotifications( successCallback(msg), errorCallback(err) );\nFCMPlugin.clearAllNotifications();\n```\n\n### Version 4.0.0 (12/10/2019)\nThe old `FCMPlugin.getToken` is focused on retrieving the FCM Token.\nFor the IOS, APNS token can now be retrieved by the new method:\n\n```javascript\nFCMPlugin.getAPNSToken(\n  function(token) {\n    console.info(\"Retrieved token: \"+token)\n  },\n  function(error) {\n    console.error(error);\n  }\n);\n```\n\nOn android, it will always return `null`.\n\nThe APNS token, once given, should not change for the same user (as commented on in https://stackoverflow.com/questions/6652242/does-the-apns-device-token-ever-change-once-created).\n\nAlthough, contrary to APNS, the FCM tokens do expire, and for this reason, `FCMPlugin.onTokenRefresh` will be called with the new one FCM token.\n\n### Version 3.2.0 (16/09/2019)\n#### Checking for permissions\nUseful for IOS. On android, it will always return `true`.\n\n```javascript\nFCMPlugin.hasPermission(function(doesIt){\n    // doesIt === true => yes, push was allowed\n    // doesIt === false => nope, push will not be available\n    // doesIt === null => still not answered, recommended checking again later\n    if(doesIt) {\n        haveFun();\n    }\n});\n```\n\n### Version 2.1.2 (03/06/2017)\n- Tested on Android and iOS using Cordova cli 6.4.0, Cordova android 6.0.0 and Cordova ios 4.3.1\n- Available sdk functions: onTokenRefresh, getToken, subscribeToTopic, unsubscribeFromTopic and onNotification\n- 'google-services.json' and 'GoogleService-Info.plist' are added automatically from Cordova project root to platform folders\n- Added data payload parameter to check whether the user tapped on the notification or was received while in foreground.\n- **Free testing server available for free! https://cordova-plugin-fcm.appspot.com**\n\n## Installation\nMake sure you have ‘google-services.json’ for Android or  ‘GoogleService-Info.plist’ for iOS in your Cordova project root folder. You don´t need to configure anything else in order to have push notification working for both platforms, everything is magic.\n```Bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\n### Firebase configuration files\nGet the needed configuration files for Android or iOS from the Firebase Console (see docs: https://firebase.google.com/docs/).\n\n### Android compilation details\nPut the downloaded file 'google-services.json' in the Cordova project root folder.\n\nYou will need to ensure that you have installed the appropiate Android SDK libraries.\n\n:warning: For Android >5.0 status bar icon, you must include transparent solid color icon with name 'fcm_push_icon.png' in the 'res' folder in the same way you add the other application icons.\nIf you do not set this resource, then the SDK will use the default icon for your app which may not meet the standards for Android >5.0.\n\n### iOS compilation details\nPut the downloaded file 'GoogleService-Info.plist' in the Cordova project root folder.\n\n## Usage\n\n:warning: It's highly recommended to use REST API to send push notifications because Firebase console does not have all the functionalities. **Pay attention to the payload example in order to use the plugin properly**.  \nYou can also test your notifications with the free testing server: https://cordova-plugin-fcm.appspot.com\n\n### Receiving Token Refresh\n\n```javascript\n//FCMPlugin.onTokenRefresh( onTokenRefreshCallback(token) );\n//Note that this callback will be fired everytime a new token is generated, including the first time.\nFCMPlugin.onTokenRefresh(function(token){\n    alert( token );\n});\n```\n\n### Get token\n\n```javascript\n//FCMPlugin.getToken( successCallback(token), errorCallback(err) );\n//Keep in mind the function will return null if the token has not been established yet.\nFCMPlugin.getToken(function(token){\n    alert(token);\n});\n```\n\n### Subscribe to topic\n\n```javascript\n//FCMPlugin.subscribeToTopic( topic, successCallback(msg), errorCallback(err) );\n//All devices are subscribed automatically to 'all' and 'ios' or 'android' topic respectively.\n//Must match the following regular expression: \"[a-zA-Z0-9-_.~%]{1,900}\".\nFCMPlugin.subscribeToTopic('topicExample');\n```\n\n### Unsubscribe from topic\n\n```javascript\n//FCMPlugin.unsubscribeFromTopic( topic, successCallback(msg), errorCallback(err) );\nFCMPlugin.unsubscribeFromTopic('topicExample');\n```\n\n### Receiving push notification data\n\n```javascript\n//FCMPlugin.onNotification( onNotificationCallback(data), successCallback(msg), errorCallback(err) )\n//Here you define your application behaviour based on the notification data.\nFCMPlugin.onNotification(function(data){\n    if(data.wasTapped){\n      //Notification was received on device tray and tapped by the user.\n      alert( JSON.stringify(data) );\n    }else{\n      //Notification was received in foreground. Maybe the user needs to be notified.\n      alert( JSON.stringify(data) );\n    }\n});\n```\n\n### Send notification. Payload example (REST API)\nFull documentation: https://firebase.google.com/docs/cloud-messaging/http-server-ref  \nFree testing server: https://cordova-plugin-fcm.appspot.com\n```javascript\n//POST: https://fcm.googleapis.com/fcm/send\n//HEADER: Content-Type: application/json\n//HEADER: Authorization: key=AIzaSy*******************\n{\n  \"notification\":{\n    \"title\":\"Notification title\",\n    \"body\":\"Notification body\",\n    \"sound\":\"default\",\n    \"click_action\":\"FCM_PLUGIN_ACTIVITY\",\n    \"icon\":\"fcm_push_icon\"\n  },\n  \"data\":{\n    \"param1\":\"value1\",\n    \"param2\":\"value2\"\n  },\n    \"to\":\"/topics/topicExample\",\n    \"priority\":\"high\",\n    \"restricted_package_name\":\"\"\n}\n//sound: optional field if you want sound with the notification\n//click_action: must be present with the specified value for Android\n//icon: white icon resource name for Android >5.0\n//data: put any \"param\":\"value\" and retreive them in the JavaScript notification callback\n//to: device token or /topic/topicExample\n//priority: must be set to \"high\" for delivering notifications on closed iOS apps\n//restricted_package_name: optional field if you want to send only to a restricted app package (i.e: com.myapp.test)\n```\n\n## How it works\nSend a push notification to a single device or topic.\n\n+ Application is in foreground:\n\n   The notification data is received in the JavaScript callback without notification bar message (this is the normal behaviour of mobile push notifications).\n   \n+ Application is in background or closed:\n\n  1. The device displays the notification message in the device notification bar.\n  2. If the user taps the notification, the application comes to foreground and the notification data is received in the JavaScript callback.\n  3. If the user does not tap the notification but opens the applicacion, nothing happens until the notification is tapped.\n\n\n## Authorship\nThis is a fork from https://github.com/fechanique/cordova-plugin-fcm, which has dependencies versions upgraded, jitpack and cocoapods support, and newer features.\n","readmeFilename":"README.md","gitHead":"87a1d90ec886bcf2da5e30c72befad172498f60e","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@5.0.0-beta.3","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-ojaK5COWI3957XP0/W7TckO3ayQk5TcCwFEUDvYPlNDdpEXFK1aOhe2h+ULPcIvsIzvbHZd7bIWHUGLvqhPlKg==","shasum":"4a0cd4a675a5deaa18ff778ac413ef5ab452235b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-5.0.0-beta.3.tgz","fileCount":67,"unpackedSize":228022,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel1ydCRA9TVsSAnZWagAAzdAQAIfRwDXSjH7Q8G127cPl\nH2jw1EcihJU/Adee5D9ywjoIBslJV5esaeNsgGETk0OR3ABnZcQnSDjMSNit\nqe9olr+TwYJjEBjQ0mrgFamk2CabklzwNUAl+/wQJxAEdERSmXV5kNykG2J9\ndfMBFqaib1vbdyOdWnplVC2y9LAMT5vWLR2zaULZBzvbFygWekPZF82mBtal\nY4Sf7ni0ob49lp2Vy/d5Vy4coARMrBn2+kmb/6WsuzjnuAoXO0W9ZcRd/+/l\n7hKIyIvqNKZaTVts5oMyvzRDClCoZDGaEZ0C1OD5FooI7aRXYoj/HuyZMx8H\nzXKGAs4JD4yeM7aUfVpbP2rJi5cBSJ/nOlVzuY/gFQJqB/aDhjNCLVCJ0+0D\nQcbda9kOSjWjYmkeIRGiu0wWT3IA1fDNC/sITzEn6O2VfmIfeYXw8cJVY/iN\n+SlKTLvTnHMlDjIpohj/NeTAo/BQIkW0z1LBWHAzNBBF5ak/4IYirdTv6u/S\ni3cK7PakUhvpt5PUB+/iczS7oGOBTqSQCh51F3ljX44SMMc9x1vj1NaVAroU\n74cdvBhYrJy3S6PWrsySO6ET8BCh+YQnTeFpxKRhgiTy83XmknrB45+pjtEj\nydoDxmJHCc2hZ7UzWKabJgYF1DKXCf37MhrY4daGzkD3pZ1G+O7NNjp0zgML\nph7v\r\n=Nh/o\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHx9mPmdB6HyNspp4Zhn37BLSe1mnyhzEvOv6Xql3bx5AiEAyKL+1GHYBf75yGEffNUUNHi99W/qosqScjJpdsAn758="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_5.0.0-beta.3_1586977949143_0.24548314492572954"},"_hasShrinkwrap":false},"5.0.0":{"version":"5.0.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"4c438f92ba0d909f94e4cdb10be213c88c1f0068","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@5.0.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-eX1SmiTbo+fx2R6n1wTfmiDewIiDQ5Z2TjnXk/ahLxHzwspD0S7SwseHcfpy26A/c6YocCXW6LkcLSjiMr3nPw==","shasum":"39150e5695dbd43ebb42fe1f8ceba5bd59bce182","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-5.0.0.tgz","fileCount":67,"unpackedSize":228912,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemJIxCRA9TVsSAnZWagAAmR0P/0GYediDljc6eWlzmtfn\nWPmv6k7eDVmVM+bB7nj045gZsdEU9GgQWP3YqKvd8TKNkp7M6exR8h7km/SB\n7LoCa3Wl1XGJ0IDSjFF92oqAIKrv1xrpxqCxw68hSzl4hTri60XkVYz/ShEc\nQ7Hcec/Z7rA3eF/oyrAjtNuAumiBBbmrg75r1eqPaOCJFsDPhVxJqI1Ry2dv\nAFaBwERXOU2Ak2sxQveCVEGcAWBiwMmAdBbqp6nWNRjw25jHCTl2YZwmDQdv\n0WAYNDxg8xLu54Pq24cVGpk2eXh881FxxKT6O0HanCum/fkWJpallnAK/NAH\nrTB/pZajmkxwwyaA5hQd4nnmotaw+8Y6VGriM9IgtO9qehxmSjDcceOMkFAH\n5JKOa1HXaKgDRl7442HssIux8e7qDfH8FDjiDIW8s7PpoHHw2xRnuiXnhKeZ\nRoKGsT2OpIcuoHqpCwhamC2biNfaM/iGLGX1/Ob59WL2xzFvwCoJ4euuDxNl\nX0nLdOvMw6z2h2V5xnYTCEaVC0h41jWFe2L9Nzzhty9mxoZXzuLjIb0qxMUW\nSOJMmqiYrpWCm/CndHBVgpkM0k0j/SGIKa4JbTWWow9NnjMs8rJrOTrKXbcD\nyfoEZhaNDTWulbzXku5PulcAWVyz3uGdh9VpOR14e18oQIbeVJNZeCnjimwJ\n/eMf\r\n=mUgk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFOnZwcrkB60bdR0cw4zK5Z9RDdcjVrd/uXxT/IaK3W4AiEA6dH1HA3CU6tjkZZHAKNECqlwlXrH9i0ZpYmJXlw51mQ="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_5.0.0_1587057201385_0.8663592492357075"},"_hasShrinkwrap":false},"5.1.0":{"version":"5.1.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"8ae2a998731f30e5a36cbbe91f711d9efade3a96","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@5.1.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-IE4rjK+PDGwdsQtv2mlmtjNDSRzdtpVg9T+jgAENsRSTTu73zWln/b0kAMV9oZx6Mx9G/8oxGQumF0J1kwCBxg==","shasum":"544cc7f6f4aa63cfc201d78926e93ea15d95d21d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-5.1.0.tgz","fileCount":67,"unpackedSize":229404,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemuKBCRA9TVsSAnZWagAAPvgQAKKeQbb9JX100RwvF4Y3\nTGUGqPQKR4SZ4X06qfVTV014ydHCbWEsVdPxjmvrzdWxESsW+RPmAnrAZ1GT\nS94Toa5m+ErWgAO8A5ocWY+2KLMlLpTW8D8QmS4gVGWYK4WJScvsADPWCxuo\nQQ+C1AzEo1+hm/bfpQwXMkEr6x8jw39MgJPKud0vqcuEvFZbM4uKOmJ87jvg\nbZuxYzjbz/HsgCyk3XMezX+rME/DfONle3rz0dm54RESw2j1t6ZkSX5/Oucz\nbKT08TDJmzvjSeFlJgxGa+fbo68ZcnwpLjJCBfS3JQhhHCERMYRzikeL3TRq\nXd6zud8KffYg6FfMNJyZN1aPaYKo/1utYOnKnxJFvxJPAljXGY/1L5nTtzCE\nLqD+EbVnmsjipGtrsXnC+DNuIdsOi3Syy1isRjXmUVSln6Q+DYIyRUEs7fMZ\nCkN6j/UFirTPCzjzJMmrVj9wdhBZ+bnB6U1384zK+apAQGWZ3bEgH/K0E6mv\no9ekMSD7sD9Pnkh1tm58wUztdoV2aeZ1tOlDNShmmeAVh13Id7bfaKk9PHnj\n/kDPW/xx0o9ug6T3AGfC7iE2VnR4h0KoK/fy5ONWRGbijjQ3CclBTGHBFsHf\n2rjMu4gSGCiL+TGjSrEC2XP/2JuHTMsInH2dH95EjCx24G4QuQY3nlv+KFkY\nUml1\r\n=25rA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBdRYTqOo3Kl09zmoDkgNs5/ZakzbtsAusmLb0qeuP/SAiEA5c6fu8L26z+SZDft9WEU6VurF4ZxSTXdhIDoCG98lQY="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_5.1.0_1587208832628_0.45875387883058427"},"_hasShrinkwrap":false},"6.0.0":{"version":"6.0.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"9db9edc887f45c73e65a4b238d1965cdf7bee6f5","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.0.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-eE8pwS34JuJMwP4e2nCtShFZSfI2ysI14TSSRj0ltNc/Y3GCyAhVFU+O5rpu3Gr4nPp8G9DReuimPLYjOtXjxQ==","shasum":"82b788d7bcc1c92e301488a6752b77592e800b15","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.0.0.tgz","fileCount":67,"unpackedSize":230788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemzDNCRA9TVsSAnZWagAAvCUP/jTmU7nBvsqxurfZ7+YH\no9gH8QcPScKKAgDU1xs4vzrKVZagK6cszpQLLDnR9tQ924xfZsyJk0gL0B5N\nP2uKAhuexr121vH4zr8lXVNm0mFLCKwr1K0RAdE/k4oNyeOnITrQiYSgBeLu\nRpn/i/J7rczCEs1agFSl5DtEzmtxMNFTZesq24+n7dpyp8/skNu2ZzSzNcC1\nJg5B2yB+capy8+hiLOUaIIRD1jYwonClSK+PTDJ+jUy3iR24IiltRyW3zbiI\n/TqjrUNMGISb76yPvycDoSzS24f2XQuoY6lRpx/soCACUXuNJ550R5tgOLNf\nk7QxCUKpLb4HAxZKTV85ThyMcOdA+2qarlM+s8qL6bi57FglhSo+CJI+rDf9\noWDeZno5IY3VkA4PK3L9PeQoyEWS45GS7Kf0ABzjAgXYYP/OVDfExHP2KAR7\nK1noLEGiCG0qakWx7x+if6NRlbW51la+33PLEzySF/anU/n/IxY5XXYbZ7rS\nSM4ij6yNiLJ71Y4JoW4/GiE4iDawQnv28ahBoxux2bggwu887oBXhL6tPhmc\nei+tqYpJvUiLtogxH9J9s8K3WvT7NFAN62cxVjihjhhgYSFvOM1gxEVEi9D1\nftnUsBm21n5bPSeQPxhHy1ep2Lbgkj97/mVZgynJl4joldsNPXCxJlJk2ELH\nNl3i\r\n=DPXL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDzJTzn7zKzykoPfUv0w4tQj2hwu7uA4axk2zXmOubElQIhAL6FxblLJ8oAxjrmxxRH8URL2h8JDM/732PGMBQ/z4Ej"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.0.0_1587228877022_0.4773754753937498"},"_hasShrinkwrap":false},"6.0.1":{"version":"6.0.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"9edc9a450712538802faea5361ed9a5e631eb5b1","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.0.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-7b7ssPHQ+0cU7AaXYzUKLtzBe/f8g8AFdL/fE6b3kRos6Ie7lUCAHV2Sye2ZiILG1e86xFKeqpeQey+Ls9fDWA==","shasum":"a0f0b0d184d69fea3dc7b659b64b282473624bcd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.0.1.tgz","fileCount":67,"unpackedSize":230509,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJenaWPCRA9TVsSAnZWagAA4YgP/A4YvqC2Yl1CwNBS9IT2\nHNBh1AxnnAdOso0/Mh84AqsyTerNb4T6bmvlmzeVQwnNfoco08QqS0OTIC1U\nipllXJyXpr1x6eUtH5K5URJlL5ob8976gfHSK1uDem5IFVhGuPxL+T9gEABZ\nYvAyAhjhCHsswJa1cEyXA3S/ayBwJhR2pCyxRNo5GEPuqwUkQFeDy1GvhOVh\nLxZI+HGh7hofAlgbVtI10kq1vI57ZTNpAv0I0m+I/4teJJ0LXqV6CJZjt02t\nwMp8I9IcPrwETjiON2HdSLYkNhmZjTsBDODikknwlE6HDfsUJLk+sKvfuhwe\nTjh1Vd8eLT07ntCrZ7ot7yZike91ulhHyQynggyvLVsObnBw17JTc8B6x59z\ntS9PVJdXWjLtNcY2N1g+psZ26d/MLYqwGCFCPAjoTzg0pBXfzmGBhSGLY2S0\nsAQ9bPxbo72mC/kPz05srzxmyO0c0QVgYOVhV4yttBpaJr3MJ5c+TgQXyeip\njzIKOVxcU0rG6RkHrHO9Za83YZb/9VaEjP7AXGbDJxRPpUgscaLcfytfoVB+\n/USOzIHCS3hpFjqDO4O7t7BTHGOISG6sBNZ6r5kOARiG5aVylsjQp6DMHoeG\nFMuFbpyr3g7zF603uOhH16XTKvIjjqFmuQ9CIR035z8FA5hbo3VtZJ1gLBoa\n6Whf\r\n=wK5o\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6UtuZJQXCDUpR6cz6OqPUS/8FGNwKS1uFtgxewAu+RAIhAO3nFiGY5Jth6Jj6uIi7NC1WK1dejpLZ+kUjydOyq3wm"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.0.1_1587389838873_0.12170033105615885"},"_hasShrinkwrap":false},"4.6.4":{"version":"4.6.4","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","readme":"# Google Firebase Cloud Messaging Cordova Push Plugin\n> Extremely easy plug&play push notification plugin for Cordova applications with Google Firebase FCM.\n\n[![npm downloads](https://img.shields.io/npm/dt/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm per month](https://img.shields.io/npm/dm/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm version](https://img.shields.io/npm/v/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues)\n[![GitHub forks](https://img.shields.io/github/forks/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/network)\n[![GitHub stars](https://img.shields.io/github/stars/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/stargazers)\n[![Known Vulnerabilities](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated?targetFile=package.json)\n[![DeepScan grade](https://deepscan.io/api/teams/3417/projects/5068/branches/39495/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3417&pid=5068&bid=39495)\n\n### Version 4.6.4 (20/04/2020)\n\nReplaced `UIWebView` with `WKWebView`, as required by Apple (https://developer.apple.com/documentation/uikit/uiwebview).\n\n### Version 4.6.0 (04/04/2020) [DEPRECATED]\n\nFor the IOS, if app is on the foreground and the app receives a `data` push notification, the data can be retrieved by setting the callback to the new method: `FCMPlugin.onFirebaseDataNotificationIOS`.\n\n```javascript\nFCMPlugin.onFirebaseDataNotificationIOS(\n  function(payload) {\n    console.info(\"Message id: \"+payload.messageID)\n    console.info(\"Data parameters: \"+payload.appData)\n  }\n);\n```\n\nThis method is specifically implemented on IOS due to specific payload format ([src/FCMPlugin.d.ts](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/master/src/FCMPlugin.d.ts)).\n\n\n### Version 4.5.1 (30/03/2020)\n\nDue to a bug introduced in v4.4.3, the file `platforms/android/app/src/main/res/values/strings.xml` had two tags included on install, tags which, on build, are also included by cordova-android@8.x.x. Hence failing the build process.\n\nTo apply the fix, install the new version and remove these two tags from your values/strings.xml:\n* `<string name=\"google_app_id\">...</string>`\n* `<string name=\"google_api_key\">...</string>`\n\n### Version 4.2.0 (24/02/2020)\n\n`ANDROID_DEFAULT_NOTIFICATION_ICON` included as a variable.\n\nTo define the default icon for notifications (`com.google.firebase.messaging.default_notification_icon`), install this plugin like:\n```bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/notification_icon\"\n```\n\n### Version 4.1.0 (26/10/2019)\n\nOlder notifications can be cleared from notification center.\nWorks on both IOS and Android.\n\n```javascript\n//FCMPlugin.clearAllNotifications( successCallback(msg), errorCallback(err) );\nFCMPlugin.clearAllNotifications();\n```\n\n### Version 4.0.0 (12/10/2019)\nThe old `FCMPlugin.getToken` is focused on retrieving the FCM Token.\nFor the IOS, APNS token can now be retrieved by the new method:\n\n```javascript\nFCMPlugin.getAPNSToken(\n  function(token) {\n    console.info(\"Retrieved token: \"+token)\n  },\n  function(error) {\n    console.error(error);\n  }\n);\n```\n\nOn android, it will always return `null`.\n\nThe APNS token, once given, should not change for the same user (as commented on in https://stackoverflow.com/questions/6652242/does-the-apns-device-token-ever-change-once-created).\n\nAlthough, contrary to APNS, the FCM tokens do expire, and for this reason, `FCMPlugin.onTokenRefresh` will be called with the new one FCM token.\n\n### Version 3.2.0 (16/09/2019)\n#### Checking for permissions\nUseful for IOS. On android, it will always return `true`.\n\n```javascript\nFCMPlugin.hasPermission(function(doesIt){\n    // doesIt === true => yes, push was allowed\n    // doesIt === false => nope, push will not be available\n    // doesIt === null => still not answered, recommended checking again later\n    if(doesIt) {\n        haveFun();\n    }\n});\n```\n\n### Version 2.1.2 (03/06/2017)\n- Tested on Android and iOS using Cordova cli 6.4.0, Cordova android 6.0.0 and Cordova ios 4.3.1\n- Available sdk functions: onTokenRefresh, getToken, subscribeToTopic, unsubscribeFromTopic and onNotification\n- 'google-services.json' and 'GoogleService-Info.plist' are added automatically from Cordova project root to platform folders\n- Added data payload parameter to check whether the user tapped on the notification or was received while in foreground.\n- **Free testing server available for free! https://cordova-plugin-fcm.appspot.com**\n\n## Installation\nMake sure you have ‘google-services.json’ for Android or  ‘GoogleService-Info.plist’ for iOS in your Cordova project root folder. You don´t need to configure anything else in order to have push notification working for both platforms, everything is magic.\n```Bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\n### Firebase configuration files\nGet the needed configuration files for Android or iOS from the Firebase Console (see docs: https://firebase.google.com/docs/).\n\n### Android compilation details\nPut the downloaded file 'google-services.json' in the Cordova project root folder.\n\nYou will need to ensure that you have installed the appropiate Android SDK libraries.\n\n:warning: For Android >5.0 status bar icon, you must include transparent solid color icon with name 'fcm_push_icon.png' in the 'res' folder in the same way you add the other application icons.\nIf you do not set this resource, then the SDK will use the default icon for your app which may not meet the standards for Android >5.0.\n\n### iOS compilation details\nPut the downloaded file 'GoogleService-Info.plist' in the Cordova project root folder.\n\n## Usage\n\n:warning: It's highly recommended to use REST API to send push notifications because Firebase console does not have all the functionalities. **Pay attention to the payload example in order to use the plugin properly**.  \nYou can also test your notifications with the free testing server: https://cordova-plugin-fcm.appspot.com\n\n### Receiving Token Refresh\n\n```javascript\n//FCMPlugin.onTokenRefresh( onTokenRefreshCallback(token) );\n//Note that this callback will be fired everytime a new token is generated, including the first time.\nFCMPlugin.onTokenRefresh(function(token){\n    alert( token );\n});\n```\n\n### Get token\n\n```javascript\n//FCMPlugin.getToken( successCallback(token), errorCallback(err) );\n//Keep in mind the function will return null if the token has not been established yet.\nFCMPlugin.getToken(function(token){\n    alert(token);\n});\n```\n\n### Subscribe to topic\n\n```javascript\n//FCMPlugin.subscribeToTopic( topic, successCallback(msg), errorCallback(err) );\n//All devices are subscribed automatically to 'all' and 'ios' or 'android' topic respectively.\n//Must match the following regular expression: \"[a-zA-Z0-9-_.~%]{1,900}\".\nFCMPlugin.subscribeToTopic('topicExample');\n```\n\n### Unsubscribe from topic\n\n```javascript\n//FCMPlugin.unsubscribeFromTopic( topic, successCallback(msg), errorCallback(err) );\nFCMPlugin.unsubscribeFromTopic('topicExample');\n```\n\n### Receiving push notification data\n\n```javascript\n//FCMPlugin.onNotification( onNotificationCallback(data), successCallback(msg), errorCallback(err) )\n//Here you define your application behaviour based on the notification data.\nFCMPlugin.onNotification(function(data){\n    if(data.wasTapped){\n      //Notification was received on device tray and tapped by the user.\n      alert( JSON.stringify(data) );\n    }else{\n      //Notification was received in foreground. Maybe the user needs to be notified.\n      alert( JSON.stringify(data) );\n    }\n});\n```\n\n### Send notification. Payload example (REST API)\nFull documentation: https://firebase.google.com/docs/cloud-messaging/http-server-ref  \nFree testing server: https://cordova-plugin-fcm.appspot.com\n```javascript\n//POST: https://fcm.googleapis.com/fcm/send\n//HEADER: Content-Type: application/json\n//HEADER: Authorization: key=AIzaSy*******************\n{\n  \"notification\":{\n    \"title\":\"Notification title\",\n    \"body\":\"Notification body\",\n    \"sound\":\"default\",\n    \"click_action\":\"FCM_PLUGIN_ACTIVITY\",\n    \"icon\":\"fcm_push_icon\"\n  },\n  \"data\":{\n    \"param1\":\"value1\",\n    \"param2\":\"value2\"\n  },\n    \"to\":\"/topics/topicExample\",\n    \"priority\":\"high\",\n    \"restricted_package_name\":\"\"\n}\n//sound: optional field if you want sound with the notification\n//click_action: must be present with the specified value for Android\n//icon: white icon resource name for Android >5.0\n//data: put any \"param\":\"value\" and retreive them in the JavaScript notification callback\n//to: device token or /topic/topicExample\n//priority: must be set to \"high\" for delivering notifications on closed iOS apps\n//restricted_package_name: optional field if you want to send only to a restricted app package (i.e: com.myapp.test)\n```\n\n## How it works\nSend a push notification to a single device or topic.\n\n+ Application is in foreground:\n\n   The notification data is received in the JavaScript callback without notification bar message (this is the normal behaviour of mobile push notifications).\n   \n+ Application is in background or closed:\n\n  1. The device displays the notification message in the device notification bar.\n  2. If the user taps the notification, the application comes to foreground and the notification data is received in the JavaScript callback.\n  3. If the user does not tap the notification but opens the applicacion, nothing happens until the notification is tapped.\n\n\n## Authorship\nThis is a fork from https://github.com/fechanique/cordova-plugin-fcm, which has dependencies versions upgraded, jitpack and cocoapods support, and newer features.\n","readmeFilename":"README.md","gitHead":"b0402783d77fc45b173a42bd2c297a761659cf40","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@4.6.4","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-GwCCzIM4+qKSC9IMc956xPt10d7kUvSYetCN3TqfbolitRM8431K3Sc8r/Kfu1WATD0D+CJwNBStfYMbkCmsKg==","shasum":"6975fe7a1dea19aab0c867b927e49457ea8bb933","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-4.6.4.tgz","fileCount":67,"unpackedSize":235436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJencNzCRA9TVsSAnZWagAAeqIP/ihUYbnOvNTyscd43uj4\niZpbKpIBX4+lRxU/vZ8pporxNKwia7eagayJmwF/aZdq19r17a9JOJ3lGaKe\nSHyiyRMIEAjxfgaO3qeY8f5Ut8SCqjGmYOXmUYHuos137m77QovCzSRu3xO5\nVF6qo52OhDuZ4dCxQ7kDctlZmTxqhzkza3y2zVzpegINA3tIJ04jSzpS9H8p\n1PojoCL0qS711fcF6wWqYNvdYIGHQKNv+qyLVz6OTyMbNhhLjRs/uqpxhmTw\no+MNmZ3B2Z9GDlnkGYqEWIwEwphqiuMihhJUkZCO5f7I9ZpFWwxFtq00ZoXF\nK+lqI9JE0KjzpL6n4fD3AbJRX0OKzME0n0YKq1PFXGjO0l7iNzb6nkfigT+9\nSuYamObLMytKFlmEnZcpPj2QZEmqCYvIcWoSGfIybCQdHJB55rX9hnUwwPWK\nw3MGanXsF8Init5+4+qOspJxKbJ/f+bAifIqpJMEY1ECqvoflpjR6ZpsW3VI\nSWyAZeAoIKQr1daZjL8A20CzDpFEqgPJ8c0Csd9NEXmpGpVj12NfpDz6qJsx\n8TdHLIqJ8MfBWK3gHLQZqyJeXJI1ZHMuf1gtixj1SnjD43tVkNLOZZt4Cm2s\nGdZN4FRj/09nhfkGcYtDDyyKbThIgPc2qYdsmnCw6pdXcKUXCl07UNdvLYhZ\nOusX\r\n=maha\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYKLGU8Mj67vg4X4n09mjt2u8/IXrQCvWkw4gSmBMfvgIhAK54NMVsAwhaDWmcpFJbVxggYFwth9Dx3wPWPQS6nHYy"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_4.6.4_1587397490865_0.35493733830236995"},"_hasShrinkwrap":false},"6.1.0":{"version":"6.1.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"72cca3666ef5cff1fef50dd723c456f2e6615a38","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.1.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-fiQmtZCoXvINxaiMZ+xBUHxA8Th55lfWhrAVpoLwDVowAjTiLz1LbzgZV2gNsmmxxsu7CzSj1L3EquXns1MDjQ==","shasum":"7c641e466d0a7810d0626c83575714c9abdc42bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.1.0.tgz","fileCount":68,"unpackedSize":237022,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeov1/CRA9TVsSAnZWagAADacQAJGMHFFeV9PbT8vxVbaG\nzjxnoFkFQiVvLzD2zAkj1F+IIth19aQtQ4/LJnIBDT+FXcSsqyZtVBPRcLrb\nNaoppVyXA72jdZQoaN9mwWGzmkoou+9HRWaQTlkQJYlGl/1Aq84J+mMv2OVB\n7zXNqiOMFk6wtpHL6DfBo5X8b9alSl8c9RAi0fdSbrM8cim9yMvJFYlVhlIS\nGfKS5XtNmhykIrT9kDn48PHozmXzmfTz98daWBabfIXseduF3bAKWnOvGEs0\n4Pk37ve6U8YyrJw+g+sGPwwnUxIURvY+GmShUivul4+SQ7xAVRjQQ7c8vhm7\n8Ap2r4iW5AmMt+2B+m9+Xv1c8R9DyMrz5AXBJrdlHQbbg/kGWopEDTh5SwKy\nKuFms2jZT0lBiIYgqxNDYlmhOeb0DS4fMsCd7BJSo0gzDQs7bNdJ9mwEZZSV\niIAgY9sN/6+RG/YC4y/VDmaGvJCCVkNOBUHsnj87a+gRaDWq9cqk/TNFGgnG\nq9GBHIV0eqs0vCgqv+bugtzi5GlUj3iHTmvftVSL+YCx7K86TzwCaDen9a9f\nMOXKjmNFC4BF8DDbTiXaMAFEVGryaWZXfntLoN/t4moHcxvXbLBHZDX5/2mQ\nOQ9c9k0Xo47Lf1dx3gl/u6KCBitXmYWeRn5zuePlm5uJSIqZWhuKpfeyLQ1B\npXWv\r\n=99xd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDXM3jzIRDlc5ghcpDN9E2v5AtVbRTBvKZesx8HJEiYsAIgcKgLRtGXuGgx1eRRU1prpDJ98Sqx14O6rSxmhi3LFCc="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.1.0_1587740031066_0.2960442371617189"},"_hasShrinkwrap":false},"6.2.1":{"version":"6.2.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"9bdafb192c3f32832da3e2a342498ad39b0d6a47","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.2.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-RVg0YP4IEOsihaySF7nKanIcDUy7BYchHjOmBTQp2Tw6TZ8pITsuT1q9+g8pvLtcmimhmIwGgXmNIZcQVaR2XA==","shasum":"628fcdf2b0c00f5f570673a20f0efa2f018f547f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.2.1.tgz","fileCount":70,"unpackedSize":244042,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepdBrCRA9TVsSAnZWagAAlQEP/0aPGUtpqih8SRb2v5iE\n1dcbJXloJQGca4qdUIut46mr7x4A6BTTRmxIpEutJzA1AkvpQI4HP8vvAkn5\nS6gfIy1yolXgCyfBCVF+Dwb/dDLM0A8xNs02CSicPSbB7R5ivk2f/BMPmKFB\nbt2XSw0E+kpXGJnql15D+EdHOIui9xlFtGGRkH/6McfsZ71xlt2oovOGUHfb\n0BOOnZ5olcs6RanGMex8qZ3jde1XD2ax817uXP0/4hjI8Zyjj+C6MB/y+WGJ\njkdw9iqLW5PyZoNJ72UJQAR1/n76IUH7ajbvf0C/fDPQ/HOt+nANeivjg3OT\nwILMBW6RXipybr5bxhl/D73wfoaHcvNPiCAfL8sjCF/kkrzAXlHW42asxR1k\nKbPoFYI6LEMNoUHNeeS555qj2IZsRowd2sdlTaHz5r6EIHTKoJdVBrP0ljHF\n0BXR1mFAa/QFolJN1E4+lS40NEhe1wZIkNJt97RIDHbwfjIQz+0lebkBvwn5\n/1jx9r2D6JaNdY/ZZPzweHqP5vSPd+micilofHmvs2FHi13LdKfbVPRbeD1y\nPL99DfcYTxXYmGFwqCsKzTauV2/NZL5LNikvzJ4q4EiaPCNVfPf9QnqKni/j\nW6WtwoBqqeldBnN7zl2Kh+P97FdUBTZj1VryRdImlExFIXl+IH7tWexgIzH5\nGPU1\r\n=Z6fR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIADZWNmFwo219FKUzYaXCQDZ/7/BGXJNIIg2apZkeuggAiARafwHjJA+JaNn8uc1f6R65doPKVU4yJqayArZ3qX4ww=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.2.1_1587925099206_0.4660646071200174"},"_hasShrinkwrap":false},"6.3.0":{"version":"6.3.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"99d9f8a6a65e32b0ae097fe767dae81c800758d7","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.3.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-M/W3FTmTxKmnq4r6PmgEF8aOevU9zgAEIMxG0A7uZaJVzqErPsff3tyt/vaGXhsYNRXBlLCzjspQ4nfLXS0IIg==","shasum":"a526e7e389767c9d2fa8991b9f193d27f568e6a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.3.0.tgz","fileCount":70,"unpackedSize":246269,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepzjvCRA9TVsSAnZWagAAKVAQAKMz0V9RsM3j+led7LCV\nR2y3Lt7xa8RopIAsmjHh5fWVNm5sJhnj+96Eus/Og52xsYifiGu/l3yyPUKA\nEjTsi3uczUb15+87KiDhb6e07maHHd3L5pxSdFuGgmaCKIvQ4CLuetroy9kA\nLu3lfVyZCfIiQ/bREnYTVBGsbZX7CedvPazv57vwN/QWdH0jusIpeVVVdI87\n1n4/BcpTO0mxlqpMae1scrb+Ranu+HV9rI5N0IuIAQZW+5V9XDTavkgqf49h\nwFeq+0HzVXcShULjGM8pGHrlPxuFn0OSgrqwsqInLVNTWbjwVyRFhXUb8IfA\nKRJXP9IE2b9003BHZJgkwaGUGh9USaJhkSn2DNl38neOiVuwuIFknrjZFJer\n4NdBWwY+aysOFogb7LYMn29NyxGjw+NLuzN3xKzlg1WlvVbb+Wv4SwtrEpwL\nv0t8sed2O0FrcUpEJ0/yxQIPkMsxJQ5fK4yvloQCO4CqYQLrhLoYJsg1a46Z\n8AygxDHsWvv4XsfoUxVoNNgdtoNIggDjSXtdHMRmATL6B8pmy1gqpPUTXLr8\ncxGV8PutPrvdzI/1QaYQYsPcIr011lyRVJVXrZCpmaSb3duDITfGPtVXB2As\n0QTRJIwX+aW8Tmq8ayEdWDNeFYObLps2bMiGqrwDwmqQXj5AgP+5Tfm2Fstf\nLPeS\r\n=gLIP\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDWt4ZDCSBOVLHStEmFdcY+3KLjfTcU4OMruSmsvUpn0AIhANzZ1Q9Je41qTSnZtY2JKI4KGanDJZzm8dLXQMh4KbRz"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.3.0_1588017390510_0.6478271069047792"},"_hasShrinkwrap":false},"6.3.1":{"version":"6.3.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"4fe3acce568df6458ee2dac6978a977a5a987e55","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.3.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-gSh5Yl8Czx360d8p+vSB15nmaufwGpU/E2paEZC5y4PNNjndqP/MrYhudBMdY/xyLZlybuU9GEYYU7HRaK+zDw==","shasum":"5bed69f6ade27fcb0540aa65b67b688eb6fcb2c2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.3.1.tgz","fileCount":70,"unpackedSize":246662,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesZAlCRA9TVsSAnZWagAA7BYP/2V4esUvlssZAUSen9IJ\nN8rY/4dQDznbIK8urdAHhRSdJ/QZxE8jmnV+dBmvSqUTuFkjno9/nxz5/itg\nkfMgTJ9iSlS9kiGDeZV2dEwjPnHQ2b4QSSWoKyh6CfWA6fVyW0qWRe65bFGp\npKM4cOrV7UVSkAGQ5exKtaV6mn6q8NUFp4SUXv78iGlVqAEuGeoN8hwhJuqB\nQg+CpuDNOtc+MQTGPGLxOY452h8eOM/41pSISnH+pGPpChQH3EPC0z3SKJoS\nxfvgbA3UVPKBAHQmrtUgUpCL4cokI7SM89b2xYdatDTATKElkx4pIs7JG+Dj\nXnyCK0pUuEBng2FnFlxM6I6hBpzDEdmhUilE7xHCIhr05BgeLjIRSr9T2uSp\nf8w46eR6WC46qLBUKNu5RmCENQYoSzbbu8Qp6FRDT/WtYkqTQMHrEiizkyEf\nwWICKV3s+IOhRSz1E5U+OHfvgfnRkDeTHeHqitgpkDFjwh1xLzFFRmLqaPR6\n3MiHu4UqeQGVFS/MA/jxmWVmhXy66Ww6KMgc1XGAB+WYWU3cyGnlZOptRWqd\nJ1eNRrThvfgzXNBgqr4IUuOzOE7Pe5SbK7z18lOztLHHiVrvXImYTr5G0Flt\nhqDuAG+docdCkSGHXxZz7+pFXfpGfa8zAF2BqY9ZgSX5p7DN5+B1B2b4UF64\ndtcU\r\n=lFIn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCfTkO9874K6r4pkwkWs7jj5duEo3ZuSCXsRjzp2qbnbwIgUY5qwAUpURsrtlyf3RXSvyKDNFLmdV489oNSUopiCM8="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.3.1_1588695076562_0.11493985852169675"},"_hasShrinkwrap":false},"6.4.0":{"version":"6.4.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"94190bcc3f9aebc9e2a5455df2a3430791925fe6","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.4.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-ZEyjDxtRZpgF11oCrxLr0Zdio59GxoAVxfOMNEmaLeQ4FjxJ8NM0QSR9XEqmUarK8NLuFsNYd+BFNqDOHf6qfA==","shasum":"0ee08aa2e8b1e43ba98e743dca306609db241043","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.4.0.tgz","fileCount":70,"unpackedSize":252331,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexq3cCRA9TVsSAnZWagAAPKIP/09mCOcPiWnNhv1PzUw3\ncScNkvhH3qKzUVD2nq+pXdut8Bp6FArd1ixo9h2+Vtel3K8XHsg7XPs39IZk\nBEsVAksmjncfljpLP8eSZep7b/ssaU9djiDIo7INrG7QKfX7R3PMRZ2sd+k/\nPC/Jv/r7S9JA8mxCYlerHc/ZwuB3GQ0TfmKIytNbTrQsGM9wdEePTg2evkdi\n7CU7rKUc/7w3pMugsmCGPwmiFwsE7ITVD24ZcLeiVLGCVHt/J56NieXxGZSK\nBGgDM9KvDmlH7CZ+g9Tkwi8I2cDEc40qtY8IfXTU31fW/X/dhGRclsyp8bIX\n9bV3rONNYL/NfrMnYSHEXJXxaT1I8DVaMHLoSB7h205TADlc9XMfFeX2l5wU\nrNm0i2/esJBFtszj5nl4iLYTUFGX8oe+ksKRSkpr2sPKAyJpSnHLiTRg3Y8D\nMEqIILYYHBEiHofpCa2QCcPsKNPGQXdS+AikZ7VBAo2tjFvuGeQP+f/c8zO6\nhM4uzdcjJaiu82/6AJLFymF9QcPldcjAg9h2dTSomgddrIV0ed9fYK/rTnHI\nxlVqWuOOGoBcwtANIIn0ixUzhttA8QM7woXX/8Lmeiak1j7hvxr0hy8Bnoit\n/NhnMdjAjDQCwpXdqzT4dJ4Ab7Jkz0w5f+n37ixYj66eGQdL488JhPULevb0\nevQs\r\n=gLK2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA5473iu420mlMmmaz7lGklsYQjAlF8qqU8TYrWJvTGMAiEA7xvGXHzKIhu9/2U7a1Kh265FfMMYY5rIAKMI15O5mXI="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.4.0_1590078939697_0.5216945351798603"},"_hasShrinkwrap":false},"6.4.1":{"version":"6.4.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"06a924a1292834710f53485641f4b42bba5b7fdb","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.4.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-QqQH0DNAWuo+VNOxBvJM7R6oWx5Sx6NiizDtsL0Y7sDaZUTl3/bY70P1Z50CjoreUT5NSM6Qn93HS1Lht8Wuig==","shasum":"aa364a5e7a4c0730dccf19ee38bc6dd0f56042ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.4.1.tgz","fileCount":70,"unpackedSize":252661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJezUQCCRA9TVsSAnZWagAAHOEP+wb/Vi4D7Y7LaAubmOzi\nUx8gQpfl7QRWq/tuDB3BC6cJ5K094q8nzvqg5S2xaKzJb1OrgWy42AH18/e+\nUBadQ3vBLpV6CKq70t0e3W8UAeySZTzBawwa/tG/JFh2rLohQUHOEJfL0siV\nyK5SkXD//myUtalGPyVfTy0VOzJI6Gy0vRy04xHLWshyNIjvz1AFxL59/ILP\nU9FggqKJ4Lipd/hW6czXUxPIjftZGguwzwxPx6hoQO3WJ/a06w1sgMJG0DfG\nVzaXz6oQJUSTmi8zo93QjL+ra5VunqzrKFKqj0FEIjIxx8UFW6UhhC4gTFJN\ngJC612F0R81oS2KdUO1bNbrvJ2N/8BYNi+zE0OM0cIeaWnt2YFhYGjFiqwmq\nFrfdK8DK9csbyyuwAEIKZkII7lIUzge3x5H+rl1fSsNnrlFBcZTkwJYZbvgT\nZUbxJ1k2x5sLjXVSThSszCAdNQxK15Ss8XfuL1Gf3iRgxEWTUKIdZO/Zu+uA\nfuJ6e7q5melGgcSDUNcwyXIWnYp/7hSrSaLmmDJYgWwnsdop1eovCYMw1VWn\ngoWsWyapgfz6gYo2UZSGzaCo2SNK1qLOscs72q6hjxoJK+7WmxmwhfYoPPNv\n82LLcKVCZTdXG95XxiUSb+YaHkVW607CimmMe0ssde4th3YIFvHgCYoRxwGs\nAG0R\r\n=wRgb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIClDebPC3c4/3Os4Zaz6B/xZO0B1DH/lfHhEDATA7xruAiEA1KH9tyL1oiSraSSuHWt9sr3fJYjbyyGmD8QlYJ7qvUk="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.4.1_1590510593783_0.2274090584754982"},"_hasShrinkwrap":false},"7.0.0-beta.0":{"version":"7.0.0-beta.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/www -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0","typescript":"^3.9.3","rxjs":"^6.5.5"},"readme":"# Google Firebase Cloud Messaging Cordova Push Plugin\n> Extremely easy plug&play push notification plugin for Cordova applications with Google Firebase FCM.\n\n[![npm downloads](https://img.shields.io/npm/dt/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm per month](https://img.shields.io/npm/dm/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm version](https://img.shields.io/npm/v/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues)\n[![GitHub forks](https://img.shields.io/github/forks/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/network)\n[![GitHub stars](https://img.shields.io/github/stars/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/stargazers)\n[![Known Vulnerabilities](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated?targetFile=package.json)\n[![DeepScan grade](https://deepscan.io/api/teams/3417/projects/5068/branches/39495/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3417&pid=5068&bid=39495)\n\n### Version 7.0.0 Beta (04/06/2020)\n\nJS methods refactored for a more modern approach:\n- [As its own](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#as-its-own)\n  - [FCM.clearAllNotifications()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmclearallnotifications)\n  - [FCM.createNotificationChannel()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmcreatenotificationchannel)\n  - [FCM.getAPNSToken()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgetapnstoken)\n  - [FCM.getInitialPushPayload()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgetinitialpushpayload)\n  - [FCM.getToken()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgettoken)\n  - [FCM.hasPermission()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmhaspermission)\n  - [FCM.onNotification()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmonnotification)\n  - [FCM.onTokenRefresh()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmontokenrefresh)\n  - [FCM.requestPushPermission()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmrequestpushpermission)\n  - [FCM.subscribeToTopic()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmsubscribetotopic)\n  - [FCM.unsubscribeFromTopic()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmunsubscribefromtopic)\n  - [FCM.eventTarget](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmeventtarget)\n- [With Ionic](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#with-ionic)\n  - [FCM.onNotification()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmonnotification-1)\n  - [FCM.onTokenRefresh()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmontokenrefresh-1)\n\n#### As its own\n\nThe JS functions are now as written bellow and do require Promise support. Which, for Android API 19 support, it can be fulfilled by a polyfill.\n\n##### FCM.clearAllNotifications()\n\nRemoves existing push notifications from the notifications center.\n```typescript\nawait FCM.clearAllNotifications();\n```\n\n##### FCM.createNotificationChannel()\n\nFor Android, some notification properties are only defined programmatically.\nChannel can define the default behavior for notifications on Android 8.0+.\nOnce a channel is created, it stays unchangeable until the user uninstalls the app.\n```typescript\nawait FCM.createNotificationChannel({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification\n  sound: \"alert_sound\", // In the \"alert_sound\" example, the file should located as resources/raw/alert_sound.mp3\n  lights: true, // enable lights for notifications\n  vibration: true // enable vibration for notifications\n});\n```\n\n##### FCM.getAPNSToken()\n\nGets iOS device's current APNS token.\n```typescript\nconst apnsToken: string = await FCM.getAPNSToken();\n```\n\n##### FCM.getInitialPushPayload()\n\nRetrieves the message that, on tap, opened the app.\n```typescript\nconst pushPayload: object = await FCM.getInitialPushPayload()\n```\n\n##### FCM.getToken()\n\nGets device's current registration id.\n```typescript\nconst fcmToken: string = await FCM.getToken()\n```\n\n##### FCM.hasPermission()\n\nChecking for permissions on iOS. On android, it always returns `true`.\n```typescript\nconst doesIt: boolean = await FCM.hasPermission()\n```\n\n##### FCM.onNotification()\n\nCallback firing when receiving new notifications. It serves as a shortcut to listen to eventTarget's \"notification\" event.\n```typescript\nFCM.onNotification((payload: object) => {\n  // ...\n})\n```\n\n:warning: This doesn't re-trigger the initial push event, as it used to do. Alternatively, you can have access of the notification that started the app by calling the `FCM.getInitialPushPayload()`.\n\n##### FCM.onTokenRefresh()\n\nCallback firing when receiving a new Firebase token. It serves as a shortcut to listen to eventTarget's \"tokenRefresh\" event.\n```typescript\nFCM.onTokenRefresh((fcmToken: string) => {\n  // ...\n})\n```\n\n##### FCM.requestPushPermission()\n\nRequest push notification permission, alerting the user if it not have yet decided.\n```typescript\nconst wasPermissionGiven: boolean = await FCM.requestPushPermission({\n  ios9Support: {\n    timeout: 10,  // How long it will wait for a decision from the user before returning `false`\n    interval: 0.3 // How long between each permission verification\n  }\n})\n```\n\n##### FCM.subscribeToTopic()\n\nSubscribes you to a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.subscribeToTopic(topic)\n```\n\n##### FCM.unsubscribeFromTopic()\n\nUnsubscribes you from a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.unsubscribeFromTopic(topic)\n```\n\n##### FCM.eventTarget\n\nEventTarget object for native-sourced custom events. Useful for more advanced listening handling.\n```typescript\nconst listener = (data) => {\n  const payload = data.detail\n  // ...\n}\nFCM.eventTarget.addEventListener(\"notification\", listener, false);\n// ...\nFCM.eventTarget.removeEventListener(\"notification\", listener, false);\n```\n\n#### With Ionic\n\nIonic support was implemented as part of this plugin to allow users to have access to newer features with the type support. It is available in 3 flavors:\n- Ionic v5:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic\";\n```\n- Ionic ngx:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/ngx\";\n```\n- Ionic v4:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/v4\";\n```\n\nIt brings the same behavior as the native implementation, except for `FCM.onNotification()` and `FCM.onTokenRefresh()`, which gain rxjs' Observable support.\n\n##### FCM.onNotification()\n\nEvent firing when receiving new notifications.\n```typescript\nthis.fcm.onNotification().subscribe((payload: object) => {\n  // ...\n});\n```\n\n##### FCM.onTokenRefresh()\n\nEvent firing when receiving new notifications.\n```typescript\nthis.fcm.onTokenRefresh().subscribe((token: string) => {\n  // ...\n});\n```\n\n### Optional FCM Image Support for Cordova iOS\n\nAfter a lot of work, the first release of the plugin https://github.com/andrehtissot/cordova-plugin-fcm-image-support is out. Which should enable the support, just by installing it.\n\n### Version 6.4.0 (21/05/2020)\n\nThe `FCMPlugin.requestPushPermissionIOS` function now, not only triggers the request alert, but also returns, as boolean, if the permission was given.\n\n```javascript\nFCMPlugin.requestPushPermissionIOS(\n  function(wasPermissionGiven) {\n    console.info(\"Was permission given: \"+wasPermissionGiven);\n  },\n  function(error) {\n    console.error(error);\n  },\n  ios9Support: {\n    timeout: 10,  // How long it will wait for a decision from the user before returning `false`\n    interval: 0.3 // How long between each permission verification\n  }\n);\n```\n\nNote:\nOn iOS 9, there is no way to know if the user has denied the permissions or he has not yet decided.\nFor this reason, specifically for iOS 9, after presenting the alert, a timed loop waits until it knows that the user has either given the permissions or that the time has expired.\nOn iOS 10+, the return is given as soon as the user has selected, ignoring these options.\n\n### Version 6.3.0 (27/04/2020)\n\nFCMPlugin.createNotificationChannelAndroid improved, now accepting three other options: \"sound\", \"lights\" and \"vibration\", like in:\n```javascript\nFCMPlugin.createNotificationChannelAndroid({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification\n  sound: \"alert_sound\", // In the \"alert_sound\" example, the file should located as resources/raw/alert_sound.mp3\n  lights: true, // enable lights for notifications\n  vibration: true // enable vibration for notifications\n});\n```\n\n### Version 6.2.0 (26/04/2020)\n\nIOS 9 support reintroduced.\n\n### Version 6.1.0 (24/04/2020)\n\nFor Android, some notification properties are only defined programmatically, one of those is channel.\nChannel can define the default behavior for notifications on Android 8.0+.\nThis feature was meant to bring the channel-only configurations importance and visibility:\n\n```javascript\nFCMPlugin.createNotificationChannelAndroid({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification \n});\n```\n\n:warning: Once a channel is created, it stays unchangeable until the user uninstalls the app.\n\nTo have a notification to use the channel, you have to add to the push notification payload the key `android_channel_id` with the id given to `createNotificationChannelAndroid` (https://firebase.google.com/docs/cloud-messaging/http-server-ref#notification-payload-support)\n\n### Version 6.0.1 (20/04/2020)\n\nAs a hotfix to avoid incompatibility with cordova-plugin-ionic-webview, the the changes requested for cordova support (https://cordova.apache.org/howto/2020/03/18/wkwebviewonly) will not be automatic applied.\n\n### Version 6.0.0 (18/04/2020)\n\nOn iOS, first run doesn't automatically request Push permission.\n\nThe permission, as it is still required, may now be requested from javascript at any moment by executing:\n```javascript\n//FCMPlugin.requestPushPermissionIOS( successCallback(), errorCallback(err) );\nFCMPlugin.requestPushPermissionIOS();\n```\n\n### Version 5.1.0 (18/04/2020)\n\nReplaced `UIWebView` with `WKWebView`, as required by Apple (https://developer.apple.com/documentation/uikit/uiwebview).\n\nFor a smooth upgrade, the changes requested for cordova support (https://cordova.apache.org/howto/2020/03/18/wkwebviewonly) are applied automatically.\n\n### Version 5.0.0 (16/04/2020)\n\nFor both platforms:\n- Not only copies, from application root, the Google Services configuration files on build, but also on install;\n- `onFirebaseDataNotificationIOS` removed, as relied on upstream socket connection, which will is deprecated and will be removed in Firebase 7 (https://firebase.google.com/support/release-notes/ios#fcm, announced in February 25, 2020).\n\nFor iOS:\n- On install \"Remote Notification\" is set as a \"Background Mode\" capacity automatically;\n- Firebase now is handled manually, due to complications of auto-swizzling;\n- Firebase dependencies are now set to 6.21.0;\n- Delayed Firebase registration, by 300ms, to avoid deadlock issue with Watchdog;\n- Removed support for iOS 9.\n\nFor Android:\n- Demonstrative code, for custom notifications, was removed and its imports of androidx classes to improve compatibility with older cordova plugins.\n\n### Version 4.6.0 (04/04/2020)\n\nFor the IOS, if app is on the foreground and the app receives a `data` push notification, the data can be retrieved by setting the callback to the new method: `FCMPlugin.onFirebaseDataNotificationIOS` [Deprecated].\n\n```javascript\nFCMPlugin.onFirebaseDataNotificationIOS(\n  function(payload) {\n    console.info(\"Message id: \"+payload.messageID)\n    console.info(\"Data parameters: \"+payload.appData)\n  }\n);\n```\n\nThis method is specifically implemented on IOS due to specific payload format ([src/FCMPlugin.d.ts](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/master/src/FCMPlugin.d.ts)).\n\n\n### Version 4.5.1 (30/03/2020)\n\nDue to a bug introduced in v4.4.3, the file `platforms/android/app/src/main/res/values/strings.xml` had two tags included on install, tags which, on build, are also included by cordova-android@8.x.x. Hence failing the build process.\n\nTo apply the fix, install the new version and remove these two tags from your values/strings.xml:\n* `<string name=\"google_app_id\">...</string>`\n* `<string name=\"google_api_key\">...</string>`\n\n### Version 4.2.0 (24/02/2020)\n\n`ANDROID_DEFAULT_NOTIFICATION_ICON` included as a variable.\n\nTo define the default icon for notifications (`com.google.firebase.messaging.default_notification_icon`), install this plugin like:\n```bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/notification_icon\"\n```\n\n### Version 4.1.0 (26/10/2019)\n\nOlder notifications can be cleared from notification center.\nWorks on both IOS and Android.\n\n```javascript\n//FCMPlugin.clearAllNotifications( successCallback(msg), errorCallback(err) );\nFCMPlugin.clearAllNotifications();\n```\n\n### Version 4.0.0 (12/10/2019)\nThe old `FCMPlugin.getToken` is focused on retrieving the FCM Token.\nFor the IOS, APNS token can now be retrieved by the new method:\n\n```javascript\nFCMPlugin.getAPNSToken(\n  function(token) {\n    console.info(\"Retrieved token: \"+token)\n  },\n  function(error) {\n    console.error(error);\n  }\n);\n```\n\nOn android, it will always return `null`.\n\nThe APNS token, once given, should not change for the same user (as commented on in https://stackoverflow.com/questions/6652242/does-the-apns-device-token-ever-change-once-created).\n\nAlthough, contrary to APNS, the FCM tokens do expire, and for this reason, `FCMPlugin.onTokenRefresh` will be called with the new one FCM token.\n\n### Version 3.2.0 (16/09/2019)\n#### Checking for permissions\nUseful for IOS. On android, it will always return `true`.\n\n```javascript\nFCMPlugin.hasPermission(function(doesIt){\n    // doesIt === true => yes, push was allowed\n    // doesIt === false => nope, push will not be available\n    // doesIt === null => still not answered, recommended checking again later\n    if(doesIt) {\n        haveFun();\n    }\n});\n```\n\n### Version 2.1.2 (03/06/2017)\n- Tested on Android and iOS using Cordova cli 6.4.0, Cordova android 6.0.0 and Cordova ios 4.3.1\n- Available sdk functions: onTokenRefresh, getToken, subscribeToTopic, unsubscribeFromTopic and onNotification\n- 'google-services.json' and 'GoogleService-Info.plist' are added automatically from Cordova project root to platform folders\n- Added data payload parameter to check whether the user tapped on the notification or was received while in foreground.\n- **Free testing server available for free! https://cordova-plugin-fcm.appspot.com**\n\n## Installation\nMake sure you have ‘google-services.json’ for Android or  ‘GoogleService-Info.plist’ for iOS in your Cordova project root folder. You don´t need to configure anything else in order to have push notification working for both platforms, everything is magic.\n```Bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\n### Firebase configuration files\nGet the needed configuration files for Android or iOS from the Firebase Console (see docs: https://firebase.google.com/docs/).\n\n### Android compilation details\nPut the downloaded file 'google-services.json' in the Cordova project root folder.\n\nYou will need to ensure that you have installed the appropiate Android SDK libraries.\n\n:warning: For Android >5.0 status bar icon, you must include transparent solid color icon with name 'fcm_push_icon.png' in the 'res' folder in the same way you add the other application icons.\nIf you do not set this resource, then the SDK will use the default icon for your app which may not meet the standards for Android >5.0.\n\n### iOS compilation details\nPut the downloaded file 'GoogleService-Info.plist' in the Cordova project root folder.\n\n## Usage\n\n:warning: It's highly recommended to use REST API to send push notifications because Firebase console does not have all the functionalities. **Pay attention to the payload example in order to use the plugin properly**.  \nYou can also test your notifications with the free testing server: https://cordova-plugin-fcm.appspot.com\n\n### Receiving Token Refresh\n\n```javascript\n//FCMPlugin.onTokenRefresh( onTokenRefreshCallback(token) );\n//Note that this callback will be fired everytime a new token is generated, including the first time.\nFCMPlugin.onTokenRefresh(function(token){\n    alert( token );\n});\n```\n\n### Get token\n\n```javascript\n//FCMPlugin.getToken( successCallback(token), errorCallback(err) );\n//Keep in mind the function will return null if the token has not been established yet.\nFCMPlugin.getToken(function(token){\n    alert(token);\n});\n```\n\n### Subscribe to topic\n\n```javascript\n//FCMPlugin.subscribeToTopic( topic, successCallback(msg), errorCallback(err) );\n//All devices are subscribed automatically to 'all' and 'ios' or 'android' topic respectively.\n//Must match the following regular expression: \"[a-zA-Z0-9-_.~%]{1,900}\".\nFCMPlugin.subscribeToTopic('topicExample');\n```\n\n### Unsubscribe from topic\n\n```javascript\n//FCMPlugin.unsubscribeFromTopic( topic, successCallback(msg), errorCallback(err) );\nFCMPlugin.unsubscribeFromTopic('topicExample');\n```\n\n### Receiving push notification data\n\n```javascript\n//FCMPlugin.onNotification( onNotificationCallback(data), successCallback(msg), errorCallback(err) )\n//Here you define your application behaviour based on the notification data.\nFCMPlugin.onNotification(function(data){\n    if(data.wasTapped){\n      //Notification was received on device tray and tapped by the user.\n      alert( JSON.stringify(data) );\n    }else{\n      //Notification was received in foreground. Maybe the user needs to be notified.\n      alert( JSON.stringify(data) );\n    }\n});\n```\n\n### Send notification. Payload example (REST API)\nFull documentation: https://firebase.google.com/docs/cloud-messaging/http-server-ref  \nFree testing server: https://cordova-plugin-fcm.appspot.com\n```javascript\n//POST: https://fcm.googleapis.com/fcm/send\n//HEADER: Content-Type: application/json\n//HEADER: Authorization: key=AIzaSy*******************\n{\n  \"notification\":{\n    \"title\":\"Notification title\",\n    \"body\":\"Notification body\",\n    \"sound\":\"default\",\n    \"click_action\":\"FCM_PLUGIN_ACTIVITY\",\n    \"icon\":\"fcm_push_icon\"\n  },\n  \"data\":{\n    \"param1\":\"value1\",\n    \"param2\":\"value2\"\n  },\n    \"to\":\"/topics/topicExample\",\n    \"priority\":\"high\",\n    \"restricted_package_name\":\"\"\n}\n//sound: optional field if you want sound with the notification\n//click_action: must be present with the specified value for Android\n//icon: white icon resource name for Android >5.0\n//data: put any \"param\":\"value\" and retreive them in the JavaScript notification callback\n//to: device token or /topic/topicExample\n//priority: must be set to \"high\" for delivering notifications on closed iOS apps\n//restricted_package_name: optional field if you want to send only to a restricted app package (i.e: com.myapp.test)\n```\n\n## How it works\nSend a push notification to a single device or topic.\n\n+ Application is in foreground:\n\n   The notification data is received in the JavaScript callback without notification bar message (this is the normal behaviour of mobile push notifications).\n   \n+ Application is in background or closed:\n\n  1. The device displays the notification message in the device notification bar.\n  2. If the user taps the notification, the application comes to foreground and the notification data is received in the JavaScript callback.\n  3. If the user does not tap the notification but opens the applicacion, nothing happens until the notification is tapped.\n\n\n## Authorship\nThis is a fork from https://github.com/fechanique/cordova-plugin-fcm, which has dependencies versions upgraded, jitpack and cocoapods support, and newer features.\n","readmeFilename":"README.md","gitHead":"d827173e47e1566bea6b40d9790697fbd5fd9e69","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.0-beta.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-lTma8Gt4mly41ovJ/nekh36eKlX09DNJa4HpyPjbQv8jS1PH9fU0O3lJ7kpwNkymE6IxgqzwpPBfqTp/v9qkUg==","shasum":"80f4f9fc89d6736b5fad91b41b17ffcfb54f191e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.0-beta.0.tgz","fileCount":102,"unpackedSize":330428,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2TGICRA9TVsSAnZWagAAU6oP/0TR5ZT+Ul46RbzIxEiD\nH/pnBdsRXJZkdrxk3C00RAxv7jdlrH1BsmRYqllpfO6VyLkijLrWypgrqkqG\ngMkz65cEMblKXdtigZbY1hZwHJuRvle87v4+pDk7RiPpPMvkHOgGNNx8eifn\nJZyYnHvwXl8Xmt+Bx2CrysOl4bTQ+UiUIhiJ5EQRLQ92IfQjJkfJ9h9eiJkL\n6rjel1LxfcNhf01TZYYeG3LN29iYnGep+iIs83Y7VVbimtKNCqqa1LwlRuy7\njG6que1xafZ38b5tTZrBS6yidCcmdEJdCcPW0QmuabjwAA4eFG4viGWS63Ya\n8+b3qbsFX1rfZkQq7VFazXOtAfhqezEDxIyPZTy3SxB1jfXiXrXo6WKSIIlo\nwJ76X2WpRTmYEQBQwxvupKG5jNBsq6O5qKc3+d7L9CpIRn4MVx2PyNgEWw2S\nem2UT5wOXxr4o1JtR+Ox0L7hY1wcuPE61QKmKua3OgN5t+HMOG2GVRFP1XqW\nFA8vWFgvtVYa9zabH8ACjDg0IwAWPk6Hakpr42XscDW427pMK4fKGSdajT/7\nt5T3hFKizDyqRfYaafx3PRLHLhthxRRXVK9QywnnEK7oup6SsIE8Aj1PCigF\nrWws9BAPUi1oYyhM0YbW6K7n6cMc2zKCDH/7WeUgJVLLxAT70rcdo8p41KAz\nkZRn\r\n=L+rj\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCs3bB7sSMqWr9pTH+07oHz6iIGIOoc2m92AYiX7PNInAIgGmxC+eLXkQJWso0HE+veZe5ljmJDa17SOjy9exsnuu4="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.0-beta.0_1591292296046_0.6355258547871698"},"_hasShrinkwrap":false},"7.0.0-beta.1":{"version":"7.0.0-beta.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/www -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0","typescript":"^3.9.3","rxjs":"^6.5.5"},"readme":"# Google Firebase Cloud Messaging Cordova Push Plugin\n> Extremely easy plug&play push notification plugin for Cordova applications with Google Firebase FCM.\n\n[![npm downloads](https://img.shields.io/npm/dt/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm per month](https://img.shields.io/npm/dm/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm version](https://img.shields.io/npm/v/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues)\n[![GitHub forks](https://img.shields.io/github/forks/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/network)\n[![GitHub stars](https://img.shields.io/github/stars/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/stargazers)\n[![Known Vulnerabilities](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated?targetFile=package.json)\n[![DeepScan grade](https://deepscan.io/api/teams/3417/projects/5068/branches/39495/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3417&pid=5068&bid=39495)\n\n### Version 7.0.0 Beta (04/06/2020)\n\nJS methods refactored for a more modern approach:\n- [As its own](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#as-its-own)\n  - [FCM.clearAllNotifications()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmclearallnotifications)\n  - [FCM.createNotificationChannel()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmcreatenotificationchannel)\n  - [FCM.getAPNSToken()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgetapnstoken)\n  - [FCM.getInitialPushPayload()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgetinitialpushpayload)\n  - [FCM.getToken()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgettoken)\n  - [FCM.hasPermission()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmhaspermission)\n  - [FCM.onNotification()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmonnotification)\n  - [FCM.onTokenRefresh()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmontokenrefresh)\n  - [FCM.requestPushPermission()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmrequestpushpermission)\n  - [FCM.subscribeToTopic()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmsubscribetotopic)\n  - [FCM.unsubscribeFromTopic()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmunsubscribefromtopic)\n  - [FCM.eventTarget](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmeventtarget)\n- [With Ionic](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#with-ionic)\n  - [FCM.onNotification()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmonnotification-1)\n  - [FCM.onTokenRefresh()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmontokenrefresh-1)\n\n#### As its own\n\nThe JS functions are now as written bellow and do require Promise support. Which, for Android API 19 support, it can be fulfilled by a polyfill.\n\n##### FCM.clearAllNotifications()\n\nRemoves existing push notifications from the notifications center.\n```typescript\nawait FCM.clearAllNotifications();\n```\n\n##### FCM.createNotificationChannel()\n\nFor Android, some notification properties are only defined programmatically.\nChannel can define the default behavior for notifications on Android 8.0+.\nOnce a channel is created, it stays unchangeable until the user uninstalls the app.\n```typescript\nawait FCM.createNotificationChannel({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification\n  sound: \"alert_sound\", // In the \"alert_sound\" example, the file should located as resources/raw/alert_sound.mp3\n  lights: true, // enable lights for notifications\n  vibration: true // enable vibration for notifications\n});\n```\n\n##### FCM.getAPNSToken()\n\nGets iOS device's current APNS token.\n```typescript\nconst apnsToken: string = await FCM.getAPNSToken();\n```\n\n##### FCM.getInitialPushPayload()\n\nRetrieves the message that, on tap, opened the app.\n```typescript\nconst pushPayload: object = await FCM.getInitialPushPayload()\n```\n\n##### FCM.getToken()\n\nGets device's current registration id.\n```typescript\nconst fcmToken: string = await FCM.getToken()\n```\n\n##### FCM.hasPermission()\n\nChecking for permissions on iOS. On android, it always returns `true`.\n```typescript\nconst doesIt: boolean = await FCM.hasPermission()\n```\n\n##### FCM.onNotification()\n\nCallback firing when receiving new notifications. It serves as a shortcut to listen to eventTarget's \"notification\" event.\n```typescript\nFCM.onNotification((payload: object) => {\n  // ...\n})\n```\n\n:warning: This doesn't re-trigger the initial push event, as it used to do. Alternatively, you can have access of the notification that started the app by calling the `FCM.getInitialPushPayload()`.\n\n##### FCM.onTokenRefresh()\n\nCallback firing when receiving a new Firebase token. It serves as a shortcut to listen to eventTarget's \"tokenRefresh\" event.\n```typescript\nFCM.onTokenRefresh((fcmToken: string) => {\n  // ...\n})\n```\n\n##### FCM.requestPushPermission()\n\nRequest push notification permission, alerting the user if it not have yet decided.\n```typescript\nconst wasPermissionGiven: boolean = await FCM.requestPushPermission({\n  ios9Support: {\n    timeout: 10,  // How long it will wait for a decision from the user before returning `false`\n    interval: 0.3 // How long between each permission verification\n  }\n})\n```\n\n##### FCM.subscribeToTopic()\n\nSubscribes you to a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.subscribeToTopic(topic)\n```\n\n##### FCM.unsubscribeFromTopic()\n\nUnsubscribes you from a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.unsubscribeFromTopic(topic)\n```\n\n##### FCM.eventTarget\n\nEventTarget object for native-sourced custom events. Useful for more advanced listening handling.\n```typescript\nconst listener = (data) => {\n  const payload = data.detail\n  // ...\n}\nFCM.eventTarget.addEventListener(\"notification\", listener, false);\n// ...\nFCM.eventTarget.removeEventListener(\"notification\", listener, false);\n```\n\n#### With Ionic\n\nIonic support was implemented as part of this plugin to allow users to have access to newer features with the type support. It is available in 3 flavors:\n- Ionic v5:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic\";\n```\n- Ionic ngx:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/ngx\";\n```\n- Ionic v4:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/v4\";\n```\n\nIt brings the same behavior as the native implementation, except for `FCM.onNotification()` and `FCM.onTokenRefresh()`, which gain rxjs' Observable support.\n\n##### FCM.onNotification()\n\nEvent firing when receiving new notifications.\n```typescript\nthis.fcm.onNotification().subscribe((payload: object) => {\n  // ...\n});\n```\n\n##### FCM.onTokenRefresh()\n\nEvent firing when receiving new notifications.\n```typescript\nthis.fcm.onTokenRefresh().subscribe((token: string) => {\n  // ...\n});\n```\n\n### Optional FCM Image Support for Cordova iOS\n\nAfter a lot of work, the first release of the plugin https://github.com/andrehtissot/cordova-plugin-fcm-image-support is out. Which should enable the support, just by installing it.\n\n### Version 6.4.0 (21/05/2020)\n\nThe `FCMPlugin.requestPushPermissionIOS` function now, not only triggers the request alert, but also returns, as boolean, if the permission was given.\n\n```javascript\nFCMPlugin.requestPushPermissionIOS(\n  function(wasPermissionGiven) {\n    console.info(\"Was permission given: \"+wasPermissionGiven);\n  },\n  function(error) {\n    console.error(error);\n  },\n  ios9Support: {\n    timeout: 10,  // How long it will wait for a decision from the user before returning `false`\n    interval: 0.3 // How long between each permission verification\n  }\n);\n```\n\nNote:\nOn iOS 9, there is no way to know if the user has denied the permissions or he has not yet decided.\nFor this reason, specifically for iOS 9, after presenting the alert, a timed loop waits until it knows that the user has either given the permissions or that the time has expired.\nOn iOS 10+, the return is given as soon as the user has selected, ignoring these options.\n\n### Version 6.3.0 (27/04/2020)\n\nFCMPlugin.createNotificationChannelAndroid improved, now accepting three other options: \"sound\", \"lights\" and \"vibration\", like in:\n```javascript\nFCMPlugin.createNotificationChannelAndroid({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification\n  sound: \"alert_sound\", // In the \"alert_sound\" example, the file should located as resources/raw/alert_sound.mp3\n  lights: true, // enable lights for notifications\n  vibration: true // enable vibration for notifications\n});\n```\n\n### Version 6.2.0 (26/04/2020)\n\nIOS 9 support reintroduced.\n\n### Version 6.1.0 (24/04/2020)\n\nFor Android, some notification properties are only defined programmatically, one of those is channel.\nChannel can define the default behavior for notifications on Android 8.0+.\nThis feature was meant to bring the channel-only configurations importance and visibility:\n\n```javascript\nFCMPlugin.createNotificationChannelAndroid({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification \n});\n```\n\n:warning: Once a channel is created, it stays unchangeable until the user uninstalls the app.\n\nTo have a notification to use the channel, you have to add to the push notification payload the key `android_channel_id` with the id given to `createNotificationChannelAndroid` (https://firebase.google.com/docs/cloud-messaging/http-server-ref#notification-payload-support)\n\n### Version 6.0.1 (20/04/2020)\n\nAs a hotfix to avoid incompatibility with cordova-plugin-ionic-webview, the the changes requested for cordova support (https://cordova.apache.org/howto/2020/03/18/wkwebviewonly) will not be automatic applied.\n\n### Version 6.0.0 (18/04/2020)\n\nOn iOS, first run doesn't automatically request Push permission.\n\nThe permission, as it is still required, may now be requested from javascript at any moment by executing:\n```javascript\n//FCMPlugin.requestPushPermissionIOS( successCallback(), errorCallback(err) );\nFCMPlugin.requestPushPermissionIOS();\n```\n\n### Version 5.1.0 (18/04/2020)\n\nReplaced `UIWebView` with `WKWebView`, as required by Apple (https://developer.apple.com/documentation/uikit/uiwebview).\n\nFor a smooth upgrade, the changes requested for cordova support (https://cordova.apache.org/howto/2020/03/18/wkwebviewonly) are applied automatically.\n\n### Version 5.0.0 (16/04/2020)\n\nFor both platforms:\n- Not only copies, from application root, the Google Services configuration files on build, but also on install;\n- `onFirebaseDataNotificationIOS` removed, as relied on upstream socket connection, which will is deprecated and will be removed in Firebase 7 (https://firebase.google.com/support/release-notes/ios#fcm, announced in February 25, 2020).\n\nFor iOS:\n- On install \"Remote Notification\" is set as a \"Background Mode\" capacity automatically;\n- Firebase now is handled manually, due to complications of auto-swizzling;\n- Firebase dependencies are now set to 6.21.0;\n- Delayed Firebase registration, by 300ms, to avoid deadlock issue with Watchdog;\n- Removed support for iOS 9.\n\nFor Android:\n- Demonstrative code, for custom notifications, was removed and its imports of androidx classes to improve compatibility with older cordova plugins.\n\n### Version 4.6.0 (04/04/2020)\n\nFor the IOS, if app is on the foreground and the app receives a `data` push notification, the data can be retrieved by setting the callback to the new method: `FCMPlugin.onFirebaseDataNotificationIOS` [Deprecated].\n\n```javascript\nFCMPlugin.onFirebaseDataNotificationIOS(\n  function(payload) {\n    console.info(\"Message id: \"+payload.messageID)\n    console.info(\"Data parameters: \"+payload.appData)\n  }\n);\n```\n\nThis method is specifically implemented on IOS due to specific payload format ([src/FCMPlugin.d.ts](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/master/src/FCMPlugin.d.ts)).\n\n\n### Version 4.5.1 (30/03/2020)\n\nDue to a bug introduced in v4.4.3, the file `platforms/android/app/src/main/res/values/strings.xml` had two tags included on install, tags which, on build, are also included by cordova-android@8.x.x. Hence failing the build process.\n\nTo apply the fix, install the new version and remove these two tags from your values/strings.xml:\n* `<string name=\"google_app_id\">...</string>`\n* `<string name=\"google_api_key\">...</string>`\n\n### Version 4.2.0 (24/02/2020)\n\n`ANDROID_DEFAULT_NOTIFICATION_ICON` included as a variable.\n\nTo define the default icon for notifications (`com.google.firebase.messaging.default_notification_icon`), install this plugin like:\n```bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/notification_icon\"\n```\n\n### Version 4.1.0 (26/10/2019)\n\nOlder notifications can be cleared from notification center.\nWorks on both IOS and Android.\n\n```javascript\n//FCMPlugin.clearAllNotifications( successCallback(msg), errorCallback(err) );\nFCMPlugin.clearAllNotifications();\n```\n\n### Version 4.0.0 (12/10/2019)\nThe old `FCMPlugin.getToken` is focused on retrieving the FCM Token.\nFor the IOS, APNS token can now be retrieved by the new method:\n\n```javascript\nFCMPlugin.getAPNSToken(\n  function(token) {\n    console.info(\"Retrieved token: \"+token)\n  },\n  function(error) {\n    console.error(error);\n  }\n);\n```\n\nOn android, it will always return `null`.\n\nThe APNS token, once given, should not change for the same user (as commented on in https://stackoverflow.com/questions/6652242/does-the-apns-device-token-ever-change-once-created).\n\nAlthough, contrary to APNS, the FCM tokens do expire, and for this reason, `FCMPlugin.onTokenRefresh` will be called with the new one FCM token.\n\n### Version 3.2.0 (16/09/2019)\n#### Checking for permissions\nUseful for IOS. On android, it will always return `true`.\n\n```javascript\nFCMPlugin.hasPermission(function(doesIt){\n    // doesIt === true => yes, push was allowed\n    // doesIt === false => nope, push will not be available\n    // doesIt === null => still not answered, recommended checking again later\n    if(doesIt) {\n        haveFun();\n    }\n});\n```\n\n### Version 2.1.2 (03/06/2017)\n- Tested on Android and iOS using Cordova cli 6.4.0, Cordova android 6.0.0 and Cordova ios 4.3.1\n- Available sdk functions: onTokenRefresh, getToken, subscribeToTopic, unsubscribeFromTopic and onNotification\n- 'google-services.json' and 'GoogleService-Info.plist' are added automatically from Cordova project root to platform folders\n- Added data payload parameter to check whether the user tapped on the notification or was received while in foreground.\n- **Free testing server available for free! https://cordova-plugin-fcm.appspot.com**\n\n## Installation\nMake sure you have ‘google-services.json’ for Android or  ‘GoogleService-Info.plist’ for iOS in your Cordova project root folder. You don´t need to configure anything else in order to have push notification working for both platforms, everything is magic.\n```Bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\n### Firebase configuration files\nGet the needed configuration files for Android or iOS from the Firebase Console (see docs: https://firebase.google.com/docs/).\n\n### Android compilation details\nPut the downloaded file 'google-services.json' in the Cordova project root folder.\n\nYou will need to ensure that you have installed the appropiate Android SDK libraries.\n\n:warning: For Android >5.0 status bar icon, you must include transparent solid color icon with name 'fcm_push_icon.png' in the 'res' folder in the same way you add the other application icons.\nIf you do not set this resource, then the SDK will use the default icon for your app which may not meet the standards for Android >5.0.\n\n### iOS compilation details\nPut the downloaded file 'GoogleService-Info.plist' in the Cordova project root folder.\n\n## Usage\n\n:warning: It's highly recommended to use REST API to send push notifications because Firebase console does not have all the functionalities. **Pay attention to the payload example in order to use the plugin properly**.  \nYou can also test your notifications with the free testing server: https://cordova-plugin-fcm.appspot.com\n\n### Receiving Token Refresh\n\n```javascript\n//FCMPlugin.onTokenRefresh( onTokenRefreshCallback(token) );\n//Note that this callback will be fired everytime a new token is generated, including the first time.\nFCMPlugin.onTokenRefresh(function(token){\n    alert( token );\n});\n```\n\n### Get token\n\n```javascript\n//FCMPlugin.getToken( successCallback(token), errorCallback(err) );\n//Keep in mind the function will return null if the token has not been established yet.\nFCMPlugin.getToken(function(token){\n    alert(token);\n});\n```\n\n### Subscribe to topic\n\n```javascript\n//FCMPlugin.subscribeToTopic( topic, successCallback(msg), errorCallback(err) );\n//All devices are subscribed automatically to 'all' and 'ios' or 'android' topic respectively.\n//Must match the following regular expression: \"[a-zA-Z0-9-_.~%]{1,900}\".\nFCMPlugin.subscribeToTopic('topicExample');\n```\n\n### Unsubscribe from topic\n\n```javascript\n//FCMPlugin.unsubscribeFromTopic( topic, successCallback(msg), errorCallback(err) );\nFCMPlugin.unsubscribeFromTopic('topicExample');\n```\n\n### Receiving push notification data\n\n```javascript\n//FCMPlugin.onNotification( onNotificationCallback(data), successCallback(msg), errorCallback(err) )\n//Here you define your application behaviour based on the notification data.\nFCMPlugin.onNotification(function(data){\n    if(data.wasTapped){\n      //Notification was received on device tray and tapped by the user.\n      alert( JSON.stringify(data) );\n    }else{\n      //Notification was received in foreground. Maybe the user needs to be notified.\n      alert( JSON.stringify(data) );\n    }\n});\n```\n\n### Send notification. Payload example (REST API)\nFull documentation: https://firebase.google.com/docs/cloud-messaging/http-server-ref  \nFree testing server: https://cordova-plugin-fcm.appspot.com\n```javascript\n//POST: https://fcm.googleapis.com/fcm/send\n//HEADER: Content-Type: application/json\n//HEADER: Authorization: key=AIzaSy*******************\n{\n  \"notification\":{\n    \"title\":\"Notification title\",\n    \"body\":\"Notification body\",\n    \"sound\":\"default\",\n    \"click_action\":\"FCM_PLUGIN_ACTIVITY\",\n    \"icon\":\"fcm_push_icon\"\n  },\n  \"data\":{\n    \"param1\":\"value1\",\n    \"param2\":\"value2\"\n  },\n    \"to\":\"/topics/topicExample\",\n    \"priority\":\"high\",\n    \"restricted_package_name\":\"\"\n}\n//sound: optional field if you want sound with the notification\n//click_action: must be present with the specified value for Android\n//icon: white icon resource name for Android >5.0\n//data: put any \"param\":\"value\" and retreive them in the JavaScript notification callback\n//to: device token or /topic/topicExample\n//priority: must be set to \"high\" for delivering notifications on closed iOS apps\n//restricted_package_name: optional field if you want to send only to a restricted app package (i.e: com.myapp.test)\n```\n\n## How it works\nSend a push notification to a single device or topic.\n\n+ Application is in foreground:\n\n   The notification data is received in the JavaScript callback without notification bar message (this is the normal behaviour of mobile push notifications).\n   \n+ Application is in background or closed:\n\n  1. The device displays the notification message in the device notification bar.\n  2. If the user taps the notification, the application comes to foreground and the notification data is received in the JavaScript callback.\n  3. If the user does not tap the notification but opens the applicacion, nothing happens until the notification is tapped.\n\n\n## Authorship\nThis is a fork from https://github.com/fechanique/cordova-plugin-fcm, which has dependencies versions upgraded, jitpack and cocoapods support, and newer features.\n","readmeFilename":"README.md","gitHead":"12e3693bcf8a6f21833e95ccff2977af9f1fec19","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.0-beta.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-39tpNVzK4i9IFAg7+QdJ5niwbm38uM7uLldqbmM2UqcHTpYuO8+kwZjhFSs577pbwEtrGBScfUO42Vn1EsEOVQ==","shasum":"dc3993a28df0803da8c7ef44b46a3e29990feb57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.0-beta.1.tgz","fileCount":104,"unpackedSize":334867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3XOOCRA9TVsSAnZWagAAOo8P/2c44D4ZcpDkh51wDRhz\nHQ/sCaFg17vUxkSNuRrFxPYtzCr7KxgHKGLxGpEkMCMSpjbI1eVeNrUjpWb+\n52ZlxIzyO/7ihvdgqIPc/AiQLS1Gj3wMFIkX7lnCNJHgrumPZpXBIQrBuGH5\n37fIn/oBcnPBHX70CkVirjXWh1wlOwXirT5lZv2AaPbCQhPVTrunkdu/eCwM\nrrQTso38K0wUU31Ctt8s0mjjeq7jxJs+bk52fg3yeC+0X7SLpl31wR1Lp6I3\ncAzh/gJauAfFGMvjFTXjcktDE49Djc16n2FbrUi+5rMOLdY95JaTey1SauCc\n//WWr5x3I5yayCVfTypIkYDbH0iy3oojRErlCB6JUtn+UKE7sqenKize9hfa\nir5oL7Zx4JXe+iunLgXdGE7w1Vywr901mUH6FBvhc7qkcg0TjgmhK1Z3at2i\ndHjiIS66sjmZz8k/KLtFu60uaWOub8pUrd2Die8yfXqNTk6uGIi3y+NA4QV5\nsP0+2DmezeelBNcxaCarYaGbhfnmXbfiUjacT8OlIEc7WVfAhLv+9aE4VDvH\nE1cj1wf3StmKSsq+adDfVGui5/onBuLZguCyvLEXFFvRG7iVprIQ/xvd1odX\nhJKTthcEa0/ClPHVVYlQ57cKdfDZnKtOhfRDPg+3pL2QAsv6uNDclfrL29oY\n71PK\r\n=8Yr8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDc84NuxSr9Bgfv6WuaZGTY8g0DzjfBkwSMutu9e2FvkAIgF1p7l/ARJ6TfNBRVDKn93E2IXv/iBkh7m9Vl9Mybv1U="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.0-beta.1_1591571342049_0.24342147555636373"},"_hasShrinkwrap":false},"6.4.2":{"version":"6.4.2","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"7adcf88b9eee422f0c175eb7b3ca6adc3da64efc","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.4.2","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-+5M0FpuKrFdgm2H3aGux5ME2Zzp37wUZrx/3XllDtND0/S0GRLYYlQLzNDQSqaCfTLvezBGcUwmIteOAvZiUog==","shasum":"1efd7e7226cc9634dbf4cee8b9bf6abb6937c325","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.4.2.tgz","fileCount":72,"unpackedSize":257371,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3XP1CRA9TVsSAnZWagAARCsP/i7XzxTTUb9efKeT43N+\nCBr77w8Q79/2yKzi7QXhCjXqBGJZlcQiItx0ADi7EAPbd6KhFY7ZjJmNoLAR\ntYNVliIpknMchHe057gi7BMmgAX3l4vNZu+/B9xOfmk8YaKwcANqwK843qAa\nDXYqSYNIcbXQtsvxwo4tGqIIWPxdvtAwxT8QWiTlwk+nhZIDxgB0vtNDBe74\nCji2Ioe2LJXVOATNcJ0vJ14OQAnkXvxy/16WHKMrCH8EODDVhLcTrLGs/qH6\n64yGkBTybHX+XCcSwCl0gfq9jP9gJDw18Im7ZSpNAfPHRIOr0v05/9n7MYxC\nBW58qXKK50Fbqg3+Um0I7FkSycTALcwkcXimeIsQ7YBiF0l2vxZJUpkbAP9W\nKqjwRksTO5Pf2QJWarUonIQTwSKDjAKrolrT9n0hfLjHrv6ErI191wsCQ8CW\nmba7GlsByvKcQJ2QVwxtYYmV4zB2/9UQ9/MPmo/RgihLhK3HTed/1Echo3qu\nOL+hfsgUYd8KJDHNSmF61BL+t+8KNpN/cgTVZLdewknSLd88WYhtpQJHWyjE\nmw50eqlaAxuc+vTy70gDCntWm6H2oJs48SSomWTUbUNdIyrE8k5ngo9EaHpt\n4OxfI9sn7A8mHhWvEy4G3CF9y9cOBYdyRswC+fKWVvyT1zPgYMUV8+TRU20M\nvuJV\r\n=UUXu\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFL7cp61Q+MbyZ2zFUHllJ44yLFO7uNtxz5I4lLkFpKiAiEAruGABNeoiknRDrclYF35d7fnlW67eyg9ibi9DnY9aQ8="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.4.2_1591571445017_0.6285770596410574"},"_hasShrinkwrap":false},"6.4.3":{"version":"6.4.3","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"src/FCMPlugin.d.ts","repo":"","issue":"","author":{"name":"André Augusto Tissot"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"engines":[],"englishdoc":"","gitHead":"e10224f8e627c476a117f0a9690ac2fc763bc551","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@6.4.3","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-BcJ84qbQ3FrF6FecyxeexYnkiZTl13uNiICSbD1fg9kGpowk7mq6JElxBww9CzMJygXvi82ANxZJQRMFjkzbvg==","shasum":"ceacfa2c8f8e7e9cc1cb9a1e68885081b942c726","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-6.4.3.tgz","fileCount":72,"unpackedSize":257443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3oTuCRA9TVsSAnZWagAAEUwQAI/+qz+S/T4QGfJoBk/w\n1Caln+SQVp+NQf+5TCcTLRsp6SZ88ee4cCGSsxTGSxJenhEWX5Ad52H8Z5rS\nTrq+Za77xn9wjnZ66zH3bULlezTkZjm4UDEqjm3eV1OgSC2pQb9SzwDJ5RB4\nSQeSFUII9CpCuYenjoC/Pxt+DL4qqUWQjVW2kpmzRxn2zmS6en1mrvCf+08x\n52sOO+9ZrKA8waHkVJEzRbMcQMm73Hzw39ZsA2N+v/WA0zQ+s96oK6OuKdUz\noqt1UpNzGSXnBPiQ7rvM3V+lq6tqOCD2oZECGXhI37EvZaDZoqOrgPehUTa4\n6I95U7Uxck5NbPwzvxJgmtaMS1ztXtFRo6tzuVSurTCp5DaGGybqCWJbuarZ\nPzJkhTDN6OlFysYznuZJRioPFd4uiJJ5bxJi02cPGANQ09dra8TvuLII1LKA\nWMXMwwb+AF2NoZiyEYW1wz8W5sr7I4mJ4iuqNUMUYY8BuoFpEVnAaSgz5Wzv\n4Nd5h7y/w3j0WGuDb2Lf9M8+3hTDxTEH/XxDyhsiivMUq05SP7kT5TMQ2S9V\npD7q+gjCUUCQ+6W18gCrL4ocQo+EgoNBIyRFpb8DPl8FWbaOiVTBig3/npZB\nrCR0NC05eeioRmOeVkk3b+XGGggvJmTREn9fAM/o5A+QqKm7dzx/GXArvc70\nlsh2\r\n=gEO7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCtsZnDDLBNYcDniSIYu2UOhYG79MTHx42l2ADHSvZ8ngIgf4MB4H9zjD4mg9+Xc+TqbT+0tn102dmC+SMErEiejEE="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_6.4.3_1591641325365_0.8534984870131466"},"_hasShrinkwrap":false},"7.0.0-beta.2":{"version":"7.0.0-beta.2","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"rxjs":"^6.5.5","typescript":"^3.9.5"},"readme":"# Google Firebase Cloud Messaging Cordova Push Plugin\n> Extremely easy plug&play push notification plugin for Cordova applications with Google Firebase FCM.\n\n[![npm downloads](https://img.shields.io/npm/dt/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm per month](https://img.shields.io/npm/dm/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm version](https://img.shields.io/npm/v/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues)\n[![GitHub forks](https://img.shields.io/github/forks/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/network)\n[![GitHub stars](https://img.shields.io/github/stars/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/stargazers)\n[![Known Vulnerabilities](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated?targetFile=package.json)\n[![DeepScan grade](https://deepscan.io/api/teams/3417/projects/5068/branches/39495/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3417&pid=5068&bid=39495)\n\n### Version 7.0.0 Beta (04/06/2020)\n\nJS methods refactored for a more modern approach:\n- [As its own](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#as-its-own)\n  - [FCM.clearAllNotifications()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmclearallnotifications)\n  - [FCM.createNotificationChannel()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmcreatenotificationchannel)\n  - [FCM.getAPNSToken()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgetapnstoken)\n  - [FCM.getInitialPushPayload()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgetinitialpushpayload)\n  - [FCM.getToken()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgettoken)\n  - [FCM.hasPermission()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmhaspermission)\n  - [FCM.onNotification()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmonnotification)\n  - [FCM.onTokenRefresh()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmontokenrefresh)\n  - [FCM.requestPushPermission()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmrequestpushpermission)\n  - [FCM.subscribeToTopic()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmsubscribetotopic)\n  - [FCM.unsubscribeFromTopic()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmunsubscribefromtopic)\n  - [FCM.eventTarget](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmeventtarget)\n- [With Ionic](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#with-ionic)\n  - [FCM.onNotification()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmonnotification-1)\n  - [FCM.onTokenRefresh()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmontokenrefresh-1)\n\n#### As its own\n\nThe JS functions are now as written bellow and do require Promise support. Which, for Android API 19 support, it can be fulfilled by a polyfill.\n\n##### FCM.clearAllNotifications()\n\nRemoves existing push notifications from the notifications center.\n```typescript\nawait FCM.clearAllNotifications();\n```\n\n##### FCM.createNotificationChannel()\n\nFor Android, some notification properties are only defined programmatically.\nChannel can define the default behavior for notifications on Android 8.0+.\nOnce a channel is created, it stays unchangeable until the user uninstalls the app.\n```typescript\nawait FCM.createNotificationChannel({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification\n  sound: \"alert_sound\", // In the \"alert_sound\" example, the file should located as resources/raw/alert_sound.mp3\n  lights: true, // enable lights for notifications\n  vibration: true // enable vibration for notifications\n});\n```\n\n##### FCM.getAPNSToken()\n\nGets iOS device's current APNS token.\n```typescript\nconst apnsToken: string = await FCM.getAPNSToken();\n```\n\n##### FCM.getInitialPushPayload()\n\nRetrieves the message that, on tap, opened the app.\n```typescript\nconst pushPayload: object = await FCM.getInitialPushPayload()\n```\n\n##### FCM.getToken()\n\nGets device's current registration id.\n```typescript\nconst fcmToken: string = await FCM.getToken()\n```\n\n##### FCM.hasPermission()\n\nChecking for permissions on iOS. On android, it always returns `true`.\n```typescript\nconst doesIt: boolean = await FCM.hasPermission()\n```\n\n##### FCM.onNotification()\n\nCallback firing when receiving new notifications. It serves as a shortcut to listen to eventTarget's \"notification\" event.\n```typescript\nFCM.onNotification((payload: object) => {\n  // ...\n})\n```\n\n:warning: This doesn't re-trigger the initial push event, as it used to do. Alternatively, you can have access of the notification that started the app by calling the `FCM.getInitialPushPayload()`.\n\n##### FCM.onTokenRefresh()\n\nCallback firing when receiving a new Firebase token. It serves as a shortcut to listen to eventTarget's \"tokenRefresh\" event.\n```typescript\nFCM.onTokenRefresh((fcmToken: string) => {\n  // ...\n})\n```\n\n##### FCM.requestPushPermission()\n\nRequest push notification permission, alerting the user if it not have yet decided.\n```typescript\nconst wasPermissionGiven: boolean = await FCM.requestPushPermission({\n  ios9Support: {\n    timeout: 10,  // How long it will wait for a decision from the user before returning `false`\n    interval: 0.3 // How long between each permission verification\n  }\n})\n```\n\n##### FCM.subscribeToTopic()\n\nSubscribes you to a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.subscribeToTopic(topic)\n```\n\n##### FCM.unsubscribeFromTopic()\n\nUnsubscribes you from a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.unsubscribeFromTopic(topic)\n```\n\n##### FCM.eventTarget\n\nEventTarget object for native-sourced custom events. Useful for more advanced listening handling.\n```typescript\nconst listener = (data) => {\n  const payload = data.detail\n  // ...\n}\nFCM.eventTarget.addEventListener(\"notification\", listener, false);\n// ...\nFCM.eventTarget.removeEventListener(\"notification\", listener, false);\n```\n\n#### With Ionic\n\nIonic support was implemented as part of this plugin to allow users to have access to newer features with the type support. It is available in 3 flavors:\n- Ionic v5:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic\";\n```\n- Ionic ngx:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/ngx\";\n```\n- Ionic v4:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/v4\";\n```\n\nIt brings the same behavior as the native implementation, except for `FCM.onNotification()` and `FCM.onTokenRefresh()`, which gain rxjs' Observable support.\n\n##### FCM.onNotification()\n\nEvent firing when receiving new notifications.\n```typescript\nthis.fcm.onNotification().subscribe((payload: object) => {\n  // ...\n});\n```\n\n##### FCM.onTokenRefresh()\n\nEvent firing when receiving new notifications.\n```typescript\nthis.fcm.onTokenRefresh().subscribe((token: string) => {\n  // ...\n});\n```\n\n### Optional FCM Image Support for Cordova iOS\n\nAfter a lot of work, the first release of the plugin https://github.com/andrehtissot/cordova-plugin-fcm-image-support is out. Which should enable the support, just by installing it.\n\n### Version 6.4.0 (21/05/2020)\n\nThe `FCMPlugin.requestPushPermissionIOS` function now, not only triggers the request alert, but also returns, as boolean, if the permission was given.\n\n```javascript\nFCMPlugin.requestPushPermissionIOS(\n  function(wasPermissionGiven) {\n    console.info(\"Was permission given: \"+wasPermissionGiven);\n  },\n  function(error) {\n    console.error(error);\n  },\n  ios9Support: {\n    timeout: 10,  // How long it will wait for a decision from the user before returning `false`\n    interval: 0.3 // How long between each permission verification\n  }\n);\n```\n\nNote:\nOn iOS 9, there is no way to know if the user has denied the permissions or he has not yet decided.\nFor this reason, specifically for iOS 9, after presenting the alert, a timed loop waits until it knows that the user has either given the permissions or that the time has expired.\nOn iOS 10+, the return is given as soon as the user has selected, ignoring these options.\n\n### Version 6.3.0 (27/04/2020)\n\nFCMPlugin.createNotificationChannelAndroid improved, now accepting three other options: \"sound\", \"lights\" and \"vibration\", like in:\n```javascript\nFCMPlugin.createNotificationChannelAndroid({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification\n  sound: \"alert_sound\", // In the \"alert_sound\" example, the file should located as resources/raw/alert_sound.mp3\n  lights: true, // enable lights for notifications\n  vibration: true // enable vibration for notifications\n});\n```\n\n### Version 6.2.0 (26/04/2020)\n\nIOS 9 support reintroduced.\n\n### Version 6.1.0 (24/04/2020)\n\nFor Android, some notification properties are only defined programmatically, one of those is channel.\nChannel can define the default behavior for notifications on Android 8.0+.\nThis feature was meant to bring the channel-only configurations importance and visibility:\n\n```javascript\nFCMPlugin.createNotificationChannelAndroid({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification \n});\n```\n\n:warning: Once a channel is created, it stays unchangeable until the user uninstalls the app.\n\nTo have a notification to use the channel, you have to add to the push notification payload the key `android_channel_id` with the id given to `createNotificationChannelAndroid` (https://firebase.google.com/docs/cloud-messaging/http-server-ref#notification-payload-support)\n\n### Version 6.0.1 (20/04/2020)\n\nAs a hotfix to avoid incompatibility with cordova-plugin-ionic-webview, the the changes requested for cordova support (https://cordova.apache.org/howto/2020/03/18/wkwebviewonly) will not be automatic applied.\n\n### Version 6.0.0 (18/04/2020)\n\nOn iOS, first run doesn't automatically request Push permission.\n\nThe permission, as it is still required, may now be requested from javascript at any moment by executing:\n```javascript\n//FCMPlugin.requestPushPermissionIOS( successCallback(), errorCallback(err) );\nFCMPlugin.requestPushPermissionIOS();\n```\n\n### Version 5.1.0 (18/04/2020)\n\nReplaced `UIWebView` with `WKWebView`, as required by Apple (https://developer.apple.com/documentation/uikit/uiwebview).\n\nFor a smooth upgrade, the changes requested for cordova support (https://cordova.apache.org/howto/2020/03/18/wkwebviewonly) are applied automatically.\n\n### Version 5.0.0 (16/04/2020)\n\nFor both platforms:\n- Not only copies, from application root, the Google Services configuration files on build, but also on install;\n- `onFirebaseDataNotificationIOS` removed, as relied on upstream socket connection, which will is deprecated and will be removed in Firebase 7 (https://firebase.google.com/support/release-notes/ios#fcm, announced in February 25, 2020).\n\nFor iOS:\n- On install \"Remote Notification\" is set as a \"Background Mode\" capacity automatically;\n- Firebase now is handled manually, due to complications of auto-swizzling;\n- Firebase dependencies are now set to 6.21.0;\n- Delayed Firebase registration, by 300ms, to avoid deadlock issue with Watchdog;\n- Removed support for iOS 9.\n\nFor Android:\n- Demonstrative code, for custom notifications, was removed and its imports of androidx classes to improve compatibility with older cordova plugins.\n\n### Version 4.6.0 (04/04/2020)\n\nFor the IOS, if app is on the foreground and the app receives a `data` push notification, the data can be retrieved by setting the callback to the new method: `FCMPlugin.onFirebaseDataNotificationIOS` [Deprecated].\n\n```javascript\nFCMPlugin.onFirebaseDataNotificationIOS(\n  function(payload) {\n    console.info(\"Message id: \"+payload.messageID)\n    console.info(\"Data parameters: \"+payload.appData)\n  }\n);\n```\n\nThis method is specifically implemented on IOS due to specific payload format ([src/FCMPlugin.d.ts](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/master/src/FCMPlugin.d.ts)).\n\n\n### Version 4.5.1 (30/03/2020)\n\nDue to a bug introduced in v4.4.3, the file `platforms/android/app/src/main/res/values/strings.xml` had two tags included on install, tags which, on build, are also included by cordova-android@8.x.x. Hence failing the build process.\n\nTo apply the fix, install the new version and remove these two tags from your values/strings.xml:\n* `<string name=\"google_app_id\">...</string>`\n* `<string name=\"google_api_key\">...</string>`\n\n### Version 4.2.0 (24/02/2020)\n\n`ANDROID_DEFAULT_NOTIFICATION_ICON` included as a variable.\n\nTo define the default icon for notifications (`com.google.firebase.messaging.default_notification_icon`), install this plugin like:\n```bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/notification_icon\"\n```\n\n### Version 4.1.0 (26/10/2019)\n\nOlder notifications can be cleared from notification center.\nWorks on both IOS and Android.\n\n```javascript\n//FCMPlugin.clearAllNotifications( successCallback(msg), errorCallback(err) );\nFCMPlugin.clearAllNotifications();\n```\n\n### Version 4.0.0 (12/10/2019)\nThe old `FCMPlugin.getToken` is focused on retrieving the FCM Token.\nFor the IOS, APNS token can now be retrieved by the new method:\n\n```javascript\nFCMPlugin.getAPNSToken(\n  function(token) {\n    console.info(\"Retrieved token: \"+token)\n  },\n  function(error) {\n    console.error(error);\n  }\n);\n```\n\nOn android, it will always return `null`.\n\nThe APNS token, once given, should not change for the same user (as commented on in https://stackoverflow.com/questions/6652242/does-the-apns-device-token-ever-change-once-created).\n\nAlthough, contrary to APNS, the FCM tokens do expire, and for this reason, `FCMPlugin.onTokenRefresh` will be called with the new one FCM token.\n\n### Version 3.2.0 (16/09/2019)\n#### Checking for permissions\nUseful for IOS. On android, it will always return `true`.\n\n```javascript\nFCMPlugin.hasPermission(function(doesIt){\n    // doesIt === true => yes, push was allowed\n    // doesIt === false => nope, push will not be available\n    // doesIt === null => still not answered, recommended checking again later\n    if(doesIt) {\n        haveFun();\n    }\n});\n```\n\n### Version 2.1.2 (03/06/2017)\n- Tested on Android and iOS using Cordova cli 6.4.0, Cordova android 6.0.0 and Cordova ios 4.3.1\n- Available sdk functions: onTokenRefresh, getToken, subscribeToTopic, unsubscribeFromTopic and onNotification\n- 'google-services.json' and 'GoogleService-Info.plist' are added automatically from Cordova project root to platform folders\n- Added data payload parameter to check whether the user tapped on the notification or was received while in foreground.\n- **Free testing server available for free! https://cordova-plugin-fcm.appspot.com**\n\n## Installation\nMake sure you have ‘google-services.json’ for Android or  ‘GoogleService-Info.plist’ for iOS in your Cordova project root folder. You don´t need to configure anything else in order to have push notification working for both platforms, everything is magic.\n```Bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\n### Firebase configuration files\nGet the needed configuration files for Android or iOS from the Firebase Console (see docs: https://firebase.google.com/docs/).\n\n### Android compilation details\nPut the downloaded file 'google-services.json' in the Cordova project root folder.\n\nYou will need to ensure that you have installed the appropiate Android SDK libraries.\n\n:warning: For Android >5.0 status bar icon, you must include transparent solid color icon with name 'fcm_push_icon.png' in the 'res' folder in the same way you add the other application icons.\nIf you do not set this resource, then the SDK will use the default icon for your app which may not meet the standards for Android >5.0.\n\n### iOS compilation details\nPut the downloaded file 'GoogleService-Info.plist' in the Cordova project root folder.\n\n## Usage\n\n:warning: It's highly recommended to use REST API to send push notifications because Firebase console does not have all the functionalities. **Pay attention to the payload example in order to use the plugin properly**.  \nYou can also test your notifications with the free testing server: https://cordova-plugin-fcm.appspot.com\n\n### Receiving Token Refresh\n\n```javascript\n//FCMPlugin.onTokenRefresh( onTokenRefreshCallback(token) );\n//Note that this callback will be fired everytime a new token is generated, including the first time.\nFCMPlugin.onTokenRefresh(function(token){\n    alert( token );\n});\n```\n\n### Get token\n\n```javascript\n//FCMPlugin.getToken( successCallback(token), errorCallback(err) );\n//Keep in mind the function will return null if the token has not been established yet.\nFCMPlugin.getToken(function(token){\n    alert(token);\n});\n```\n\n### Subscribe to topic\n\n```javascript\n//FCMPlugin.subscribeToTopic( topic, successCallback(msg), errorCallback(err) );\n//All devices are subscribed automatically to 'all' and 'ios' or 'android' topic respectively.\n//Must match the following regular expression: \"[a-zA-Z0-9-_.~%]{1,900}\".\nFCMPlugin.subscribeToTopic('topicExample');\n```\n\n### Unsubscribe from topic\n\n```javascript\n//FCMPlugin.unsubscribeFromTopic( topic, successCallback(msg), errorCallback(err) );\nFCMPlugin.unsubscribeFromTopic('topicExample');\n```\n\n### Receiving push notification data\n\n```javascript\n//FCMPlugin.onNotification( onNotificationCallback(data), successCallback(msg), errorCallback(err) )\n//Here you define your application behaviour based on the notification data.\nFCMPlugin.onNotification(function(data){\n    if(data.wasTapped){\n      //Notification was received on device tray and tapped by the user.\n      alert( JSON.stringify(data) );\n    }else{\n      //Notification was received in foreground. Maybe the user needs to be notified.\n      alert( JSON.stringify(data) );\n    }\n});\n```\n\n### Send notification. Payload example (REST API)\nFull documentation: https://firebase.google.com/docs/cloud-messaging/http-server-ref  \nFree testing server: https://cordova-plugin-fcm.appspot.com\n```javascript\n//POST: https://fcm.googleapis.com/fcm/send\n//HEADER: Content-Type: application/json\n//HEADER: Authorization: key=AIzaSy*******************\n{\n  \"notification\":{\n    \"title\":\"Notification title\",\n    \"body\":\"Notification body\",\n    \"sound\":\"default\",\n    \"click_action\":\"FCM_PLUGIN_ACTIVITY\",\n    \"icon\":\"fcm_push_icon\"\n  },\n  \"data\":{\n    \"param1\":\"value1\",\n    \"param2\":\"value2\"\n  },\n    \"to\":\"/topics/topicExample\",\n    \"priority\":\"high\",\n    \"restricted_package_name\":\"\"\n}\n//sound: optional field if you want sound with the notification\n//click_action: must be present with the specified value for Android\n//icon: white icon resource name for Android >5.0\n//data: put any \"param\":\"value\" and retreive them in the JavaScript notification callback\n//to: device token or /topic/topicExample\n//priority: must be set to \"high\" for delivering notifications on closed iOS apps\n//restricted_package_name: optional field if you want to send only to a restricted app package (i.e: com.myapp.test)\n```\n\n## How it works\nSend a push notification to a single device or topic.\n\n+ Application is in foreground:\n\n   The notification data is received in the JavaScript callback without notification bar message (this is the normal behaviour of mobile push notifications).\n   \n+ Application is in background or closed:\n\n  1. The device displays the notification message in the device notification bar.\n  2. If the user taps the notification, the application comes to foreground and the notification data is received in the JavaScript callback.\n  3. If the user does not tap the notification but opens the applicacion, nothing happens until the notification is tapped.\n\n\n## Authorship\nThis is a fork from https://github.com/fechanique/cordova-plugin-fcm, which has dependencies versions upgraded, jitpack and cocoapods support, and newer features.\n","readmeFilename":"README.md","gitHead":"cd8430a61746a218dc3bf7556c94b6c5a756c43f","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.0-beta.2","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-rYskBJuDJInijHbV1JKrSC1XKGIhXE3R+dUSNEF2ZWWBW5D0z8QU5NILIBo7+8Nute75Knz96kcoMftNbgty+w==","shasum":"2a0417f832a8c24e3295c86defd162e6d0cc6187","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.0-beta.2.tgz","fileCount":105,"unpackedSize":339596,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3oUXCRA9TVsSAnZWagAA9XEP/Rf2mse2eU81tkx7JBFT\nobK56GEOj5Pu+f95hhy0tDJLiX4WN+ke+ICxaQ8aOIJ5yJU0gcZl0ik9yR9M\nGMMQPU4+i+QX4fRbMonE4gh1fiYrAMroECDLitghwzJ5RIXzyMrUlgw24/ms\nSngvYgodqloKxWWzhHjxd4WfrVQ895xIToiIOrmx6CxN0+ATrm0Ebq1bNlP/\nAUlbzCjnnqV6KNRkk5uc+EXUz78eF8bW20WO7QWmfMS5C5YzH5Ep1Pxb6Zuc\nc4/nswPWqGyXYL1PxgqLzj7uW+Fmu27fE+ae67B1L7WYc4eMZy2c/7Yico+R\np8EPxeUdE0YQ9dVur43nl8Rl4/3OKPmXfWPKLYFDyeR1RVkbwglZrbs+tr0q\nZSNg6K0MNWa/JODlN+vgIri3mLtmC4igSMVyW1R4WIxvQkIqdT85FAUoBbXD\n/Mw2vqRDq0DTOf8Rvrt3aeow8uff0zRHYNDC8OkwiVTrWwE5ic0Iw6epM8EN\nVMVGQhpBrY7DuBD1U8um492grAq0bXwQ86Y0peGimtWftVo5ZpmhZymNDVjM\nx3RwWZGjDgOEH8REsUBnyDknPyf55ta20rCVYUkqLvwT+DWTDTrYWp+adB11\nwvz9AX6Au/3xCW/XZv28szOGBEX6kUD/oN8NtKYXis/DJM2KZJtGdLSrL063\nsTPT\r\n=5/Ot\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDBNf7mBTAqd6B8MPVi7DmEa56fws77tQTAybCfx1GiCgIgQ7mnz9QcMknrZ94ghWgTZp0bw6iP13cbv2fUCrn4RbY="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.0-beta.2_1591641367058_0.059094163438517144"},"_hasShrinkwrap":false},"7.0.0-beta.3":{"version":"7.0.0-beta.3","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"rxjs":"^6.5.5","typescript":"^3.9.5"},"readme":"# Google Firebase Cloud Messaging Cordova Push Plugin\n> Extremely easy plug&play push notification plugin for Cordova applications with Google Firebase FCM.\n\n[![npm downloads](https://img.shields.io/npm/dt/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm per month](https://img.shields.io/npm/dm/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![npm version](https://img.shields.io/npm/v/cordova-plugin-fcm-with-dependecy-updated.svg)](https://www.npmjs.com/package/cordova-plugin-fcm-with-dependecy-updated)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n[![GitHub issues](https://img.shields.io/github/issues/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues)\n[![GitHub forks](https://img.shields.io/github/forks/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/network)\n[![GitHub stars](https://img.shields.io/github/stars/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.svg)](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/stargazers)\n[![Known Vulnerabilities](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andrehtissot/cordova-plugin-fcm-with-dependecy-updated?targetFile=package.json)\n[![DeepScan grade](https://deepscan.io/api/teams/3417/projects/5068/branches/39495/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=3417&pid=5068&bid=39495)\n\n## Features\n\n- [As its own](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#as-its-own)\n  - [FCM.clearAllNotifications()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmclearallnotifications)\n  - [FCM.createNotificationChannel()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmcreatenotificationchannel)\n  - [FCM.getAPNSToken()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgetapnstoken)\n  - [FCM.getInitialPushPayload()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgetinitialpushpayload)\n  - [FCM.getToken()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmgettoken)\n  - [FCM.hasPermission()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmhaspermission)\n  - [FCM.onNotification()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmonnotification)\n  - [FCM.onTokenRefresh()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmontokenrefresh)\n  - [FCM.requestPushPermission()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmrequestpushpermission)\n  - [FCM.subscribeToTopic()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmsubscribetotopic)\n  - [FCM.unsubscribeFromTopic()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmunsubscribefromtopic)\n  - [FCM.eventTarget](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmeventtarget)\n- [With Ionic](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#with-ionic)\n  - [FCM.onNotification()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmonnotification-1)\n  - [FCM.onTokenRefresh()](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/v7.0.0-beta/README.md#fcmontokenrefresh-1)\n\n#### As its own\n\nThe JS functions are now as written bellow and do require Promise support. Which, for Android API 19 support, it can be fulfilled by a polyfill.\n\n##### FCM.clearAllNotifications()\n\nRemoves existing push notifications from the notifications center.\n```typescript\nawait FCM.clearAllNotifications();\n```\n\n##### FCM.createNotificationChannel()\n\nFor Android, some notification properties are only defined programmatically.\nChannel can define the default behavior for notifications on Android 8.0+.\nOnce a channel is created, it stays unchangeable until the user uninstalls the app.\n```typescript\nawait FCM.createNotificationChannel({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification\n  sound: \"alert_sound\", // In the \"alert_sound\" example, the file should located as resources/raw/alert_sound.mp3\n  lights: true, // enable lights for notifications\n  vibration: true // enable vibration for notifications\n});\n```\n\n##### FCM.getAPNSToken()\n\nGets iOS device's current APNS token.\n```typescript\nconst apnsToken: string = await FCM.getAPNSToken();\n```\n\n##### FCM.getInitialPushPayload()\n\nRetrieves the message that, on tap, opened the app.\n```typescript\nconst pushPayload: object = await FCM.getInitialPushPayload()\n```\n\n##### FCM.getToken()\n\nGets device's current registration id.\n```typescript\nconst fcmToken: string = await FCM.getToken()\n```\n\n##### FCM.hasPermission()\n\nChecking for permissions on iOS. On android, it always returns `true`.\n```typescript\nconst doesIt: boolean = await FCM.hasPermission()\n```\n\n##### FCM.onNotification()\n\nCallback firing when receiving new notifications. It serves as a shortcut to listen to eventTarget's \"notification\" event.\n```typescript\nFCM.onNotification((payload: object) => {\n  // ...\n})\n```\n\n:warning: If the subscription to notification events happens after the notification has been fired, it'll be lost. As it is expected that you'd not always be able to catch the notification payload that the opened the app, the `FCM.getInitialPushPayload()` method was introduced.\n\n##### FCM.onTokenRefresh()\n\nCallback firing when receiving a new Firebase token. It serves as a shortcut to listen to eventTarget's \"tokenRefresh\" event.\n```typescript\nFCM.onTokenRefresh((fcmToken: string) => {\n  // ...\n})\n```\n\n##### FCM.requestPushPermission()\n\nRequest push notification permission, alerting the user if it not have yet decided.\n```typescript\nconst wasPermissionGiven: boolean = await FCM.requestPushPermission({\n  ios9Support: {\n    timeout: 10,  // How long it will wait for a decision from the user before returning `false`\n    interval: 0.3 // How long between each permission verification\n  }\n})\n```\n\n##### FCM.subscribeToTopic()\n\nSubscribes you to a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.subscribeToTopic(topic)\n```\n\n##### FCM.unsubscribeFromTopic()\n\nUnsubscribes you from a [topic](https://firebase.google.com/docs/notifications/android/console-topics).\n```typescript\nconst topic: string\n// ...\nawait FCM.unsubscribeFromTopic(topic)\n```\n\n##### FCM.eventTarget\n\nEventTarget object for native-sourced custom events. Useful for more advanced listening handling.\n```typescript\nconst listener = (data) => {\n  const payload = data.detail\n  // ...\n}\nFCM.eventTarget.addEventListener(\"notification\", listener, false);\n// ...\nFCM.eventTarget.removeEventListener(\"notification\", listener, false);\n```\n\n#### With Ionic\n\nIonic support was implemented as part of this plugin to allow users to have access to newer features with the type support. It is available in 3 flavors:\n- Ionic v5:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic\";\n```\n- Ionic ngx:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/ngx\";\n```\n- Ionic v4:\n```typescript\nimport { FCM } from \"cordova-plugin-fcm-with-dependecy-updated/ionic/v4\";\n```\n\nIt brings the same behavior as the native implementation, except for `FCM.onNotification()` and `FCM.onTokenRefresh()`, which gain rxjs' Observable support.\n\n##### FCM.onNotification()\n\nEvent firing when receiving new notifications.\n```typescript\nthis.fcm.onNotification().subscribe((payload: object) => {\n  // ...\n});\n```\n\n##### FCM.onTokenRefresh()\n\nEvent firing when receiving new notifications.\n```typescript\nthis.fcm.onTokenRefresh().subscribe((token: string) => {\n  // ...\n});\n```\n\n### Optional FCM Image Support for Cordova iOS\n\nAfter a lot of work, the first release of the plugin https://github.com/andrehtissot/cordova-plugin-fcm-image-support is out. Which should enable the support, just by installing it.\n\n## Changelog\n\n### Version 7.0.0 Beta (04/06/2020)\n\nJS methods refactored for a more modern approach and Ionic support included.\n\n### Version 6.4.0 (21/05/2020)\n\nThe `FCMPlugin.requestPushPermissionIOS` function now, not only triggers the request alert, but also returns, as boolean, if the permission was given.\n\n```javascript\nFCMPlugin.requestPushPermissionIOS(\n  function(wasPermissionGiven) {\n    console.info(\"Was permission given: \"+wasPermissionGiven);\n  },\n  function(error) {\n    console.error(error);\n  },\n  ios9Support: {\n    timeout: 10,  // How long it will wait for a decision from the user before returning `false`\n    interval: 0.3 // How long between each permission verification\n  }\n);\n```\n\nNote:\nOn iOS 9, there is no way to know if the user has denied the permissions or he has not yet decided.\nFor this reason, specifically for iOS 9, after presenting the alert, a timed loop waits until it knows that the user has either given the permissions or that the time has expired.\nOn iOS 10+, the return is given as soon as the user has selected, ignoring these options.\n\n### Version 6.3.0 (27/04/2020)\n\nFCMPlugin.createNotificationChannelAndroid improved, now accepting three other options: \"sound\", \"lights\" and \"vibration\", like in:\n```javascript\nFCMPlugin.createNotificationChannelAndroid({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification\n  sound: \"alert_sound\", // In the \"alert_sound\" example, the file should located as resources/raw/alert_sound.mp3\n  lights: true, // enable lights for notifications\n  vibration: true // enable vibration for notifications\n});\n```\n\n### Version 6.2.0 (26/04/2020)\n\nIOS 9 support reintroduced.\n\n### Version 6.1.0 (24/04/2020)\n\nFor Android, some notification properties are only defined programmatically, one of those is channel.\nChannel can define the default behavior for notifications on Android 8.0+.\nThis feature was meant to bring the channel-only configurations importance and visibility:\n\n```javascript\nFCMPlugin.createNotificationChannelAndroid({\n  id: \"urgent_alert\", // required\n  name: \"Urgent Alert\", // required\n  description: \"Very urgent message alert\",\n  importance: \"high\", // https://developer.android.com/guide/topics/ui/notifiers/notifications#importance\n  visibility: \"public\", // https://developer.android.com/training/notify-user/build-notification#lockscreenNotification \n});\n```\n\n:warning: Once a channel is created, it stays unchangeable until the user uninstalls the app.\n\nTo have a notification to use the channel, you have to add to the push notification payload the key `android_channel_id` with the id given to `createNotificationChannelAndroid` (https://firebase.google.com/docs/cloud-messaging/http-server-ref#notification-payload-support)\n\n### Version 6.0.1 (20/04/2020)\n\nAs a hotfix to avoid incompatibility with cordova-plugin-ionic-webview, the the changes requested for cordova support (https://cordova.apache.org/howto/2020/03/18/wkwebviewonly) will not be automatic applied.\n\n### Version 6.0.0 (18/04/2020)\n\nOn iOS, first run doesn't automatically request Push permission.\n\nThe permission, as it is still required, may now be requested from javascript at any moment by executing:\n```javascript\n//FCMPlugin.requestPushPermissionIOS( successCallback(), errorCallback(err) );\nFCMPlugin.requestPushPermissionIOS();\n```\n\n### Version 5.1.0 (18/04/2020)\n\nReplaced `UIWebView` with `WKWebView`, as required by Apple (https://developer.apple.com/documentation/uikit/uiwebview).\n\nFor a smooth upgrade, the changes requested for cordova support (https://cordova.apache.org/howto/2020/03/18/wkwebviewonly) are applied automatically.\n\n### Version 5.0.0 (16/04/2020)\n\nFor both platforms:\n- Not only copies, from application root, the Google Services configuration files on build, but also on install;\n- `onFirebaseDataNotificationIOS` removed, as relied on upstream socket connection, which will is deprecated and will be removed in Firebase 7 (https://firebase.google.com/support/release-notes/ios#fcm, announced in February 25, 2020).\n\nFor iOS:\n- On install \"Remote Notification\" is set as a \"Background Mode\" capacity automatically;\n- Firebase now is handled manually, due to complications of auto-swizzling;\n- Firebase dependencies are now set to 6.21.0;\n- Delayed Firebase registration, by 300ms, to avoid deadlock issue with Watchdog;\n- Removed support for iOS 9.\n\nFor Android:\n- Demonstrative code, for custom notifications, was removed and its imports of androidx classes to improve compatibility with older cordova plugins.\n\n### Version 4.6.0 (04/04/2020)\n\nFor the IOS, if app is on the foreground and the app receives a `data` push notification, the data can be retrieved by setting the callback to the new method: `FCMPlugin.onFirebaseDataNotificationIOS` [Deprecated].\n\n```javascript\nFCMPlugin.onFirebaseDataNotificationIOS(\n  function(payload) {\n    console.info(\"Message id: \"+payload.messageID)\n    console.info(\"Data parameters: \"+payload.appData)\n  }\n);\n```\n\nThis method is specifically implemented on IOS due to specific payload format ([src/FCMPlugin.d.ts](https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/blob/master/src/FCMPlugin.d.ts)).\n\n\n### Version 4.5.1 (30/03/2020)\n\nDue to a bug introduced in v4.4.3, the file `platforms/android/app/src/main/res/values/strings.xml` had two tags included on install, tags which, on build, are also included by cordova-android@8.x.x. Hence failing the build process.\n\nTo apply the fix, install the new version and remove these two tags from your values/strings.xml:\n* `<string name=\"google_app_id\">...</string>`\n* `<string name=\"google_api_key\">...</string>`\n\n### Version 4.2.0 (24/02/2020)\n\n`ANDROID_DEFAULT_NOTIFICATION_ICON` included as a variable.\n\nTo define the default icon for notifications (`com.google.firebase.messaging.default_notification_icon`), install this plugin like:\n```bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated --variable ANDROID_DEFAULT_NOTIFICATION_ICON=\"@mipmap/notification_icon\"\n```\n\n### Version 4.1.0 (26/10/2019)\n\nOlder notifications can be cleared from notification center.\nWorks on both IOS and Android.\n\n```javascript\n//FCMPlugin.clearAllNotifications( successCallback(msg), errorCallback(err) );\nFCMPlugin.clearAllNotifications();\n```\n\n### Version 4.0.0 (12/10/2019)\nThe old `FCMPlugin.getToken` is focused on retrieving the FCM Token.\nFor the IOS, APNS token can now be retrieved by the new method:\n\n```javascript\nFCMPlugin.getAPNSToken(\n  function(token) {\n    console.info(\"Retrieved token: \"+token)\n  },\n  function(error) {\n    console.error(error);\n  }\n);\n```\n\nOn android, it will always return `null`.\n\nThe APNS token, once given, should not change for the same user (as commented on in https://stackoverflow.com/questions/6652242/does-the-apns-device-token-ever-change-once-created).\n\nAlthough, contrary to APNS, the FCM tokens do expire, and for this reason, `FCMPlugin.onTokenRefresh` will be called with the new one FCM token.\n\n### Version 3.2.0 (16/09/2019)\n#### Checking for permissions\nUseful for IOS. On android, it will always return `true`.\n\n```javascript\nFCMPlugin.hasPermission(function(doesIt){\n    // doesIt === true => yes, push was allowed\n    // doesIt === false => nope, push will not be available\n    // doesIt === null => still not answered, recommended checking again later\n    if(doesIt) {\n        haveFun();\n    }\n});\n```\n\n### Version 2.1.2 (03/06/2017)\n- Tested on Android and iOS using Cordova cli 6.4.0, Cordova android 6.0.0 and Cordova ios 4.3.1\n- Available sdk functions: onTokenRefresh, getToken, subscribeToTopic, unsubscribeFromTopic and onNotification\n- 'google-services.json' and 'GoogleService-Info.plist' are added automatically from Cordova project root to platform folders\n- Added data payload parameter to check whether the user tapped on the notification or was received while in foreground.\n- **Free testing server available for free! https://cordova-plugin-fcm.appspot.com**\n\n## Installation\nMake sure you have ‘google-services.json’ for Android or  ‘GoogleService-Info.plist’ for iOS in your Cordova project root folder. You don´t need to configure anything else in order to have push notification working for both platforms, everything is magic.\n```Bash\ncordova plugin add cordova-plugin-fcm-with-dependecy-updated\n```\n\n### Firebase configuration files\nGet the needed configuration files for Android or iOS from the Firebase Console (see docs: https://firebase.google.com/docs/).\n\n### Android compilation details\nPut the downloaded file 'google-services.json' in the Cordova project root folder.\n\nYou will need to ensure that you have installed the appropiate Android SDK libraries.\n\n:warning: For Android >5.0 status bar icon, you must include transparent solid color icon with name 'fcm_push_icon.png' in the 'res' folder in the same way you add the other application icons.\nIf you do not set this resource, then the SDK will use the default icon for your app which may not meet the standards for Android >5.0.\n\n### iOS compilation details\nPut the downloaded file 'GoogleService-Info.plist' in the Cordova project root folder.\n\n## Usage\n\n:warning: It's highly recommended to use REST API to send push notifications because Firebase console does not have all the functionalities. **Pay attention to the payload example in order to use the plugin properly**.  \nYou can also test your notifications with the free testing server: https://cordova-plugin-fcm.appspot.com\n\n### Receiving Token Refresh\n\n```javascript\n//FCMPlugin.onTokenRefresh( onTokenRefreshCallback(token) );\n//Note that this callback will be fired everytime a new token is generated, including the first time.\nFCMPlugin.onTokenRefresh(function(token){\n    alert( token );\n});\n```\n\n### Get token\n\n```javascript\n//FCMPlugin.getToken( successCallback(token), errorCallback(err) );\n//Keep in mind the function will return null if the token has not been established yet.\nFCMPlugin.getToken(function(token){\n    alert(token);\n});\n```\n\n### Subscribe to topic\n\n```javascript\n//FCMPlugin.subscribeToTopic( topic, successCallback(msg), errorCallback(err) );\n//All devices are subscribed automatically to 'all' and 'ios' or 'android' topic respectively.\n//Must match the following regular expression: \"[a-zA-Z0-9-_.~%]{1,900}\".\nFCMPlugin.subscribeToTopic('topicExample');\n```\n\n### Unsubscribe from topic\n\n```javascript\n//FCMPlugin.unsubscribeFromTopic( topic, successCallback(msg), errorCallback(err) );\nFCMPlugin.unsubscribeFromTopic('topicExample');\n```\n\n### Receiving push notification data\n\n```javascript\n//FCMPlugin.onNotification( onNotificationCallback(data), successCallback(msg), errorCallback(err) )\n//Here you define your application behaviour based on the notification data.\nFCMPlugin.onNotification(function(data){\n    if(data.wasTapped){\n      //Notification was received on device tray and tapped by the user.\n      alert( JSON.stringify(data) );\n    }else{\n      //Notification was received in foreground. Maybe the user needs to be notified.\n      alert( JSON.stringify(data) );\n    }\n});\n```\n\n### Send notification. Payload example (REST API)\nFull documentation: https://firebase.google.com/docs/cloud-messaging/http-server-ref  \nFree testing server: https://cordova-plugin-fcm.appspot.com\n```javascript\n//POST: https://fcm.googleapis.com/fcm/send\n//HEADER: Content-Type: application/json\n//HEADER: Authorization: key=AIzaSy*******************\n{\n  \"notification\":{\n    \"title\":\"Notification title\",\n    \"body\":\"Notification body\", // required\n    \"sound\":\"default\",\n    \"click_action\":\"FCM_PLUGIN_ACTIVITY\", // required\n    \"icon\":\"fcm_push_icon\"\n  },\n  \"data\":{\n    \"param1\":\"value1\",\n    \"param2\":\"value2\"\n  },\n  \"to\":\"/topics/topicExample\",\n  \"priority\":\"high\",\n  \"restricted_package_name\":\"\"\n}\n//sound: optional field if you want sound with the notification\n//click_action: must be present with the specified value for Android\n//icon: white icon resource name for Android >5.0\n//data: put any \"param\":\"value\" and retreive them in the JavaScript notification callback\n//to: device token or /topic/topicExample\n//priority: must be set to \"high\" for delivering notifications on closed iOS apps\n//restricted_package_name: optional field if you want to send only to a restricted app package (i.e: com.myapp.test)\n```\n\n## How it works\nSend a push notification to a single device or topic.\n\n+ Application is in foreground:\n\n   The notification data is received in the JavaScript callback without notification bar message (this is the normal behaviour of mobile push notifications).\n   \n+ Application is in background or closed:\n\n  1. The device displays the notification message in the device notification bar.\n  2. If the user taps the notification, the application comes to foreground and the notification data is received in the JavaScript callback.\n  3. If the user does not tap the notification but opens the applicacion, nothing happens until the notification is tapped.\n\n\n## Authorship\nThis is a fork from https://github.com/fechanique/cordova-plugin-fcm, which has dependencies versions upgraded, jitpack and cocoapods support, and newer features.\n","readmeFilename":"README.md","gitHead":"7addec0b98546f4f049d6d3b34edaa871bdab410","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.0-beta.3","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-ALdVkmo6r2eSDA3JdWhRVNO3wOMc5pODwcFHeuiepOoxB+lNtjajnXJNbL7fhHC5e8LFkpJvGVmw0oylCQmsFw==","shasum":"ef8b44f7b4084b39beb6e9a262f76edfb18fd7e1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.0-beta.3.tgz","fileCount":105,"unpackedSize":338375,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe5kzfCRA9TVsSAnZWagAAnn0P/Rg7/nDStry3jxyrCPDO\n+ANDDsXrSKOiBk58gd7axeH+hTD2ofZh7ALPd0yPKENDQW3r2Fg0SxO84YlJ\nKEn8HxCZl8h5y5vS4a7LZX1uHGVYHTnpTmIiQ2pk6FHv6EzH60lSqhFHpW2Q\nmBUzD4nrzk0OlQtu82pAfl5OKTkS5kTU4hOwoKZ1kEJZwYNzzIJ9WklpoNZd\n01hK+ccjMcPdTWMgHADSpAOMfqfChWjOLwdV1bXhd4Wf2TsgIK0c44KjTM5B\nHxjxkyJmKieB7rIQet/MipmJz3MSTNX7Eoe8fOVTt6NE8AHCodrhD/oLySV5\njYDomcVTkNorXZYUsXH/9zi/Wnxg9siBzdSMsAvHzO5XBLKiE3sy7n4drR3P\nIGm+tXf7e9QEOqMs19ALb80ojSqoBCJvQWuX1JjnCi4wvQSscxmxvT1/Rdy6\nLNOazsd148rYHxDrwKOOwg57fgbfnh4uv3wtJV30ZXcIzMpNgfk8yUK9I0WL\nIx4b5hZhjtrdZF+TcsXCgQlBGqHmE2MZP+U7MWgYTCoaiWbH55cjyfiB43KJ\nDAfwc61E3LY3OsMaM4wiHTahMbpzHnQ1RO/FEuhrFnMvUnr09c52NurTCjtR\nBIRHo3uqCQQWo0mB0MQ1vswQznAyspWwsx3AzaXLlJCQqXhbPS4EUcO19EOU\n527l\r\n=q3QG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFjRWmverqsOXIw7N4qh4Gqde1Bzj+jNfsahPaAwE/KNAiEAmKsdCIfLSVX0ak3efsOV5uO8qQFsCWUgeWWzQxnQg4U="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.0-beta.3_1592151262857_0.2794357444326443"},"_hasShrinkwrap":false},"7.0.0-beta.4":{"version":"7.0.0-beta.4","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"rxjs":"^6.5.5","typescript":"^3.9.5"},"gitHead":"1084e3f53b5598d05b390f9f54959d75b3e3837b","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.0-beta.4","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-9oz0lp48o0tMe1SEacQS0IUojGTBDegC2ukYPc0/n/BBoWdJGZmmm+eN2mLXyhzdxJs8GSVssd6+0LKsjxh6OA==","shasum":"ea65689d61d5c75dc417df1465b0a93b0cd1cd46","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.0-beta.4.tgz","fileCount":113,"unpackedSize":339940,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8QF8CRA9TVsSAnZWagAAWPAQAJOqu5EenWhpu3KFeNaK\nCqAcGMXgeR4n7tqVAVbx1SrWBDTeOZSfitrCrgaLXeGdPlA2H+SM2NgWn/Re\nfClg1x3SUMWrVWIqqDHTNs5wcIvO5muWp3cIsUgYNHsfcaDWwNlyUvT31csq\nYFhUeER1UB23o5w878WPop0pc7+5kF5deYZ2C5JljGpPUYgweatpZEkGSGEp\nxnDhmJUGyentLgmcIV5EH8bkcZyjh9nnIOpvZr5if6IoSzM0FNqhsrg7Lxwz\nne3IbNhUjIyD654sJZpF7QLbg7RlzwiTk4uH+oulxD76p5NILtRYThtiOd60\nGeeEXtE8ygLuI6ai5zq7wFab2TzrevCLjG8+92jfwWcHxUPYB49YBkkqf3QQ\nCEexIFUpw79nIVaznCsSuJo7SY5ctrW47uGcVuLO0/v8whV4i640Nx0ffbfC\nWBV45/eFPXgKEJVstaYKVw2DPCZ3ICthmeikA3jx5o28DdMPFWzRtpocReaJ\n+zVXIV4bqDhCiRAKPJ5UEIjJQiwMeF3uiE30hL7Ye26YiWl8EL928dQsyQ8l\nFcEAebUwFHZ+h9byuPmJsLxoYR6VCU4odv/X2JBAJB2egCx/mgLonnHowmri\nmm8IER8PfOD5+w0evyHQ+a9wtleCU6pz0AGRTOMXC0xg1MKavVj5ejDSBVBo\ncVuN\r\n=3e67\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHBlaSxgFGd2xEFd6M3BnaM+YUX5qKB6clpMB6l7oMjoAiBiek7wBWa2VcgIPUVVwqqkcV5kuOLwclHER855w3qY8Q=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.0-beta.4_1592852859602_0.8191044585337983"},"_hasShrinkwrap":false},"7.0.0":{"version":"7.0.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"rxjs":"^6.5.5","typescript":"^3.9.5"},"gitHead":"e515b26c23179d7726bb7fc8b674a98501b20fa8","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-sydBDxmJYwngbH6jQOr8AeBasp2ZahQnW9t3YlkeHtdcxh5Vai7RKysURDd5FTwzjto2y9KNjBzrEZOQ/fNFKA==","shasum":"9e858e6c5f47e0ef6b57b604afd9ed2de697fdbb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.0.tgz","fileCount":70,"unpackedSize":175094,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe98rjCRA9TVsSAnZWagAAtMgP/RDDxVTTcQzdM0ocOtxn\noOHAbRa/HJaVXBMbb/IPzT0/AZjs9M/B3GqmL49fBiZxdMpzYStQ9S6v5gYu\nalZ0h6hJIL4VR0XCVbQnjd4QV2zx9nD+oWZbsK9ldRu1zZ5BdTVagy01exSQ\nyG/vUi2BIEhFJZTzpGpyyYpucJqJqpTlfJWIa56SC1eVc+3+J/BrwuEimq/b\nToFgDpcFmjWUZKslbIw56doT1/THCdeQOtA/8L4SVTiqUzPThc4u73xH/kxH\n13m4iih9QAxWXw8fC0ykgrYYtwwKloDqUUpA6CNVSu4qd8KZla+cS5zxcdhO\nDSvwbAgOtuUPtT0S9cT8QP+LG5whb3naWExgXr51gwWgE5BuObJY+xybpKXq\ngnEOxyZOaMXMdvTOqCytI+1itm/3cHXNbWIa3UQANi92wJpp8gHfnKyv/Je3\nxxJjHw0LLKcRDr/Em2ii956Ia8INMnUdJyKu+C17tedVsiN2Pcix6l/WbUzW\nYV/n8fUCp8e3awaPeLxEANsn/lSy2aE/ove+Y9Xto+EDCL8hLB6zomt2sMoF\nSopRyaxXTTAuNkv7ZQgBs2L02UUvaLJpVFWM4araaLpNTUrRKpJ0WxG4Zwyo\n5ldR03+nek/CftoR96aZRgqmNfax8uku8p9ngdI3yxWbH3CD9cgTV0vfKkEp\nrdXL\r\n=mtCf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICD9jfmq9zdYFTtdASMPcidmEKv3IYplQS3/gF1dFR0dAiEA0DPuIWlheNZhqrLOL+pCYwqgU7YrWpZpdnw3oBAKEJ0="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.0_1593297634566_0.3765048170787324"},"_hasShrinkwrap":false},"7.0.1":{"version":"7.0.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"rxjs":"^6.5.5","typescript":"^3.9.5"},"gitHead":"815367809080ccb331e48a037e8e344a3065c9b6","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-DeSXdtXCH1FpVj14atU6le+dCdlaivg+Q4bRBOIWd/o9NQbtwypo8kPlEbphWqPZvR3mgUhEGm+2D+QmDZFJKQ==","shasum":"09782a3f8b2949a156f96fff62abf56fd715eef4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.1.tgz","fileCount":72,"unpackedSize":177417,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe+LJ4CRA9TVsSAnZWagAAr5kP/0wmxnvcHr9TB7uUZ7PO\nK4Wtc5YuGOQWQa5UKVF6bL15cYAuAqwSizipyA9rRh5Duw2pGXRfvhllYQM1\n7rSrEdAPkocLySZNNilF6OXU8FudUTcnQSu8jSChhwrKYnQmX2h/tJEiXN4p\nOeX2ReDwwxVqA1GgVDQeInfOz/PNwQLNVLu5vqBUKS/CGklh7mF0pOiuQAc0\nfrkVH7brJNu+xAdu2xYQgZqRqjYobtDaNEWixt8+IVCzXxZoOMH44e9lbnNo\nXeB+LNPJbdBfNyfIovn7ypGSMSR79jjx7VtpWYglQ6Bhhj1vPjFPKjO6OwDo\nCR0szmukpHbvQg3xLvmzAno2BFuutWTbA6KmQuN9zVhd7S+Bs8wZZPoRbd0H\nRIAKhhW1hss1uy9obVY79+AFVlzYBQYf8bQagLn/PHTyizG3L30mJmW7Dl8n\nKkcLwf68y5IYrS0kpfO10pZy9HkRYZGaqmWfL3wMgtc16/luMQj9WoQaGB5/\nprU/wq9e4SrKhhK2eQMRYSBEA6sVd6PP54/CtzStK6cHFvg9apixmbrMgbdo\nm7fMoYSMYc3EJfiaHvgso3NFAYxXLWZLuNMoHGEWsKmckgGgLnJVz8+M0BW2\nr9eurw3XeJjhspj9UIEHxB+Az1Yy0C751EIAefynqPJkwDH1ivSqQADq2Bp0\nDAXg\r\n=Obqw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDMwFPMFpn7y3omxwTzrP1rXqmd/KWJw+NGJKu/H4xcbAiEA5Qxtl1aEcUGw087wppv8EKhtqvK6g46Qx78wHmhRlJg="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.1_1593356920151_0.18332332050584466"},"_hasShrinkwrap":false},"7.0.2":{"version":"7.0.2","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"rxjs":"^6.5.5","typescript":"^3.9.5"},"gitHead":"279d56db0c88549c920574af523b525106994fc2","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.2","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-KJx+mH++F+omSvZRvl7b5X5VuegLg3h5jY57kUteF2++tfHsFuj8pcfYVsQvBlA7RVfAJI29YimxXI3xeP/XwA==","shasum":"7f03b066d1fba738313fb66fe056954e67570d6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.2.tgz","fileCount":73,"unpackedSize":178742,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/K+RCRA9TVsSAnZWagAA23kP/0eKyWdpKU0vd+z1K7Uo\n5bA7E6ZoltxJ6TNStTt374qdljZjznh0eyhORshfEPS+ysG+DNU6/QV9gP1M\ndQJrCGCN4zg7tKArry81m5EUmWKh0zLk7pea3ljqGyw3KNPy9hgcKI/wkUPY\nke+r1uQKzX4G8DH812N8L7NKBGrSrm+YNOVpDtabNixKvlWrOHuRkggitrtF\njjjowWkyrc9adQLMNZabc4AbQiAtkrQzoMduZlCHAM5SFSZ5yI99b/uzCflL\nIvYpP/riPjF18/9Xl5j1sZXNNwDEJ2h4tl1V9XO3OmN7U4YDBXcZ89+KQXZK\nOY/jqNv3p70/M3h/UbrBzlUoTPlYAYC3iywnsJGzQfTlxWF7mKhDj/bIbDIz\nyKWIt0w7mMLPf1MrsUyW4ZWcSNBrPDtiPsbgSSXIA++wZsIsIT90cmUMeiYn\nHMvW4Jzsqk85S5vbOahqI5O5kOvdaNokSJE1rAbiu4Oh107uXvgZE1LDg3S+\n+44iAaunj+v5/Ooxh4GIGjPP3FSVTW+SyrrYLD1z26zHf3im3qjwRwlnigc/\nMTVGlNVXFW+/hXKZfvGiJj8jgt4CnWZ9FWCXoU+M5WTSzSDw2jpxt83UEQsu\n2z/IywZdMc+5Hlq+mgQZS7FKn5jAq2wpmMI5njms6v/pzsNy9+KcQGNS9wUY\nqjL4\r\n=WgM3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFt0kmRi3kH9hwFMTW/oKagHADZBBV/28hxrnA6LWnc+AiEA01bvxkvsFWluymfZODTTaqb6tqgkrpDbQ+r/9ba7hTM="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.2_1593618320565_0.6617315500525549"},"_hasShrinkwrap":false},"7.0.3":{"version":"7.0.3","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"rxjs":"^6.5.5","typescript":"^3.9.5"},"gitHead":"a54f00230956863eff378e8998c343f72d6249fc","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.3","_nodeVersion":"13.1.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-Qin1ZdDqNeB7USF8wrDgUX5vzqiy6e5T9f9cam5k1xLKCZFaI4EsKslDnl+78AMhlPOgfV25iKy/WTTFNZ5bWg==","shasum":"a94659c50f1185c5d7bd2258b795be725292a2af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.3.tgz","fileCount":75,"unpackedSize":179226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBJieCRA9TVsSAnZWagAAmmYP/jZjcXfuNxBoj7De3JZs\nRnu62ts9FU5/oZObXz9RUOWmViCs63XgBn2D3uOS3xqengfxZpkTJz8xMScZ\nlEGCXfOXB72vEekWLMagoyT4uLEjxhHWta7vkQYo2hOXpOjBvFUl+oe6hDxD\ndbufmQ58i/wGkuH6DvVxoUUtHjFeHkzhgiaO+2h4XHTGLb/I0dPu2mGJAxaX\n0c/bF35DWstTahCbU8Grz8z51ppOH8vU4Tz2JB7rbFl4lMrconidFdk5ZtPY\nZRckPGVwLQTOQn6DtTPxu689tZ1mi1BVbVZ9oT1dZCjYKx2L28P7Zws/sgLA\nPmCRIm/3j9Sx4AXclLT/Xhz6yMrD9kk+bG+X77VymMJdx/d5VgJ6gwn9+8ok\nFhh/rgMF8hS4R2DRwaJmBfXK1lYyGsuJqrsUksJeyr+MFihGfQZKIUU1Hj+s\ni5pjDkjyj7SBFxtrEFfNam1L4itOFNzSwkWrOaONg0q13YUdmda1NeXO5+S6\nnUwp0i32SMkxIqxBg/O1QCbbbKfRBfiTB2RcCGTZJQU7MWSWGKSOtYih3IWt\nXsVbbNaMQ0SEDEKc1XGH8aJjkNvqTQbTbFvbSMfj/SVKFm0k392XDGoUSykO\naO4jmzpoQipCh+W0h2OSdL82N7UkVNLRlRYniyk31Pu5Z4+sGgKnTcwc+ycu\nEbyX\r\n=UNAO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC5GrgOma/afgRd09wbgr0vbOX1fxgpZgZTbpyjH2AWXQIhAMJlcLY4slUMT3h2ho4ZHYYvh4z53kjzq+6IVQn+VSLL"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.3_1594136733807_0.5027970282964409"},"_hasShrinkwrap":false},"7.0.4":{"version":"7.0.4","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"0b2972629575743a82cd9bfcfb70a80823adfb2b","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.4","_nodeVersion":"13.1.0","_npmVersion":"6.14.6","dist":{"integrity":"sha512-7qEYRlwSJMr/CSTsUNGKftsMEGKxU54pG8EwZJeblCecawVjFuT5ZpdttDUkzrqcNoU6VZ/T33DH7NsyorUjSQ==","shasum":"e4110ffca9d784cea63d9d9dd5f2bd94ffb85362","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.4.tgz","fileCount":75,"unpackedSize":187373,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDK/UCRA9TVsSAnZWagAAqYAP/2mJUjNFkI6neBe3714K\nCEx3bWAdULeBTo/76G6hZX6+5SAs22SzeHYpZkIzIoZsvvwhP7UyNFiI/R8c\nyBSTag3CQ9j5Gh/QWu5tvbayuAMrdKyO18mhsVUGPv+aaGB7YERmVTNlcRrM\n0eXz3FKoldffqx49yCmSciw7+0n5wJuieVPrVceZZYG8vFBQokLiaSG3RYfL\noKY7m3Y2xlFOzvlLMh7vUsCa/IhDnK6Fe4PyD9whCd2gutvUn3Kx/5gUNHBd\nJI5e7WPx9tNiwbihhaOJ6mJ1BCXPrixsl6Vjex/DunVdrN2Uqv2+gIlu7J5M\n5Q1VHn4fqv1Kj01+xJxDR+wQxOQ/oON21Uq74DBq5ewjaSyfPlPERCLm9CTW\nMLyXUKiIGQbVQfXEEL6vDeh8udBo2XI+NsJ7m4hxh1jiYIIDscRtNWA9rFNa\nOkHlxQmt98XmdkpUD+sZqidSc36MdpLV2IdhuoQ8oXFhYyMBXWEEU1iVV9Gd\nYJP653VAQxfpJLYoY6ZX4EZzHqQnzl1ONROmro3f8dg8Iwjn6/UgtbGppW8L\nsAJlaD5HQx+58fq6kq3fCkxgTfbEuHDOBZx540paKz2vsza9myOvyPxuAQcb\nwUytiTij5vYpTrt/bUKd2GjWE6BoWaAfRcK/rLnn0/mN3peRBAFl9QdGfc5x\njxDi\r\n=f1p9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCdXRlAY199t/3Ix9DgnUHrFHkxYU1/L7X/VoCzNouKKgIgSmCZ7lEKgT3kTVJc+pej+kRWx8V9bdLJ4FN+fTwidI4="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.4_1594666963774_0.5278511917530184"},"_hasShrinkwrap":false},"7.0.5":{"version":"7.0.5","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"d294594df865b6fd88c60d1ceca771f0b9a76cb1","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.5","_nodeVersion":"13.1.0","_npmVersion":"6.14.6","dist":{"integrity":"sha512-4cP1LGgn2iBEuE/qqG+Rw4VrKPSglJwuRqi5JSzw1KQ2Sb4So/sHHzhLZJPjeDdtXT6vGsoOIXXEGxGUohBk6Q==","shasum":"70345d7d8083984a3c8f96cb85fb39b794ef19fc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.5.tgz","fileCount":78,"unpackedSize":236646,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDLmACRA9TVsSAnZWagAAJ8cP/3nrSFzQI68Zc5xOKeRc\nfmqkKW2lCoYU5RICSv5eBndXCXQOgH/X22N1MqMZLBQiOvHRrsJSjqT8j5PR\nU3/UMApoBIjLmRFIpyblE78aAogjnIU6bi89NeEzAd8Da77in8u5RjrJx+x8\nod2suuieqY6En8OJESW7n1inaBjPDt3FzBJ6tAThQMoMrwvGxJI8uabHlcOl\nATDfR2gv8P9Zp1KYuNxEGvunv1strfZ7bkKDPDtsTHYAyssLLniUXSTTpOAH\nV8x259AwlDLuF5wmph0pArvjHmUAkH6dNdJIjKknTOmXgC3LMyrePqVJwhmw\nb8D+TYRp9E1gQ8NfPbNBxboFGeBxquijMOFvNCpB9AzjiQDJN/obqOKQfoW8\nXRDsTWCkDcWPMr+x3n5YvkgVOVK4i7hvZhUv52pdnJGvC7PvVGCYIcQ5hDhf\nLmIZP4b5ogmbLia5ERTMTzOWD1NaWICIIe9DTOYisdXkE1HZQM8CPzrJyFui\nrMs+ug21Lcj7QP1MTxjqJ6HL3yWmInlNgWHj9zJ4a9mGZo1JYx6qbojfHB5V\nLehQUKArbpXTYAEIC89BMW13tNx08G7phGyOQ1zWEtQPqdDiXhmJvkX38RDV\nEAl6TyYXIzj8vLfRAJK9ycV4E8GWjUEUZ7sMoivv4LnPu3bTWvaGVSvSNxnH\nzJBd\r\n=unyY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCE4BY+7+iYOafHz+B5K7RHORRLAdjP9TCQPkdvi/oKvwIgP5s5bsU6o7Gj0l9tcbTKzCswHo+ySenVP0AisMErTXE="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.5_1594669439757_0.6616769193148819"},"_hasShrinkwrap":false},"7.0.6":{"version":"7.0.6","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"959e58f5af2a514dd664ef1a19d76a5db1e0a248","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.6","_nodeVersion":"13.1.0","_npmVersion":"6.14.6","dist":{"integrity":"sha512-LtUyQCkGuKeAI4HcRO/XaGJXlmO3+pmU/Q8okkxKzghEaXiCTSZKiIXo63nA1AUdUL9ITp9OlpAKwE8evNDbuQ==","shasum":"9d76138d62bc17f66740b0cd6d69122d84e69b48","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.6.tgz","fileCount":75,"unpackedSize":185296,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDdNZCRA9TVsSAnZWagAAZ/MQAJmpmhR/6szNXqglhuus\nnK4Ivr3+Kt8+UeLv3Fp8j/ZIxN7O9qwoa9yJDCbJmgXteWAh3oHX8TRgVeib\nrI+Fl5eiJ7Ij6KhjirWy7MJuh3tyMudFCC+/8GHN8e3Ao/hnWKzjyQc3nJS9\nANeU9AwIRlxAdroeSao1kjaNb3+Vq2jSSGPwrE8Uc39dQwD94RPNEaOkxO6A\ngtAiB+gKSCkoTuLBkEclzc9hv7qnxL8cRDjajdv6UWnH7S5Hb8NXIU6Lma6E\nYPf8JzajiroWyS7nIqtpY5Ur/9gf2HMcxjWMAl97ZnrPYA4CZx9vHTKHmwaY\n/DLAzucI/cK6wA3UvhjPIKwjSJD4K8t7x5mSjR2baSJeTvVgeWsfo7Mxj0WV\nzIHyEE3Y8qx64nIM04rUz/HiufEY/Azn4zw2A5kTKm88MapPWnI8tZQ34owv\n1QMUIsq/zubdA9gubFpnPlzUzGOx4UTZOwFCSoppDbDLYtI8PN5hyGK3Q6un\nxe5xiJonUZADIuqKDBzxc2FUalZkDdeymgL1U5/BWcVTYyZj9OIrfS4Iurqc\na5wRyrgg/+pIsqeeoQfb4fKUqAfoXcl9k2w9uXncms1ZF/sxYOy99QQK7KGl\nlDaTPSWs4KGBpM+15fazRCz00ldLThpbnrLxIY0Yv3VZ2OsHFQDTcW7K/T1c\nPdZB\r\n=VLGw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDeHMiTQXsfRDkLB2omjo3tgQQFARhfTW6KsubJv45qfQIhAMcXqKBXCP+sveThcqLveY5mv8wLs60b/0e5oMB8KBrO"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.6_1594741593441_0.3062134897256992"},"_hasShrinkwrap":false},"7.0.7":{"version":"7.0.7","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"7e9a94a813e1115fbb6e07d4a4e6d8e969173d70","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.7","_nodeVersion":"13.1.0","_npmVersion":"6.14.6","dist":{"integrity":"sha512-HdXmN3ZNKOW0TTmwogeuggqNM1f/6gJfBwMxjVry3alNV2VcVtsma8K/8Dp/H5h3TTVu9HfPs8pYMd9lo1lT0g==","shasum":"4f44faba40cbfa9e57db809568f17088d6664eaa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.7.tgz","fileCount":77,"unpackedSize":236433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfENEJCRA9TVsSAnZWagAAJHcQAJjyf0CR238GNTXHqvIr\nXcL07vB97WfJMwBpc9j2lhT7hlFFuvLGHdK0tKUYK5gAUEKl1PCOW4G1aM22\np0M97RmEbDcFNt75fK1Dti/CybuzfJSdspsAsQqyDVkCyyjg9ueQ3jvqrJ/4\nCs/P0LhEq6aWwEklVo9EDTb1bASGvD3g6aCrahnefzV9cL1g92j3OXOl1EGx\nClsOcqVSkFaGqqBtPzBjfP7GPqMVbY6iohYZ/85Fsb82UXBBiM+dMyKTVXCp\nM8MD/0qyXavsT5rkW9hzyu/KfquY8i+h3FCjVrVyeOPqyLSIKmvT5tm2xaBg\nmem9NBZyxQ8NRMknJRfyOK2ihFQDAdBQyUJ0PPhfJqxPa3J4ahT3iTodjUHd\nCFWUrihH/XYkhTjnsN3mrKzwBwBrmoxUSnuk5dyMZv6CAOPPrHFJJM2Jn4IN\nGcy2b1MrwHlaL/TKNc8X5CNa3EM9KnP9yeVcSh/ExRJfh9HycYNi5NtFvOa4\nYc8FH9lmEqI3tK4ZyU5NcZz2CUs3DTJpCMvYZTFO8L3lXzzIlKS3kl1NoNBC\nCvtRaAvYkYRFgNf3TE7k8IdpzWwGNv4ERNL+gxHQ6++GVPCnGpX+DOZwXzdM\n5d2Vtfm4ryLnmA0o3GIbYwwLKD309DXfmQdJ9piebs2XNayW35TooVI56YXZ\nCoFr\r\n=mwKt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEo15FiqJz16XDQB7gzLIOpCSlLZJH+ezLU+XS1JK0I2AiBcGtC1fyrqgDX4Tf2qXBYNONn12piKgdZUkZM04zqEKw=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.7_1594937608839_0.33277107448507115"},"_hasShrinkwrap":false},"7.0.8":{"version":"7.0.8","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"9930f7f3134472bab703dc3851a21bf9cf3152de","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.8","_nodeVersion":"13.1.0","_npmVersion":"6.14.6","dist":{"integrity":"sha512-msN8uy2BBT41ZfKdbVZxXjspZN3T0BRQNPDsE4e2w7hDoq+Zdf3LLYbu8x6J4Y6PxAhRuQRlFtaCSNlpj5MsmQ==","shasum":"29b8c8c5a05b12f33647bfb12fb1c09131c37dbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.8.tgz","fileCount":77,"unpackedSize":236755,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFfAgCRA9TVsSAnZWagAAD18P/A+samIbiSo2thr96YMR\nf3/kMqZ8w/sYH+Ks2FK+bGE/qaDg7+JiqLXhdmc2OfISIuqWDOkEfzk+iqZg\nWPGfJjnHufn0kkMe4TaasbPPEri34P3BlV8rg/HzZVJInGTMh1CTI7ugxpdg\njAO5rFMLSfM4oidvXtP65Hov1quEwYOfzUqDcmQbGE+TCwa57MokOvl1vwmB\n5XTPBNB3apDEnupwcoDfGEJm62f1XY3Oq22WMvdV81wNYoO2jkbeocshf3yI\nC8VMuN0Ha6VdzlCG6poWa8rqCSYRE1leqO8vrWP1CL3kVDOG2uVubJfoYhZw\n9NlzP/UjtzmQ3CEFgA3P44380eXk/YNjINiQfKDJsn3F6F0wnLdtS5kSJLuC\nl39onUlZaxxRfPoH0+wqReEUlbp1MeIfoimbs7G1+CsNW/6t8gANZH0P8/Gm\nNb9CDpomSKkFOgRvmu3BBYu0wBCpoO+KUiWUAoJdknt3rDoWYlvijXTs6FdR\nSMuJu7nY2XrfTBZ9qM9xMwZa+0IkRe8F3Cn4VOd29R9sInDI9ICun6thEgSO\nqe1bhQsLyePYknCPT5h3EXTE3qCvmbNHBSC2hv0nZ5OV+TrabJkDsFHH77zv\n52zAFCCfPxocY0fnfSveoA+XxyMP5cNvFyPI9L3AOpUwGuz67geyXyoUMmeR\nvXfQ\r\n=300J\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfNK0esXArXG5VTNoLNUe2SV4ByqCrGRDFl2V6fiAfAgIgE/uhnwQK/6PdE7ltcktL6TthURN+E1pnhv2le4PCYJ0="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.8_1595273248196_0.01785144112413728"},"_hasShrinkwrap":false},"7.0.9":{"version":"7.0.9","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"46164d2db8d8d28f5ecfbc13c5addeba2da1367c","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.9","_nodeVersion":"13.1.0","_npmVersion":"6.14.6","dist":{"integrity":"sha512-1Z1vRSMgm+3UAx/pVR+/kvW9+tUcCK/pb29dxYLS82T8818anbGwu7n/DhtFVPblsW7LvFjOMsrQc0rmBnS1AQ==","shasum":"45f81eaa2adab070710d4c8ef9eff4f63a1a49e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.9.tgz","fileCount":77,"unpackedSize":237775,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFzprCRA9TVsSAnZWagAAMhcP/j+5FVp6d7TxkoB4NG3c\nlTT6dsUzHgqSTePMYhsFVKvb1k9dNOwSsAt+ujFuwXRydQ4HnfGzZWJZwZ2V\n4YpzMnYmB7J/ZvGR5nVd/2ppnjO7Snwv/6eoSB3ZMs0hep4rp5dtRdjghTC0\nFYC8ucGvQE6ITQASA4SpqRq+2sGVjTiGnVyJn9rK3eFf2onGUUQOgNOs7U17\nzcqX79FyTlWERKcFx04haxGYE4NRDfbT3zp++gzsJx9Q/PPZZkoavZQeD2lT\nKt4i0y1AB4lMoIh5N4T7L4bsy8GxZyBTsLMGVq4OH3MRNyxIVKdPyJUvW4dQ\nyI6FOZ7OLxbCo2GKBC+F726LuxuflCILVxzZrmsxMdO45E6pvR6YstgVe5F/\nSewqJL6yBuSvWZE18A62EQmX2UCYf9rvCSfcbOI+XanuWl4sIKGL9lmC82gN\nbFS7ishE3G1+FnsdDcNixdSONxUXP9CHQrOLO1NM/nzNvCU0dHWbEnZmLtYL\n/9QPd4MkGOVvqxSYU8e7PlpDX5VOeLBm4qecZmYUS/uYNJJ49GlY9/rQWZmS\ngbNj/ayQjNCN0FjkizamPIrcz1KhAB4sGyu6NATXdwC0FEGAvYWoflojJxuz\nQG55GiayqdUzzrKzQF+XA2+5vkxfWVZFEueTIl3CtxHLWu1wLAqV8NapTzZS\nEKnf\r\n=yLjJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDF+qdbTY7MrvSz+FUqRYJlZxnaovP3ohOZUjtevd1TJAIhAJZf2ixlzf7ueRnN5DOVUCBnrbzqIYI1O98urvuAq6dG"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.9_1595357802719_0.12854895879143502"},"_hasShrinkwrap":false},"7.0.10":{"version":"7.0.10","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"dfe78b7efc6adfd5a846cab9110be57f26fe3fae","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.0.10","_nodeVersion":"13.1.0","_npmVersion":"6.14.7","dist":{"integrity":"sha512-O6Bv4qBHpgptg9tbo8aR/zlcieTUd6kynkAqcJvR1xgFxGkOyL9Cgm/EfAlhQ1bGUAhod1PLClQQCI3DRicDUA==","shasum":"f06dd927143751e3c1d17c4b37801b883285acb8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.0.10.tgz","fileCount":78,"unpackedSize":239611,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfOUV4CRA9TVsSAnZWagAABUgQAIlSMXXqH1t6LtKXi4Xd\nON8TR7bMUL5fSno2JFQ4/0pztJb/Mklo0/wRnuGfLtO1JmB+KpdUJn94FlDK\nK5oZH9retFmTPUXqs2hdGewYd+5EBWztSo4xrG1SNNVf7W3D+iwT0bGmLp8w\nzDyIASl8wq/SijL0GDNC3NmtPTeqQiWESBGWkZh6xATae/espVsRCoL45zsK\nLj6PhmJMpvMOGSS/eUW+tL37+zC8nlzpppLDp4F7QGC07nzZ6qF/wKoDS7eV\nzJKGUuq2A3btEHh4kEFMMxh3akXbJhr3GwXWMObx4nfoKpK7X3tIMEbLTDm7\npPDMYME2/ibNd8M7QhlDjEfzklvcKBjvKucJ6aGH37R1Q7GubCD4Vu72dhvd\n8WHhyC/KK4Vt3U9BYOMsQYeIkQasPCVOE8yPtNyu5jrarNNujBs6Wl31jERD\nrLjwT5qS9qb9kdSZG1TgZJ/VEApXIGDtpzHKbw0HXWkoJfaCoQnrmvkqOuFk\nWVVs2K9s/SnrWCi/NU1KO8aEfqzqmXNLy4gIsRfglFzDym1X0j4T6Vb5CwjT\nx2gOoummO1l5mr0DQluQeHMMngirGgffY7QpZOgX9yfc0pIQRQ58NgNlzH6O\n65DJgfFYOOW9SKQKjHQoqj4VE7Wt5mkbDLT9dcsFNhPtgUd/FwO/g+dfb/JJ\nbfi3\r\n=Q3we\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCFpOwOSgvlBY2y0Hn1VcJwsNGerC4vGREgoh6g5D/HxwIgSZ71VAKX7aLUd5Oi8nrw1tgM3in6cKzaAMmXh+jZYXs="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.0.10_1597588856117_0.4550614325673792"},"_hasShrinkwrap":false},"7.1.0":{"version":"7.1.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"4d280fd37fda74770a28b715dbe567066f353c70","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.1.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.7","dist":{"integrity":"sha512-zejRFf4+gUc6lCTJWb898blaM+hPdUIqzLnBqjToal05oHx2tz5Vmgpx8P/kR/GjHHqH48Wu1uA/4dSx0Uku2w==","shasum":"f5c53a2a4ca8081766b3d8526b509f95c5a14c6c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.1.0.tgz","fileCount":79,"unpackedSize":247887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfOXLFCRA9TVsSAnZWagAAfskP/2FUPqm7w7pQRQlugOPh\nQyYuGIkkJYmGc96OvKLvx08Ow4L/akrwZZ45YZnhyLxqSJZ/bJNcVMa6NEXM\nMchjahYgA1fFZhJwjSxQXgL1o0La3hMA4/IOiPth/1xp87XLkKd/3qjeISWB\nNUfYfWadPDJJPhULIRGAEWwVZfvcxshQ6KlO1UnD3I92xntajYizPh6+gTcr\nqV5+pQK9TbOxV0EJ7D4CfKZZ0VOf7m4xB1wUPG02OM/Xptaw4cut1hk6paSS\nvqQK9DLzVljwyYTp9exPoUtvDyqNY0OHesCoExHI1UYtooboNy+FpS1Hwqax\ni8bnZKN/nuhuA8Sz3WEfSAQQSTGNP7//ErBrKwP5NTxmwUp8HNbD7V4BqmTt\neSewI8Ok84GDJaf98Qz8OjtSpeFHolTwqHWi6pWWirBPrjJVhCDGANvUrK0L\nvzD4CwUmIvJOjc3vP/rO5dphPm3OfvZBUxguEMadHyubnR88WJKbfmXmHL+3\nXQZz5yx2KBfwpQzzNXWfCfUbBgmlj/TbTiFdtiCNdsEZvNKCHf7+7jkdJJA+\n+hNIiDKrVXs+hqW+lOjikiT7FkSKF6pjKiWX/q499RLB5Q1tSprzKNmXjui9\nl9R7xH454ln6HxQWpbAUWFqtn5lrTsLoyFbbXk3eoWpXzNDq/x7fn2aTrRpt\n2/O/\r\n=seBU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQ7oEmaRH5IEWn6arvPuZR4sAJkZmLo4zHsiQLbh1lVwIgbMlbuEJctfyGm3HizTfSXcbjaAK+0+Fxrw0D1S1pvdU="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.1.0_1597600453042_0.6872885714989161"},"_hasShrinkwrap":false},"7.1.1":{"version":"7.1.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"1e9c6fab9ed6a6ab33f9e7eef0aa7c839014c723","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.1.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.7","dist":{"integrity":"sha512-tSHRxxzgaC1sra7uDF1ipEN30tB/96rWkcC5aJe48Bvt6V0cEer2kwBdA4iXk3cE0MxXhTbb/YfFsY54hVI1cg==","shasum":"76e20d3411c9fc48c1678761ecec3a144250a448","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.1.1.tgz","fileCount":76,"unpackedSize":198561,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfOY5GCRA9TVsSAnZWagAA/awQAKFiHGpUkH4VbSU3ku89\nO8jXLXrbNMIqzcAX0H+/1bCaM9osxSCgl9uJ8t7FwJPyyKk0u4gIp+4OR+go\nYpb37ifvcIltWu1CePBGaDSvIAeBBR/aszxjM1nY39pU+4ksuEXh0Wv3z6Aw\n/1QHYbEOldUpbNtz8Tkpz34+Ah4s7C6QAdNQ1GuTsjl2Ldz8+4UzgEfiKViW\nKHcVY51j7VKxBHfQEdXa0PelLQH2wa+WnrHGwKBQYC1YCoolQC4oF6/k6Zho\noGZVzBcFe8Fvzbm/luRQhqcjyptxLsG2O8b1PHyPV2qPrt2GtmMMQFG90XX+\nVzIoS/SRkduIY82kBkzdhdOjiQI8FVqXjuz0m73uuCsAwopD5ZiQugCvxFgt\nH9dnp0O6SHhPp/NKv+JiRyj3Gi7/bA7nmBqvjFcR57mGae1kjK8RHynIF43H\nN2q8kzopDvMk/38jDxSfT3eTwl/BiR1+xyFhgpZ7bbdKzbbZR0welY3fUhx4\nftvVwBoYZbk8F9o8g3ERANYtRIQXcToQUbOgc+VjYUz6Z2EmG0jfJYOrPwD+\nmm1AzO6HWCsZTzv75yj9f9/i23q1ACBz5znEmHkU/DyHI1e823FUnnmAf0Uq\nANDp9DIfswVNv7ffL0DDq5gurBOknIfwKOAazOirAt2C3dpCRHn8au7EqweL\nngjU\r\n=COXr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDUSBPimNNwOzifBbt6oc8IMt6vK0G40QFW/KX2oQtFOwIhAIgHs/+abAzXudVbElQ9vs5epOL+0wT+7AoUWxcq7T56"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.1.1_1597607493496_0.30037735485844386"},"_hasShrinkwrap":false},"7.2.0":{"version":"7.2.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.0.5","tslint":"^6.1.2","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^3.9.6"},"gitHead":"df6dc2617cd3d932220a4a2915964634a70ec744","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.2.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-Iv1gOeoQ4l/1ztBLemgLOCS4iaVemHezfpa5/X+iqS4apfvUVLJ47Vw6KO7deBO2d2ElvrGZ2ayZX7j3uhtsRw==","shasum":"dbcbb98997a86e9b388d0b999ef6a827386a8a51","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.2.0.tgz","fileCount":76,"unpackedSize":203645,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfQZ1FCRA9TVsSAnZWagAAOEAP/1oWEF/tX4vr+WRjn7HE\ns3sWe10lvXgCtJILP6WmU9H1lzRDuFahwOMROHShRfbpyguZYlBD4+BTy8Mw\n8r9Gfy9G4LEToTux1c7X9/L1I7mKrZ7IfN0AbaYojmDSk/L6ZJd9ScFkUB6h\n5wiJ52q/5QlleNSaZmKlGuFvA3tJNdSineWZzMeEp5RkuVjTy3Y0BaymrziH\n1MyP3fHJl8MNVGRPylPXKat8iyxy477r232T7kP+wtPr64atk5sNZH1doWh0\n3Yhj95bh57/m9wmXZhPTIRHar0Gsi/1R79O1uuJTF4uThxNRR+0uiN0kiEOw\n1ReAaNRxlTotUKLyOJHArTcNInrKhVHYtVoxqXoiH6eqg4RTVwIz8bZFouti\nIgz2C8wYrVFsExBthLXFIQp+hF8DctKZ1F+OAaHYRfz/rNqWxm3WwC4G36so\nkVOxczjHH74PScZyOaAFL2f5EVnLuKP3i1ZYnnHe/krBt1ZnKiiqSFSjBZ2T\nzPraJUqlXkMbw3UJBXrTYMxAxoW2yY7GIJqlGDDDT6u+aStvl3XxH79hxYj+\nrpXeT3X95/s+VRf/8c6oosZvxRJl5IuG9WPHAwUyBXoYnCi8IMj6fLGTwUU4\nC+70FoBWz3bwt/f2Jh820cFBdY7WxeEF4rrQ1wUuCrG7c2hJWl/3MOJajCd5\nCjCR\r\n=4+tv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXKxW4P+VHiZG3f+tMYNmj3SPE4Y9wx6gQQD+nxNFhIAIhAISpHiigdKOjL8tO5adub7ffTGjxhJzAVU07Qu+mmVmu"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.2.0_1598135620815_0.2656151979539614"},"_hasShrinkwrap":false},"7.3.0":{"version":"7.3.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.1.1","tslint":"^6.1.3","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^4.0.2"},"gitHead":"e22383847d8ed05ff7ba87a922e096f8c1675f0c","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.3.0","_nodeVersion":"13.1.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-d52Cik3CceYI3l6quBOa9phBk2Ef0f0KAhL/FWJv+Tt0ecogyDcE4eeg1jyL8f8rQwGnBi3iNtlYFnFE31jluA==","shasum":"bab9d4837282767dfa7d4e2cf87d200ca5d4cb3b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.3.0.tgz","fileCount":76,"unpackedSize":203429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfS6nICRA9TVsSAnZWagAA/hgP/iTRodCyY9Jws4JnJZt9\nBY4UI0hp88rgy6snzf5QxhCWfd9KUIJDaRoFeMmlixEeJdmgPtb6f7n7uLzC\nWT082P5to/KNY4AhzKFwxzVNuihOiS4SkjpmnhcQeB8wHF1KYKsRi50Mi3BL\nE05ZBt2K/BQ6EnmOMM7Ef0WbtQdkc62e7q3GOSWhqZ2pGBTICscTGMs7WwNu\nBJl8e3q5UtWbzRF7okLSpf0o/mGJkMuQAGpzLRIsJaSG5p8u21sABNHuMqvm\n2H+G79zansw6gxQMb5ov8kFrckMUKobjR/h1zRHoEjEAlnPjp0mue7KyTT74\nYA+sE7GgsKMIENqYyEKTODsfy5TN5Q3UJ/cCxFwaUqekfVFxiaUWRYxuJamL\nFCc9Gnh6bAZVEEBYGxL3sT7xKDiA286DxSn9572LXOQiOakyBpi45kJbzfrM\nqjtVYKG0Z+LkzpJAT9ACiSdILg8N+sEVbhOvyHhuxartDuNw9biw1a5bVKg9\nqgDZOQXnO1Rm4U2vo+QNtzs4oCVvGBufrpUpETWo7CsS012pFI+cFB8ue/EQ\nN3VSL1Z19g9W1s16CqDqmXr9CkIyP7J3FPnT+P8e6NmVDZeo7X6EXFQXL1RM\nWgFXIWe/1NP2WstcGRgH3g0GDEXfBUAB140sJam0kSoc297JFMPSn894oX/0\nWniO\r\n=gcjx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICnaHSV9FPZQCxcj9VSaTKolO2BGIPLvwC+d9Nu01rjoAiB2u3u7QanI8Z0ynOJG0EudWtfx/JWfKfpVUXddybH2NQ=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.3.0_1598794183636_0.41189690929202394"},"_hasShrinkwrap":false},"7.3.1":{"version":"7.3.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.1.1","tslint":"^6.1.3","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^4.0.2"},"gitHead":"3b2334836b3175fed145dd618a40c6bebb575a72","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.3.1","_nodeVersion":"13.1.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-c2cHZmNz2WU4NXgPkILvACxgQXIIAcmXoYQN8j53LigDYNrQp3dIZ+4OH851VlqnBIfpFttQUabeWz6m0+9fKg==","shasum":"824ed54772639a01c8fe0d48d81c4075a2d03d39","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.3.1.tgz","fileCount":76,"unpackedSize":203904,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVUa9CRA9TVsSAnZWagAAfWMP/iXnMKSwQtkosw9u02jZ\npuym7MPXT12adpACeqm9jEcYNJB3/Vd3G5537JFfD8wtCdPThWFRcNMv2uNF\nm1u94sZz1v8O58KNtW9J4mDF7XKyaHm7fCvXgKkFL/y3E7k+Nk76+V/sCh2k\nGROiJhtInewxadmusQiccAZqYYlrNLorES1lHJHW0saRafhTdAVJWTgZ5YAk\nFqy/3wgQb0hlOuV6+B/e95lpWq9e2So+eBsQVbZKo32xY1GH34O5Pa7wbe6b\na0Is+t/g/LLzQHiRbdAoLnRr9n8q6XGtl6uDnpm50J2JpDak/xMVQVQ2doAt\nq4YGKuwu8uI3yAnIxfplJ7YXj71lz5j9bn4scrhsQCcg38HlzhtLRPMwmyTL\nN6sOSjQd3wJeTggjYsrUtZZsibPf5lytmp8yVNgypZiBqVVomPKsv47UeVgP\nPP4hyYVwBSCB032vDTh+ZiNhAGSxZyK83w1UcrhphSp8PaOS5vZj+FPu9/M5\nv5NyYA6eTMw3tU6NDKlDaI7TeJduBvQdWsZgrQUEf6BmZK5P7TN9obZJ+cFj\nSQ3FYF7GDVQnMyl62JcfGcW3HdHIPE+EIQqnXU3vhlN/AnaND5UeIz8QuLoE\nfltUif58yxfSsARIW94uvdU+IcAQqL+JhEuxuSVTK2yM9VSMFn7JEHlyaA1x\neTh2\r\n=5k+h\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCfLBie8gBJ5krdj1d1bl+lug9IMMlg2Izm46IrhIz3IgIhAOu5Wf7jokfokM5eYsEd34z14503Ud1emxB0X959hoLc"}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.3.1_1599424189129_0.8384940602001609"},"_hasShrinkwrap":false},"7.4.0":{"version":"7.4.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | grep -v node_modules |xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.1.2","tslint":"^6.1.3","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^4.0.5"},"gitHead":"46c0aa828bcf26c1766a66eefad76ec8ddb041f3","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.4.0","_nodeVersion":"14.10.1","_npmVersion":"6.14.8","dist":{"integrity":"sha512-jrfru4nI0DRl4zMVqpv2aIp5EvNNy5ingFfM+el0B6CLSQ4n2aWdNU45kcuuT6heFTGQnbUxGsP5k3jWOxuhBw==","shasum":"4c0bc93ba9d1c0257ae72b52fd4200869df46aa6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.4.0.tgz","fileCount":79,"unpackedSize":253224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnttvCRA9TVsSAnZWagAA/pEP/jGoe34STTMiN0QTZT0F\nLNyNJz1XU0XapQNMT6/jHNPOCslVxjdN+B/wJMHkp4fk19lo9OuQ7OPR21Nj\nkI6pSlUYBIFUPyNiOFhsvGB6nl5KddPy/dCquZ7ZVTeoqqCADAC6aPYRayHN\ngDZ++D0bO7/7HQYbg5zfYkxwH4M3LWGmztSoAxuoFomvN3KCmpM6xfIT69u+\nZnexzNlMY5kHE2EiPHbLm8Lnb7HPvl++t1OL0fJjN+aAoTvMKsH+CKMLisAi\n+mzSRm5Jmos+l0Wm4R0bS2w3RxfA7WZTY+gy6K5e8vQXZ+wrptykUa3RAKPp\n81N+x+Bvo1wwyozDs+sp2TzdWHfCBnSlinJ7FyHCPU5aRx6y/CWnvtFyT3Fd\nROlibpSfV10iBFtO0Hl1aVbiWn6JrhSQFaWUPvALJMSynXcwysS4Ush23GP9\nO7ngHv1RC2ERLdI6VPPigXX5+RPCtBAL+Xu3/yZ1MMoNXn32xaMB9DE1aGdn\nQUEYQPHlZBrF3KiidzSEczylnSSm55eJrNdi2I83yNVaV3to/ORooDSVaZNg\nnYzyIePmcVsrkMTgAfuNth+N4dNDAhUlu7BoKFeB2b4y1dL+EKbAe9+Ws3R6\nhkMtxebaEGtHWVTbBXKxKRViOgRUVpgKlE/MC4SCP0Bjaz9BI8VWBRIEBs00\nMjpA\r\n=N6Jn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDt3vH31RlQBIblgf0olqsJPqcGHIb/KSAHOMzzpB87NAiAPjzwdpWh8GiPOIT8SiGpNHlzKOINyW1YBrb6NM4FPZQ=="}]},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.4.0_1604246383174_0.03970841448856399"},"_hasShrinkwrap":false},"7.5.0":{"version":"7.5.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | grep -v node_modules |xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.1.2","tslint":"^6.1.3","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^4.0.5"},"gitHead":"c9d7e136b22f700b32138bd98837c048d89eecd0","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.5.0","_nodeVersion":"14.10.1","_npmVersion":"6.14.8","dist":{"integrity":"sha512-Uh9hrhYQl5y/afIjYr9VV2Eibg/N5aM4e9YmQOmczs4yM/P1T2KzhzByKZc8szghyGeAxE/73LpjpCd0uayTJg==","shasum":"4b8e61ec01111191d175c960b9cd204878323917","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.5.0.tgz","fileCount":80,"unpackedSize":256276,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfqEeDCRA9TVsSAnZWagAAU/QP/3EU/T1Lywuxmdpu9Hvo\nXxQ44k1WxvVRJuHZRicwqiigbISxlk5HKHwxizPmEjJmDPxWEk+J+aosctwS\niQo479NSCIPqt1eF30fWwYt9rsXq7n4+RryXqbkqlrD7UVlUh8kLkK75Fbq9\noJKLtLu2b/m6uW0rpPqSUP0RofKSWw5VG5fGAFyJmCaD+j6H3m+1XvLb0Z0L\nas0eJDgCgm+c5qa/OnqCrLru0ynde3TjeSTnOh8aITtTdzwLZMaiT3D4piEI\noERNLyVPO8IpJSQYdNrkxM4z3wC9cEB2CAYOnfWSdNTPLHpPSJC6a2eoAji0\n919IAspJ3xB0y7DVpopgbyioQAGvcTIBsNLbxER116ff3mOhI8CKScUD7FcN\n94m3MUd5F2Bl8gXJPEXQxkg/7n2Z7nEuMUaQsr3I2ZqYPSVXgZOkuYQtVe23\nZBvJSkccUkBIZsQ0aLldOiG+E2jH/7S48dUmWbuCj/QHaNLc7pe70XE7Burm\n1K4UTRvXbgly9tyl+5Az+0aNO+dzFCnEX2Y9mt69DaP3Gqga1qpiveoFBugw\nAl2WJHTg8698nQI6L0UYQHjxpAzENcTU+Vh5zJRBJO2hqE7jhbmz1vvwFi9m\ne8xCQ6ROdZhWtGdF8XIVjAUAiOhTjsGnt3p+SNr3QVcp+FoNuBRG1Nwa9uvZ\nPNpP\r\n=NBEv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGLTYSKaExxL/UiwlEYkhLp2j2ZNqGaV+BUyEd2t1arDAiEA75S0x9KeGMyMePO508djcUNUzlC3rDyWqJIuXuTHMx0="}]},"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.5.0_1604863874597_0.8442164906566256"},"_hasShrinkwrap":false},"7.6.0":{"version":"7.6.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | grep -v node_modules |xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.1.2","tslint":"^6.1.3","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^4.0.5"},"gitHead":"1c43714f878c54c048ca1fbfeba8fb5dfe16df12","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.6.0","_nodeVersion":"14.10.1","_npmVersion":"6.14.8","dist":{"integrity":"sha512-oNLEPl3sAGAWsIbrpI9svgwohopTDYVkaOSmPDC3ga656GkrzaUY8A52E8uejNKDZbjAWspiPqlpYVEJkZGJgQ==","shasum":"241f4d539cf21ed9ddeb150e94a4b7472b344ff1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.6.0.tgz","fileCount":80,"unpackedSize":253979,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfqGQFCRA9TVsSAnZWagAARR8QAIV+nrnw7VczMWIlV9nJ\np2Da67mfh536nGBc5iMBsu4Xi/8RpqQrTDqOjzLpM2VoV+JkUcAUMNmbSnLC\nU3xAEk15Fm1gat0Ap5I9rRY/fpPdo6bCDfSKfqPd8yHoT9G2iZVyFMovMqBi\nxYHgXS22Q9O7hqXtN2PVTU99fH8ieaB4u6Ds+OYvOjS5wfyqgxXNtNdS55po\n+OjH5MRZ1uUcU8zmFOKzECaSTjtr/6AQdrZVTm0l4KOQuoDMmKe6UhwDTkKw\nA+2u5ON6LaZga4d7j7thmehgbGxDPQLCnRatqUctD2BSvYvrgJZnawhq9OUD\ngB1IWPYLJqax3JWtoi6u/Kih2d5ARyU2JaBCNtcxgngo5KuHn4DGISi1ZXQA\nGBLtI76/oL+MZTKW7rbKOQ7j+sHFmFDq1xTCBwUxUl7AL+GZIcINdU5wNTAQ\n2a2ptytv0U6sGg/RE2DAD4kH3F4QxB9nVpNGysShXIQzgfF5uxJNAyRNvR90\ndEYsaT3DWRpaS87F35bNi23UA5MgcZnHQZkRv9fqz/bnB6OwpuEfG5NRTEBq\nKCzgrP32OL2bI0nHyWiNo1YIeFDZSh8yB5EWErMk2Rwek4cb0HDaI6LH+4Hv\n4qtolcuAjkz1XKSS5ig13lnnof+l3j+RdKJlX3LAoW+hmHBcJosoAxxBCgm9\nXyZx\r\n=IRId\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHhK+EFuiIe6XPtTO2KuxKTJVufeCSO+rbYZTmnu3/JZAiEAm/p8c97ZwJI8za/Bcx2JxOAc4We2r0e7p9MRE+IfKAM="}]},"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.6.0_1604871173119_0.7181359579565412"},"_hasShrinkwrap":false},"7.6.1":{"version":"7.6.1","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | grep -v node_modules |xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.1.2","tslint":"^6.1.3","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^4.0.5"},"gitHead":"77b8f0663a2329a7c2fe1243652a731b36b405c7","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.6.1","_nodeVersion":"15.4.0","_npmVersion":"6.14.9","dist":{"integrity":"sha512-LP7lErFV0JU27Fd+c87FtLG3w9yYVPDI+5ULECVwcFL4Kv4XmRyqPwAjHvs9YtKcxIembpyqhRtfn9914AB7sg==","shasum":"294114225ac9d5bd9a3f59452ebf5671edb42997","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.6.1.tgz","fileCount":80,"unpackedSize":254137,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0v4dCRA9TVsSAnZWagAAs60P/2nY96QO8t29oLlei34+\nIggbPygHVr3IplX1LeetT6zBoWsHWJpqfC22Z2/WD9ZEDJqlyS0NrAEZfGgp\nx1LGgHYntmJjobMXiuTaGHCZP5jDFfL44GcZbRmEwam4QOVkRIFxbwMLrZ5s\ngX45mqmHHvo5aDxldplcM/PVLYDcdAsPTMly8w3RgmV5QJbiHX+hleZDMuaA\nnreZZVj/Q2G71e9ZFakmIqsPY+0JuzaW4Ub7ITPSBGjYCSEh19mzC04TQFy8\nVc1RvGI3FBDYvigPJXL63L48Xh8yTYJna2B/pyvgdg265UTyptoxw5DHf17X\nBT+txZz0oj3aZhRFvkecbgMDKJmXFjaNQ0f54uQ8CGZ7DHR3GWE5lcWqhMda\nYxNVj5JVeELsXwXUqr0qKBxps78wk01/MZM4TkqYaxvbCpApSL17IqJFJYzD\nZuypgWZgy4zMEo+93QseTKxaSK1qYn36YZ57Be5nOfSB20vNfKLr+ocCId3P\n5QPVqQYSdoubyWrRJZ+H9m/bpeCyUSSs3K5e8oCGaVQBx3PaWOuk60+gYEw3\nNLgImz9JEbYgWRz1s5QFwuCdKpGMfCt7flgDJAPQRR2zqikTf1kdrPAKvzdk\nkHxNDHv6kGE73mxKPdLbLcx3rR9FErm3DLSfNZyJwaHhxLLshgNukQaf2NPf\nlXcK\r\n=4m3c\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZNH3F40M0/G+NWL79ksRFcyqaakyjTLxpOkahG+l3JAIhALw8EKcyseeAdFt6nCzvewL+7ZG+lJTStG2yyBLomHAa"}]},"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.6.1_1607663133210_0.04072145641189606"},"_hasShrinkwrap":false},"7.7.0":{"version":"7.7.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | grep -v node_modules |xargs npx prettier --write","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.2.1","tslint":"^6.1.3","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^4.1.2"},"gitHead":"3a70fb5bdb071ce97eb390c9658cd7d5a6a825dc","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.7.0","_nodeVersion":"15.4.0","_npmVersion":"6.14.9","dist":{"integrity":"sha512-9x/9j8h7i8rZEvEWfVQoFlYthsuxqnD41GGT299lVxpVoyJcMn5Iv4j2yXM6AFS/mXWMq7Ot/2Xw/RqjvvoA4Q==","shasum":"857b47f7fcf4299cf5917077f6630a81f1861aef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.7.0.tgz","fileCount":77,"unpackedSize":212365,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0z4ICRA9TVsSAnZWagAA35AP/2xNImZMrk8dV87c2Ig+\nhCMp61YCIHgxsl2yn/99GDrDOmqJCbanc/AuyMPbTxiseGu/UFR5gOzMkQkk\nMPlHpQms+Bd/EGXWMwoTmtodUB0+/yy9MMI2oUsmebJmu1YrfeV1FfVNoweJ\nOdIK8zVL4iknuQwgxw3A7q1dX7RakXua+jHW08EBSUJR9g+fLP2z4PmH5410\nL38oyOe63I4azrb4xB3+szJvqaoVLFa974g2zw301BfaOC4yVRVtJEU/S/U9\nk+4pC7ty8eoVqOdISM7ha+lllgIcdxfDXjOmay7OLNe4XbH1UZH71ow8zGwu\n6ASy06cHts8limS5OphKwTl2Cmc/QG8cbf4cgb/10RvmDAw2WcOSHHy4UERI\n8kK9+fzS7OiZ+11Kgpwo8e4JpIwn6o9hX5n3TZELsU5zBtVo0M53Wn9KOPai\neHkNWSX/2J09SxXODAgp+IfxL7irtPP5/2WFVDp80KJWO07uubAmTbVTzvx5\nmqg66Aod+WxOQJ8nHilFiBMp7DJ86pJvFX0JKjTUp0vEDi1UZQWU5j6TCZZz\nnG8Wrgap2QvGOhnyLUR7kdR39aPJPBZQHOOiwrIFd41YsnLVA0iJ0TZCVHc2\n7ZdEVBT5+43dngpKsYxlmbbIbAW8NRC+8lerhv0Fm6TrFvwSTQ0krBq3/ByP\nI3+S\r\n=yz2f\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGVwcWjQ9etn6r6YggCzfvJlqtdhrrh+uY+Of9u5t0I+AiEA7C0eq58OjjiZVXApqx5bf3P5p7dABTjCW51Wa1wGWw4="}]},"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.7.0_1607679496492_0.6081558593542187"},"_hasShrinkwrap":false},"7.8.0":{"version":"7.8.0","name":"cordova-plugin-fcm-with-dependecy-updated","cordova_name":"Cordova FCM Push Plugin","description":"Google Firebase Cloud Messaging Cordova Push Plugin fork with dependecy updated","license":"MIT","main":"www/FCMPlugin.js","typings":"typings/index.d.ts","repo":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated","issue":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues","author":{"name":"André Augusto Tissot"},"scripts":{"build":"npm run build:www;npm run build:ionic","build:www":"cd ./src/www;npm run build","build:ionic":"cd ./src/ionic;npm run build","prettier-src":"find ./src/ -name '*.js' -or -name '*.ts' -or -name '*.tsx' -or -name '*.scss' | grep -v node_modules | xargs npx prettier --write","prettier-scripts":"find ./scripts -name '*.js' | xargs npx prettier --write","prettier":"npm run prettier-src;npm run prettier-scripts","tslint":"npx tslint -p ./src/www --fix;npx tslint -p ./src/ionic --fix"},"repository":{"type":"git","url":"git+https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated.git"},"keywords":["ecosystem:cordova","cordova-android","cordova-ios","notifications","push","firebase","fcm","ios","android","cordova"],"platforms":["android","ios"],"englishdoc":"","devDependencies":{"prettier":"^2.2.1","tslint":"^6.1.3","tslint-microsoft-contrib":"^6.2.0"},"dependencies":{"typescript":"^4.1.3"},"gitHead":"b17d06f64082129abfc0d2d13339c00637971f74","bugs":{"url":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated/issues"},"homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme","_id":"cordova-plugin-fcm-with-dependecy-updated@7.8.0","_nodeVersion":"14.10.1","_npmVersion":"7.5.2","dist":{"integrity":"sha512-p2pbY1oqQ2UDbaWOWA2z84uMXmdDGYmK2O+mrufj1bZyoFodt7WqrtiB9oDnUuSSinMrdNFrupiWEDMSBSNVeQ==","shasum":"83ff1662adf4f9b0b267c7ed54aca82b1f3bbdc5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-fcm-with-dependecy-updated/-/cordova-plugin-fcm-with-dependecy-updated-7.8.0.tgz","fileCount":78,"unpackedSize":214275,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGyK3CRA9TVsSAnZWagAAcicQAJ1VZmMefDeXzo2Hmrg2\nLQXimc1Aqrj5a/n8LyTcU+e4HozXg2esNn/17XpdnhBm6cxxGvtIUSXIo3VM\nijxqZ/ixevnsTZ82c53O8ALv2c0achNpxB2TdnlrBYfbFkFEHJunSGLmEXDx\n044eS6X7XVEnT46ad3AQKd/PghxTmvx5D2YpvTtouWUebx004um5SIvVY2qu\nvo8pKSL8BgujRiytkKyuuQQXxYORHmLTeAWOqAz9Nkx9fT4aGG8mLL2PQ5gJ\n1H3DprHiHQmZCU5egr01ebQhM2GsVhx4OeWIP6AQpUwlfuHy13VMdhUzB3Tg\nvh3x4/1HNgYL2ywFV4bgr/3L3NuzECaN6krzaq++P4z4hsUEimf3yKOWktZO\ng0IPVNkXYB9e4+kUcZCF49gyoPTpePWXX5y3yqqDXtDPhW0DyXVsKYbtya/Y\nT0fGWe8Z4LUnwkUoo+1Bki9bS6ZK9/Vks+zVOaQPp/bU2Lgc+kPtI09klWcZ\nE898AEtIGgpEy2Jgh9WQDLz+GlUzMokyzGPDiFkbpccbTZbN4Lj161ewLYck\nPPIHE7nARMLXJrKvSMy6ybHmBtuD0MBCBzW3NXhkg7VS725rddf5RqojQypb\n0rn5hgsJuYOQR4rzRn6trBsuJiQP4AR2otlXyMD0VPb8FQjF/WHYTphk3LiO\n3Fle\r\n=wlZH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDX0E2yGIlIaZqBqSK6dfRbPEhWYbuGsj3X7fTcmTFCnwIgAhCFJvHWP85W8SODVcp4Lt4ci2j3RjBmBSRtlaYDA0w="}]},"_npmUser":{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"},"directories":{},"maintainers":[{"name":"anonymous","email":"andre_a_tissot@yahoo.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-fcm-with-dependecy-updated_7.8.0_1612391095412_0.38964646117379376"},"_hasShrinkwrap":false}},"name":"cordova-plugin-fcm-with-dependecy-updated","time":{"modified":"2022-06-14T00:10:26.830Z","created":"2017-05-28T19:46:25.793Z","2.1.1":"2017-05-28T19:46:25.793Z","2.1.2":"2017-05-28T20:01:06.733Z","2.1.3":"2017-05-28T20:17:56.900Z","2.1.4":"2017-05-29T00:46:56.989Z","2.2.0":"2017-06-01T15:32:06.764Z","2.2.1":"2017-06-01T16:02:03.237Z","2.2.2":"2017-08-28T14:28:00.465Z","2.2.3":"2018-01-05T22:11:11.908Z","2.2.4":"2018-01-05T22:40:13.577Z","2.2.5":"2018-10-06T16:06:30.102Z","2.2.6":"2018-10-28T12:04:15.097Z","2.3.0":"2018-11-27T20:17:04.171Z","2.4.0":"2018-12-12T19:31:15.895Z","3.0.0":"2019-08-24T22:09:31.234Z","3.1.0":"2019-09-15T18:52:07.975Z","3.2.0":"2019-09-16T18:36:40.738Z","4.0.0":"2019-10-12T13:19:51.228Z","4.0.1":"2019-10-24T19:52:54.177Z","4.1.0":"2019-10-26T08:01:37.814Z","4.1.1":"2019-12-03T23:06:11.331Z","4.2.0":"2020-02-24T21:00:11.687Z","4.3.0":"2020-03-16T17:45:13.383Z","4.4.0":"2020-03-16T17:52:15.256Z","4.4.1":"2020-03-26T17:16:26.783Z","4.4.3":"2020-03-29T18:05:50.714Z","4.5.0":"2020-03-29T20:54:56.819Z","4.5.1":"2020-03-30T18:41:39.393Z","4.5.2":"2020-04-02T21:09:21.914Z","4.5.3":"2020-04-02T21:44:34.391Z","4.5.4":"2020-04-04T13:53:01.785Z","4.5.5":"2020-04-04T17:20:52.865Z","4.6.0":"2020-04-04T18:07:39.479Z","4.6.1":"2020-04-10T15:31:12.266Z","5.0.0-beta.0":"2020-04-11T21:31:57.493Z","5.0.0-beta.1":"2020-04-11T21:43:48.493Z","4.6.2":"2020-04-11T21:45:17.556Z","5.0.0-beta.2":"2020-04-14T18:37:18.398Z","4.6.3":"2020-04-14T18:37:50.710Z","5.0.0-beta.3":"2020-04-15T19:12:29.326Z","5.0.0":"2020-04-16T17:13:21.517Z","5.1.0":"2020-04-18T11:20:32.799Z","6.0.0":"2020-04-18T16:54:37.193Z","6.0.1":"2020-04-20T13:37:19.182Z","4.6.4":"2020-04-20T15:44:51.145Z","6.1.0":"2020-04-24T14:53:51.266Z","6.2.1":"2020-04-26T18:18:19.350Z","6.3.0":"2020-04-27T19:56:30.699Z","6.3.1":"2020-05-05T16:11:16.701Z","6.4.0":"2020-05-21T16:35:39.960Z","6.4.1":"2020-05-26T16:29:53.986Z","7.0.0-beta.0":"2020-06-04T17:38:16.164Z","7.0.0-beta.1":"2020-06-07T23:09:02.261Z","6.4.2":"2020-06-07T23:10:45.176Z","6.4.3":"2020-06-08T18:35:25.549Z","7.0.0-beta.2":"2020-06-08T18:36:07.191Z","7.0.0-beta.3":"2020-06-14T16:14:23.034Z","7.0.0-beta.4":"2020-06-22T19:07:39.745Z","7.0.0":"2020-06-27T22:40:34.717Z","7.0.1":"2020-06-28T15:08:40.331Z","7.0.2":"2020-07-01T15:45:20.684Z","7.0.3":"2020-07-07T15:45:33.961Z","7.0.4":"2020-07-13T19:02:43.900Z","7.0.5":"2020-07-13T19:43:59.850Z","7.0.6":"2020-07-14T15:46:33.538Z","7.0.7":"2020-07-16T22:13:28.982Z","7.0.8":"2020-07-20T19:27:28.346Z","7.0.9":"2020-07-21T18:56:42.829Z","7.0.10":"2020-08-16T14:40:56.251Z","7.1.0":"2020-08-16T17:54:13.199Z","7.1.1":"2020-08-16T19:51:33.582Z","7.2.0":"2020-08-22T22:33:40.962Z","7.3.0":"2020-08-30T13:29:43.762Z","7.3.1":"2020-09-06T20:29:49.252Z","7.4.0":"2020-11-01T15:59:43.333Z","7.5.0":"2020-11-08T19:31:14.754Z","7.6.0":"2020-11-08T21:32:53.266Z","7.6.1":"2020-12-11T05:05:33.420Z","7.7.0":"2020-12-11T09:38:16.639Z","7.8.0":"2021-02-03T22:24:55.569Z"},"readmeFilename":"README.md","homepage":"https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated#readme"}