@capacitor/local-notifications 1.0.6 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.8](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/local-notifications@1.0.7...@capacitor/local-notifications@1.0.8) (2021-10-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * remove postpublish scripts ([#656](https://github.com/ionic-team/capacitor-plugins/issues/656)) ([ed6ac49](https://github.com/ionic-team/capacitor-plugins/commit/ed6ac499ebf4a47525071ccbfc36c27503e11f60))
12
+
13
+
14
+
15
+
16
+
17
+ ## [1.0.7](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/local-notifications@1.0.6...@capacitor/local-notifications@1.0.7) (2021-10-13)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * correct addListeners links ([#655](https://github.com/ionic-team/capacitor-plugins/issues/655)) ([f9871e7](https://github.com/ionic-team/capacitor-plugins/commit/f9871e7bd53478addb21155e148829f550c0e457))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [1.0.6](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/local-notifications@1.0.5...@capacitor/local-notifications@1.0.6) (2021-09-15)
7
29
 
8
30
 
package/README.md CHANGED
@@ -78,8 +78,8 @@ If the device has entered [Doze](https://developer.android.com/training/monitori
78
78
  * [`listChannels()`](#listchannels)
79
79
  * [`checkPermissions()`](#checkpermissions)
80
80
  * [`requestPermissions()`](#requestpermissions)
81
- * [`addListener('localNotificationReceived', ...)`](#addlistenerlocalnotificationreceived-)
82
- * [`addListener('localNotificationActionPerformed', ...)`](#addlistenerlocalnotificationactionperformed-)
81
+ * [`addListener('localNotificationReceived', ...)`](#addlistenerlocalnotificationreceived)
82
+ * [`addListener('localNotificationActionPerformed', ...)`](#addlistenerlocalnotificationactionperformed)
83
83
  * [`removeAllListeners()`](#removealllisteners)
84
84
  * [Interfaces](#interfaces)
85
85
  * [Type Aliases](#type-aliases)
package/dist/docs.json CHANGED
@@ -237,7 +237,7 @@
237
237
  "PluginListenerHandle",
238
238
  "LocalNotificationSchema"
239
239
  ],
240
- "slug": "addlistenerlocalnotificationreceived-"
240
+ "slug": "addlistenerlocalnotificationreceived"
241
241
  },
242
242
  {
243
243
  "name": "addListener",
@@ -266,7 +266,7 @@
266
266
  "PluginListenerHandle",
267
267
  "ActionPerformed"
268
268
  ],
269
- "slug": "addlistenerlocalnotificationactionperformed-"
269
+ "slug": "addlistenerlocalnotificationactionperformed"
270
270
  },
271
271
  {
272
272
  "name": "removeAllListeners",
package/dist/plugin.js CHANGED
@@ -147,5 +147,5 @@ var capacitorLocalNotifications = (function (exports, core) {
147
147
 
148
148
  return exports;
149
149
 
150
- }({}, capacitorExports));
150
+ })({}, capacitorExports);
151
151
  //# sourceMappingURL=plugin.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/local-notifications",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "The Local Notifications API provides a way to schedule device notifications locally (i.e. without a server sending push notifications).",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -42,14 +42,13 @@
42
42
  "clean": "rimraf ./dist",
43
43
  "watch": "tsc --watch",
44
44
  "prepublishOnly": "npm run build",
45
- "postpublish": "npm run publish:cocoapod",
46
45
  "publish:cocoapod": "pod trunk push ./CapacitorLocalNotifications.podspec --allow-warnings"
47
46
  },
48
47
  "devDependencies": {
49
48
  "@capacitor/android": "^3.0.0",
50
49
  "@capacitor/cli": "^3.0.0",
51
50
  "@capacitor/core": "^3.0.0",
52
- "@capacitor/docgen": "0.0.17",
51
+ "@capacitor/docgen": "0.0.18",
53
52
  "@capacitor/ios": "^3.0.0",
54
53
  "@ionic/eslint-config": "^0.3.0",
55
54
  "@ionic/prettier-config": "~1.0.1",
@@ -81,5 +80,5 @@
81
80
  "publishConfig": {
82
81
  "access": "public"
83
82
  },
84
- "gitHead": "29f181130d515f21cd9c76823b44a686fc2c6aaa"
83
+ "gitHead": "eadbffd4bf9f0859bd301a639ab4e0c3337ea8db"
85
84
  }