jmap-kit
    Preparing search index...

    Type Alias BaseChangesResponseInvocationArgs

    type BaseChangesResponseInvocationArgs = {
        accountId: Id;
        created: Id[];
        destroyed: Id[];
        hasMoreChanges: boolean;
        newState: string;
        oldState: string;
        updated: Id[];
    }
    Index

    Properties

    accountId: Id

    The id of the account used for the call.

    created: Id[]

    An array of ids for records that have been created since the old state.

    destroyed: Id[]

    An array of ids for records that have been destroyed since the old state.

    hasMoreChanges: boolean

    If true, the client may call Foo/changes again with the newState returned to get further updates. If false, newState is the current server state.

    newState: string

    This is the state the client will be in after applying the set of changes to the old state.

    oldState: string

    This is the sinceState argument echoed back; it’s the state from which the server is returning changes.

    updated: Id[]

    An array of ids for records that have been updated since the old state.