File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1414- Fixed the ` ConfigurablePropTimer ` type to define cron expressions and
1515 time intervals
1616- Marked the ` auth ` field in the SQL prop type as optional
17+ - Fixed the ` App ` type to include the ` description ` field returned by the API
18+ - Fixed the ` GetAppsResponse ` type to include the pagination stuff
1719
1820## [ 1.6.8] - 2025-06-07
1921
Original file line number Diff line number Diff line change @@ -90,6 +90,11 @@ export type App = AppInfo & {
9090 */
9191 name : string ;
9292
93+ /**
94+ * A short description of the app.
95+ */
96+ description : string ;
97+
9398 /**
9499 * The authentication type used by the app.
95100 */
@@ -509,7 +514,9 @@ export type AccountsRequestResponse = GetAccountsResponse;
509514/**
510515 * The response received when retrieving a list of apps.
511516 */
512- export type GetAppsResponse = { data : App [ ] ; } ;
517+ export type GetAppsResponse = PaginationResponse & {
518+ data : App [ ] ;
519+ } ;
513520
514521/**
515522 * @deprecated Use `GetAppsResponse` instead.
You can’t perform that action at this time.
0 commit comments