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 CHANGED
@@ -243,7 +243,7 @@ export interface GetApplicationsRequest {
243
243
  */
244
244
  sortBy?: GetApplicationsSortByEnum;
245
245
  /**
246
- * Sort direction
246
+ * Sort direction; ignored unless sortBy is set
247
247
  */
248
248
  sortDirection?: GetApplicationsSortDirectionEnum;
249
249
  }
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuix-mcp-host-client",
3
- "version": "0.0.103",
3
+ "version": "0.0.104",
4
4
  "description": "This package facilitates the client request to tuix tuix-mcp-host",
5
5
  "main": "index.js",
6
6
  "private": false,