Update API surface to use GLOB match type instead of PREFIX

Replace PREFIX with GLOB in GraphQL enum, MCP specification, CLI
interactive prompts, and n8n node options.

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-05-06 20:41:31 +04:00
parent d006d4e462
commit 0358aafb62
4 changed files with 10 additions and 10 deletions

View File

@@ -207,9 +207,9 @@ enum TrackerPatternMatchType
@goEnum(
value: "go.probo.inc/probo/pkg/coredata.TrackerPatternMatchTypeExact"
)
PREFIX
GLOB
@goEnum(
value: "go.probo.inc/probo/pkg/coredata.TrackerPatternMatchTypePrefix"
value: "go.probo.inc/probo/pkg/coredata.TrackerPatternMatchTypeGlob"
)
}