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:
@@ -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"
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -9457,8 +9457,8 @@ components:
|
||||
description: Tracker name pattern
|
||||
match_type:
|
||||
type: string
|
||||
enum: [EXACT, PREFIX]
|
||||
description: Pattern match type
|
||||
enum: [EXACT, GLOB]
|
||||
description: "Pattern match type. GLOB uses * as single wildcard (e.g. ph_phc_*_posthog)"
|
||||
display_name:
|
||||
type: string
|
||||
description: Human-friendly display name
|
||||
@@ -9989,7 +9989,7 @@ components:
|
||||
type: string
|
||||
match_type:
|
||||
type: string
|
||||
enum: [EXACT, PREFIX]
|
||||
enum: [EXACT, GLOB]
|
||||
display_name:
|
||||
type: string
|
||||
max_age_seconds:
|
||||
|
||||
Reference in New Issue
Block a user