@caido/sdk-workflow 0.55.3 → 0.56.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/sdk-workflow",
3
- "version": "0.55.3",
3
+ "version": "0.56.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,9 +10,11 @@
10
10
  "src/*"
11
11
  ],
12
12
  "dependencies": {
13
- "@caido/quickjs-types": "^0.25.4"
13
+ "@caido/quickjs-types": "^0.26.0"
14
14
  },
15
15
  "scripts": {
16
+ "build": "echo 'No build step required for @caido/sdk-workflow'",
17
+ "typecheck": "tsc --noEmit",
16
18
  "generate:doc": "typedoc"
17
19
  }
18
20
  }
package/src/global.d.ts CHANGED
@@ -13,22 +13,21 @@ import {
13
13
  RequestsSDK as _RequestsSDK,
14
14
  Response as _Response,
15
15
  } from "caido:utils";
16
-
17
16
  import {
18
- HttpInput as _HttpInput,
19
- PassiveInput as _PassiveInput,
20
17
  BytesInput as _BytesInput,
21
18
  ConvertInput as _ConvertInput,
22
19
  Data as _Data,
23
20
  Decision as _Decision,
21
+ HttpInput as _HttpInput,
24
22
  NodeInput as _NodeInput,
25
- NodeResult as _NodeResult,
26
23
  NodeInputHTTP as _NodeInputHTTP,
24
+ NodeResult as _NodeResult,
25
+ PassiveInput as _PassiveInput,
27
26
  SDK as _SDK,
28
27
  } from "caido:workflow";
29
28
 
30
29
  declare global {
31
- //@ts-ignore TS2666
30
+ //@ts-expect-error TS2666
32
31
  export {
33
32
  _Body as Body,
34
33
  _Request as Request,
@@ -45,7 +44,7 @@ declare global {
45
44
  _FindingsSDK as FindingsSDK,
46
45
  };
47
46
 
48
- //@ts-ignore TS2666
47
+ //@ts-expect-error TS2666
49
48
  export {
50
49
  _HttpInput as HttpInput,
51
50
  _PassiveInput as PassiveInput,
package/src/typing.d.ts CHANGED
@@ -1,18 +1,18 @@
1
1
  declare module "caido:workflow" {
2
2
  import {
3
- Bytes,
4
- FindingsSDK,
5
- RequestsSDK,
6
- Request,
7
- Response,
8
- ReplaySDK,
9
- ProjectsSDK,
10
- EnvironmentSDK,
11
- RuntimeSDK,
12
- ScopeSDK,
13
- GraphQLSDK,
14
- HostedFileSDK,
15
- NetSDK,
3
+ type Bytes,
4
+ type EnvironmentSDK,
5
+ type FindingsSDK,
6
+ type GraphQLSDK,
7
+ type HostedFileSDK,
8
+ type NetSDK,
9
+ type ProjectsSDK,
10
+ type ReplaySDK,
11
+ type Request,
12
+ type RequestsSDK,
13
+ type Response,
14
+ type RuntimeSDK,
15
+ type ScopeSDK,
16
16
  } from "caido:utils";
17
17
 
18
18
  /**