@redhat-cloud-services/types 0.0.13 → 0.0.15

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 +2 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -105,7 +105,7 @@ export interface ChromeAPI {
105
105
  toggleFeedbackModal: (isOpen: boolean) => void;
106
106
  quickStarts: {
107
107
  version: number;
108
- updateQuickStarts: (key: string, quickstarts: QuickStart[]) => void;
108
+ set: (key: string, quickstarts: QuickStart[]) => void;
109
109
  toggle: (quickstartId: string) => void;
110
110
  Catalog: typeof QuickStartCatalogPage;
111
111
  };
@@ -156,7 +156,7 @@ export interface ChromeAPI {
156
156
  };
157
157
  helpTopics: {
158
158
  addHelpTopics: (topics: HelpTopic[], enabled?: boolean) => void;
159
- enableTopics: (...topicsNames: string[]) => Promise<void[]>;
159
+ enableTopics: (...topicsNames: string[]) => Promise<HelpTopic[]>;
160
160
  disableTopics: (...topicsNames: string[]) => void;
161
161
  setActiveTopic: (name: string) => Promise<void>;
162
162
  closeHelpTopic: () => void;
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.13",
4
+ "version": "0.0.15",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
7
7
  "publishConfig": {