@caido/sdk-workflow 0.54.1 → 0.55.0-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-workflow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.55.0-beta.0",
|
|
4
4
|
"description": "Typing for the Caido Workflow 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.25.0"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"generate:doc": "typedoc"
|
package/src/typing.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ declare module "caido:workflow" {
|
|
|
12
12
|
ScopeSDK,
|
|
13
13
|
GraphQLSDK,
|
|
14
14
|
HostedFileSDK,
|
|
15
|
+
NetSDK,
|
|
15
16
|
} from "caido:utils";
|
|
16
17
|
|
|
17
18
|
/**
|
|
@@ -96,6 +97,10 @@ declare module "caido:workflow" {
|
|
|
96
97
|
* The SDK for the HostedFile service.
|
|
97
98
|
*/
|
|
98
99
|
hostedFile: HostedFileSDK;
|
|
100
|
+
/**
|
|
101
|
+
* The SDK for the Net service.
|
|
102
|
+
*/
|
|
103
|
+
net: NetSDK;
|
|
99
104
|
/**
|
|
100
105
|
* Converts bytes to a string.
|
|
101
106
|
*
|