Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions api/openapispec/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -1029,6 +1029,12 @@ const docTemplate = `{
"name": "name",
"in": "query"
},
{
"type": "string",
"description": "Fuzzy match project name to filter project list by.",
"name": "fuzzyName",
"in": "query"
},
{
"type": "integer",
"description": "The current page to fetch. Default to 1",
Expand Down
6 changes: 6 additions & 0 deletions api/openapispec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1018,6 +1018,12 @@
"name": "name",
"in": "query"
},
{
"type": "string",
"description": "Fuzzy match project name to filter project list by.",
"name": "fuzzyName",
"in": "query"
},
{
"type": "integer",
"description": "The current page to fetch. Default to 1",
Expand Down
4 changes: 4 additions & 0 deletions api/openapispec/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2074,6 +2074,10 @@ paths:
in: query
name: name
type: string
- description: Fuzzy match project name to filter project list by.
in: query
name: fuzzyName
type: string
- description: The current page to fetch. Default to 1
in: query
name: page
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kusionstack/kusion-api-client-sdk",
"version": "1.1.2",
"version": "1.1.3",
"description": "Kusion API Client SDK",
"main": "dist/src/client/index.js",
"types": "dist/src/client/index.d.ts",
Expand Down
4 changes: 4 additions & 0 deletions src/client/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1601,6 +1601,10 @@ export type UpdateOrganizationError = (unknown);

export type ListProjectData = {
query?: {
/**
* Fuzzy match project name to filter project list by.
*/
fuzzyName?: string;
/**
* Project name to filter project list by. This should only return one result if set.
*/
Expand Down
Loading