@caido/sdk-frontend 0.45.2-beta.2 → 0.45.2-beta.3
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/package.json +1 -1
- package/src/types/index.d.ts +5 -0
- package/src/types/runtime.d.ts +10 -0
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import type { MatchReplaceSDK } from "./matchReplace";
|
|
|
13
13
|
import type { MenuSDK } from "./menu";
|
|
14
14
|
import type { NavigationSDK } from "./navigation";
|
|
15
15
|
import type { ReplaySDK } from "./replay";
|
|
16
|
+
import type { RuntimeSDK } from "./runtime";
|
|
16
17
|
import type { ScopesSDK } from "./scopes";
|
|
17
18
|
import type { SearchSDK } from "./search";
|
|
18
19
|
import type { ShortcutsSDK } from "./shortcuts";
|
|
@@ -127,4 +128,8 @@ export type API<T extends BackendEndpoints = Record<string, never>, E extends Ba
|
|
|
127
128
|
* Utilities to interact with the Intercept page.
|
|
128
129
|
*/
|
|
129
130
|
intercept: InterceptSDK;
|
|
131
|
+
/**
|
|
132
|
+
* Utilities to interact with the runtime.
|
|
133
|
+
*/
|
|
134
|
+
runtime: RuntimeSDK;
|
|
130
135
|
};
|