chrome-types 0.1.368 → 0.1.370

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 +19 -4
  2. package/index.d.ts +19 -4
  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 Mon Aug 04 2025 22:34:36 GMT+0000 (Coordinated Universal Time)
18
- // Built at 19958fb507107da128a9f76e3d256fb426a1fc40
17
+ // Generated on Sat Aug 09 2025 22:33:11 GMT+0000 (Coordinated Universal Time)
18
+ // Built at 027a12bdea4c73324d5831d6fbf11b67b1466bc9
19
19
 
20
20
  // Includes all types, including MV2 + Platform Apps APIs.
21
21
 
@@ -24584,10 +24584,9 @@ declare namespace chrome {
24584
24584
  * @chrome-enum "cros" Specifies the Chrome operating system.
24585
24585
  * @chrome-enum "linux" Specifies the Linux operating system.
24586
24586
  * @chrome-enum "openbsd" Specifies the OpenBSD operating system.
24587
- * @chrome-enum "fuchsia" Specifies the Fuchsia operating system.
24588
24587
  * @since Chrome 44
24589
24588
  */
24590
- export type PlatformOs = "mac" | "win" | "android" | "cros" | "linux" | "openbsd" | "fuchsia";
24589
+ export type PlatformOs = "mac" | "win" | "android" | "cros" | "linux" | "openbsd";
24591
24590
 
24592
24591
  /**
24593
24592
  * The machine's processor architecture.
@@ -26644,6 +26643,22 @@ declare namespace chrome {
26644
26643
  tabId?: number;
26645
26644
  }
26646
26645
 
26646
+ /**
26647
+ * @since Pending
26648
+ */
26649
+ export interface CloseOptions {
26650
+
26651
+ /**
26652
+ * The window in which to close the side panel. If a global side panel is open in the specified window, it will be closed for all tabs in that window where no tab-specific panel is active. At least one of this or `tabId` must be provided.
26653
+ */
26654
+ windowId?: number;
26655
+
26656
+ /**
26657
+ * The tab in which to close the side panel. If a tab-specific side panel is open in the specified tab, it will be closed for that tab. At least one of this or `windowId` must be provided.
26658
+ */
26659
+ tabId?: number;
26660
+ }
26661
+
26647
26662
  /**
26648
26663
  * Configures the side panel.
26649
26664
  *
package/index.d.ts CHANGED
@@ -14,8 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
- // Generated on Mon Aug 04 2025 22:34:31 GMT+0000 (Coordinated Universal Time)
18
- // Built at 19958fb507107da128a9f76e3d256fb426a1fc40
17
+ // Generated on Sat Aug 09 2025 22:33:07 GMT+0000 (Coordinated Universal Time)
18
+ // Built at 027a12bdea4c73324d5831d6fbf11b67b1466bc9
19
19
 
20
20
  // Includes MV3+ APIs only.
21
21
 
@@ -19329,10 +19329,9 @@ declare namespace chrome {
19329
19329
  * @chrome-enum "cros" Specifies the Chrome operating system.
19330
19330
  * @chrome-enum "linux" Specifies the Linux operating system.
19331
19331
  * @chrome-enum "openbsd" Specifies the OpenBSD operating system.
19332
- * @chrome-enum "fuchsia" Specifies the Fuchsia operating system.
19333
19332
  * @since Chrome 44
19334
19333
  */
19335
- export type PlatformOs = "mac" | "win" | "android" | "cros" | "linux" | "openbsd" | "fuchsia";
19334
+ export type PlatformOs = "mac" | "win" | "android" | "cros" | "linux" | "openbsd";
19336
19335
 
19337
19336
  /**
19338
19337
  * The machine's processor architecture.
@@ -20760,6 +20759,22 @@ declare namespace chrome {
20760
20759
  tabId?: number;
20761
20760
  }
20762
20761
 
20762
+ /**
20763
+ * @since Pending
20764
+ */
20765
+ export interface CloseOptions {
20766
+
20767
+ /**
20768
+ * The window in which to close the side panel. If a global side panel is open in the specified window, it will be closed for all tabs in that window where no tab-specific panel is active. At least one of this or `tabId` must be provided.
20769
+ */
20770
+ windowId?: number;
20771
+
20772
+ /**
20773
+ * The tab in which to close the side panel. If a tab-specific side panel is open in the specified tab, it will be closed for that tab. At least one of this or `windowId` must be provided.
20774
+ */
20775
+ tabId?: number;
20776
+ }
20777
+
20763
20778
  /**
20764
20779
  * Configures the side panel.
20765
20780
  *
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "module",
6
6
  "name": "chrome-types",
7
7
  "config": {
8
- "build-hash": "a9d4b1067f353d7c"
8
+ "build-hash": "64795cbd0bf4b4dc"
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.368"
19
+ "version": "0.1.370"
20
20
  }