@plitzi/sdk-server 0.31.0 → 0.31.1
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/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,7 @@ var elementDefinitionSchema = z.object({
|
|
|
5
5
|
label: z.string().describe("Element label"),
|
|
6
6
|
type: z.string().describe("Element type"),
|
|
7
7
|
parentId: z.string().nullish().describe("Parent element ID (null for root elements)"),
|
|
8
|
-
items: z.array(z.string()).nullable().describe("Child element IDs"),
|
|
8
|
+
items: z.array(z.string()).optional().nullable().describe("Child element IDs"),
|
|
9
9
|
runtime: z.enum([
|
|
10
10
|
"server",
|
|
11
11
|
"client",
|
package/dist/package.js
CHANGED
package/dist/package.json.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare const elementDefinitionSchema: z.ZodObject<{
|
|
|
4
4
|
label: z.ZodString;
|
|
5
5
|
type: z.ZodString;
|
|
6
6
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7
|
-
items: z.ZodNullable<z.ZodArray<z.ZodString
|
|
7
|
+
items: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
8
8
|
runtime: z.ZodOptional<z.ZodEnum<{
|
|
9
9
|
server: "server";
|
|
10
10
|
client: "client";
|
|
@@ -24,7 +24,7 @@ export declare const elementSchema: z.ZodObject<{
|
|
|
24
24
|
label: z.ZodString;
|
|
25
25
|
type: z.ZodString;
|
|
26
26
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
|
-
items: z.ZodNullable<z.ZodArray<z.ZodString
|
|
27
|
+
items: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
28
28
|
runtime: z.ZodOptional<z.ZodEnum<{
|
|
29
29
|
server: "server";
|
|
30
30
|
client: "client";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plitzi/sdk-server",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.1",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
26
|
-
"@plitzi/plitzi-sdk": "0.31.
|
|
27
|
-
"@plitzi/sdk-shared": "0.31.
|
|
26
|
+
"@plitzi/plitzi-sdk": "0.31.1",
|
|
27
|
+
"@plitzi/sdk-shared": "0.31.1",
|
|
28
28
|
"ejs": "^6.0.1",
|
|
29
29
|
"esbuild": "^0.28.0",
|
|
30
30
|
"zod": "^4.4.3"
|