Skip to content

Commit

Permalink
feat(hub-common): add IExportPostsParams interface (#1744)
Browse files Browse the repository at this point in the history
  • Loading branch information
rweber-esri authored Nov 20, 2024
1 parent 28a3e37 commit 7fd02ec
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 30 deletions.
48 changes: 18 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions packages/common/src/discussions/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,17 @@ export interface ISearchPostsParams extends IDiscussionsRequestOptions {
data?: ISearchPosts;
}

/**
* request options for exporting posts as CSV
*
* @export
* @interface IExportPostsParams
* @extends {IDiscussionsRequestOptions}
*/
export interface IExportPostsParams extends IDiscussionsRequestOptions {
data?: ISearchPosts;
}

/**
* request params for getting post
*
Expand Down

0 comments on commit 7fd02ec

Please sign in to comment.