You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
list_columns, add_column, update_column, delete_column, reorder_columns, and restore_column on client.datasets (sync and async) — manage a dataset's column schema over the API. List the columns (pass include_removed to include soft-removed ones), add custom columns, rename any column, soft-delete a column (built-in or custom; its data is preserved), reorder columns, and restore a removed column. Adds the DatasetColumn and DatasetColumnSource types and a columns field on Dataset.
Row writes accept custom column values: client.datasets.insert_rows takes a custom map keyed by column identifier, and DatasetRow now carries a custom field on reads (removed columns are omitted).