Skip to content

Commit d775d7b

Browse files
authored
add deprecation tag on the home module (#107)
* add deprecation tag on the home module
1 parent 0becdd1 commit d775d7b

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [4.2.2] - 2025-03-24
8+
## [4.2.2] - 2025-04-14
99
### Added
10-
- Transition from gulp/jshint to eslint/prettier
10+
- Transition from gulp/jshint to eslint/prettier
11+
- Deprecate home module
1112

1213
## [4.2.1] - 2025-2-21
1314
### Added

index.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,15 @@ export const createClient: CreateClient = function (clientOptions) {
9494
favorites: require('./lib/favorites/').create(options),
9595
folders: require('./lib/folders/').create(options),
9696
groups: require('./lib/groups/').create(options),
97+
/**
98+
* @deprecated
99+
* The home module is deprecated. The endpoints powering this module
100+
* are being shut off as part of the sheets folder deprecation.
101+
* The endpoints will be available until June.
102+
*
103+
* See this changelog entry for more information
104+
* https://developers.smartsheet.com/api/smartsheet/changelog#2025-03-25
105+
*/
97106
home: require('./lib/home/').create(options),
98107
images: require('./lib/images/').create(options),
99108
reports: require('./lib/reports/').create(options),

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "smartsheet",
3-
"version": "4.2.1",
3+
"version": "4.2.2",
44
"description": "Smartsheet JavaScript client SDK",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",

0 commit comments

Comments
 (0)