@caido/sdk-backend 0.50.2 → 0.51.1-beta.0
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 +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.
|
|
3
|
+
"version": "0.51.1-beta.0",
|
|
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.
|
|
12
|
+
"@caido/quickjs-types": "^0.20.0",
|
|
13
13
|
"@caido/sdk-shared": "^0.1.0"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
package/src/typing.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ declare module "caido:plugin" {
|
|
|
12
12
|
EnvironmentSDK,
|
|
13
13
|
RuntimeSDK,
|
|
14
14
|
ScopeSDK,
|
|
15
|
+
GraphQLSDK,
|
|
15
16
|
} from "caido:utils";
|
|
16
17
|
|
|
17
18
|
/**
|
|
@@ -195,5 +196,9 @@ declare module "caido:plugin" {
|
|
|
195
196
|
* The SDK for the runtime information.
|
|
196
197
|
*/
|
|
197
198
|
runtime: RuntimeSDK;
|
|
199
|
+
/**
|
|
200
|
+
* The SDK for the GraphQL service.
|
|
201
|
+
*/
|
|
202
|
+
graphql: GraphQLSDK;
|
|
198
203
|
}
|
|
199
204
|
}
|