From dcf00d7b2091b69533d21db6519f80ac97696882 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Fri, 14 Nov 2025 11:48:40 +0400 Subject: [PATCH] Allow string[] for routing parameters --- specification/_types/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/_types/common.ts b/specification/_types/common.ts index ea9b806929..b5e02a3031 100644 --- a/specification/_types/common.ts +++ b/specification/_types/common.ts @@ -65,7 +65,7 @@ export type IndexPatterns = IndexPattern[] export type ProjectRouting = string -export type Routing = string +export type Routing = string | string[] export type LongId = string export type ClusterAlias = string