@makehq/sdk
    Preparing search index...

    Type Alias PrivateSpace

    Represents a private space in Make. A private space is a per-user personal workspace inside an organization where scenarios and related entities (including connections) stay visible only to the owner. Private spaces cannot be created or deleted through the API — they are provisioned automatically based on the organization's private-spaces settings.

    type PrivateSpace = {
        centicredits?: string;
        consumedCenticredits?: string | null;
        consumedOperations?: number | null;
        consumedTransfer?: string | null;
        deleted?: boolean;
        externalId?: string | null;
        globalAgentsEnabled?: boolean;
        id: number;
        isPaused?: boolean | null;
        name: string;
        operations?: string;
        operationsLimit?: number | null;
        organizationId: number;
        privateSpaceOwnerEmail?: string;
        privateSpaceOwnerId?: number;
        privateSpaceOwnerName?: string;
        transfer?: string;
        transferLimit?: string | number | null;
        type?: "personal";
    }
    Index

    Properties

    centicredits?: string

    Total centicredits since the last reset; only selectable via cols on get()

    consumedCenticredits?: string | null

    Number of centicredits consumed in the current period, serialized as a string

    consumedOperations?: number | null

    Number of operations consumed in the current period

    consumedTransfer?: string | null

    Amount of data transfer consumed in the current period, in bytes

    deleted?: boolean

    Whether the space is deleted; returned by update()

    externalId?: string | null

    External identifier of the space; returned by update()

    globalAgentsEnabled?: boolean

    Whether Make global AI agents are enabled for the space

    id: number

    Unique identifier of the private space

    isPaused?: boolean | null

    Whether the space is paused due to exceeded limits

    name: string

    Name of the private space

    operations?: string

    Total operations since the last reset; only selectable via cols on get()

    operationsLimit?: number | null

    Maximum operations limit; null means unlimited

    organizationId: number

    ID of the organization this private space belongs to

    privateSpaceOwnerEmail?: string

    Email of the space owner

    privateSpaceOwnerId?: number

    User ID of the space owner

    privateSpaceOwnerName?: string

    Name of the space owner

    transfer?: string

    Total data transfer since the last reset, in bytes; only selectable via cols on get()

    transferLimit?: string | number | null

    Maximum data transfer limit in bytes; derived from the operations limit. Serialized as a string by list()/get() but as a number by update().

    type?: "personal"

    Type of the underlying team; always personal for private spaces