Type Alias ActionUpdateRequest

type ActionUpdateRequest = {
    connections: {
        id: string;
        name?: string;
        ownerId?: string;
        spaceId?: string;
        spaceType?: "personal" | "shared" | "managed" | "data";
    }[];
}
Index
connections: {
    id: string;
    name?: string;
    ownerId?: string;
    spaceId?: string;
    spaceType?: "personal" | "shared" | "managed" | "data";
}[]

Type Declaration

  • id: string

    Connection ID

  • Optionalname?: string

    Connection name

  • OptionalownerId?: string

    The user ID to transfer ownership to. If omitted, the connection's owner is not changed.

  • OptionalspaceId?: string

    The space ID to move the connection to. If omitted, the connection's space is not changed. If set to an empty string, the connection is moved to the personal space of the user identified by ownerId. If ownerId is also omitted, the connection is moved to the original owner's personal space.

  • OptionalspaceType?: "personal" | "shared" | "managed" | "data"

    The type of the target space. Required when spaceId is specified.