@caido/sdk-backend 0.53.1 → 0.54.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.54.0",
|
|
4
4
|
"description": "Typing for the Caido Backend SDK",
|
|
5
5
|
"author": "Caido Labs Inc. <dev@caido.io>",
|
|
6
6
|
"repository": "https://github.com/caido/sdk-js/",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"src/*"
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@caido/quickjs-types": "^0.
|
|
13
|
+
"@caido/quickjs-types": "^0.24.0",
|
|
14
14
|
"@caido/sdk-shared": "^0.1.0"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
package/src/typing.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ declare module "caido:plugin" {
|
|
|
13
13
|
RuntimeSDK,
|
|
14
14
|
ScopeSDK,
|
|
15
15
|
GraphQLSDK,
|
|
16
|
+
HostedFileSDK,
|
|
16
17
|
} from "caido:utils";
|
|
17
18
|
|
|
18
19
|
/**
|
|
@@ -200,5 +201,9 @@ declare module "caido:plugin" {
|
|
|
200
201
|
* The SDK for the GraphQL service.
|
|
201
202
|
*/
|
|
202
203
|
graphql: GraphQLSDK;
|
|
204
|
+
/**
|
|
205
|
+
* The SDK for the HostedFile service.
|
|
206
|
+
*/
|
|
207
|
+
hostedFile: HostedFileSDK;
|
|
203
208
|
}
|
|
204
209
|
}
|