chrome-types 0.1.430 → 0.1.431
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/_all.d.ts +34 -2
- package/index.d.ts +34 -2
- 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
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Sat Jun 27 2026 22:39:34 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 903f1737195fb9a74071d30ca702eb51ef02146d
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -23807,6 +23807,31 @@ declare namespace chrome {
|
|
|
23807
23807
|
*/
|
|
23808
23808
|
export type IPHandlingPolicy = "default" | "default_public_and_private_interfaces" | "default_public_interface_only" | "disable_non_proxied_udp";
|
|
23809
23809
|
|
|
23810
|
+
/**
|
|
23811
|
+
* Categories of Autofill data.
|
|
23812
|
+
*
|
|
23813
|
+
* @since Pending
|
|
23814
|
+
*/
|
|
23815
|
+
export type AutofillBlockedType = "contact_info" | "payments" | "identity_docs" | "travel";
|
|
23816
|
+
|
|
23817
|
+
/**
|
|
23818
|
+
* Site-specific block rules for Autofill features.
|
|
23819
|
+
*
|
|
23820
|
+
* @since Pending
|
|
23821
|
+
*/
|
|
23822
|
+
export type AutofillSettings = {
|
|
23823
|
+
|
|
23824
|
+
/**
|
|
23825
|
+
* A URL pattern specifying the sites for which the block rule applies.
|
|
23826
|
+
*/
|
|
23827
|
+
urlPattern: string,
|
|
23828
|
+
|
|
23829
|
+
/**
|
|
23830
|
+
* The categories of Autofill data to block on matching sites.
|
|
23831
|
+
*/
|
|
23832
|
+
blockedTypes: AutofillBlockedType[],
|
|
23833
|
+
}[];
|
|
23834
|
+
|
|
23810
23835
|
/**
|
|
23811
23836
|
* Settings that influence Chrome's handling of network connections in general.
|
|
23812
23837
|
*/
|
|
@@ -23857,6 +23882,13 @@ declare namespace chrome {
|
|
|
23857
23882
|
*/
|
|
23858
23883
|
autofillCreditCardEnabled: types.ChromeSetting<boolean>,
|
|
23859
23884
|
|
|
23885
|
+
/**
|
|
23886
|
+
* If set, allows site-specific control over Autofill features by blocking specific data categories on matching URL patterns.
|
|
23887
|
+
*
|
|
23888
|
+
* @since Pending
|
|
23889
|
+
*/
|
|
23890
|
+
autofillSettings: types.ChromeSetting<AutofillSettings>,
|
|
23891
|
+
|
|
23860
23892
|
/**
|
|
23861
23893
|
* If enabled, the password manager will ask if you want to save passwords. This preference's value is a boolean, defaulting to `true`.
|
|
23862
23894
|
*/
|
package/index.d.ts
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
// Generated on
|
|
18
|
-
// Built at
|
|
17
|
+
// Generated on Sat Jun 27 2026 22:39:30 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 903f1737195fb9a74071d30ca702eb51ef02146d
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -16611,6 +16611,31 @@ declare namespace chrome {
|
|
|
16611
16611
|
*/
|
|
16612
16612
|
export type IPHandlingPolicy = "default" | "default_public_and_private_interfaces" | "default_public_interface_only" | "disable_non_proxied_udp";
|
|
16613
16613
|
|
|
16614
|
+
/**
|
|
16615
|
+
* Categories of Autofill data.
|
|
16616
|
+
*
|
|
16617
|
+
* @since Pending
|
|
16618
|
+
*/
|
|
16619
|
+
export type AutofillBlockedType = "contact_info" | "payments" | "identity_docs" | "travel";
|
|
16620
|
+
|
|
16621
|
+
/**
|
|
16622
|
+
* Site-specific block rules for Autofill features.
|
|
16623
|
+
*
|
|
16624
|
+
* @since Pending
|
|
16625
|
+
*/
|
|
16626
|
+
export type AutofillSettings = {
|
|
16627
|
+
|
|
16628
|
+
/**
|
|
16629
|
+
* A URL pattern specifying the sites for which the block rule applies.
|
|
16630
|
+
*/
|
|
16631
|
+
urlPattern: string,
|
|
16632
|
+
|
|
16633
|
+
/**
|
|
16634
|
+
* The categories of Autofill data to block on matching sites.
|
|
16635
|
+
*/
|
|
16636
|
+
blockedTypes: AutofillBlockedType[],
|
|
16637
|
+
}[];
|
|
16638
|
+
|
|
16614
16639
|
/**
|
|
16615
16640
|
* Settings that influence Chrome's handling of network connections in general.
|
|
16616
16641
|
*/
|
|
@@ -16661,6 +16686,13 @@ declare namespace chrome {
|
|
|
16661
16686
|
*/
|
|
16662
16687
|
autofillCreditCardEnabled: types.ChromeSetting<boolean>,
|
|
16663
16688
|
|
|
16689
|
+
/**
|
|
16690
|
+
* If set, allows site-specific control over Autofill features by blocking specific data categories on matching URL patterns.
|
|
16691
|
+
*
|
|
16692
|
+
* @since Pending
|
|
16693
|
+
*/
|
|
16694
|
+
autofillSettings: types.ChromeSetting<AutofillSettings>,
|
|
16695
|
+
|
|
16664
16696
|
/**
|
|
16665
16697
|
* If enabled, the password manager will ask if you want to save passwords. This preference's value is a boolean, defaulting to `true`.
|
|
16666
16698
|
*/
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"type": "module",
|
|
6
6
|
"name": "chrome-types",
|
|
7
7
|
"config": {
|
|
8
|
-
"build-hash": "
|
|
8
|
+
"build-hash": "615328b4ba16ae2a"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"url": "https://github.com/GoogleChrome/chrome-types/issues"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/GoogleChrome/chrome-types",
|
|
19
|
-
"version": "0.1.
|
|
19
|
+
"version": "0.1.431"
|
|
20
20
|
}
|