@productbrain/mcp 0.0.1-beta.68 → 0.0.1-beta.69
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.
|
@@ -1698,7 +1698,10 @@ var fieldSchema = z6.object({
|
|
|
1698
1698
|
type: z6.string().describe("Field type: 'string', 'select', 'array', 'number', 'boolean'"),
|
|
1699
1699
|
required: z6.boolean().optional().describe("Whether this field is required"),
|
|
1700
1700
|
options: z6.array(z6.string()).optional().describe("Options for 'select' type fields"),
|
|
1701
|
-
searchable: z6.boolean().optional().describe("Whether this field is included in full-text search")
|
|
1701
|
+
searchable: z6.boolean().optional().describe("Whether this field is included in full-text search"),
|
|
1702
|
+
displayHint: z6.enum(["hero", "badge", "meta", "section", "hidden"]).optional().describe("V2 rendering hint: how the field should be displayed in Studio"),
|
|
1703
|
+
zone: z6.enum(["header", "body", "meta"]).optional().describe("V2 layout zone: where the field appears in the entry view"),
|
|
1704
|
+
colorMap: z6.record(z6.string()).optional().describe("V2 value-to-semantic-color mapping, e.g. { critical: 'danger', low: 'success' }")
|
|
1702
1705
|
});
|
|
1703
1706
|
var collectionsSchema = z6.object({
|
|
1704
1707
|
action: z6.enum(COLLECTIONS_ACTIONS).describe(
|
|
@@ -11752,4 +11755,4 @@ export {
|
|
|
11752
11755
|
SERVER_VERSION,
|
|
11753
11756
|
createProductBrainServer
|
|
11754
11757
|
};
|
|
11755
|
-
//# sourceMappingURL=chunk-
|
|
11758
|
+
//# sourceMappingURL=chunk-3HM3XRC7.js.map
|