bopodev-agent-sdk 0.1.35 → 0.1.36
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> bopodev-agent-sdk@0.1.
|
|
3
|
+
> bopodev-agent-sdk@0.1.36 build /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopodev/packages/agent-sdk
|
|
4
4
|
> tsc -p tsconfig.json --emitDeclarationOnly
|
|
5
5
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
> bopodev-agent-sdk@0.1.
|
|
2
|
+
> bopodev-agent-sdk@0.1.35 typecheck /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopodev/packages/agent-sdk
|
|
3
3
|
> tsc -p tsconfig.json --noEmit
|
|
4
4
|
|
|
@@ -128,6 +128,7 @@ export declare const IssueSchema: z.ZodObject<{
|
|
|
128
128
|
projectId: z.ZodString;
|
|
129
129
|
parentIssueId: z.ZodNullable<z.ZodString>;
|
|
130
130
|
goalIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
131
|
+
knowledgePaths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
131
132
|
title: z.ZodString;
|
|
132
133
|
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
133
134
|
externalLink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -376,6 +377,7 @@ export declare const IssueDetailSchema: z.ZodObject<{
|
|
|
376
377
|
projectId: z.ZodString;
|
|
377
378
|
parentIssueId: z.ZodNullable<z.ZodString>;
|
|
378
379
|
goalIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
380
|
+
knowledgePaths: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
379
381
|
title: z.ZodString;
|
|
380
382
|
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
381
383
|
externalLink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bopodev-agent-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.36",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"types": "src/index.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"bopodev-contracts": "0.1.
|
|
9
|
+
"bopodev-contracts": "0.1.36"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "tsc -p tsconfig.json --emitDeclarationOnly",
|