@boboddy/sdk 0.0.16-alpha → 0.1.1-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 +2 -0
- package/dist/definitions/pipelines/index.js +183 -0
- package/dist/definitions/pipelines/pipeline-definitions-client.d.ts +56 -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 +303 -168
- package/dist/opencode-mcp.js +94 -88
- package/package.json +79 -20
- package/dist/step-definitions-client.js +0 -1372
package/package.json
CHANGED
|
@@ -1,51 +1,110 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@boboddy/sdk",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.1.1-alpha",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"types": "./
|
|
8
|
+
"types": "./dist/index.d.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
|
-
"types": "./
|
|
14
|
+
"types": "./dist/client.d.ts",
|
|
14
15
|
"bun": "./src/client.ts",
|
|
15
|
-
"import": "./
|
|
16
|
+
"import": "./src/client.ts",
|
|
17
|
+
"default": "./src/client.ts"
|
|
16
18
|
},
|
|
17
|
-
"./
|
|
18
|
-
"types": "./
|
|
19
|
-
"bun": "./src/
|
|
20
|
-
"import": "./
|
|
19
|
+
"./definitions/steps": {
|
|
20
|
+
"types": "./dist/definitions/steps/index.d.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": "./
|
|
24
|
-
"bun": "./src/
|
|
25
|
-
"import": "./
|
|
25
|
+
"./definitions/pipelines": {
|
|
26
|
+
"types": "./dist/definitions/pipelines/index.d.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": "./dist/definitions/advancement-policies/index.d.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
|
-
"types": "./
|
|
38
|
+
"types": "./dist/opencode-mcp.d.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
|
-
"types": "./
|
|
44
|
+
"types": "./dist/jsonc.d.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
|
-
"types": "./
|
|
50
|
+
"types": "./dist/boboddy-config-parser.d.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": [
|
|
44
57
|
"dist",
|
|
45
58
|
"README.md"
|
|
46
59
|
],
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "https://github.com/connorivy/boboddy"
|
|
63
|
+
},
|
|
47
64
|
"publishConfig": {
|
|
48
|
-
"access": "public"
|
|
65
|
+
"access": "public",
|
|
66
|
+
"exports": {
|
|
67
|
+
".": {
|
|
68
|
+
"types": "./dist/index.d.ts",
|
|
69
|
+
"import": "./dist/index.js",
|
|
70
|
+
"default": "./dist/index.js"
|
|
71
|
+
},
|
|
72
|
+
"./client": {
|
|
73
|
+
"types": "./dist/client.d.ts",
|
|
74
|
+
"import": "./dist/client.js",
|
|
75
|
+
"default": "./dist/client.js"
|
|
76
|
+
},
|
|
77
|
+
"./definitions/steps": {
|
|
78
|
+
"types": "./dist/definitions/steps/index.d.ts",
|
|
79
|
+
"import": "./dist/definitions/steps/index.js",
|
|
80
|
+
"default": "./dist/definitions/steps/index.js"
|
|
81
|
+
},
|
|
82
|
+
"./definitions/pipelines": {
|
|
83
|
+
"types": "./dist/definitions/pipelines/index.d.ts",
|
|
84
|
+
"import": "./dist/definitions/pipelines/index.js",
|
|
85
|
+
"default": "./dist/definitions/pipelines/index.js"
|
|
86
|
+
},
|
|
87
|
+
"./definitions/advancement-policies": {
|
|
88
|
+
"types": "./dist/definitions/advancement-policies/index.d.ts",
|
|
89
|
+
"import": "./dist/definitions/advancement-policies/index.js",
|
|
90
|
+
"default": "./dist/definitions/advancement-policies/index.js"
|
|
91
|
+
},
|
|
92
|
+
"./opencode-mcp": {
|
|
93
|
+
"types": "./dist/opencode-mcp.d.ts",
|
|
94
|
+
"import": "./dist/opencode-mcp.js",
|
|
95
|
+
"default": "./dist/opencode-mcp.js"
|
|
96
|
+
},
|
|
97
|
+
"./jsonc": {
|
|
98
|
+
"types": "./dist/jsonc.d.ts",
|
|
99
|
+
"import": "./dist/jsonc.js",
|
|
100
|
+
"default": "./dist/jsonc.js"
|
|
101
|
+
},
|
|
102
|
+
"./boboddy-config-parser": {
|
|
103
|
+
"types": "./dist/boboddy-config-parser.d.ts",
|
|
104
|
+
"import": "./dist/boboddy-config-parser.js",
|
|
105
|
+
"default": "./dist/boboddy-config-parser.js"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
49
108
|
},
|
|
50
109
|
"scripts": {
|
|
51
110
|
"generate": "openapi-ts",
|