jmap-kit
    Preparing search index...

    Type Alias BlobUploadResponseInvocationArgs

    The response to a Blob/upload call

    type BlobUploadResponseInvocationArgs = {
        accountId: Id;
        created?: Record<Id, DataCreatedObject> | null;
        newState: string;
        notCreated?: Record<Id, SetError<"create">> | null;
        oldState?: string | null;
    }
    Index

    Properties

    accountId: Id

    The id of the account used for the call.

    created?: Record<Id, DataCreatedObject> | null

    A map of the creation id to an object containing any properties of the created Foo object that were not sent by the client. This includes all server-set properties (such as the id in most object types) and any properties that were omitted by the client and thus set to a default by the server.

    This argument is null if no Foo objects were successfully created.

    newState: string

    The state string that will now be returned by Foo/get.

    notCreated?: Record<Id, SetError<"create">> | null

    A map of the creation id to a SetError object for each record that failed to be created, or null if all successful.

    oldState?: string | null

    The state string that would have been returned by Foo/get before making the requested changes, or null if the server doesn’t know what the previous state string was.