From eacfb7faa389b137df98704a15a033a953aafb31 Mon Sep 17 00:00:00 2001 From: scaleway-bot Date: Thu, 25 Apr 2024 14:31:51 +0000 Subject: [PATCH] feat: update generated APIs --- packages/clients/src/api/tem/v1alpha1/types.gen.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/clients/src/api/tem/v1alpha1/types.gen.ts b/packages/clients/src/api/tem/v1alpha1/types.gen.ts index f24c0a51a..3cae1c90d 100644 --- a/packages/clients/src/api/tem/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/tem/v1alpha1/types.gen.ts @@ -379,11 +379,15 @@ export type ListDomainsRequest = { region?: Region /** Requested page number. Value must be greater or equal to 1. */ page?: number - /** Page size. */ + /** Requested page size. Value must be between 1 and 1000. */ pageSize?: number + /** (Optional) ID of the Project in which to list the domains. */ projectId?: string + /** (Optional) List domains under specific statuses. */ status?: DomainStatus[] + /** (Optional) ID of the Organization in which to list the domains. */ organizationId?: string + /** (Optional) Names of the domains to list. */ name?: string }