@redhat-cloud-services/types 0.0.20 → 0.0.22
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/index.d.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -149,6 +149,10 @@ export interface ChromeAPI {
|
|
|
149
149
|
forceDemo: () => void;
|
|
150
150
|
getApp: () => string;
|
|
151
151
|
getBundle: () => string;
|
|
152
|
+
getBundleData: () => {
|
|
153
|
+
bundleId: string;
|
|
154
|
+
bundleTitle: string;
|
|
155
|
+
};
|
|
152
156
|
getEnvironment: () => string;
|
|
153
157
|
getEnvironmentDetails: () =>
|
|
154
158
|
| undefined
|
|
@@ -225,6 +229,7 @@ export interface ChromeAPI {
|
|
|
225
229
|
};
|
|
226
230
|
}) => T
|
|
227
231
|
) => T;
|
|
232
|
+
enablePackagesDebug: () => void;
|
|
228
233
|
}
|
|
229
234
|
|
|
230
235
|
declare global {
|