devtools-protocol 0.0.1656784 → 0.0.1657692
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.
|
@@ -10709,6 +10709,12 @@
|
|
|
10709
10709
|
"description": "The response data object returned by the wallet.\nRequired when |action| is \"respond\", forbidden otherwise.",
|
|
10710
10710
|
"optional": true,
|
|
10711
10711
|
"type": "object"
|
|
10712
|
+
},
|
|
10713
|
+
{
|
|
10714
|
+
"name": "frameId",
|
|
10715
|
+
"description": "The frame to scope the virtual wallet behavior to.",
|
|
10716
|
+
"optional": true,
|
|
10717
|
+
"$ref": "Page.FrameId"
|
|
10712
10718
|
}
|
|
10713
10719
|
]
|
|
10714
10720
|
}
|
package/package.json
CHANGED
|
@@ -26,3 +26,5 @@ experimental domain DigitalCredentials
|
|
|
26
26
|
# The response data object returned by the wallet.
|
|
27
27
|
# Required when |action| is "respond", forbidden otherwise.
|
|
28
28
|
optional object response
|
|
29
|
+
# The frame to scope the virtual wallet behavior to.
|
|
30
|
+
optional Page.FrameId frameId
|
package/types/protocol.d.ts
CHANGED
|
@@ -9259,6 +9259,10 @@ export namespace Protocol {
|
|
|
9259
9259
|
* Required when |action| is "respond", forbidden otherwise.
|
|
9260
9260
|
*/
|
|
9261
9261
|
response?: any;
|
|
9262
|
+
/**
|
|
9263
|
+
* The frame to scope the virtual wallet behavior to.
|
|
9264
|
+
*/
|
|
9265
|
+
frameId?: Page.FrameId;
|
|
9262
9266
|
}
|
|
9263
9267
|
}
|
|
9264
9268
|
|