iceberg-js
    Preparing search index...

    Interface CommitTableRequest

    Spec-aligned table commit request shape: requirements + updates arrays. Used by updateTable / commitTable.

    Both requirements and updates are required by the spec — pass an empty array if there are no preconditions to assert.

    interface CommitTableRequest {
        identifier?: TableIdentifier;
        requirements: TableRequirement[];
        updates: TableUpdate[];
    }
    Index

    Properties

    identifier?: TableIdentifier
    requirements: TableRequirement[]
    updates: TableUpdate[]