@redhat-cloud-services/types 0.0.5 → 0.0.8

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 (2) hide show
  1. package/index.d.ts +9 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -11,6 +11,7 @@ declare type ChromeUser = {
11
11
  };
12
12
  identity: {
13
13
  account_number: string;
14
+ org_id: string;
14
15
  internal?: {
15
16
  org_id: string;
16
17
  account_id: string;
@@ -168,3 +169,11 @@ export interface ChromeAPI {
168
169
  updateDocumentTitle: (title: string, noSuffix?: boolean) => void;
169
170
  visibilityFunctions: VisibilityFunctions;
170
171
  }
172
+
173
+ declare global {
174
+ interface Window {
175
+ insights: {
176
+ chrome: ChromeAPI;
177
+ };
178
+ }
179
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@redhat-cloud-services/types",
3
3
  "description": "TypeScript definitions for @redhat-cloud-services common typings",
4
- "version": "0.0.5",
4
+ "version": "0.0.8",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
7
7
  "publishConfig": {