@squidcloud/client
    Preparing search index...

    Interface ApiInjectionField

    Defines a value to be injected into the API call, such as a secret or query parameter, along with its location and type.

    interface ApiInjectionField {
        location: ApiInjectionParameterLocation;
        type: "secret" | "regular";
        value: string;
    }
    Index

    Properties

    Properties

    The location in the request where the value should be injected (e.g., header, query).

    type: "secret" | "regular"

    The type of the injected value, either 'secret' or 'regular'.

    value: string

    The value to be injected into the request.