diff --git a/packages/clients/src/api/edge_services/v1alpha1/index.gen.ts b/packages/clients/src/api/edge_services/v1alpha1/index.gen.ts index 3a5f14d98..13bc235ce 100644 --- a/packages/clients/src/api/edge_services/v1alpha1/index.gen.ts +++ b/packages/clients/src/api/edge_services/v1alpha1/index.gen.ts @@ -48,6 +48,9 @@ export type { ListPipelinesRequest, ListPipelinesRequestOrderBy, ListPipelinesResponse, + ListPipelinesWithStagesRequest, + ListPipelinesWithStagesRequestOrderBy, + ListPipelinesWithStagesResponse, ListPlansResponse, ListPurgeRequestsRequest, ListPurgeRequestsRequestOrderBy, @@ -61,6 +64,7 @@ export type { PipelineErrorSeverity, PipelineErrorStage, PipelineErrorType, + PipelineStages, PipelineStatus, Plan, PlanDetails, diff --git a/packages/clients/src/api/iam/v1alpha1/types.gen.ts b/packages/clients/src/api/iam/v1alpha1/types.gen.ts index 8d648097f..33f04deb6 100644 --- a/packages/clients/src/api/iam/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/iam/v1alpha1/types.gen.ts @@ -89,6 +89,25 @@ export type UserStatus = 'unknown_status' | 'invitation_pending' | 'activated' export type UserType = 'unknown_type' | 'guest' | 'owner' | 'member' +export interface JWT { + /** JWT ID. */ + jti: string + /** ID of the user who issued the JWT. */ + issuerId: string + /** ID of the user targeted by the JWT. */ + audienceId: string + /** Creation date of the JWT. */ + createdAt?: Date + /** Last update date of the JWT. */ + updatedAt?: Date + /** Expiration date of the JWT. */ + expiresAt?: Date + /** IP address used during the creation of the JWT. */ + ip: string + /** User-agent used during the creation of the JWT. */ + userAgent: string +} + export interface RuleSpecs { /** Names of permission sets bound to the rule. */ permissionSetNames?: string[] @@ -121,25 +140,6 @@ export interface CreateUserRequestMember { password: string } -export interface JWT { - /** JWT ID. */ - jti: string - /** ID of the user who issued the JWT. */ - issuerId: string - /** ID of the user targeted by the JWT. */ - audienceId: string - /** Creation date of the JWT. */ - createdAt?: Date - /** Last update date of the JWT. */ - updatedAt?: Date - /** Expiration date of the JWT. */ - expiresAt?: Date - /** IP address used during the creation of the JWT. */ - ip: string - /** User-agent used during the creation of the JWT. */ - userAgent: string -} - export interface APIKey { /** Access key of the API key. */ accessKey: string diff --git a/packages/clients/src/api/index.gen.ts b/packages/clients/src/api/index.gen.ts index c44bfc83f..665edb26e 100644 --- a/packages/clients/src/api/index.gen.ts +++ b/packages/clients/src/api/index.gen.ts @@ -29,6 +29,7 @@ import * as Lb from './lb/index.gen' import * as LlmInference from './llm_inference/index.gen' import * as Marketplace from './marketplace/index.gen' import * as Mnq from './mnq/index.gen' +import * as Mongodb from './mongodb/index.gen' import * as Qaas from './qaas/index.gen' import * as Rdb from './rdb/index.gen' import * as Redis from './redis/index.gen' @@ -69,6 +70,7 @@ export { LlmInference, Marketplace, Mnq, + Mongodb, Qaas, Rdb, Redis, diff --git a/packages/clients/src/api/mongodb/index.gen.ts b/packages/clients/src/api/mongodb/index.gen.ts new file mode 100644 index 000000000..6dec29b44 --- /dev/null +++ b/packages/clients/src/api/mongodb/index.gen.ts @@ -0,0 +1,6 @@ +/** + * This file is automatically generated from /scripts/generate.js PLEASE DO NOT + * EDIT HERE + */ + +export * as v1alpha1 from './v1alpha1/index.gen' diff --git a/packages/clients/src/api/mongodb/v1alpha1/index.gen.ts b/packages/clients/src/api/mongodb/v1alpha1/index.gen.ts new file mode 100644 index 000000000..097cb493b --- /dev/null +++ b/packages/clients/src/api/mongodb/v1alpha1/index.gen.ts @@ -0,0 +1,54 @@ +// This file was automatically generated. DO NOT EDIT. +// If you have any remark or suggestion do not hesitate to open an issue. +export { API } from './api.gen' +export * from './content.gen' +export type { + CreateInstanceRequest, + CreateInstanceRequestVolumeDetails, + CreateSnapshotRequest, + DeleteInstanceRequest, + DeleteSnapshotRequest, + Endpoint, + EndpointPrivateNetworkDetails, + EndpointPublicDetails, + EndpointSpec, + EndpointSpecPrivateNetworkDetails, + EndpointSpecPublicDetails, + GetInstanceCertificateRequest, + GetInstanceRequest, + Instance, + InstanceSetting, + InstanceStatus, + ListInstancesRequest, + ListInstancesRequestOrderBy, + ListInstancesResponse, + ListNodeTypesRequest, + ListNodeTypesResponse, + ListSnapshotsRequest, + ListSnapshotsRequestOrderBy, + ListSnapshotsResponse, + ListUsersRequest, + ListUsersRequestOrderBy, + ListUsersResponse, + ListVersionsRequest, + ListVersionsResponse, + NodeType, + NodeTypeStock, + NodeTypeVolumeType, + RestoreSnapshotRequest, + RestoreSnapshotRequestVolumeDetails, + Setting, + SettingPropertyType, + Snapshot, + SnapshotStatus, + SnapshotVolumeType, + UpdateInstanceRequest, + UpdateSnapshotRequest, + UpdateUserRequest, + UpgradeInstanceRequest, + User, + Version, + Volume, + VolumeType, +} from './types.gen' +export * as ValidationRules from './validation-rules.gen'