@caido/sdk-backend 0.48.2-beta.0 → 0.48.2-beta.2

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/package.json +2 -2
  2. package/src/typing.d.ts +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/sdk-backend",
3
- "version": "0.48.2-beta.0",
3
+ "version": "0.48.2-beta.2",
4
4
  "description": "Typing for the Caido Backend SDK",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "license": "MIT",
@@ -9,7 +9,7 @@
9
9
  "src/*"
10
10
  ],
11
11
  "dependencies": {
12
- "@caido/quickjs-types": "0.19.0",
12
+ "@caido/quickjs-types": "0.19.1",
13
13
  "@caido/sdk-shared": "^0.1.0"
14
14
  },
15
15
  "scripts": {
package/src/typing.d.ts CHANGED
@@ -11,6 +11,7 @@ declare module "caido:plugin" {
11
11
  Project,
12
12
  EnvironmentSDK,
13
13
  RuntimeSDK,
14
+ ScopeSDK,
14
15
  } from "caido:utils";
15
16
 
16
17
  /**
@@ -170,6 +171,10 @@ declare module "caido:plugin" {
170
171
  * The SDK for the Projects service.
171
172
  */
172
173
  projects: ProjectsSDK;
174
+ /**
175
+ * The SDK for the Scope service.
176
+ */
177
+ scope: ScopeSDK;
173
178
  /**
174
179
  * The SDK for the Environment service.
175
180
  */