Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [x.x.x] - Unreleased

### Added

- Add `Cells` class to `Smartsheet` class for IDE autocomplete support. Now auto-complete like `smart.Cells.get_cell_history()` and `smart.Cells.add_image_to_cell()` will work.

## [3.7.1] - 2025-12-12

### Fixed
Expand Down
2 changes: 2 additions & 0 deletions smartsheet/smartsheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
from .util import is_multipart, serialize

from .attachments import Attachments
from .cells import Cells
from .contacts import Contacts
from .discussions import Discussions
from .events import Events
Expand Down Expand Up @@ -119,6 +120,7 @@ class Smartsheet:
"""Use this to make requests to the Smartsheet API."""

Attachments: Attachments
Cells: Cells
Contacts: Contacts
Discussions: Discussions
Events: Events
Expand Down
Loading