@lssm/lib.support-bot 1.42.10 → 1.43.2
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/contracts/src/docs/index.d.ts +3 -1
- package/dist/contracts/src/workflow/overview.docblock.d.ts +1 -0
- package/dist/contracts/src/workspace-config/workspace-config.docblock.d.ts +1 -0
- package/dist/schema/src/GraphQLSchemaType.d.ts +2 -0
- package/dist/schema/src/JsonSchemaType.d.ts +2 -0
- package/dist/schema/src/SchemaModel.d.ts +1 -0
- package/dist/schema/src/SchemaModelType.d.ts +1 -0
- package/dist/schema/src/ZodSchemaType.d.ts +2 -0
- package/dist/schema/src/index.d.ts +5 -1
- package/package.json +9 -8
- /package/dist/contracts/src/docs/tech/{workflows/overview.docblock.d.ts → contracts/openapi-import.docblock.d.ts} +0 -0
|
@@ -6,11 +6,13 @@ import "./tech/presentation-runtime.docblock.js";
|
|
|
6
6
|
import "./tech/auth/better-auth-nextjs.docblock.js";
|
|
7
7
|
import "./tech/schema/README.docblock.js";
|
|
8
8
|
import "./tech/templates/runtime.docblock.js";
|
|
9
|
-
import "
|
|
9
|
+
import "../workflow/overview.docblock.js";
|
|
10
10
|
import "./tech/mcp-endpoints.docblock.js";
|
|
11
11
|
import "./tech/vscode-extension.docblock.js";
|
|
12
12
|
import "./tech/telemetry-ingest.docblock.js";
|
|
13
13
|
import "./tech/contracts/openapi-export.docblock.js";
|
|
14
|
+
import "./tech/contracts/openapi-import.docblock.js";
|
|
15
|
+
import "../workspace-config/workspace-config.docblock.js";
|
|
14
16
|
import "./tech/studio/workspaces.docblock.js";
|
|
15
17
|
import "./tech/studio/sandbox-unlogged.docblock.js";
|
|
16
18
|
import "./tech/studio/workspace-ops.docblock.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "../docs/index.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "../docs/index.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "zod";
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import "./FieldType.js";
|
|
2
2
|
import "./ScalarTypeEnum.js";
|
|
3
3
|
import "./EnumType.js";
|
|
4
|
+
import "./SchemaModelType.js";
|
|
4
5
|
import "./SchemaModel.js";
|
|
5
|
-
import "./entity/index.js";
|
|
6
|
+
import "./entity/index.js";
|
|
7
|
+
import "./ZodSchemaType.js";
|
|
8
|
+
import "./JsonSchemaType.js";
|
|
9
|
+
import "./GraphQLSchemaType.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/lib.support-bot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.43.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"test": "bun run"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@lssm/lib.ai-agent": "1.
|
|
27
|
-
"@lssm/lib.contracts": "1.
|
|
28
|
-
"@lssm/lib.knowledge": "1.
|
|
29
|
-
"@lssm/lib.schema": "1.
|
|
26
|
+
"@lssm/lib.ai-agent": "1.43.2",
|
|
27
|
+
"@lssm/lib.contracts": "1.43.2",
|
|
28
|
+
"@lssm/lib.knowledge": "1.43.2",
|
|
29
|
+
"@lssm/lib.schema": "1.43.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@lssm/tool.tsdown": "1.
|
|
33
|
-
"@lssm/tool.typescript": "1.
|
|
32
|
+
"@lssm/tool.tsdown": "1.43.1",
|
|
33
|
+
"@lssm/tool.typescript": "1.43.1",
|
|
34
34
|
"tsdown": "^0.18.3",
|
|
35
35
|
"typescript": "^5.9.3"
|
|
36
36
|
},
|
|
@@ -71,5 +71,6 @@
|
|
|
71
71
|
"type": "git",
|
|
72
72
|
"url": "https://github.com/lssm-tech/contractspec.git",
|
|
73
73
|
"directory": "packages/libs/support-bot"
|
|
74
|
-
}
|
|
74
|
+
},
|
|
75
|
+
"homepage": "https://contractspec.io"
|
|
75
76
|
}
|
|
File without changes
|