chrome-types 0.1.242 → 0.1.243
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 +4 -46
- package/index.d.ts +4 -46
- 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 Tue Nov 14 2023 19:05:18 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 5677b4aa94cb69e0b0644093cbb10c92637b5642
|
|
19
19
|
|
|
20
20
|
// Includes all types, including MV2 + Platform Apps APIs.
|
|
21
21
|
|
|
@@ -6950,7 +6950,7 @@ declare namespace chrome {
|
|
|
6950
6950
|
): void;
|
|
6951
6951
|
|
|
6952
6952
|
/**
|
|
6953
|
-
* Retrieves all cookies from a single cookie store that match the given information. The cookies returned will be sorted, with those with the longest path first. If multiple cookies have the same path length, those with the earliest creation time will be first. Only retrieves cookies for domains which the extension has host permissions to
|
|
6953
|
+
* Retrieves all cookies from a single cookie store that match the given information. The cookies returned will be sorted, with those with the longest path first. If multiple cookies have the same path length, those with the earliest creation time will be first. Only retrieves cookies for domains which the extension has host permissions to.
|
|
6954
6954
|
*
|
|
6955
6955
|
* @chrome-returns-extra since Chrome 88
|
|
6956
6956
|
* @param details Information to filter the cookies being retrieved.
|
|
@@ -7004,7 +7004,7 @@ declare namespace chrome {
|
|
|
7004
7004
|
): Promise<Cookie[]>;
|
|
7005
7005
|
|
|
7006
7006
|
/**
|
|
7007
|
-
* Retrieves all cookies from a single cookie store that match the given information. The cookies returned will be sorted, with those with the longest path first. If multiple cookies have the same path length, those with the earliest creation time will be first. Only retrieves cookies for domains which the extension has host permissions to
|
|
7007
|
+
* Retrieves all cookies from a single cookie store that match the given information. The cookies returned will be sorted, with those with the longest path first. If multiple cookies have the same path length, those with the earliest creation time will be first. Only retrieves cookies for domains which the extension has host permissions to.
|
|
7008
7008
|
*
|
|
7009
7009
|
* @param details Information to filter the cookies being retrieved.
|
|
7010
7010
|
*/
|
|
@@ -11234,48 +11234,6 @@ declare namespace chrome {
|
|
|
11234
11234
|
): void;
|
|
11235
11235
|
}
|
|
11236
11236
|
|
|
11237
|
-
/**
|
|
11238
|
-
* Use the `chrome.enterprise.kioskInput` API to change input settings for Kiosk sessions. Note: This API is only available extensions and Chrome apps installed by enterprise policy in ChromeOS Kiosk sessions.
|
|
11239
|
-
*
|
|
11240
|
-
* @since Pending
|
|
11241
|
-
* @chrome-permission enterprise.kioskInput
|
|
11242
|
-
* @chrome-install-location policy
|
|
11243
|
-
* @chrome-platform chromeos
|
|
11244
|
-
*/
|
|
11245
|
-
export namespace enterprise.kioskInput {
|
|
11246
|
-
|
|
11247
|
-
export interface SetCurrentInputMethodOptions {
|
|
11248
|
-
|
|
11249
|
-
/**
|
|
11250
|
-
* The input method ID to set as current input method. This input method has to be enabled by enterprise policies. Supported IDs are located in https://crsrc.org/c/chrome/browser/resources/chromeos/input\_method.
|
|
11251
|
-
*/
|
|
11252
|
-
inputMethodId: string;
|
|
11253
|
-
}
|
|
11254
|
-
|
|
11255
|
-
/**
|
|
11256
|
-
* Sets the current input method. This function only changes the current input method to an enabled input method. Input methods can be enabled by enterprise polices. If the input method ID is invalid, or not enabled, {@link runtime.lastError} will be set with a failure reason.
|
|
11257
|
-
*
|
|
11258
|
-
* @param options Object containing the fields defined in {@link SetCurrentInputMethodOptions}.
|
|
11259
|
-
*/
|
|
11260
|
-
export function setCurrentInputMethod(
|
|
11261
|
-
|
|
11262
|
-
options: SetCurrentInputMethodOptions,
|
|
11263
|
-
): Promise<void>;
|
|
11264
|
-
|
|
11265
|
-
/**
|
|
11266
|
-
* Sets the current input method. This function only changes the current input method to an enabled input method. Input methods can be enabled by enterprise polices. If the input method ID is invalid, or not enabled, {@link runtime.lastError} will be set with a failure reason.
|
|
11267
|
-
*
|
|
11268
|
-
* @param options Object containing the fields defined in {@link SetCurrentInputMethodOptions}.
|
|
11269
|
-
* @param callback Called when the input method is changed or if there is an error.
|
|
11270
|
-
*/
|
|
11271
|
-
export function setCurrentInputMethod(
|
|
11272
|
-
|
|
11273
|
-
options: SetCurrentInputMethodOptions,
|
|
11274
|
-
|
|
11275
|
-
callback?: () => void,
|
|
11276
|
-
): void;
|
|
11277
|
-
}
|
|
11278
|
-
|
|
11279
11237
|
/**
|
|
11280
11238
|
* Use the `chrome.enterprise.networkingAttributes` API to read information about your current network. Note: This API is only available to extensions force-installed by enterprise policy.
|
|
11281
11239
|
*
|
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 Tue Nov 14 2023 19:05:13 GMT+0000 (Coordinated Universal Time)
|
|
18
|
+
// Built at 5677b4aa94cb69e0b0644093cbb10c92637b5642
|
|
19
19
|
|
|
20
20
|
// Includes MV3+ APIs only.
|
|
21
21
|
|
|
@@ -3696,7 +3696,7 @@ declare namespace chrome {
|
|
|
3696
3696
|
): void;
|
|
3697
3697
|
|
|
3698
3698
|
/**
|
|
3699
|
-
* Retrieves all cookies from a single cookie store that match the given information. The cookies returned will be sorted, with those with the longest path first. If multiple cookies have the same path length, those with the earliest creation time will be first. Only retrieves cookies for domains which the extension has host permissions to
|
|
3699
|
+
* Retrieves all cookies from a single cookie store that match the given information. The cookies returned will be sorted, with those with the longest path first. If multiple cookies have the same path length, those with the earliest creation time will be first. Only retrieves cookies for domains which the extension has host permissions to.
|
|
3700
3700
|
*
|
|
3701
3701
|
* @chrome-returns-extra since Chrome 88
|
|
3702
3702
|
* @param details Information to filter the cookies being retrieved.
|
|
@@ -3750,7 +3750,7 @@ declare namespace chrome {
|
|
|
3750
3750
|
): Promise<Cookie[]>;
|
|
3751
3751
|
|
|
3752
3752
|
/**
|
|
3753
|
-
* Retrieves all cookies from a single cookie store that match the given information. The cookies returned will be sorted, with those with the longest path first. If multiple cookies have the same path length, those with the earliest creation time will be first. Only retrieves cookies for domains which the extension has host permissions to
|
|
3753
|
+
* Retrieves all cookies from a single cookie store that match the given information. The cookies returned will be sorted, with those with the longest path first. If multiple cookies have the same path length, those with the earliest creation time will be first. Only retrieves cookies for domains which the extension has host permissions to.
|
|
3754
3754
|
*
|
|
3755
3755
|
* @param details Information to filter the cookies being retrieved.
|
|
3756
3756
|
*/
|
|
@@ -7364,48 +7364,6 @@ declare namespace chrome {
|
|
|
7364
7364
|
): void;
|
|
7365
7365
|
}
|
|
7366
7366
|
|
|
7367
|
-
/**
|
|
7368
|
-
* Use the `chrome.enterprise.kioskInput` API to change input settings for Kiosk sessions. Note: This API is only available extensions and Chrome apps installed by enterprise policy in ChromeOS Kiosk sessions.
|
|
7369
|
-
*
|
|
7370
|
-
* @since Pending
|
|
7371
|
-
* @chrome-permission enterprise.kioskInput
|
|
7372
|
-
* @chrome-install-location policy
|
|
7373
|
-
* @chrome-platform chromeos
|
|
7374
|
-
*/
|
|
7375
|
-
export namespace enterprise.kioskInput {
|
|
7376
|
-
|
|
7377
|
-
export interface SetCurrentInputMethodOptions {
|
|
7378
|
-
|
|
7379
|
-
/**
|
|
7380
|
-
* The input method ID to set as current input method. This input method has to be enabled by enterprise policies. Supported IDs are located in https://crsrc.org/c/chrome/browser/resources/chromeos/input\_method.
|
|
7381
|
-
*/
|
|
7382
|
-
inputMethodId: string;
|
|
7383
|
-
}
|
|
7384
|
-
|
|
7385
|
-
/**
|
|
7386
|
-
* Sets the current input method. This function only changes the current input method to an enabled input method. Input methods can be enabled by enterprise polices. If the input method ID is invalid, or not enabled, {@link runtime.lastError} will be set with a failure reason.
|
|
7387
|
-
*
|
|
7388
|
-
* @param options Object containing the fields defined in {@link SetCurrentInputMethodOptions}.
|
|
7389
|
-
*/
|
|
7390
|
-
export function setCurrentInputMethod(
|
|
7391
|
-
|
|
7392
|
-
options: SetCurrentInputMethodOptions,
|
|
7393
|
-
): Promise<void>;
|
|
7394
|
-
|
|
7395
|
-
/**
|
|
7396
|
-
* Sets the current input method. This function only changes the current input method to an enabled input method. Input methods can be enabled by enterprise polices. If the input method ID is invalid, or not enabled, {@link runtime.lastError} will be set with a failure reason.
|
|
7397
|
-
*
|
|
7398
|
-
* @param options Object containing the fields defined in {@link SetCurrentInputMethodOptions}.
|
|
7399
|
-
* @param callback Called when the input method is changed or if there is an error.
|
|
7400
|
-
*/
|
|
7401
|
-
export function setCurrentInputMethod(
|
|
7402
|
-
|
|
7403
|
-
options: SetCurrentInputMethodOptions,
|
|
7404
|
-
|
|
7405
|
-
callback?: () => void,
|
|
7406
|
-
): void;
|
|
7407
|
-
}
|
|
7408
|
-
|
|
7409
7367
|
/**
|
|
7410
7368
|
* Use the `chrome.enterprise.networkingAttributes` API to read information about your current network. Note: This API is only available to extensions force-installed by enterprise policy.
|
|
7411
7369
|
*
|
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": "8301a6a993ab493d"
|
|
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.243"
|
|
20
20
|
}
|