@boboddy/sdk 0.0.16-alpha → 0.1.0-alpha
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/dist/client.js +0 -75
- package/dist/definitions/advancement-policies/define-advancement-policy.d.ts +218 -0
- package/dist/definitions/advancement-policies/index.d.ts +1 -0
- package/dist/definitions/advancement-policies/index.js +95 -0
- package/dist/definitions/pipelines/define-pipeline.d.ts +112 -0
- package/dist/definitions/pipelines/index.d.ts +1 -0
- package/dist/definitions/pipelines/index.js +141 -0
- package/dist/{define-step.d.ts → definitions/steps/define-step.d.ts} +16 -3
- package/dist/definitions/steps/index.d.ts +2 -0
- package/dist/{define-step.js → definitions/steps/index.js} +1368 -80
- package/dist/{step-definitions-client.d.ts → definitions/steps/step-definitions-client.d.ts} +2 -2
- package/dist/generated/index.d.ts +2 -2
- package/dist/generated/sdk.gen.d.ts +1 -23
- package/dist/generated/types.gen.d.ts +0 -1351
- package/dist/index.d.ts +2 -1
- package/dist/index.js +261 -168
- package/dist/opencode-mcp.js +94 -88
- package/package.json +27 -14
- package/dist/step-definitions-client.js +0 -1372
package/package.json
CHANGED
|
@@ -1,43 +1,56 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@boboddy/sdk",
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "0.1.0-alpha",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
8
|
"types": "./src/index.ts",
|
|
9
9
|
"bun": "./src/index.ts",
|
|
10
|
-
"import": "./
|
|
10
|
+
"import": "./src/index.ts",
|
|
11
|
+
"default": "./src/index.ts"
|
|
11
12
|
},
|
|
12
13
|
"./client": {
|
|
13
14
|
"types": "./src/client.ts",
|
|
14
15
|
"bun": "./src/client.ts",
|
|
15
|
-
"import": "./
|
|
16
|
+
"import": "./src/client.ts",
|
|
17
|
+
"default": "./src/client.ts"
|
|
16
18
|
},
|
|
17
|
-
"./
|
|
18
|
-
"types": "./src/
|
|
19
|
-
"bun": "./src/
|
|
20
|
-
"import": "./
|
|
19
|
+
"./definitions/steps": {
|
|
20
|
+
"types": "./src/definitions/steps/index.ts",
|
|
21
|
+
"bun": "./src/definitions/steps/index.ts",
|
|
22
|
+
"import": "./src/definitions/steps/index.ts",
|
|
23
|
+
"default": "./src/definitions/steps/index.ts"
|
|
21
24
|
},
|
|
22
|
-
"./
|
|
23
|
-
"types": "./src/
|
|
24
|
-
"bun": "./src/
|
|
25
|
-
"import": "./
|
|
25
|
+
"./definitions/pipelines": {
|
|
26
|
+
"types": "./src/definitions/pipelines/index.ts",
|
|
27
|
+
"bun": "./src/definitions/pipelines/index.ts",
|
|
28
|
+
"import": "./src/definitions/pipelines/index.ts",
|
|
29
|
+
"default": "./src/definitions/pipelines/index.ts"
|
|
30
|
+
},
|
|
31
|
+
"./definitions/advancement-policies": {
|
|
32
|
+
"types": "./src/definitions/advancement-policies/index.ts",
|
|
33
|
+
"bun": "./src/definitions/advancement-policies/index.ts",
|
|
34
|
+
"import": "./src/definitions/advancement-policies/index.ts",
|
|
35
|
+
"default": "./src/definitions/advancement-policies/index.ts"
|
|
26
36
|
},
|
|
27
37
|
"./opencode-mcp": {
|
|
28
38
|
"types": "./src/opencode-mcp.ts",
|
|
29
39
|
"bun": "./src/opencode-mcp.ts",
|
|
30
|
-
"import": "./
|
|
40
|
+
"import": "./src/opencode-mcp.ts",
|
|
41
|
+
"default": "./src/opencode-mcp.ts"
|
|
31
42
|
},
|
|
32
43
|
"./jsonc": {
|
|
33
44
|
"types": "./src/jsonc.ts",
|
|
34
45
|
"bun": "./src/jsonc.ts",
|
|
35
|
-
"import": "./
|
|
46
|
+
"import": "./src/jsonc.ts",
|
|
47
|
+
"default": "./src/jsonc.ts"
|
|
36
48
|
},
|
|
37
49
|
"./boboddy-config-parser": {
|
|
38
50
|
"types": "./src/boboddy-config-parser.ts",
|
|
39
51
|
"bun": "./src/boboddy-config-parser.ts",
|
|
40
|
-
"import": "./
|
|
52
|
+
"import": "./src/boboddy-config-parser.ts",
|
|
53
|
+
"default": "./src/boboddy-config-parser.ts"
|
|
41
54
|
}
|
|
42
55
|
},
|
|
43
56
|
"files": [
|