fugu-api-data 1.5.4 → 1.5.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fugu-api-data",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Data about Project Fugu 🐡 APIs.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/patterns.js CHANGED
@@ -630,4 +630,12 @@ const patterns = {
630
630
  documentation: 'https://web.dev/url-protocol-handler/',
631
631
  blinkFeatureID: 3884,
632
632
  },
633
+ 'Launch Handler': {
634
+ regEx: /"launch_handler"/g,
635
+ where: 'Web App Manifest',
636
+ supported: (async () => undefined)(),
637
+ featureDetection: `(async () => undefined)()`,
638
+ documentation: 'https://web.dev/launch-handler/',
639
+ blinkFeatureID: undefined,
640
+ },
633
641
  };
package/patterns.mjs CHANGED
@@ -630,4 +630,12 @@ export default {
630
630
  documentation: 'https://web.dev/url-protocol-handler/',
631
631
  blinkFeatureID: 3884,
632
632
  },
633
+ 'Launch Handler': {
634
+ regEx: /"launch_handler"/g,
635
+ where: 'Web App Manifest',
636
+ supported: (async () => undefined)(),
637
+ featureDetection: `(async () => undefined)()`,
638
+ documentation: 'https://web.dev/launch-handler/',
639
+ blinkFeatureID: undefined,
640
+ },
633
641
  };