@webref/idl 3.65.1 → 3.65.3
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/css-highlight-api.idl +6 -1
- package/digital-credentials.idl +2 -0
- package/dom.idl +1 -1
- package/fedcm.idl +13 -0
- package/package.json +1 -1
- package/privacy-preserving-attribution.idl +4 -3
- package/webgpu.idl +1 -0
- package/webtransport.idl +1 -0
package/css-highlight-api.idl
CHANGED
|
@@ -27,7 +27,12 @@ interface HighlightRegistry {
|
|
|
27
27
|
};
|
|
28
28
|
|
|
29
29
|
partial interface HighlightRegistry {
|
|
30
|
-
sequence<
|
|
30
|
+
sequence<HighlightHitResult> highlightsFromPoint(float x, float y, optional HighlightsFromPointOptions options = {});
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
dictionary HighlightHitResult {
|
|
34
|
+
Highlight highlight;
|
|
35
|
+
sequence<AbstractRange> ranges;
|
|
31
36
|
};
|
|
32
37
|
|
|
33
38
|
dictionary HighlightsFromPointOptions {
|
package/digital-credentials.idl
CHANGED
|
@@ -31,6 +31,8 @@ dictionary DigitalCredentialCreateRequest {
|
|
|
31
31
|
|
|
32
32
|
[Exposed=Window, SecureContext]
|
|
33
33
|
interface DigitalCredential : Credential {
|
|
34
|
+
[Default] object toJSON();
|
|
34
35
|
readonly attribute DOMString protocol;
|
|
35
36
|
[SameObject] readonly attribute object data;
|
|
37
|
+
static boolean userAgentAllowsProtocol(DOMString protocol);
|
|
36
38
|
};
|
package/dom.idl
CHANGED
|
@@ -412,7 +412,7 @@ dictionary ShadowRootInit {
|
|
|
412
412
|
SlotAssignmentMode slotAssignment = "named";
|
|
413
413
|
boolean clonable = false;
|
|
414
414
|
boolean serializable = false;
|
|
415
|
-
CustomElementRegistry customElementRegistry;
|
|
415
|
+
CustomElementRegistry? customElementRegistry = null;
|
|
416
416
|
};
|
|
417
417
|
|
|
418
418
|
[Exposed=Window,
|
package/fedcm.idl
CHANGED
|
@@ -19,6 +19,18 @@ dictionary DisconnectedAccount {
|
|
|
19
19
|
required USVString account_id;
|
|
20
20
|
};
|
|
21
21
|
|
|
22
|
+
dictionary IdentityCredentialErrorInit {
|
|
23
|
+
DOMString error;
|
|
24
|
+
DOMString url;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
[Exposed=Window, SecureContext]
|
|
28
|
+
interface IdentityCredentialError : DOMException {
|
|
29
|
+
constructor(optional DOMString message = "", optional IdentityCredentialErrorInit options = {});
|
|
30
|
+
readonly attribute DOMString error;
|
|
31
|
+
readonly attribute DOMString url;
|
|
32
|
+
};
|
|
33
|
+
|
|
22
34
|
partial dictionary CredentialRequestOptions {
|
|
23
35
|
IdentityCredentialRequestOptions identity;
|
|
24
36
|
};
|
|
@@ -103,6 +115,7 @@ dictionary IdentityProviderAccountList {
|
|
|
103
115
|
dictionary IdentityAssertionResponse {
|
|
104
116
|
USVString token;
|
|
105
117
|
USVString continue_on;
|
|
118
|
+
IdentityCredentialErrorInit error;
|
|
106
119
|
};
|
|
107
120
|
|
|
108
121
|
dictionary IdentityProviderClientMetadata {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// GENERATED CONTENT - DO NOT EDIT
|
|
2
2
|
// Content was automatically extracted by Reffy into webref
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Attribution
|
|
4
|
+
// Source: Attribution Level 1 (https://w3c.github.io/ppa/)
|
|
5
5
|
|
|
6
6
|
partial interface Navigator {
|
|
7
7
|
[SecureContext, SameObject] readonly attribute Attribution attribution;
|
|
@@ -27,6 +27,7 @@ dictionary AttributionImpressionOptions {
|
|
|
27
27
|
required unsigned long histogramIndex;
|
|
28
28
|
unsigned long matchValue = 0;
|
|
29
29
|
sequence<USVString> conversionSites = [];
|
|
30
|
+
sequence<USVString> conversionCallers = [];
|
|
30
31
|
unsigned long lifetimeDays = 30;
|
|
31
32
|
};
|
|
32
33
|
|
|
@@ -45,9 +46,9 @@ dictionary AttributionConversionOptions {
|
|
|
45
46
|
required unsigned long histogramSize;
|
|
46
47
|
|
|
47
48
|
unsigned long lookbackDays;
|
|
48
|
-
sequence<unsigned long>
|
|
49
|
+
sequence<unsigned long> matchValues = [];
|
|
49
50
|
sequence<USVString> impressionSites = [];
|
|
50
|
-
sequence<USVString>
|
|
51
|
+
sequence<USVString> impressionCallers = [];
|
|
51
52
|
|
|
52
53
|
AttributionLogic logic = "last-touch";
|
|
53
54
|
unsigned long value = 1;
|
package/webgpu.idl
CHANGED
package/webtransport.idl
CHANGED
|
@@ -156,6 +156,7 @@ interface WebTransportBidirectionalStream {
|
|
|
156
156
|
[Exposed=*, SecureContext]
|
|
157
157
|
interface WebTransportWriter : WritableStreamDefaultWriter {
|
|
158
158
|
Promise<undefined> atomicWrite(optional any chunk);
|
|
159
|
+
undefined commit();
|
|
159
160
|
};
|
|
160
161
|
|
|
161
162
|
[Exposed=(Window,Worker), Serializable, SecureContext]
|