fugu-api-data 1.18.1 → 1.19.1

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.18.1",
3
+ "version": "1.19.1",
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.2.4"
27
+ "prettier": "^3.3.3"
28
28
  }
29
29
  }
package/patterns.js CHANGED
@@ -166,7 +166,7 @@ const patterns = {
166
166
  featureDetection: `(async () => 'devicePosture' in navigator)()`,
167
167
  documentation:
168
168
  'https://github.com/w3c/device-posture/blob/gh-pages/README.md',
169
- blinkFeatureID: undefined,
169
+ blinkFeatureID: 4880,
170
170
  chromeStatusID: 5185813744975872,
171
171
  },
172
172
  'Digital Goods': {
@@ -185,7 +185,7 @@ const patterns = {
185
185
  supported: (async () => 'EyeDropper' in self)(),
186
186
  featureDetection: `(async () => 'EyeDropper' in self)()`,
187
187
  documentation: 'https://developer.chrome.com/articles/eyedropper/',
188
- blinkFeatureID: undefined,
188
+ blinkFeatureID: 5042,
189
189
  chromeStatusID: 6304275594477568,
190
190
  },
191
191
  'File Handling': {
@@ -198,6 +198,16 @@ const patterns = {
198
198
  blinkFeatureID: 3875,
199
199
  chromeStatusID: 5721776357113856,
200
200
  },
201
+ 'File System Observer': {
202
+ regEx: /new\s+FileSystemObserver\s*\(/g,
203
+ where: 'JavaScript',
204
+ supported: (async () => 'FileSystemObserver' in self)(),
205
+ featureDetection: `(async () => 'FileSystemObserver' in self)()`,
206
+ documentation:
207
+ 'https://github.com/whatwg/fs/blob/main/proposals/FileSystemObserver.md',
208
+ blinkFeatureID: 5020,
209
+ chromeStatusID: 4622243656630272,
210
+ },
201
211
  'File System Access': {
202
212
  regEx:
203
213
  /showOpenFilePicker\s*\(|showSaveFilePicker\s*\(|showDirectoryPicker\s*\(/g,
@@ -280,7 +290,7 @@ const patterns = {
280
290
  featureDetection: `(async () => 'ink' in navigator)()`,
281
291
  documentation:
282
292
  'https://blogs.windows.com/msedgedev/2021/08/18/enhancing-inking-on-the-web/',
283
- blinkFeatureID: undefined,
293
+ blinkFeatureID: 5017,
284
294
  chromeStatusID: 5961434129235968,
285
295
  },
286
296
  'Insertable streams for MediaStreamTrack': {
@@ -303,7 +313,7 @@ const patterns = {
303
313
  featureDetection: `(async () => 'launchQueue' in self && 'targetURL' in LaunchParams.prototype)()`,
304
314
  documentation:
305
315
  'https://developer.chrome.com/docs/web-platform/launch-handler/',
306
- blinkFeatureID: undefined,
316
+ blinkFeatureID: 4080,
307
317
  chromeStatusID: 5722383233056768,
308
318
  },
309
319
  'Linear Acceleration Sensor': {
@@ -558,7 +568,7 @@ const patterns = {
558
568
  supported: (async () => undefined)(),
559
569
  featureDetection: `(async () => undefined)()`,
560
570
  documentation: 'https://web.dev/tabbed-application-mode/',
561
- blinkFeatureID: undefined,
571
+ blinkFeatureID: 4608,
562
572
  chromeStatusID: 5128143454076928,
563
573
  },
564
574
  'VirtualKeyboard': {
@@ -568,7 +578,7 @@ const patterns = {
568
578
  featureDetection: `(async () => 'virtualKeyboard' in navigator)()`,
569
579
  documentation:
570
580
  'https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/VirtualKeyboardAPI/explainer.md',
571
- blinkFeatureID: undefined,
581
+ blinkFeatureID: 4640,
572
582
  chromeStatusID: 5717448231747584,
573
583
  },
574
584
  'Web App Link Handling': {
@@ -578,7 +588,7 @@ const patterns = {
578
588
  featureDetection: `(async () => undefined)()`,
579
589
  documentation:
580
590
  'https://github.com/WICG/pwa-url-handler/blob/main/handle_links/explainer.md',
581
- blinkFeatureID: undefined,
591
+ blinkFeatureID: 4109,
582
592
  chromeStatusID: 5740751225880576,
583
593
  },
584
594
  'Web Audio': {
package/patterns.mjs CHANGED
@@ -166,7 +166,7 @@ export default {
166
166
  featureDetection: `(async () => 'devicePosture' in navigator)()`,
167
167
  documentation:
168
168
  'https://github.com/w3c/device-posture/blob/gh-pages/README.md',
169
- blinkFeatureID: undefined,
169
+ blinkFeatureID: 4880,
170
170
  chromeStatusID: 5185813744975872,
171
171
  },
172
172
  'Digital Goods': {
@@ -185,7 +185,7 @@ export default {
185
185
  supported: (async () => 'EyeDropper' in self)(),
186
186
  featureDetection: `(async () => 'EyeDropper' in self)()`,
187
187
  documentation: 'https://developer.chrome.com/articles/eyedropper/',
188
- blinkFeatureID: undefined,
188
+ blinkFeatureID: 5042,
189
189
  chromeStatusID: 6304275594477568,
190
190
  },
191
191
  'File Handling': {
@@ -198,6 +198,16 @@ export default {
198
198
  blinkFeatureID: 3875,
199
199
  chromeStatusID: 5721776357113856,
200
200
  },
201
+ 'File System Observer': {
202
+ regEx: /new\s+FileSystemObserver\s*\(/g,
203
+ where: 'JavaScript',
204
+ supported: (async () => 'FileSystemObserver' in self)(),
205
+ featureDetection: `(async () => 'FileSystemObserver' in self)()`,
206
+ documentation:
207
+ 'https://github.com/whatwg/fs/blob/main/proposals/FileSystemObserver.md',
208
+ blinkFeatureID: 5020,
209
+ chromeStatusID: 4622243656630272,
210
+ },
201
211
  'File System Access': {
202
212
  regEx:
203
213
  /showOpenFilePicker\s*\(|showSaveFilePicker\s*\(|showDirectoryPicker\s*\(/g,
@@ -280,7 +290,7 @@ export default {
280
290
  featureDetection: `(async () => 'ink' in navigator)()`,
281
291
  documentation:
282
292
  'https://blogs.windows.com/msedgedev/2021/08/18/enhancing-inking-on-the-web/',
283
- blinkFeatureID: undefined,
293
+ blinkFeatureID: 5017,
284
294
  chromeStatusID: 5961434129235968,
285
295
  },
286
296
  'Insertable streams for MediaStreamTrack': {
@@ -303,7 +313,7 @@ export default {
303
313
  featureDetection: `(async () => 'launchQueue' in self && 'targetURL' in LaunchParams.prototype)()`,
304
314
  documentation:
305
315
  'https://developer.chrome.com/docs/web-platform/launch-handler/',
306
- blinkFeatureID: undefined,
316
+ blinkFeatureID: 4080,
307
317
  chromeStatusID: 5722383233056768,
308
318
  },
309
319
  'Linear Acceleration Sensor': {
@@ -558,7 +568,7 @@ export default {
558
568
  supported: (async () => undefined)(),
559
569
  featureDetection: `(async () => undefined)()`,
560
570
  documentation: 'https://web.dev/tabbed-application-mode/',
561
- blinkFeatureID: undefined,
571
+ blinkFeatureID: 4608,
562
572
  chromeStatusID: 5128143454076928,
563
573
  },
564
574
  'VirtualKeyboard': {
@@ -568,7 +578,7 @@ export default {
568
578
  featureDetection: `(async () => 'virtualKeyboard' in navigator)()`,
569
579
  documentation:
570
580
  'https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/main/VirtualKeyboardAPI/explainer.md',
571
- blinkFeatureID: undefined,
581
+ blinkFeatureID: 4640,
572
582
  chromeStatusID: 5717448231747584,
573
583
  },
574
584
  'Web App Link Handling': {
@@ -578,7 +588,7 @@ export default {
578
588
  featureDetection: `(async () => undefined)()`,
579
589
  documentation:
580
590
  'https://github.com/WICG/pwa-url-handler/blob/main/handle_links/explainer.md',
581
- blinkFeatureID: undefined,
591
+ blinkFeatureID: 4109,
582
592
  chromeStatusID: 5740751225880576,
583
593
  },
584
594
  'Web Audio': {