@firfi/huly-mcp 0.22.1 → 0.22.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/index.cjs +6 -6
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -166187,7 +166187,7 @@ var ListCardsParamsBase = Schema_exports.Struct({
|
|
|
166187
166187
|
description: "Search cards by title substring (case-insensitive). Mutually exclusive with titleRegex."
|
|
166188
166188
|
})),
|
|
166189
166189
|
titleRegex: Schema_exports.optional(Schema_exports.String.annotations({
|
|
166190
|
-
description: "Filter cards by title using
|
|
166190
|
+
description: "Filter cards by title using Huly $regex. On the supported Postgres backend this is SQL SIMILAR TO, not JavaScript RegExp; matching is case-sensitive and the pattern must match the whole title: use '%' for any string (e.g., '%TODO%' contains, 'TODO%' prefix). Mutually exclusive with titleSearch; use titleSearch for simple substring matching."
|
|
166191
166191
|
})),
|
|
166192
166192
|
contentSearch: Schema_exports.optional(Schema_exports.String.annotations({
|
|
166193
166193
|
description: "Search cards by content (fulltext search)"
|
|
@@ -166551,7 +166551,7 @@ var ListIssuesParamsBase = Schema_exports.Struct({
|
|
|
166551
166551
|
description: "Search issues by title substring (case-insensitive). Mutually exclusive with titleRegex."
|
|
166552
166552
|
})),
|
|
166553
166553
|
titleRegex: Schema_exports.optional(Schema_exports.String.annotations({
|
|
166554
|
-
description: "Filter issues by title using
|
|
166554
|
+
description: "Filter issues by title using Huly $regex. On the supported Postgres backend this is SQL SIMILAR TO, not JavaScript RegExp; matching is case-sensitive and the pattern must match the whole title: use '%' for any string (e.g., '%BUG%' contains, 'BUG%' prefix). Mutually exclusive with titleSearch; use titleSearch for simple substring matching."
|
|
166555
166555
|
})),
|
|
166556
166556
|
descriptionSearch: Schema_exports.optional(Schema_exports.String.annotations({
|
|
166557
166557
|
description: "Search issues by description content (fulltext search)"
|
|
@@ -167632,7 +167632,7 @@ var ListDocumentsParamsBase = Schema_exports.Struct({
|
|
|
167632
167632
|
description: "Search documents by title substring (case-insensitive). Mutually exclusive with titleRegex."
|
|
167633
167633
|
})),
|
|
167634
167634
|
titleRegex: Schema_exports.optional(Schema_exports.String.annotations({
|
|
167635
|
-
description: "Filter documents by title using
|
|
167635
|
+
description: "Filter documents by title using Huly $regex. On the supported Postgres backend this is SQL SIMILAR TO, not JavaScript RegExp; matching is case-sensitive and the pattern must match the whole title: use '%' for any string (e.g., '%RFC%' contains, 'RFC%' prefix). Mutually exclusive with titleSearch; use titleSearch for simple substring matching."
|
|
167636
167636
|
})),
|
|
167637
167637
|
contentSearch: Schema_exports.optional(Schema_exports.String.annotations({
|
|
167638
167638
|
description: "Search documents by content (fulltext search)"
|
|
@@ -168332,7 +168332,7 @@ var ListPersonsParamsBase = Schema_exports.Struct({
|
|
|
168332
168332
|
description: "Search persons by name substring (case-insensitive). Mutually exclusive with nameRegex."
|
|
168333
168333
|
})),
|
|
168334
168334
|
nameRegex: Schema_exports.optional(Schema_exports.String.annotations({
|
|
168335
|
-
description: "Filter persons by name using
|
|
168335
|
+
description: "Filter persons by name using Huly $regex. On the supported Postgres backend this is SQL SIMILAR TO, not JavaScript RegExp; matching is case-sensitive and the pattern must match the whole name: use '%' for any string (e.g., '%Smith%' contains, 'Smith%' prefix). Mutually exclusive with nameSearch; use nameSearch for simple substring matching."
|
|
168336
168336
|
})),
|
|
168337
168337
|
emailSearch: Schema_exports.optional(Schema_exports.String.annotations({
|
|
168338
168338
|
description: "Search persons by email substring (case-insensitive)"
|
|
@@ -168462,7 +168462,7 @@ var ListChannelsParamsBase = Schema_exports.Struct({
|
|
|
168462
168462
|
description: "Search channels by name substring (case-insensitive). Mutually exclusive with nameRegex."
|
|
168463
168463
|
})),
|
|
168464
168464
|
nameRegex: Schema_exports.optional(Schema_exports.String.annotations({
|
|
168465
|
-
description: "Filter channels by name using
|
|
168465
|
+
description: "Filter channels by name using Huly $regex. On the supported Postgres backend this is SQL SIMILAR TO, not JavaScript RegExp; matching is case-sensitive and the pattern must match the whole name: use '%' for any string (e.g., '%dev%' contains, 'dev%' prefix). Mutually exclusive with nameSearch; use nameSearch for simple substring matching."
|
|
168466
168466
|
})),
|
|
168467
168467
|
topicSearch: Schema_exports.optional(Schema_exports.String.annotations({
|
|
168468
168468
|
description: "Search channels by topic substring (case-insensitive)"
|
|
@@ -170721,7 +170721,7 @@ var parseDeleteTestResultParams = Schema_exports.decodeUnknown(DeleteTestResultP
|
|
|
170721
170721
|
var parseRunTestPlanParams = Schema_exports.decodeUnknown(RunTestPlanParamsSchema);
|
|
170722
170722
|
|
|
170723
170723
|
// src/version.ts
|
|
170724
|
-
var VERSION = true ? "0.22.
|
|
170724
|
+
var VERSION = true ? "0.22.2" : "0.0.0-dev";
|
|
170725
170725
|
|
|
170726
170726
|
// src/mcp/tool-output-schema.ts
|
|
170727
170727
|
var defaultToolOutputSchema = {
|