MultiStringInputs: Partial<Record<string, string | string[]>>

A record mapping string keys to a single string or an array of strings.

Use this for input sources where a field may appear multiple times, such as URL query parameters (e.g. ?tag=a&tag=b) or form fields with repeated names. Each field resolves to a single string when the key appears once, or an Array<string> when it appears multiple times.

IMPORT_PATH: "@daiso-tech/core/http-router/contracts"