interface FixedInputValuesContextResponse {
    addQuestion?: string;
    condition?: FixedInputConditionResponse;
    connectionInterfaceType?: string;
    default?: any;
    externalItems?: ExternalItemsResponse;
    help?: string;
    input?: Omit<FixedInputValuesContextResponse, "valuesByEnv">;
    inputEnv: boolean;
    inputs: Omit<FixedInputValuesContextResponse, "valuesByEnv">[];
    isGlobal?: boolean;
    items?: string[];
    label: string;
    name?: string;
    pattern?: string;
    required?: boolean;
    scope?: "default" | "env" | "hidden";
    type: InputType;
    valuesByEnv: FixedValueByEnvResponse[];
}

Hierarchy

  • Omit<
        InputValuesContextResponse,
        "inputs"
        | "input"
        | "type"
        | "default"
        | "condition"
        | "valuesByEnv",
    >
    • FixedInputValuesContextResponse

Properties

addQuestion?: string
connectionInterfaceType?: string
default?: any
externalItems?: ExternalItemsResponse
help?: string
input?: Omit<FixedInputValuesContextResponse, "valuesByEnv">
inputEnv: boolean
inputs: Omit<FixedInputValuesContextResponse, "valuesByEnv">[]
isGlobal?: boolean
items?: string[]
label: string
name?: string
pattern?: string
required?: boolean
scope?: "default" | "env" | "hidden"
type: InputType