Interface BitlyNodeParameters

Source
interface BitlyNodeParameters {
    additionalFields?: {
        domain?: string;
        group?: string;
        tags?: unknown[];
        title?: string;
    };
    authentication?: "oAuth2"
    | "accessToken";
    deeplink?: {
        deeplinkUi: {
            appId?: string;
            appUriPath?: string;
            installType?: string;
            installUrl?: string;
        }[];
    };
    id?: string;
    longUrl?: string;
    operation?: "create"
    | "get"
    | "update";
    resource?: "link";
    updateFields?: {
        archived?: boolean;
        group?: string;
        longUrl?: string;
        tags?: unknown[];
        title?: string;
    };
}

Properties§

Source§

readonly additionalFields?: {
    domain?: string;
    group?: string;
    tags?: unknown[];
    title?: string;
}

Default: {}

Source§

readonly authentication?: "oAuth2" | "accessToken"

Default: "accessToken"

Default: {} Type options: {"multipleValues":true}

Source§

readonly id?: string

Source§

readonly longUrl?: string

Source§

readonly operation?: "create" | "get" | "update"

Default: "create"

Source§

readonly resource?: "link"

Default: "link"

Source§

readonly updateFields?: {
    archived?: boolean;
    group?: string;
    longUrl?: string;
    tags?: unknown[];
    title?: string;
}

Default: {}