@webref/idl 3.75.3 → 3.77.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/SVG.idl +4 -8
- package/css-animations-2.idl +9 -0
- package/css-sizing-4.idl +8 -0
- package/css-transitions-2.idl +9 -0
- package/html.idl +2 -2
- package/mathml-core.idl +1 -1
- package/package.json +1 -1
- package/prompt-api.idl +147 -0
- package/sanitizer-api.idl +12 -0
- package/streams.idl +1 -1
- package/web-locks.idl +2 -2
- package/webauthn.idl +14 -0
- package/webmcp.idl +1 -0
- package/attribution-reporting-api.idl +0 -27
- package/private-aggregation-api.idl +0 -23
- package/requestStorageAccessFor.idl +0 -12
- package/shared-storage.idl +0 -145
- package/turtledove.idl +0 -414
package/SVG.idl
CHANGED
|
@@ -13,8 +13,7 @@ interface SVGElement : Element {
|
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
SVGElement includes GlobalEventHandlers;
|
|
16
|
-
SVGElement includes
|
|
17
|
-
SVGElement includes HTMLOrSVGElement;
|
|
16
|
+
SVGElement includes HTMLOrSVGOrMathMLElement;
|
|
18
17
|
|
|
19
18
|
dictionary SVGBoundingBoxOptions {
|
|
20
19
|
boolean fill = true;
|
|
@@ -309,11 +308,6 @@ SVGUseElement includes SVGURIReference;
|
|
|
309
308
|
interface SVGUseElementShadowRoot : ShadowRoot {
|
|
310
309
|
};
|
|
311
310
|
|
|
312
|
-
interface mixin SVGElementInstance {
|
|
313
|
-
[SameObject] readonly attribute SVGElement? correspondingElement;
|
|
314
|
-
[SameObject] readonly attribute SVGUseElement? correspondingUseElement;
|
|
315
|
-
};
|
|
316
|
-
|
|
317
311
|
[Exposed=Window]
|
|
318
312
|
interface ShadowAnimation : Animation {
|
|
319
313
|
constructor(Animation source, (Element or CSSPseudoElement) newTarget);
|
|
@@ -330,10 +324,12 @@ interface mixin GetSVGDocument {
|
|
|
330
324
|
|
|
331
325
|
[Exposed=Window]
|
|
332
326
|
interface SVGStyleElement : SVGElement {
|
|
333
|
-
attribute DOMString type;
|
|
334
327
|
attribute DOMString media;
|
|
335
328
|
attribute DOMString title;
|
|
336
329
|
attribute boolean disabled;
|
|
330
|
+
|
|
331
|
+
// obsolete members
|
|
332
|
+
attribute DOMString type;
|
|
337
333
|
};
|
|
338
334
|
|
|
339
335
|
SVGStyleElement includes LinkStyle;
|
package/css-animations-2.idl
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
4
|
// Source: CSS Animations Module Level 2 (https://drafts.csswg.org/css-animations-2/)
|
|
5
5
|
|
|
6
|
+
[Exposed=Window]
|
|
7
|
+
partial interface AnimationEvent {
|
|
8
|
+
readonly attribute CSSAnimation? animation;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
partial dictionary AnimationEventInit {
|
|
12
|
+
CSSAnimation? animation = null;
|
|
13
|
+
};
|
|
14
|
+
|
|
6
15
|
[Exposed=Window]
|
|
7
16
|
interface CSSAnimation : Animation {
|
|
8
17
|
readonly attribute CSSOMString animationName;
|
package/css-sizing-4.idl
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: CSS Box Sizing Module Level 4 (https://drafts.csswg.org/css-sizing-4/)
|
|
5
|
+
|
|
6
|
+
partial interface Window {
|
|
7
|
+
undefined requestResize();
|
|
8
|
+
};
|
package/css-transitions-2.idl
CHANGED
|
@@ -7,6 +7,15 @@
|
|
|
7
7
|
interface CSSStartingStyleRule : CSSGroupingRule {
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
+
[Exposed=Window]
|
|
11
|
+
partial interface TransitionEvent {
|
|
12
|
+
readonly attribute CSSTransition? animation;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
partial dictionary TransitionEventInit {
|
|
16
|
+
CSSTransition? animation = null;
|
|
17
|
+
};
|
|
18
|
+
|
|
10
19
|
[Exposed=Window]
|
|
11
20
|
interface CSSTransition : Animation {
|
|
12
21
|
readonly attribute CSSOMString transitionProperty;
|
package/html.idl
CHANGED
|
@@ -152,14 +152,14 @@ dictionary TogglePopoverOptions : ShowPopoverOptions {
|
|
|
152
152
|
|
|
153
153
|
HTMLElement includes GlobalEventHandlers;
|
|
154
154
|
HTMLElement includes ElementContentEditable;
|
|
155
|
-
HTMLElement includes
|
|
155
|
+
HTMLElement includes HTMLOrSVGOrMathMLElement;
|
|
156
156
|
|
|
157
157
|
[Exposed=Window]
|
|
158
158
|
interface HTMLUnknownElement : HTMLElement {
|
|
159
159
|
// Note: intentionally no [HTMLConstructor]
|
|
160
160
|
};
|
|
161
161
|
|
|
162
|
-
interface mixin
|
|
162
|
+
interface mixin HTMLOrSVGOrMathMLElement {
|
|
163
163
|
[SameObject] readonly attribute DOMStringMap dataset;
|
|
164
164
|
attribute DOMString nonce; // intentionally no [CEReactions]
|
|
165
165
|
|
package/mathml-core.idl
CHANGED
package/package.json
CHANGED
package/prompt-api.idl
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: Prompt API (https://webmachinelearning.github.io/prompt-api/)
|
|
5
|
+
|
|
6
|
+
[Exposed=Window, SecureContext]
|
|
7
|
+
interface LanguageModel : EventTarget {
|
|
8
|
+
static Promise<LanguageModel> create(optional LanguageModelCreateOptions options = {});
|
|
9
|
+
static Promise<Availability> availability(optional LanguageModelCreateCoreOptions options = {});
|
|
10
|
+
// **EXPERIMENTAL**: Only available in extension and experimental contexts.
|
|
11
|
+
static Promise<LanguageModelParams?> params();
|
|
12
|
+
|
|
13
|
+
// These will throw "NotSupportedError" DOMExceptions if role = "system"
|
|
14
|
+
Promise<DOMString> prompt(
|
|
15
|
+
LanguageModelPrompt input,
|
|
16
|
+
optional LanguageModelPromptOptions options = {}
|
|
17
|
+
);
|
|
18
|
+
ReadableStream promptStreaming(
|
|
19
|
+
LanguageModelPrompt input,
|
|
20
|
+
optional LanguageModelPromptOptions options = {}
|
|
21
|
+
);
|
|
22
|
+
Promise<undefined> append(
|
|
23
|
+
LanguageModelPrompt input,
|
|
24
|
+
optional LanguageModelAppendOptions options = {}
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
Promise<double> measureContextUsage(
|
|
28
|
+
LanguageModelPrompt input,
|
|
29
|
+
optional LanguageModelPromptOptions options = {}
|
|
30
|
+
);
|
|
31
|
+
readonly attribute double contextUsage;
|
|
32
|
+
readonly attribute unrestricted double contextWindow;
|
|
33
|
+
attribute EventHandler oncontextoverflow;
|
|
34
|
+
|
|
35
|
+
// **DEPRECATED**: This method is only available in extension contexts.
|
|
36
|
+
Promise<double> measureInputUsage(
|
|
37
|
+
LanguageModelPrompt input,
|
|
38
|
+
optional LanguageModelPromptOptions options = {}
|
|
39
|
+
);
|
|
40
|
+
// **DEPRECATED**: This attribute is only available in extension contexts.
|
|
41
|
+
readonly attribute double inputUsage;
|
|
42
|
+
// **DEPRECATED**: This attribute is only available in extension contexts.
|
|
43
|
+
readonly attribute unrestricted double inputQuota;
|
|
44
|
+
// **DEPRECATED**: This attribute is only available in extension contexts.
|
|
45
|
+
attribute EventHandler onquotaoverflow;
|
|
46
|
+
|
|
47
|
+
// **EXPERIMENTAL**: Only available in extension and experimental contexts.
|
|
48
|
+
readonly attribute unsigned long topK;
|
|
49
|
+
// **EXPERIMENTAL**: Only available in extension and experimental contexts.
|
|
50
|
+
readonly attribute float temperature;
|
|
51
|
+
|
|
52
|
+
Promise<LanguageModel> clone(optional LanguageModelCloneOptions options = {});
|
|
53
|
+
};
|
|
54
|
+
LanguageModel includes DestroyableModel;
|
|
55
|
+
|
|
56
|
+
// **EXPERIMENTAL**: Only available in extension and experimental contexts.
|
|
57
|
+
[Exposed=Window, SecureContext]
|
|
58
|
+
interface LanguageModelParams {
|
|
59
|
+
readonly attribute unsigned long defaultTopK;
|
|
60
|
+
readonly attribute unsigned long maxTopK;
|
|
61
|
+
readonly attribute float defaultTemperature;
|
|
62
|
+
readonly attribute float maxTemperature;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
callback LanguageModelToolFunction = Promise<DOMString> (any... arguments);
|
|
66
|
+
|
|
67
|
+
// A description of a tool call that a language model can invoke.
|
|
68
|
+
dictionary LanguageModelTool {
|
|
69
|
+
required DOMString name;
|
|
70
|
+
required DOMString description;
|
|
71
|
+
// JSON schema for the input parameters.
|
|
72
|
+
required object inputSchema;
|
|
73
|
+
// The function to be invoked by user agent on behalf of language model.
|
|
74
|
+
required LanguageModelToolFunction execute;
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
dictionary LanguageModelCreateCoreOptions {
|
|
78
|
+
// Note: these two have custom out-of-range handling behavior, not in the IDL layer.
|
|
79
|
+
// They are unrestricted double so as to allow +Infinity without failing.
|
|
80
|
+
// **EXPERIMENTAL**: Only available in extension and experimental contexts.
|
|
81
|
+
unrestricted double topK;
|
|
82
|
+
// **EXPERIMENTAL**: Only available in extension and experimental contexts.
|
|
83
|
+
unrestricted double temperature;
|
|
84
|
+
|
|
85
|
+
sequence<LanguageModelExpected> expectedInputs;
|
|
86
|
+
sequence<LanguageModelExpected> expectedOutputs;
|
|
87
|
+
sequence<LanguageModelTool> tools;
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
dictionary LanguageModelCreateOptions : LanguageModelCreateCoreOptions {
|
|
91
|
+
AbortSignal signal;
|
|
92
|
+
CreateMonitorCallback monitor;
|
|
93
|
+
|
|
94
|
+
sequence<LanguageModelMessage> initialPrompts;
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
dictionary LanguageModelPromptOptions {
|
|
98
|
+
object responseConstraint;
|
|
99
|
+
boolean omitResponseConstraintInput = false;
|
|
100
|
+
AbortSignal signal;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
dictionary LanguageModelAppendOptions {
|
|
104
|
+
AbortSignal signal;
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
dictionary LanguageModelCloneOptions {
|
|
108
|
+
AbortSignal signal;
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
dictionary LanguageModelExpected {
|
|
112
|
+
required LanguageModelMessageType type;
|
|
113
|
+
sequence<DOMString> languages;
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
// The argument to the prompt() method and others like it
|
|
117
|
+
|
|
118
|
+
typedef (
|
|
119
|
+
sequence<LanguageModelMessage>
|
|
120
|
+
// Shorthand for `[{ role: "user", content: [{ type: "text", value: providedValue }] }]`
|
|
121
|
+
or DOMString
|
|
122
|
+
) LanguageModelPrompt;
|
|
123
|
+
|
|
124
|
+
dictionary LanguageModelMessage {
|
|
125
|
+
required LanguageModelMessageRole role;
|
|
126
|
+
|
|
127
|
+
// The DOMString branch is shorthand for `[{ type: "text", value: providedValue }]`
|
|
128
|
+
required (DOMString or sequence<LanguageModelMessageContent>) content;
|
|
129
|
+
|
|
130
|
+
boolean prefix = false;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
dictionary LanguageModelMessageContent {
|
|
134
|
+
required LanguageModelMessageType type;
|
|
135
|
+
required LanguageModelMessageValue value;
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
enum LanguageModelMessageRole { "system", "user", "assistant" };
|
|
139
|
+
|
|
140
|
+
enum LanguageModelMessageType { "text", "image", "audio", "tool-call", "tool-response" };
|
|
141
|
+
|
|
142
|
+
typedef (
|
|
143
|
+
ImageBitmapSource
|
|
144
|
+
or AudioBuffer
|
|
145
|
+
or BufferSource
|
|
146
|
+
or DOMString
|
|
147
|
+
) LanguageModelMessageValue;
|
package/sanitizer-api.idl
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
4
|
// Source: HTML Sanitizer API (https://wicg.github.io/sanitizer-api/)
|
|
5
5
|
|
|
6
|
+
partial interface Element {
|
|
7
|
+
[CEReactions] undefined setHTML(DOMString html, optional SetHTMLOptions options = {});
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
partial interface ShadowRoot {
|
|
11
|
+
[CEReactions] undefined setHTML(DOMString html, optional SetHTMLOptions options = {});
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
partial interface Document {
|
|
15
|
+
static Document parseHTML(DOMString html, optional SetHTMLOptions options = {});
|
|
16
|
+
};
|
|
17
|
+
|
|
6
18
|
enum SanitizerPresets { "default" };
|
|
7
19
|
dictionary SetHTMLOptions {
|
|
8
20
|
(Sanitizer or SanitizerConfig or SanitizerPresets) sanitizer = "default";
|
package/streams.idl
CHANGED
|
@@ -114,7 +114,7 @@ interface ReadableByteStreamController {
|
|
|
114
114
|
|
|
115
115
|
[Exposed=*]
|
|
116
116
|
interface ReadableStreamBYOBRequest {
|
|
117
|
-
readonly attribute
|
|
117
|
+
readonly attribute Uint8Array? view;
|
|
118
118
|
|
|
119
119
|
undefined respond([EnforceRange] unsigned long long bytesWritten);
|
|
120
120
|
undefined respondWithNewView(ArrayBufferView view);
|
package/web-locks.idl
CHANGED
|
@@ -10,7 +10,7 @@ interface mixin NavigatorLocks {
|
|
|
10
10
|
Navigator includes NavigatorLocks;
|
|
11
11
|
WorkerNavigator includes NavigatorLocks;
|
|
12
12
|
|
|
13
|
-
[SecureContext, Exposed=(Window,Worker
|
|
13
|
+
[SecureContext, Exposed=(Window,Worker)]
|
|
14
14
|
interface LockManager {
|
|
15
15
|
Promise<any> request(DOMString name,
|
|
16
16
|
LockGrantedCallback callback);
|
|
@@ -43,7 +43,7 @@ dictionary LockInfo {
|
|
|
43
43
|
DOMString clientId;
|
|
44
44
|
};
|
|
45
45
|
|
|
46
|
-
[SecureContext, Exposed=(Window,Worker
|
|
46
|
+
[SecureContext, Exposed=(Window,Worker)]
|
|
47
47
|
interface Lock {
|
|
48
48
|
readonly attribute DOMString name;
|
|
49
49
|
readonly attribute LockMode mode;
|
package/webauthn.idl
CHANGED
|
@@ -435,3 +435,17 @@ dictionary AuthenticationExtensionsLargeBlobOutputsJSON {
|
|
|
435
435
|
Base64URLString blob;
|
|
436
436
|
boolean written;
|
|
437
437
|
};
|
|
438
|
+
|
|
439
|
+
partial dictionary AuthenticationExtensionsClientInputs {
|
|
440
|
+
DOMString remoteClientDataJSON;
|
|
441
|
+
};
|
|
442
|
+
partial dictionary AuthenticationExtensionsClientInputsJSON {
|
|
443
|
+
DOMString remoteClientDataJSON;
|
|
444
|
+
};
|
|
445
|
+
|
|
446
|
+
partial dictionary AuthenticationExtensionsClientOutputs {
|
|
447
|
+
boolean remoteClientDataJson;
|
|
448
|
+
};
|
|
449
|
+
partial dictionary AuthenticationExtensionsClientOutputsJSON {
|
|
450
|
+
boolean remoteClientDataJson;
|
|
451
|
+
};
|
package/webmcp.idl
CHANGED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
-
// Content was automatically extracted by Reffy into webref
|
|
3
|
-
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Attribution Reporting (https://wicg.github.io/attribution-reporting-api/)
|
|
5
|
-
|
|
6
|
-
interface mixin HTMLAttributionSrcElementUtils {
|
|
7
|
-
[CEReactions, SecureContext] attribute USVString attributionSrc;
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
HTMLAnchorElement includes HTMLAttributionSrcElementUtils;
|
|
11
|
-
HTMLAreaElement includes HTMLAttributionSrcElementUtils;
|
|
12
|
-
HTMLImageElement includes HTMLAttributionSrcElementUtils;
|
|
13
|
-
HTMLScriptElement includes HTMLAttributionSrcElementUtils;
|
|
14
|
-
|
|
15
|
-
dictionary AttributionReportingRequestOptions {
|
|
16
|
-
required boolean eventSourceEligible;
|
|
17
|
-
required boolean triggerEligible;
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
partial dictionary RequestInit {
|
|
21
|
-
AttributionReportingRequestOptions attributionReporting;
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
partial interface XMLHttpRequest {
|
|
25
|
-
[SecureContext]
|
|
26
|
-
undefined setAttributionReporting(AttributionReportingRequestOptions options);
|
|
27
|
-
};
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
-
// Content was automatically extracted by Reffy into webref
|
|
3
|
-
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Private Aggregation API (https://patcg-individual-drafts.github.io/private-aggregation-api/)
|
|
5
|
-
|
|
6
|
-
[Exposed=(InterestGroupScriptRunnerGlobalScope,SharedStorageWorklet),
|
|
7
|
-
SecureContext]
|
|
8
|
-
interface PrivateAggregation {
|
|
9
|
-
undefined contributeToHistogram(PAHistogramContribution contribution);
|
|
10
|
-
undefined contributeToHistogramOnEvent(DOMString event,
|
|
11
|
-
record<DOMString, any> contribution);
|
|
12
|
-
undefined enableDebugMode(optional PADebugModeOptions options = {});
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
dictionary PAHistogramContribution {
|
|
16
|
-
required bigint bucket;
|
|
17
|
-
required long value;
|
|
18
|
-
bigint filteringId = 0;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
dictionary PADebugModeOptions {
|
|
22
|
-
required bigint debugKey;
|
|
23
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
-
// Content was automatically extracted by Reffy into webref
|
|
3
|
-
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: requestStorageAccessFor API (https://privacycg.github.io/requestStorageAccessFor/)
|
|
5
|
-
|
|
6
|
-
partial interface Document {
|
|
7
|
-
Promise<undefined> requestStorageAccessFor(USVString requestedOrigin);
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
dictionary TopLevelStorageAccessPermissionDescriptor : PermissionDescriptor {
|
|
11
|
-
USVString requestedOrigin = "";
|
|
12
|
-
};
|
package/shared-storage.idl
DELETED
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
-
// Content was automatically extracted by Reffy into webref
|
|
3
|
-
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Shared Storage API (https://wicg.github.io/shared-storage/)
|
|
5
|
-
|
|
6
|
-
typedef (USVString or FencedFrameConfig) SharedStorageResponse;
|
|
7
|
-
|
|
8
|
-
[Exposed=(Window)]
|
|
9
|
-
interface SharedStorageWorklet : Worklet {
|
|
10
|
-
Promise<SharedStorageResponse> selectURL(DOMString name,
|
|
11
|
-
sequence<SharedStorageUrlWithMetadata> urls,
|
|
12
|
-
optional SharedStorageRunOperationMethodOptions options = {});
|
|
13
|
-
Promise<any> run(DOMString name,
|
|
14
|
-
optional SharedStorageRunOperationMethodOptions options = {});
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
callback RunFunctionForSharedStorageSelectURLOperation = Promise<unsigned long>(sequence<USVString> urls, optional any data);
|
|
18
|
-
|
|
19
|
-
[Exposed=SharedStorageWorklet, Global=SharedStorageWorklet]
|
|
20
|
-
interface SharedStorageWorkletGlobalScope : WorkletGlobalScope {
|
|
21
|
-
undefined register(DOMString name,
|
|
22
|
-
Function operationCtor);
|
|
23
|
-
|
|
24
|
-
readonly attribute SharedStorage sharedStorage;
|
|
25
|
-
readonly attribute PrivateAggregation privateAggregation;
|
|
26
|
-
|
|
27
|
-
Promise<sequence<StorageInterestGroup>> interestGroups();
|
|
28
|
-
|
|
29
|
-
readonly attribute SharedStorageWorkletNavigator navigator;
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
dictionary SharedStorageUrlWithMetadata {
|
|
33
|
-
required USVString url;
|
|
34
|
-
object reportingMetadata;
|
|
35
|
-
};
|
|
36
|
-
|
|
37
|
-
partial interface Window {
|
|
38
|
-
[SecureContext] readonly attribute SharedStorage? sharedStorage;
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
[Exposed=(Window,SharedStorageWorklet)]
|
|
42
|
-
interface SharedStorageModifierMethod {};
|
|
43
|
-
|
|
44
|
-
[Exposed=(Window, SharedStorageWorklet)]
|
|
45
|
-
interface SharedStorageSetMethod : SharedStorageModifierMethod {
|
|
46
|
-
constructor(DOMString key, DOMString value, optional SharedStorageSetMethodOptions options = {});
|
|
47
|
-
};
|
|
48
|
-
|
|
49
|
-
[Exposed=(Window, SharedStorageWorklet)]
|
|
50
|
-
interface SharedStorageAppendMethod : SharedStorageModifierMethod {
|
|
51
|
-
constructor(DOMString key, DOMString value, optional SharedStorageModifierMethodOptions options = {});
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
[Exposed=(Window, SharedStorageWorklet)]
|
|
55
|
-
interface SharedStorageDeleteMethod : SharedStorageModifierMethod {
|
|
56
|
-
constructor(DOMString key, optional SharedStorageModifierMethodOptions options = {});
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
[Exposed=(Window, SharedStorageWorklet)]
|
|
60
|
-
interface SharedStorageClearMethod : SharedStorageModifierMethod {
|
|
61
|
-
constructor(optional SharedStorageModifierMethodOptions options = {});
|
|
62
|
-
};
|
|
63
|
-
|
|
64
|
-
dictionary SharedStorageModifierMethodOptions {
|
|
65
|
-
DOMString withLock;
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
dictionary SharedStorageSetMethodOptions : SharedStorageModifierMethodOptions {
|
|
69
|
-
boolean ignoreIfPresent;
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
[Exposed=(Window,SharedStorageWorklet)]
|
|
73
|
-
interface SharedStorage {
|
|
74
|
-
Promise<DOMString> get(DOMString key);
|
|
75
|
-
Promise<any> set(DOMString key,
|
|
76
|
-
DOMString value,
|
|
77
|
-
optional SharedStorageSetMethodOptions options = {});
|
|
78
|
-
Promise<any> append(DOMString key,
|
|
79
|
-
DOMString value,
|
|
80
|
-
optional SharedStorageModifierMethodOptions options = {});
|
|
81
|
-
Promise<any> delete(DOMString key, optional SharedStorageModifierMethodOptions options = {});
|
|
82
|
-
Promise<any> clear(optional SharedStorageModifierMethodOptions options = {});
|
|
83
|
-
Promise<any> batchUpdate(sequence<SharedStorageModifierMethod> methods,
|
|
84
|
-
optional SharedStorageModifierMethodOptions options = {});
|
|
85
|
-
|
|
86
|
-
[Exposed=Window]
|
|
87
|
-
Promise<SharedStorageResponse> selectURL(DOMString name,
|
|
88
|
-
sequence<SharedStorageUrlWithMetadata> urls,
|
|
89
|
-
optional SharedStorageRunOperationMethodOptions options = {});
|
|
90
|
-
|
|
91
|
-
[Exposed=Window]
|
|
92
|
-
Promise<any> run(DOMString name,
|
|
93
|
-
optional SharedStorageRunOperationMethodOptions options = {});
|
|
94
|
-
|
|
95
|
-
[Exposed=Window]
|
|
96
|
-
Promise<SharedStorageWorklet> createWorklet(USVString moduleURL, optional SharedStorageWorkletOptions options = {});
|
|
97
|
-
|
|
98
|
-
[Exposed=Window]
|
|
99
|
-
readonly attribute SharedStorageWorklet worklet;
|
|
100
|
-
|
|
101
|
-
[Exposed=SharedStorageWorklet]
|
|
102
|
-
Promise<unsigned long> length();
|
|
103
|
-
|
|
104
|
-
[Exposed=SharedStorageWorklet]
|
|
105
|
-
Promise<double> remainingBudget();
|
|
106
|
-
|
|
107
|
-
[Exposed=SharedStorageWorklet]
|
|
108
|
-
async_iterable<DOMString, DOMString>;
|
|
109
|
-
};
|
|
110
|
-
|
|
111
|
-
dictionary SharedStoragePrivateAggregationConfig {
|
|
112
|
-
USVString aggregationCoordinatorOrigin;
|
|
113
|
-
USVString contextId;
|
|
114
|
-
[EnforceRange] unsigned long long filteringIdMaxBytes;
|
|
115
|
-
[EnforceRange] unsigned long long maxContributions;
|
|
116
|
-
};
|
|
117
|
-
|
|
118
|
-
dictionary SharedStorageRunOperationMethodOptions {
|
|
119
|
-
object data;
|
|
120
|
-
boolean resolveToConfig = false;
|
|
121
|
-
boolean keepAlive = false;
|
|
122
|
-
SharedStoragePrivateAggregationConfig privateAggregationConfig;
|
|
123
|
-
DOMString savedQuery;
|
|
124
|
-
};
|
|
125
|
-
|
|
126
|
-
dictionary SharedStorageWorkletOptions : WorkletOptions {
|
|
127
|
-
USVString dataOrigin = "context-origin";
|
|
128
|
-
};
|
|
129
|
-
|
|
130
|
-
interface mixin HTMLSharedStorageWritableElementUtils {
|
|
131
|
-
[CEReactions, SecureContext] attribute boolean sharedStorageWritable;
|
|
132
|
-
};
|
|
133
|
-
|
|
134
|
-
HTMLIFrameElement includes HTMLSharedStorageWritableElementUtils;
|
|
135
|
-
HTMLImageElement includes HTMLSharedStorageWritableElementUtils;
|
|
136
|
-
|
|
137
|
-
partial dictionary RequestInit {
|
|
138
|
-
boolean sharedStorageWritable;
|
|
139
|
-
};
|
|
140
|
-
|
|
141
|
-
[
|
|
142
|
-
Exposed=SharedStorageWorklet
|
|
143
|
-
] interface SharedStorageWorkletNavigator {};
|
|
144
|
-
|
|
145
|
-
SharedStorageWorkletNavigator includes NavigatorLocks;
|
package/turtledove.idl
DELETED
|
@@ -1,414 +0,0 @@
|
|
|
1
|
-
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
-
// Content was automatically extracted by Reffy into webref
|
|
3
|
-
// (https://github.com/w3c/webref)
|
|
4
|
-
// Source: Protected Audience (formerly FLEDGE) (https://wicg.github.io/turtledove/)
|
|
5
|
-
|
|
6
|
-
[SecureContext]
|
|
7
|
-
partial interface Navigator {
|
|
8
|
-
Promise<undefined> joinAdInterestGroup(AuctionAdInterestGroup group);
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
dictionary AuctionAd {
|
|
12
|
-
required USVString renderURL;
|
|
13
|
-
USVString sizeGroup;
|
|
14
|
-
any metadata;
|
|
15
|
-
|
|
16
|
-
USVString buyerReportingId;
|
|
17
|
-
USVString buyerAndSellerReportingId;
|
|
18
|
-
sequence<USVString> selectableBuyerAndSellerReportingIds;
|
|
19
|
-
sequence<USVString> allowedReportingOrigins;
|
|
20
|
-
DOMString adRenderId;
|
|
21
|
-
USVString creativeScanningMetadata;
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
dictionary AuctionAdInterestGroupSize {
|
|
25
|
-
required USVString width;
|
|
26
|
-
required USVString height;
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
dictionary GenerateBidInterestGroup {
|
|
30
|
-
required USVString owner;
|
|
31
|
-
required USVString name;
|
|
32
|
-
|
|
33
|
-
boolean enableBiddingSignalsPrioritization = false;
|
|
34
|
-
record<DOMString, double> priorityVector;
|
|
35
|
-
|
|
36
|
-
record<USVString, sequence<DOMString>> sellerCapabilities;
|
|
37
|
-
DOMString executionMode = "compatibility";
|
|
38
|
-
USVString biddingLogicURL;
|
|
39
|
-
USVString biddingWasmHelperURL;
|
|
40
|
-
USVString updateURL;
|
|
41
|
-
USVString trustedBiddingSignalsURL;
|
|
42
|
-
sequence<USVString> trustedBiddingSignalsKeys;
|
|
43
|
-
DOMString trustedBiddingSignalsSlotSizeMode = "none";
|
|
44
|
-
long maxTrustedBiddingSignalsURLLength;
|
|
45
|
-
USVString trustedBiddingSignalsCoordinator;
|
|
46
|
-
any userBiddingSignals;
|
|
47
|
-
sequence<AuctionAd> ads;
|
|
48
|
-
sequence<AuctionAd> adComponents;
|
|
49
|
-
record<DOMString, AuctionAdInterestGroupSize> adSizes;
|
|
50
|
-
record<DOMString, sequence<DOMString>> sizeGroups;
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
dictionary ProtectedAudiencePrivateAggregationConfig {
|
|
54
|
-
USVString aggregationCoordinatorOrigin;
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
dictionary AuctionAdInterestGroup : GenerateBidInterestGroup {
|
|
58
|
-
double priority = 0.0;
|
|
59
|
-
record<DOMString, double> prioritySignalsOverrides;
|
|
60
|
-
required double lifetimeMs;
|
|
61
|
-
DOMString additionalBidKey;
|
|
62
|
-
ProtectedAudiencePrivateAggregationConfig privateAggregationConfig;
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
[SecureContext]
|
|
66
|
-
partial interface Navigator {
|
|
67
|
-
Promise<undefined> leaveAdInterestGroup(optional AuctionAdInterestGroupKey group = {});
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
dictionary AuctionAdInterestGroupKey {
|
|
71
|
-
required USVString owner;
|
|
72
|
-
required USVString name;
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
[SecureContext]
|
|
76
|
-
partial interface Navigator {
|
|
77
|
-
Promise<undefined> clearOriginJoinedAdInterestGroups(
|
|
78
|
-
USVString owner, optional sequence<USVString> interestGroupsToKeep = []);
|
|
79
|
-
};
|
|
80
|
-
|
|
81
|
-
[SecureContext]
|
|
82
|
-
partial interface Navigator {
|
|
83
|
-
Promise<(USVString or FencedFrameConfig)?> runAdAuction(AuctionAdConfig config);
|
|
84
|
-
readonly attribute boolean deprecatedRunAdAuctionEnforcesKAnonymity;
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
dictionary AuctionReportBuyersConfig {
|
|
88
|
-
required bigint bucket;
|
|
89
|
-
required double scale;
|
|
90
|
-
};
|
|
91
|
-
|
|
92
|
-
dictionary AuctionReportBuyerDebugModeConfig {
|
|
93
|
-
boolean enabled = false;
|
|
94
|
-
|
|
95
|
-
// Must only be provided if `enabled` is true.
|
|
96
|
-
bigint? debugKey;
|
|
97
|
-
};
|
|
98
|
-
|
|
99
|
-
dictionary AuctionRealTimeReportingConfig {
|
|
100
|
-
required DOMString type;
|
|
101
|
-
};
|
|
102
|
-
|
|
103
|
-
dictionary AuctionAdConfig {
|
|
104
|
-
required USVString seller;
|
|
105
|
-
required USVString decisionLogicURL;
|
|
106
|
-
|
|
107
|
-
USVString trustedScoringSignalsURL;
|
|
108
|
-
long maxTrustedScoringSignalsURLLength;
|
|
109
|
-
USVString trustedScoringSignalsCoordinator;
|
|
110
|
-
boolean sendCreativeScanningMetadata;
|
|
111
|
-
sequence<USVString> interestGroupBuyers;
|
|
112
|
-
Promise<any> auctionSignals;
|
|
113
|
-
Promise<any> sellerSignals;
|
|
114
|
-
Promise<DOMString?> directFromSellerSignalsHeaderAdSlot;
|
|
115
|
-
Promise<record<USVString, USVString>?> deprecatedRenderURLReplacements;
|
|
116
|
-
unsigned long long sellerTimeout;
|
|
117
|
-
unsigned short sellerExperimentGroupId;
|
|
118
|
-
Promise<record<USVString, any>?> perBuyerSignals;
|
|
119
|
-
Promise<record<USVString, unsigned long long>?> perBuyerTimeouts;
|
|
120
|
-
Promise<record<USVString, unsigned long long>?> perBuyerCumulativeTimeouts;
|
|
121
|
-
unsigned long long reportingTimeout;
|
|
122
|
-
USVString sellerCurrency;
|
|
123
|
-
Promise<record<USVString, USVString>?> perBuyerCurrencies;
|
|
124
|
-
record<USVString, unsigned short> perBuyerMultiBidLimits;
|
|
125
|
-
record<USVString, unsigned short> perBuyerGroupLimits;
|
|
126
|
-
record<USVString, unsigned short> perBuyerExperimentGroupIds;
|
|
127
|
-
record<USVString, record<USVString, double>> perBuyerPrioritySignals;
|
|
128
|
-
|
|
129
|
-
sequence<bigint> auctionReportBuyerKeys;
|
|
130
|
-
record<DOMString, AuctionReportBuyersConfig> auctionReportBuyers;
|
|
131
|
-
AuctionReportBuyerDebugModeConfig auctionReportBuyerDebugModeConfig;
|
|
132
|
-
sequence<DOMString> requiredSellerCapabilities;
|
|
133
|
-
ProtectedAudiencePrivateAggregationConfig privateAggregationConfig;
|
|
134
|
-
|
|
135
|
-
record<DOMString, DOMString> requestedSize;
|
|
136
|
-
sequence<record<DOMString, DOMString>> allSlotsRequestedSizes;
|
|
137
|
-
Promise<undefined> additionalBids;
|
|
138
|
-
DOMString auctionNonce;
|
|
139
|
-
AuctionRealTimeReportingConfig sellerRealTimeReportingConfig;
|
|
140
|
-
record<USVString, AuctionRealTimeReportingConfig> perBuyerRealTimeReportingConfig;
|
|
141
|
-
sequence<AuctionAdConfig> componentAuctions = [];
|
|
142
|
-
AbortSignal? signal;
|
|
143
|
-
Promise<boolean> resolveToConfig;
|
|
144
|
-
|
|
145
|
-
Promise<Uint8Array> serverResponse;
|
|
146
|
-
USVString requestId;
|
|
147
|
-
};
|
|
148
|
-
|
|
149
|
-
[SecureContext]
|
|
150
|
-
partial interface Navigator {
|
|
151
|
-
boolean canLoadAdAuctionFencedFrame();
|
|
152
|
-
};
|
|
153
|
-
|
|
154
|
-
[SecureContext]
|
|
155
|
-
partial interface Navigator {
|
|
156
|
-
Promise<AdAuctionData> getInterestGroupAdAuctionData(optional AdAuctionDataConfig config = {});
|
|
157
|
-
};
|
|
158
|
-
|
|
159
|
-
dictionary AdAuctionPerSellerData {
|
|
160
|
-
required USVString seller;
|
|
161
|
-
Uint8Array request;
|
|
162
|
-
DOMString error;
|
|
163
|
-
};
|
|
164
|
-
|
|
165
|
-
dictionary AdAuctionData {
|
|
166
|
-
required USVString requestId;
|
|
167
|
-
Uint8Array request;
|
|
168
|
-
sequence<AdAuctionPerSellerData> requests;
|
|
169
|
-
};
|
|
170
|
-
|
|
171
|
-
dictionary AdAuctionOneSeller {
|
|
172
|
-
required USVString seller;
|
|
173
|
-
USVString coordinatorOrigin;
|
|
174
|
-
};
|
|
175
|
-
|
|
176
|
-
dictionary AdAuctionDataConfig {
|
|
177
|
-
USVString seller;
|
|
178
|
-
USVString coordinatorOrigin;
|
|
179
|
-
sequence<AdAuctionOneSeller> sellers;
|
|
180
|
-
|
|
181
|
-
unsigned long requestSize;
|
|
182
|
-
record<USVString, AdAuctionDataBuyerConfig> perBuyerConfig;
|
|
183
|
-
};
|
|
184
|
-
|
|
185
|
-
dictionary AdAuctionDataBuyerConfig {
|
|
186
|
-
unsigned long targetSize;
|
|
187
|
-
};
|
|
188
|
-
|
|
189
|
-
dictionary StorageInterestGroup : AuctionAdInterestGroup {
|
|
190
|
-
unsigned long long joinCount;
|
|
191
|
-
unsigned long long bidCount;
|
|
192
|
-
sequence<PreviousWin> prevWinsMs;
|
|
193
|
-
USVString joiningOrigin;
|
|
194
|
-
long long timeSinceGroupJoinedMs;
|
|
195
|
-
long long lifetimeRemainingMs;
|
|
196
|
-
long long timeSinceLastUpdateMs;
|
|
197
|
-
long long timeUntilNextUpdateMs;
|
|
198
|
-
unsigned long long estimatedSize;
|
|
199
|
-
};
|
|
200
|
-
|
|
201
|
-
[SecureContext]
|
|
202
|
-
partial interface Navigator {
|
|
203
|
-
Promise<DOMString> createAuctionNonce();
|
|
204
|
-
};
|
|
205
|
-
|
|
206
|
-
[Exposed=InterestGroupScriptRunnerGlobalScope]
|
|
207
|
-
interface InterestGroupScriptRunnerGlobalScope {
|
|
208
|
-
readonly attribute PrivateAggregation? privateAggregation;
|
|
209
|
-
readonly attribute ProtectedAudienceUtilities protectedAudience;
|
|
210
|
-
};
|
|
211
|
-
|
|
212
|
-
dictionary PASignalValue {
|
|
213
|
-
required DOMString baseValue;
|
|
214
|
-
double scale;
|
|
215
|
-
(bigint or long) offset;
|
|
216
|
-
};
|
|
217
|
-
|
|
218
|
-
dictionary PAExtendedHistogramContribution {
|
|
219
|
-
required (PASignalValue or bigint) bucket;
|
|
220
|
-
required (PASignalValue or long) value;
|
|
221
|
-
bigint filteringId = 0;
|
|
222
|
-
};
|
|
223
|
-
|
|
224
|
-
[Exposed=InterestGroupScriptRunnerGlobalScope]
|
|
225
|
-
interface ProtectedAudienceUtilities {
|
|
226
|
-
Uint8Array encodeUtf8(USVString input);
|
|
227
|
-
USVString decodeUtf8(Uint8Array bytes);
|
|
228
|
-
};
|
|
229
|
-
|
|
230
|
-
[Exposed=InterestGroupBiddingAndScoringScriptRunnerGlobalScope]
|
|
231
|
-
interface ForDebuggingOnly {
|
|
232
|
-
undefined reportAdAuctionWin(USVString url);
|
|
233
|
-
undefined reportAdAuctionLoss(USVString url);
|
|
234
|
-
};
|
|
235
|
-
|
|
236
|
-
[Exposed=InterestGroupBiddingAndScoringScriptRunnerGlobalScope]
|
|
237
|
-
interface RealTimeReporting {
|
|
238
|
-
undefined contributeToHistogram(RealTimeContribution contribution);
|
|
239
|
-
};
|
|
240
|
-
|
|
241
|
-
dictionary RealTimeContribution {
|
|
242
|
-
required long bucket;
|
|
243
|
-
required double priorityWeight;
|
|
244
|
-
long latencyThreshold;
|
|
245
|
-
};
|
|
246
|
-
|
|
247
|
-
[Exposed=InterestGroupBiddingAndScoringScriptRunnerGlobalScope,
|
|
248
|
-
Global=InterestGroupBiddingAndScoringScriptRunnerGlobalScope]
|
|
249
|
-
interface InterestGroupBiddingAndScoringScriptRunnerGlobalScope : InterestGroupScriptRunnerGlobalScope {
|
|
250
|
-
readonly attribute ForDebuggingOnly forDebuggingOnly;
|
|
251
|
-
readonly attribute RealTimeReporting realTimeReporting;
|
|
252
|
-
};
|
|
253
|
-
|
|
254
|
-
[Exposed=InterestGroupBiddingScriptRunnerGlobalScope,
|
|
255
|
-
Global=(InterestGroupScriptRunnerGlobalScope,
|
|
256
|
-
InterestGroupBiddingScriptRunnerGlobalScope)]
|
|
257
|
-
interface InterestGroupBiddingScriptRunnerGlobalScope
|
|
258
|
-
: InterestGroupBiddingAndScoringScriptRunnerGlobalScope {
|
|
259
|
-
boolean setBid(optional (GenerateBidOutput or sequence<GenerateBidOutput>) oneOrManyBids = []);
|
|
260
|
-
undefined setPriority(double priority);
|
|
261
|
-
undefined setPrioritySignalsOverride(DOMString key, optional double? priority);
|
|
262
|
-
};
|
|
263
|
-
|
|
264
|
-
dictionary AdRender {
|
|
265
|
-
required DOMString url;
|
|
266
|
-
DOMString width;
|
|
267
|
-
DOMString height;
|
|
268
|
-
};
|
|
269
|
-
|
|
270
|
-
dictionary GenerateBidOutput {
|
|
271
|
-
double bid = -1;
|
|
272
|
-
DOMString bidCurrency;
|
|
273
|
-
(DOMString or AdRender) render;
|
|
274
|
-
any ad;
|
|
275
|
-
USVString selectedBuyerAndSellerReportingId;
|
|
276
|
-
sequence<(DOMString or AdRender)> adComponents;
|
|
277
|
-
double adCost;
|
|
278
|
-
unrestricted double modelingSignals;
|
|
279
|
-
boolean allowComponentAuction = false;
|
|
280
|
-
unsigned long targetNumAdComponents;
|
|
281
|
-
unsigned long numMandatoryAdComponents = 0;
|
|
282
|
-
};
|
|
283
|
-
|
|
284
|
-
[Exposed=InterestGroupScoringScriptRunnerGlobalScope,
|
|
285
|
-
Global=(InterestGroupScriptRunnerGlobalScope,
|
|
286
|
-
InterestGroupScoringScriptRunnerGlobalScope)]
|
|
287
|
-
interface InterestGroupScoringScriptRunnerGlobalScope
|
|
288
|
-
: InterestGroupBiddingAndScoringScriptRunnerGlobalScope {
|
|
289
|
-
};
|
|
290
|
-
|
|
291
|
-
[Exposed=InterestGroupReportingScriptRunnerGlobalScope,
|
|
292
|
-
Global=(InterestGroupScriptRunnerGlobalScope,
|
|
293
|
-
InterestGroupReportingScriptRunnerGlobalScope)]
|
|
294
|
-
interface InterestGroupReportingScriptRunnerGlobalScope
|
|
295
|
-
: InterestGroupScriptRunnerGlobalScope {
|
|
296
|
-
undefined sendReportTo(DOMString url);
|
|
297
|
-
undefined registerAdBeacon(record<DOMString, USVString> map);
|
|
298
|
-
undefined registerAdMacro(DOMString name, USVString value);
|
|
299
|
-
};
|
|
300
|
-
|
|
301
|
-
[SecureContext]
|
|
302
|
-
partial interface Navigator {
|
|
303
|
-
undefined updateAdInterestGroups();
|
|
304
|
-
};
|
|
305
|
-
|
|
306
|
-
[SecureContext]
|
|
307
|
-
partial interface Navigator {
|
|
308
|
-
[SameObject] readonly attribute ProtectedAudience protectedAudience;
|
|
309
|
-
};
|
|
310
|
-
|
|
311
|
-
[SecureContext, Exposed=Window]
|
|
312
|
-
interface ProtectedAudience {
|
|
313
|
-
any queryFeatureSupport(DOMString feature);
|
|
314
|
-
};
|
|
315
|
-
|
|
316
|
-
partial dictionary RequestInit {
|
|
317
|
-
boolean adAuctionHeaders;
|
|
318
|
-
};
|
|
319
|
-
|
|
320
|
-
partial interface HTMLIFrameElement {
|
|
321
|
-
[CEReactions] attribute boolean adAuctionHeaders;
|
|
322
|
-
};
|
|
323
|
-
|
|
324
|
-
typedef (long long or AuctionAd) PreviousWinElement;
|
|
325
|
-
typedef sequence<PreviousWinElement> PreviousWin;
|
|
326
|
-
|
|
327
|
-
dictionary BiddingBrowserSignals {
|
|
328
|
-
required DOMString topWindowHostname;
|
|
329
|
-
required USVString seller;
|
|
330
|
-
required long joinCount;
|
|
331
|
-
required long bidCount;
|
|
332
|
-
required long recency;
|
|
333
|
-
required long adComponentsLimit;
|
|
334
|
-
required unsigned short multiBidLimit;
|
|
335
|
-
|
|
336
|
-
record<DOMString, DOMString> requestedSize;
|
|
337
|
-
USVString topLevelSeller;
|
|
338
|
-
sequence<PreviousWin> prevWinsMs;
|
|
339
|
-
object wasmHelper;
|
|
340
|
-
unsigned long dataVersion;
|
|
341
|
-
unsigned long crossOriginDataVersion;
|
|
342
|
-
boolean forDebuggingOnlyInCooldownOrLockout = false;
|
|
343
|
-
};
|
|
344
|
-
|
|
345
|
-
dictionary ScoringBrowserSignals {
|
|
346
|
-
required DOMString topWindowHostname;
|
|
347
|
-
required USVString interestGroupOwner;
|
|
348
|
-
required USVString renderURL;
|
|
349
|
-
required unsigned long biddingDurationMsec;
|
|
350
|
-
required DOMString bidCurrency;
|
|
351
|
-
|
|
352
|
-
record<DOMString, DOMString> renderSize;
|
|
353
|
-
unsigned long dataVersion;
|
|
354
|
-
unsigned long crossOriginDataVersion;
|
|
355
|
-
sequence<USVString> adComponents;
|
|
356
|
-
boolean forDebuggingOnlyInCooldownOrLockout = false;
|
|
357
|
-
USVString creativeScanningMetadata;
|
|
358
|
-
sequence<USVString?> adComponentsCreativeScanningMetadata;
|
|
359
|
-
};
|
|
360
|
-
|
|
361
|
-
dictionary ReportingBrowserSignals {
|
|
362
|
-
required DOMString topWindowHostname;
|
|
363
|
-
required USVString interestGroupOwner;
|
|
364
|
-
required USVString renderURL;
|
|
365
|
-
required double bid;
|
|
366
|
-
required double highestScoringOtherBid;
|
|
367
|
-
|
|
368
|
-
DOMString bidCurrency;
|
|
369
|
-
DOMString highestScoringOtherBidCurrency;
|
|
370
|
-
USVString topLevelSeller;
|
|
371
|
-
USVString componentSeller;
|
|
372
|
-
|
|
373
|
-
USVString buyerAndSellerReportingId;
|
|
374
|
-
USVString selectedBuyerAndSellerReportingId;
|
|
375
|
-
};
|
|
376
|
-
|
|
377
|
-
dictionary ReportResultBrowserSignals : ReportingBrowserSignals {
|
|
378
|
-
required double desirability;
|
|
379
|
-
|
|
380
|
-
DOMString topLevelSellerSignals;
|
|
381
|
-
double modifiedBid;
|
|
382
|
-
unsigned long dataVersion;
|
|
383
|
-
};
|
|
384
|
-
|
|
385
|
-
dictionary ReportWinBrowserSignals : ReportingBrowserSignals {
|
|
386
|
-
double adCost;
|
|
387
|
-
USVString seller;
|
|
388
|
-
boolean madeHighestScoringOtherBid;
|
|
389
|
-
DOMString interestGroupName;
|
|
390
|
-
DOMString buyerReportingId;
|
|
391
|
-
unsigned short modelingSignals;
|
|
392
|
-
unsigned long dataVersion;
|
|
393
|
-
KAnonStatus kAnonStatus;
|
|
394
|
-
};
|
|
395
|
-
|
|
396
|
-
enum KAnonStatus { "passedAndEnforced", "passedNotEnforced", "belowThreshold", "notCalculated" };
|
|
397
|
-
|
|
398
|
-
dictionary DirectFromSellerSignalsForBuyer {
|
|
399
|
-
any auctionSignals = null;
|
|
400
|
-
any perBuyerSignals = null;
|
|
401
|
-
};
|
|
402
|
-
|
|
403
|
-
dictionary DirectFromSellerSignalsForSeller {
|
|
404
|
-
any auctionSignals = null;
|
|
405
|
-
any sellerSignals = null;
|
|
406
|
-
};
|
|
407
|
-
|
|
408
|
-
dictionary ScoreAdOutput {
|
|
409
|
-
required double desirability;
|
|
410
|
-
double bid;
|
|
411
|
-
DOMString bidCurrency;
|
|
412
|
-
double incomingBidInSellerCurrency;
|
|
413
|
-
boolean allowComponentAuction = false;
|
|
414
|
-
};
|