@caido/sdk-backend 0.41.1-beta.3 → 0.41.1-beta.5
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 +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caido/sdk-backend",
|
|
3
|
-
"version": "0.41.1-beta.
|
|
3
|
+
"version": "0.41.1-beta.5",
|
|
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.9.0",
|
|
13
13
|
"@caido/sdk-shared": "0.1.1"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
package/src/typing.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ declare module "caido:plugin" {
|
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* The SDK for the API RPC service.
|
|
14
|
-
* @category
|
|
14
|
+
* @category API
|
|
15
15
|
*/
|
|
16
16
|
export type APISDK<API = {}, Events = {}> = {
|
|
17
17
|
/**
|
|
@@ -42,7 +42,7 @@ declare module "caido:plugin" {
|
|
|
42
42
|
|
|
43
43
|
/**
|
|
44
44
|
* The SDK for the API RPC service.
|
|
45
|
-
* @category
|
|
45
|
+
* @category Events
|
|
46
46
|
*/
|
|
47
47
|
export type EventsSDK<API = {}, Events = {}> = {
|
|
48
48
|
/**
|
|
@@ -84,7 +84,7 @@ declare module "caido:plugin" {
|
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
86
|
* The SDK for metadata information about the plugin.
|
|
87
|
-
* @category
|
|
87
|
+
* @category Meta
|
|
88
88
|
*/
|
|
89
89
|
export type MetaSDK = {
|
|
90
90
|
/**
|