Showing
2 changed files
with
7 additions
and
2 deletions
1 | -import { BaseQueryParams } from '../../base'; | |
2 | 1 | import { |
3 | 2 | Configuration, |
4 | 3 | ProvisionConfiguration, |
... | ... | @@ -6,10 +5,14 @@ import { |
6 | 5 | } from '../../device/model/deviceModel'; |
7 | 6 | import { ModelOfMatterParams } from '../../device/model/modelOfMatterModel'; |
8 | 7 | |
9 | -export type QueryEdgeInstancePageParams = BaseQueryParams & { | |
8 | +export type QueryEdgeInstancePageParams = { | |
10 | 9 | name?: string; |
11 | 10 | tenantId?: string; |
12 | 11 | textSearch?: string; |
12 | + page: number; | |
13 | + pageSize: number; | |
14 | + sortOrder?: string; | |
15 | + sortProperty?: string; | |
13 | 16 | }; |
14 | 17 | |
15 | 18 | export interface EdgeInstanceItemType { | ... | ... |