tuix-mcp-host-client 0.0.103 → 0.0.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/ClientApi.ts +1 -1
- package/docs/ClientApi.md +2 -2
- package/package.json +1 -1
package/apis/ClientApi.ts
CHANGED
package/docs/ClientApi.md
CHANGED
|
@@ -1001,7 +1001,7 @@ async function example() {
|
|
|
1001
1001
|
search: search_example,
|
|
1002
1002
|
// 'name' | 'createdAt' | 'updatedAt' | Field to sort by (optional)
|
|
1003
1003
|
sortBy: sortBy_example,
|
|
1004
|
-
// 'asc' | 'desc' | Sort direction (optional)
|
|
1004
|
+
// 'asc' | 'desc' | Sort direction; ignored unless sortBy is set (optional)
|
|
1005
1005
|
sortDirection: sortDirection_example,
|
|
1006
1006
|
} satisfies GetApplicationsRequest;
|
|
1007
1007
|
|
|
@@ -1026,7 +1026,7 @@ example().catch(console.error);
|
|
|
1026
1026
|
| **pageSize** | `number` | Limit number of items per page | [Optional] [Defaults to `10`] |
|
|
1027
1027
|
| **search** | `string` | Search applications by name, description or id (case-insensitive partial match) | [Optional] [Defaults to `undefined`] |
|
|
1028
1028
|
| **sortBy** | `name`, `createdAt`, `updatedAt` | Field to sort by | [Optional] [Defaults to `undefined`] [Enum: name, createdAt, updatedAt] |
|
|
1029
|
-
| **sortDirection** | `asc`, `desc` | Sort direction | [Optional] [Defaults to `'asc'`] [Enum: asc, desc] |
|
|
1029
|
+
| **sortDirection** | `asc`, `desc` | Sort direction; ignored unless sortBy is set | [Optional] [Defaults to `'asc'`] [Enum: asc, desc] |
|
|
1030
1030
|
|
|
1031
1031
|
### Return type
|
|
1032
1032
|
|