@ufira/vibma 1.1.3 → 1.1.4
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/README.md +2 -2
- package/dist/mcp.cjs +1179 -648
- package/dist/mcp.js +1179 -648
- package/dist/tools/generated/guards.cjs +16 -3
- package/dist/tools/generated/guards.d.cts +3 -1
- package/dist/tools/generated/guards.d.ts +3 -1
- package/dist/tools/generated/guards.js +15 -3
- package/dist/tools/registry.cjs +798 -494
- package/dist/tools/registry.js +798 -494
- package/dist/tools/schemas.cjs +135 -0
- package/dist/tools/schemas.d.cts +519 -1
- package/dist/tools/schemas.d.ts +519 -1
- package/dist/tools/schemas.js +121 -0
- package/package.json +1 -1
|
@@ -57,6 +57,7 @@ __export(guards_exports, {
|
|
|
57
57
|
nodeClone: () => nodeClone,
|
|
58
58
|
nodeDelete: () => nodeDelete,
|
|
59
59
|
nodeReparent: () => nodeReparent,
|
|
60
|
+
nodeScale: () => nodeScale,
|
|
60
61
|
nodeUpdate: () => nodeUpdate,
|
|
61
62
|
prototypingAdd: () => prototypingAdd,
|
|
62
63
|
stylesCreateEffect: () => stylesCreateEffect,
|
|
@@ -83,6 +84,7 @@ var annotationsSet = /* @__PURE__ */ new Set(["annotations", "id"]);
|
|
|
83
84
|
var annotationsAdd = /* @__PURE__ */ new Set(["categoryId", "id", "label", "labelMarkdown", "properties"]);
|
|
84
85
|
var annotationsRemove = /* @__PURE__ */ new Set(["id", "index"]);
|
|
85
86
|
var nodeClone = /* @__PURE__ */ new Set(["id", "name", "parentId", "x", "y"]);
|
|
87
|
+
var nodeScale = /* @__PURE__ */ new Set(["factor", "id"]);
|
|
86
88
|
var nodeReparent = /* @__PURE__ */ new Set(["id", "index", "parentId"]);
|
|
87
89
|
var componentsCreateComponent = /* @__PURE__ */ new Set([
|
|
88
90
|
"annotations",
|
|
@@ -219,6 +221,7 @@ var nodeUpdate = /* @__PURE__ */ new Set([
|
|
|
219
221
|
"bottomLeftRadius",
|
|
220
222
|
"bottomRightRadius",
|
|
221
223
|
"clearFill",
|
|
224
|
+
"clipsContent",
|
|
222
225
|
"constraints",
|
|
223
226
|
"cornerRadius",
|
|
224
227
|
"counterAxisAlignItems",
|
|
@@ -264,7 +267,6 @@ var nodeUpdate = /* @__PURE__ */ new Set([
|
|
|
264
267
|
"paddingRight",
|
|
265
268
|
"paddingTop",
|
|
266
269
|
"primaryAxisAlignItems",
|
|
267
|
-
"properties",
|
|
268
270
|
"rotation",
|
|
269
271
|
"strokeAlign",
|
|
270
272
|
"strokeBottomWeight",
|
|
@@ -488,7 +490,16 @@ var framesCreateLine = /* @__PURE__ */ new Set([
|
|
|
488
490
|
"y"
|
|
489
491
|
]);
|
|
490
492
|
var framesCreateGroup = /* @__PURE__ */ new Set(["name", "nodeIds", "parentId"]);
|
|
491
|
-
var framesCreateBooleanOperation = /* @__PURE__ */ new Set([
|
|
493
|
+
var framesCreateBooleanOperation = /* @__PURE__ */ new Set([
|
|
494
|
+
"fillStyleName",
|
|
495
|
+
"fillVariableName",
|
|
496
|
+
"name",
|
|
497
|
+
"nodeIds",
|
|
498
|
+
"operation",
|
|
499
|
+
"parentId",
|
|
500
|
+
"strokeStyleName",
|
|
501
|
+
"strokeVariableName"
|
|
502
|
+
]);
|
|
492
503
|
var framesCreateSvg = /* @__PURE__ */ new Set([
|
|
493
504
|
"fillStyleName",
|
|
494
505
|
"fillVariableName",
|
|
@@ -681,7 +692,7 @@ var prototypingAdd = /* @__PURE__ */ new Set([
|
|
|
681
692
|
"triggerDelay",
|
|
682
693
|
"url"
|
|
683
694
|
]);
|
|
684
|
-
var stylesCreatePaint = /* @__PURE__ */ new Set(["color", "colorVariableName", "description", "name"]);
|
|
695
|
+
var stylesCreatePaint = /* @__PURE__ */ new Set(["color", "colorVariableName", "description", "name", "paints"]);
|
|
685
696
|
var stylesCreateText = /* @__PURE__ */ new Set([
|
|
686
697
|
"description",
|
|
687
698
|
"fontFamily",
|
|
@@ -712,6 +723,7 @@ var stylesUpdate = /* @__PURE__ */ new Set([
|
|
|
712
723
|
"letterSpacing",
|
|
713
724
|
"lineHeight",
|
|
714
725
|
"name",
|
|
726
|
+
"paints",
|
|
715
727
|
"paragraphIndent",
|
|
716
728
|
"paragraphSpacing",
|
|
717
729
|
"textCase",
|
|
@@ -933,6 +945,7 @@ var mixinVectorStyleParams = /* @__PURE__ */ new Set(["fillStyleName", "fillVari
|
|
|
933
945
|
nodeClone,
|
|
934
946
|
nodeDelete,
|
|
935
947
|
nodeReparent,
|
|
948
|
+
nodeScale,
|
|
936
949
|
nodeUpdate,
|
|
937
950
|
prototypingAdd,
|
|
938
951
|
stylesCreateEffect,
|
|
@@ -8,6 +8,8 @@ declare const annotationsAdd: ReadonlySet<string>;
|
|
|
8
8
|
declare const annotationsRemove: ReadonlySet<string>;
|
|
9
9
|
/** node.clone item params */
|
|
10
10
|
declare const nodeClone: ReadonlySet<string>;
|
|
11
|
+
/** node.scale item params */
|
|
12
|
+
declare const nodeScale: ReadonlySet<string>;
|
|
11
13
|
/** node.reparent item params */
|
|
12
14
|
declare const nodeReparent: ReadonlySet<string>;
|
|
13
15
|
/** components create type="component" */
|
|
@@ -113,4 +115,4 @@ declare const mixinTextParams: ReadonlySet<string>;
|
|
|
113
115
|
/** vector_style_params */
|
|
114
116
|
declare const mixinVectorStyleParams: ReadonlySet<string>;
|
|
115
117
|
|
|
116
|
-
export { annotationsAdd, annotationsGet, annotationsRemove, annotationsSet, componentsCreateComponent, componentsCreateFromNode, componentsCreateVariantSet, componentsUpdate, framesCreateAutoLayout, framesCreateBooleanOperation, framesCreateEllipse, framesCreateFrame, framesCreateGroup, framesCreateLine, framesCreateRectangle, framesCreateSection, framesCreateSlot, framesCreateSvg, instancesCreate, instancesDetach, instancesResetOverrides, instancesSwap, instancesUpdate, lintFix, mixinAutoLayoutParams, mixinBlendParams, mixinCornerParams, mixinFillParams, mixinFrameParams, mixinGeometryParams, mixinSceneParams, mixinSizingParams, mixinStrokeParams, mixinTextParams, mixinVectorStyleParams, nodeClone, nodeDelete, nodeReparent, nodeUpdate, prototypingAdd, stylesCreateEffect, stylesCreateGrid, stylesCreatePaint, stylesCreateText, stylesDelete, stylesUpdate, textCreate, textSetContent, variableCollectionsAddMode, variableCollectionsCreate, variableCollectionsDelete, variableCollectionsRemoveMode, variableCollectionsRenameMode, variableCollectionsUpdate, variablesCreate, variablesDelete, variablesUpdate };
|
|
118
|
+
export { annotationsAdd, annotationsGet, annotationsRemove, annotationsSet, componentsCreateComponent, componentsCreateFromNode, componentsCreateVariantSet, componentsUpdate, framesCreateAutoLayout, framesCreateBooleanOperation, framesCreateEllipse, framesCreateFrame, framesCreateGroup, framesCreateLine, framesCreateRectangle, framesCreateSection, framesCreateSlot, framesCreateSvg, instancesCreate, instancesDetach, instancesResetOverrides, instancesSwap, instancesUpdate, lintFix, mixinAutoLayoutParams, mixinBlendParams, mixinCornerParams, mixinFillParams, mixinFrameParams, mixinGeometryParams, mixinSceneParams, mixinSizingParams, mixinStrokeParams, mixinTextParams, mixinVectorStyleParams, nodeClone, nodeDelete, nodeReparent, nodeScale, nodeUpdate, prototypingAdd, stylesCreateEffect, stylesCreateGrid, stylesCreatePaint, stylesCreateText, stylesDelete, stylesUpdate, textCreate, textSetContent, variableCollectionsAddMode, variableCollectionsCreate, variableCollectionsDelete, variableCollectionsRemoveMode, variableCollectionsRenameMode, variableCollectionsUpdate, variablesCreate, variablesDelete, variablesUpdate };
|
|
@@ -8,6 +8,8 @@ declare const annotationsAdd: ReadonlySet<string>;
|
|
|
8
8
|
declare const annotationsRemove: ReadonlySet<string>;
|
|
9
9
|
/** node.clone item params */
|
|
10
10
|
declare const nodeClone: ReadonlySet<string>;
|
|
11
|
+
/** node.scale item params */
|
|
12
|
+
declare const nodeScale: ReadonlySet<string>;
|
|
11
13
|
/** node.reparent item params */
|
|
12
14
|
declare const nodeReparent: ReadonlySet<string>;
|
|
13
15
|
/** components create type="component" */
|
|
@@ -113,4 +115,4 @@ declare const mixinTextParams: ReadonlySet<string>;
|
|
|
113
115
|
/** vector_style_params */
|
|
114
116
|
declare const mixinVectorStyleParams: ReadonlySet<string>;
|
|
115
117
|
|
|
116
|
-
export { annotationsAdd, annotationsGet, annotationsRemove, annotationsSet, componentsCreateComponent, componentsCreateFromNode, componentsCreateVariantSet, componentsUpdate, framesCreateAutoLayout, framesCreateBooleanOperation, framesCreateEllipse, framesCreateFrame, framesCreateGroup, framesCreateLine, framesCreateRectangle, framesCreateSection, framesCreateSlot, framesCreateSvg, instancesCreate, instancesDetach, instancesResetOverrides, instancesSwap, instancesUpdate, lintFix, mixinAutoLayoutParams, mixinBlendParams, mixinCornerParams, mixinFillParams, mixinFrameParams, mixinGeometryParams, mixinSceneParams, mixinSizingParams, mixinStrokeParams, mixinTextParams, mixinVectorStyleParams, nodeClone, nodeDelete, nodeReparent, nodeUpdate, prototypingAdd, stylesCreateEffect, stylesCreateGrid, stylesCreatePaint, stylesCreateText, stylesDelete, stylesUpdate, textCreate, textSetContent, variableCollectionsAddMode, variableCollectionsCreate, variableCollectionsDelete, variableCollectionsRemoveMode, variableCollectionsRenameMode, variableCollectionsUpdate, variablesCreate, variablesDelete, variablesUpdate };
|
|
118
|
+
export { annotationsAdd, annotationsGet, annotationsRemove, annotationsSet, componentsCreateComponent, componentsCreateFromNode, componentsCreateVariantSet, componentsUpdate, framesCreateAutoLayout, framesCreateBooleanOperation, framesCreateEllipse, framesCreateFrame, framesCreateGroup, framesCreateLine, framesCreateRectangle, framesCreateSection, framesCreateSlot, framesCreateSvg, instancesCreate, instancesDetach, instancesResetOverrides, instancesSwap, instancesUpdate, lintFix, mixinAutoLayoutParams, mixinBlendParams, mixinCornerParams, mixinFillParams, mixinFrameParams, mixinGeometryParams, mixinSceneParams, mixinSizingParams, mixinStrokeParams, mixinTextParams, mixinVectorStyleParams, nodeClone, nodeDelete, nodeReparent, nodeScale, nodeUpdate, prototypingAdd, stylesCreateEffect, stylesCreateGrid, stylesCreatePaint, stylesCreateText, stylesDelete, stylesUpdate, textCreate, textSetContent, variableCollectionsAddMode, variableCollectionsCreate, variableCollectionsDelete, variableCollectionsRemoveMode, variableCollectionsRenameMode, variableCollectionsUpdate, variablesCreate, variablesDelete, variablesUpdate };
|
|
@@ -4,6 +4,7 @@ var annotationsSet = /* @__PURE__ */ new Set(["annotations", "id"]);
|
|
|
4
4
|
var annotationsAdd = /* @__PURE__ */ new Set(["categoryId", "id", "label", "labelMarkdown", "properties"]);
|
|
5
5
|
var annotationsRemove = /* @__PURE__ */ new Set(["id", "index"]);
|
|
6
6
|
var nodeClone = /* @__PURE__ */ new Set(["id", "name", "parentId", "x", "y"]);
|
|
7
|
+
var nodeScale = /* @__PURE__ */ new Set(["factor", "id"]);
|
|
7
8
|
var nodeReparent = /* @__PURE__ */ new Set(["id", "index", "parentId"]);
|
|
8
9
|
var componentsCreateComponent = /* @__PURE__ */ new Set([
|
|
9
10
|
"annotations",
|
|
@@ -140,6 +141,7 @@ var nodeUpdate = /* @__PURE__ */ new Set([
|
|
|
140
141
|
"bottomLeftRadius",
|
|
141
142
|
"bottomRightRadius",
|
|
142
143
|
"clearFill",
|
|
144
|
+
"clipsContent",
|
|
143
145
|
"constraints",
|
|
144
146
|
"cornerRadius",
|
|
145
147
|
"counterAxisAlignItems",
|
|
@@ -185,7 +187,6 @@ var nodeUpdate = /* @__PURE__ */ new Set([
|
|
|
185
187
|
"paddingRight",
|
|
186
188
|
"paddingTop",
|
|
187
189
|
"primaryAxisAlignItems",
|
|
188
|
-
"properties",
|
|
189
190
|
"rotation",
|
|
190
191
|
"strokeAlign",
|
|
191
192
|
"strokeBottomWeight",
|
|
@@ -409,7 +410,16 @@ var framesCreateLine = /* @__PURE__ */ new Set([
|
|
|
409
410
|
"y"
|
|
410
411
|
]);
|
|
411
412
|
var framesCreateGroup = /* @__PURE__ */ new Set(["name", "nodeIds", "parentId"]);
|
|
412
|
-
var framesCreateBooleanOperation = /* @__PURE__ */ new Set([
|
|
413
|
+
var framesCreateBooleanOperation = /* @__PURE__ */ new Set([
|
|
414
|
+
"fillStyleName",
|
|
415
|
+
"fillVariableName",
|
|
416
|
+
"name",
|
|
417
|
+
"nodeIds",
|
|
418
|
+
"operation",
|
|
419
|
+
"parentId",
|
|
420
|
+
"strokeStyleName",
|
|
421
|
+
"strokeVariableName"
|
|
422
|
+
]);
|
|
413
423
|
var framesCreateSvg = /* @__PURE__ */ new Set([
|
|
414
424
|
"fillStyleName",
|
|
415
425
|
"fillVariableName",
|
|
@@ -602,7 +612,7 @@ var prototypingAdd = /* @__PURE__ */ new Set([
|
|
|
602
612
|
"triggerDelay",
|
|
603
613
|
"url"
|
|
604
614
|
]);
|
|
605
|
-
var stylesCreatePaint = /* @__PURE__ */ new Set(["color", "colorVariableName", "description", "name"]);
|
|
615
|
+
var stylesCreatePaint = /* @__PURE__ */ new Set(["color", "colorVariableName", "description", "name", "paints"]);
|
|
606
616
|
var stylesCreateText = /* @__PURE__ */ new Set([
|
|
607
617
|
"description",
|
|
608
618
|
"fontFamily",
|
|
@@ -633,6 +643,7 @@ var stylesUpdate = /* @__PURE__ */ new Set([
|
|
|
633
643
|
"letterSpacing",
|
|
634
644
|
"lineHeight",
|
|
635
645
|
"name",
|
|
646
|
+
"paints",
|
|
636
647
|
"paragraphIndent",
|
|
637
648
|
"paragraphSpacing",
|
|
638
649
|
"textCase",
|
|
@@ -853,6 +864,7 @@ export {
|
|
|
853
864
|
nodeClone,
|
|
854
865
|
nodeDelete,
|
|
855
866
|
nodeReparent,
|
|
867
|
+
nodeScale,
|
|
856
868
|
nodeUpdate,
|
|
857
869
|
prototypingAdd,
|
|
858
870
|
stylesCreateEffect,
|