@caido/sdk-backend 0.42.1-beta.1 → 0.42.1-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.
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.42.1-beta.1",
3
+ "version": "0.42.1-beta.3",
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.9.0",
12
+ "@caido/quickjs-types": "^0.11.0",
13
13
  "@caido/sdk-shared": "^0.1.0"
14
14
  },
15
15
  "scripts": {
package/src/typing.d.ts CHANGED
@@ -7,6 +7,7 @@ declare module "caido:plugin" {
7
7
  Request,
8
8
  Response,
9
9
  ReplaySDK,
10
+ ProjectsSDK,
10
11
  } from "caido:utils";
11
12
 
12
13
  /**
@@ -122,6 +123,10 @@ declare module "caido:plugin" {
122
123
  * The SDK for the Replay service.
123
124
  */
124
125
  replay: ReplaySDK;
126
+ /**
127
+ * The SDK for the Projects service.
128
+ */
129
+ projects: ProjectsSDK;
125
130
  /**
126
131
  * The SDK for the API RPC service.
127
132
  */