chrome-types 0.1.92 → 0.1.95

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.
Files changed (3) hide show
  1. package/_all.d.ts +52 -9
  2. package/index.d.ts +8852 -4729
  3. package/package.json +2 -2
package/_all.d.ts CHANGED
@@ -14,8 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- // Generated on Fri Mar 04 2022 22:28:25 GMT+0000 (Coordinated Universal Time)
18
- // Built at c6cc7dcbef1fabbd413a688e661edfa570780914
17
+ // Generated on Tue Mar 22 2022 22:29:06 GMT+0000 (Coordinated Universal Time)
18
+ // Built at ab924fb35a3eaa31d3b91243a24a0040c270b0d1
19
19
 
20
20
  // Includes all types, including MV2 + Platform Apps APIs.
21
21
 
@@ -1604,7 +1604,6 @@ declare namespace chrome {
1604
1604
  *
1605
1605
  * @since Chrome 59
1606
1606
  * @chrome-permission audio
1607
- * @chrome-platform-apps
1608
1607
  * @chrome-platform chromeos
1609
1608
  */
1610
1609
  export namespace audio {
@@ -1878,7 +1877,7 @@ declare namespace chrome {
1878
1877
  /**
1879
1878
  * All possible actions that can be performed on automation nodes.
1880
1879
  */
1881
- export type ActionType = "annotatePageImages" | "blur" | "clearAccessibilityFocus" | "collapse" | "customAction" | "decrement" | "doDefault" | "expand" | "focus" | "getImageData" | "getTextLocation" | "hideTooltip" | "hitTest" | "increment" | "internalInvalidateTree" | "loadInlineTextBoxes" | "replaceSelectedText" | "resumeMedia" | "scrollBackward" | "scrollDown" | "scrollForward" | "scrollLeft" | "scrollRight" | "scrollUp" | "scrollToMakeVisible" | "scrollToPoint" | "setAccessibilityFocus" | "setScrollOffset" | "setSelection" | "setSequentialFocusNavigationStartingPoint" | "setValue" | "showContextMenu" | "signalEndOfTest" | "showTooltip" | "startDuckingMedia" | "stopDuckingMedia" | "suspendMedia";
1880
+ export type ActionType = "annotatePageImages" | "blur" | "clearAccessibilityFocus" | "collapse" | "customAction" | "decrement" | "doDefault" | "expand" | "focus" | "getImageData" | "getTextLocation" | "hideTooltip" | "hitTest" | "increment" | "internalInvalidateTree" | "loadInlineTextBoxes" | "replaceSelectedText" | "resumeMedia" | "runScreenAi" | "scrollBackward" | "scrollDown" | "scrollForward" | "scrollLeft" | "scrollRight" | "scrollUp" | "scrollToMakeVisible" | "scrollToPoint" | "setAccessibilityFocus" | "setScrollOffset" | "setSelection" | "setSequentialFocusNavigationStartingPoint" | "setValue" | "showContextMenu" | "signalEndOfTest" | "showTooltip" | "startDuckingMedia" | "stopDuckingMedia" | "suspendMedia";
1882
1881
 
1883
1882
  /**
1884
1883
  * Possible changes to the automation tree. For any given atomic change to the tree, each node that's added, removed, or changed, will appear in exactly one TreeChange, with one of these types.
@@ -9081,7 +9080,7 @@ declare namespace chrome {
9081
9080
  isUrlFilterCaseSensitive?: boolean;
9082
9081
 
9083
9082
  /**
9084
- * The rule will only match network requests originating from the list of `domains`. If the list is omitted, the rule is applied to requests from all domains. An empty list is not allowed.
9083
+ * The rule will only match network requests originating from the list of `initiatorDomains`. If the list is omitted, the rule is applied to requests from all domains. An empty list is not allowed.
9085
9084
  *
9086
9085
  * Notes:
9087
9086
  *
@@ -9089,11 +9088,13 @@ declare namespace chrome {
9089
9088
  * * The entries must consist of only ascii characters.
9090
9089
  * * Use punycode encoding for internationalized domains.
9091
9090
  * * This matches against the request initiator and not the request url.
9091
+ *
9092
+ * @since Pending
9092
9093
  */
9093
- domains?: string[];
9094
+ initiatorDomains?: string[];
9094
9095
 
9095
9096
  /**
9096
- * The rule will not match network requests originating from the list of `excludedDomains`. If the list is empty or omitted, no domains are excluded. This takes precedence over `domains`.
9097
+ * The rule will not match network requests originating from the list of `excludedDomains`. If the list is empty or omitted, no domains are excluded. This takes precedence over `initiatorDomains`.
9097
9098
  *
9098
9099
  * Notes:
9099
9100
  *
@@ -9101,6 +9102,48 @@ declare namespace chrome {
9101
9102
  * * The entries must consist of only ascii characters.
9102
9103
  * * Use punycode encoding for internationalized domains.
9103
9104
  * * This matches against the request initiator and not the request url.
9105
+ *
9106
+ * @since Pending
9107
+ */
9108
+ excludedInitiatorDomains?: string[];
9109
+
9110
+ /**
9111
+ * The rule will only match network requests when the domain matches one from the list of `requestDomains`. If the list is omitted, the rule is applied to requests from all domains. An empty list is not allowed.
9112
+ *
9113
+ * Notes:
9114
+ *
9115
+ * * Sub-domains like "a.example.com" are also allowed.
9116
+ * * The entries must consist of only ascii characters.
9117
+ * * Use punycode encoding for internationalized domains.
9118
+ *
9119
+ * @since Pending
9120
+ */
9121
+ requestDomains?: string[];
9122
+
9123
+ /**
9124
+ * The rule will not match network requests when the domains matches one from the list of `excludedDomains`. If the list is empty or omitted, no domains are excluded. This takes precedence over `requestDomains`.
9125
+ *
9126
+ * Notes:
9127
+ *
9128
+ * * Sub-domains like "a.example.com" are also allowed.
9129
+ * * The entries must consist of only ascii characters.
9130
+ * * Use punycode encoding for internationalized domains.
9131
+ *
9132
+ * @since Pending
9133
+ */
9134
+ excludedRequestDomains?: string[];
9135
+
9136
+ /**
9137
+ * The rule will only match network requests originating from the list of `domains`.
9138
+ *
9139
+ * @deprecated Use {@link initiatorDomains} instead
9140
+ */
9141
+ domains?: string[];
9142
+
9143
+ /**
9144
+ * The rule will not match network requests originating from the list of `excludedDomains`.
9145
+ *
9146
+ * @deprecated Use {@link excludedInitiatorDomains} instead
9104
9147
  */
9105
9148
  excludedDomains?: string[];
9106
9149
 
@@ -31221,8 +31264,8 @@ declare namespace chrome {
31221
31264
  *
31222
31265
  * @since Chrome 58
31223
31266
  * @chrome-permission virtualKeyboard
31224
- * @chrome-platform-apps
31225
31267
  * @chrome-platform chromeos
31268
+ * @chrome-platform lacros
31226
31269
  */
31227
31270
  export namespace virtualKeyboard {
31228
31271
 
@@ -34733,7 +34776,7 @@ declare namespace chrome {
34733
34776
  ): void;
34734
34777
 
34735
34778
  /**
34736
- * Override the user agent string used by the `webview` for guest page requests.
34779
+ * Override the user agent string used by the `webview` for guest page requests. Overriding will cause the User-Agent Client Hint header values and the values returned by `navigator.userAgentData` to be empty for guest page requests this override is applied to.
34737
34780
  *
34738
34781
  * @param userAgent The user agent string to use.
34739
34782
  */