fugu-api-data 1.19.1 → 1.20.0

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.19.1",
3
+ "version": "1.20.0",
4
4
  "description": "Data about Project Fugu 🐡 APIs.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -24,6 +24,6 @@
24
24
  "homepage": "https://github.com/tomayac/fugu-api-data#readme",
25
25
  "devDependencies": {
26
26
  "node-fetch": "^3.3.2",
27
- "prettier": "^3.3.3"
27
+ "prettier": "^3.5.3"
28
28
  }
29
29
  }
package/patterns.js CHANGED
@@ -446,7 +446,7 @@ const patterns = {
446
446
  chromeStatusID: 5739224579964928,
447
447
  },
448
448
  'Pointer Lock (unadjustedMovement)': {
449
- regEx: /unadjustedMovement\s*\:\s*/g,
449
+ regEx: /unadjustedMovement\s*:\s*/g,
450
450
  where: 'JavaScript',
451
451
  supported: (async () =>
452
452
  'HTMLParagraphElement' in self
@@ -484,7 +484,7 @@ const patterns = {
484
484
  ((await navigator.serviceWorker?.ready) || self.registration))(),
485
485
  featureDetection: `(async () => 'serviceWorker' in navigator && 'pushManager' in (await navigator.serviceWorker?.ready || self.registration))()`,
486
486
  documentation: 'https://developer.mozilla.org/en-US/docs/Web/API/Push_API',
487
- blinkFeatureID: 769,
487
+ blinkFeatureID: 371,
488
488
  chromeStatusID: 5416033485586432,
489
489
  },
490
490
  'Relative Orientation Sensor': {
@@ -629,7 +629,7 @@ const patterns = {
629
629
  chromeStatusID: 5662315307335680,
630
630
  },
631
631
  'Web Share Target (Files)': {
632
- regEx: /"enctype"\s*\:\s*"multipart\/form\-data"/g,
632
+ regEx: /"enctype"\s*:\s*"multipart\/form-data"/g,
633
633
  where: 'Web App Manifest',
634
634
  supported: (async () => undefined)(),
635
635
  featureDetection: `(async () => undefined)()`,
@@ -693,7 +693,7 @@ const patterns = {
693
693
  chromeStatusID: 6261030015467520,
694
694
  },
695
695
  'WebOTP': {
696
- regEx: /transport\s*\:\s*\[["']sms["']\]/g,
696
+ regEx: /transport\s*:\s*\[["']sms["']\]/g,
697
697
  where: 'JavaScript',
698
698
  supported: (async () => 'OTPCredential' in self)(),
699
699
  featureDetection: `(async () => 'OTPCredential' in self)()`,
@@ -738,7 +738,7 @@ const patterns = {
738
738
  chromeStatusID: 5651917954875392,
739
739
  },
740
740
  'Window Controls Overlay': {
741
- regEx: /"window\-controls\-overlay"/g,
741
+ regEx: /"window-controls-overlay"/g,
742
742
  where: 'Web App Manifest',
743
743
  supported: (async () => 'windowControlsOverlay' in navigator)(),
744
744
  featureDetection: `(async () => 'windowControlsOverlay' in navigator)()`,
package/patterns.mjs CHANGED
@@ -446,7 +446,7 @@ export default {
446
446
  chromeStatusID: 5739224579964928,
447
447
  },
448
448
  'Pointer Lock (unadjustedMovement)': {
449
- regEx: /unadjustedMovement\s*\:\s*/g,
449
+ regEx: /unadjustedMovement\s*:\s*/g,
450
450
  where: 'JavaScript',
451
451
  supported: (async () =>
452
452
  'HTMLParagraphElement' in self
@@ -484,7 +484,7 @@ export default {
484
484
  ((await navigator.serviceWorker?.ready) || self.registration))(),
485
485
  featureDetection: `(async () => 'serviceWorker' in navigator && 'pushManager' in (await navigator.serviceWorker?.ready || self.registration))()`,
486
486
  documentation: 'https://developer.mozilla.org/en-US/docs/Web/API/Push_API',
487
- blinkFeatureID: 769,
487
+ blinkFeatureID: 371,
488
488
  chromeStatusID: 5416033485586432,
489
489
  },
490
490
  'Relative Orientation Sensor': {
@@ -629,7 +629,7 @@ export default {
629
629
  chromeStatusID: 5662315307335680,
630
630
  },
631
631
  'Web Share Target (Files)': {
632
- regEx: /"enctype"\s*\:\s*"multipart\/form\-data"/g,
632
+ regEx: /"enctype"\s*:\s*"multipart\/form-data"/g,
633
633
  where: 'Web App Manifest',
634
634
  supported: (async () => undefined)(),
635
635
  featureDetection: `(async () => undefined)()`,
@@ -693,7 +693,7 @@ export default {
693
693
  chromeStatusID: 6261030015467520,
694
694
  },
695
695
  'WebOTP': {
696
- regEx: /transport\s*\:\s*\[["']sms["']\]/g,
696
+ regEx: /transport\s*:\s*\[["']sms["']\]/g,
697
697
  where: 'JavaScript',
698
698
  supported: (async () => 'OTPCredential' in self)(),
699
699
  featureDetection: `(async () => 'OTPCredential' in self)()`,
@@ -738,7 +738,7 @@ export default {
738
738
  chromeStatusID: 5651917954875392,
739
739
  },
740
740
  'Window Controls Overlay': {
741
- regEx: /"window\-controls\-overlay"/g,
741
+ regEx: /"window-controls-overlay"/g,
742
742
  where: 'Web App Manifest',
743
743
  supported: (async () => 'windowControlsOverlay' in navigator)(),
744
744
  featureDetection: `(async () => 'windowControlsOverlay' in navigator)()`,