@hautechai/sdk 2.2.6 → 2.3.0
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/dist/index.d.mts +51 -41
- package/dist/index.d.ts +51 -41
- package/dist/index.js +168 -154
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +168 -154
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1496,6 +1496,7 @@ interface DetachAccessControllerParamsDto {
|
|
|
1496
1496
|
*/
|
|
1497
1497
|
interface EchoV1Input {
|
|
1498
1498
|
text: string;
|
|
1499
|
+
delay?: number;
|
|
1499
1500
|
}
|
|
1500
1501
|
|
|
1501
1502
|
/**
|
|
@@ -2753,6 +2754,22 @@ declare const GPTV3FileSearchToolDtoType: {
|
|
|
2753
2754
|
readonly file_search: "file_search";
|
|
2754
2755
|
};
|
|
2755
2756
|
|
|
2757
|
+
/**
|
|
2758
|
+
* Generated by orval v7.10.0 🍺
|
|
2759
|
+
* Do not edit manually.
|
|
2760
|
+
* Hautech API
|
|
2761
|
+
* OpenAPI spec version: 1.0
|
|
2762
|
+
*/
|
|
2763
|
+
|
|
2764
|
+
interface GPTV3FileSearchToolDto {
|
|
2765
|
+
/** The type of the tool. */
|
|
2766
|
+
type: GPTV3FileSearchToolDtoType;
|
|
2767
|
+
/** The IDs of the vector stores to search. */
|
|
2768
|
+
vector_store_ids?: string[];
|
|
2769
|
+
/** The maximum number of results to return. */
|
|
2770
|
+
max_num_results?: number;
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2756
2773
|
/**
|
|
2757
2774
|
* Generated by orval v7.10.0 🍺
|
|
2758
2775
|
* Do not edit manually.
|
|
@@ -2781,34 +2798,6 @@ type GPTV3FileSearchToolDtoRanking = {
|
|
|
2781
2798
|
[key: string]: unknown;
|
|
2782
2799
|
} | null;
|
|
2783
2800
|
|
|
2784
|
-
/**
|
|
2785
|
-
* Generated by orval v7.10.0 🍺
|
|
2786
|
-
* Do not edit manually.
|
|
2787
|
-
* Hautech API
|
|
2788
|
-
* OpenAPI spec version: 1.0
|
|
2789
|
-
*/
|
|
2790
|
-
|
|
2791
|
-
interface GPTV3FileSearchToolDto {
|
|
2792
|
-
/** The type of the tool. */
|
|
2793
|
-
type: GPTV3FileSearchToolDtoType;
|
|
2794
|
-
/** The IDs of the vector stores to search. */
|
|
2795
|
-
vector_store_ids?: string[];
|
|
2796
|
-
/** The search query used for the file search. */
|
|
2797
|
-
query?: string;
|
|
2798
|
-
/**
|
|
2799
|
-
* A filter to apply to the search.
|
|
2800
|
-
* @nullable
|
|
2801
|
-
*/
|
|
2802
|
-
filters?: GPTV3FileSearchToolDtoFilters;
|
|
2803
|
-
/** The maximum number of results to return. */
|
|
2804
|
-
max_num_results?: number;
|
|
2805
|
-
/**
|
|
2806
|
-
* Ranking options for the search.
|
|
2807
|
-
* @nullable
|
|
2808
|
-
*/
|
|
2809
|
-
ranking?: GPTV3FileSearchToolDtoRanking;
|
|
2810
|
-
}
|
|
2811
|
-
|
|
2812
2801
|
/**
|
|
2813
2802
|
* Generated by orval v7.10.0 🍺
|
|
2814
2803
|
* Do not edit manually.
|
|
@@ -3229,10 +3218,19 @@ interface GPTV3UserMessageDto {
|
|
|
3229
3218
|
* OpenAPI spec version: 1.0
|
|
3230
3219
|
*/
|
|
3231
3220
|
|
|
3221
|
+
type GPTV3InputInputOneOfItem = GPTV3SystemMessageDto | GPTV3UserMessageDto | GPTV3AssistantMessageDto | GPTV3DeveloperMessageDto;
|
|
3222
|
+
|
|
3232
3223
|
/**
|
|
3233
|
-
*
|
|
3224
|
+
* Generated by orval v7.10.0 🍺
|
|
3225
|
+
* Do not edit manually.
|
|
3226
|
+
* Hautech API
|
|
3227
|
+
* OpenAPI spec version: 1.0
|
|
3234
3228
|
*/
|
|
3235
|
-
|
|
3229
|
+
|
|
3230
|
+
/**
|
|
3231
|
+
* Text, image, or file inputs to the model, used to generate a response. Can be a simple string, a single message object, or an array of messages with different roles.
|
|
3232
|
+
*/
|
|
3233
|
+
type GPTV3InputInput = string | GPTV3SystemMessageDto | GPTV3UserMessageDto | GPTV3AssistantMessageDto | GPTV3DeveloperMessageDto | GPTV3InputInputOneOfItem[];
|
|
3236
3234
|
|
|
3237
3235
|
/**
|
|
3238
3236
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3439,7 +3437,7 @@ interface GPTV3ToolChoiceDto {
|
|
|
3439
3437
|
interface GPTV3Input {
|
|
3440
3438
|
/** ID of the model to use. See OpenAI docs for model endpoint compatibility. */
|
|
3441
3439
|
model?: GPTV3InputModel;
|
|
3442
|
-
/** Text, image, or file inputs to the model, used to generate a response. Can be a simple string or an array of messages with different roles. */
|
|
3440
|
+
/** Text, image, or file inputs to the model, used to generate a response. Can be a simple string, a single message object, or an array of messages with different roles. */
|
|
3443
3441
|
input?: GPTV3InputInput;
|
|
3444
3442
|
/** Configuration options for a text response from the model. Can be plain text or structured JSON data. */
|
|
3445
3443
|
text?: GPTV3TextConfigDto;
|
|
@@ -8970,16 +8968,28 @@ interface Config {
|
|
|
8970
8968
|
wsConfig?: Parameters<typeof io>[1];
|
|
8971
8969
|
}
|
|
8972
8970
|
|
|
8971
|
+
type WsEventMap = EntityEvents<'operation', OperationEntity, Pick<OperationEntity, 'id' | 'status' | 'creatorId' | 'createdAt' | 'updatedAt'>> & EntityEvents<'pipeline', PipelineDto, Pick<PipelineDto, 'id' | 'status' | 'metadata' | 'creatorId' | 'createdAt' | 'updatedAt'>>;
|
|
8972
|
+
type BaseWsEventType = 'created' | 'updated' | 'deleted';
|
|
8973
8973
|
interface BaseWsEvent<T> {
|
|
8974
8974
|
timestamp: string;
|
|
8975
8975
|
data: T;
|
|
8976
|
-
|
|
8977
|
-
|
|
8978
|
-
|
|
8979
|
-
|
|
8980
|
-
|
|
8981
|
-
|
|
8982
|
-
}
|
|
8976
|
+
type: BaseWsEventType;
|
|
8977
|
+
}
|
|
8978
|
+
type PreviewKey<E extends string> = `${E}:preview`;
|
|
8979
|
+
type EntityKey<E extends string> = `${E}:${string}`;
|
|
8980
|
+
type EntityEvents<E extends string, Full, Preview> = {
|
|
8981
|
+
[K in PreviewKey<E>]: BaseWsEvent<Preview>;
|
|
8982
|
+
} & {
|
|
8983
|
+
[K in EntityKey<E>]: BaseWsEvent<Full>;
|
|
8984
|
+
};
|
|
8985
|
+
type BaseEntity<K extends string> = K extends `${infer E}:${string}` ? E : never;
|
|
8986
|
+
type WsEventEntity = BaseEntity<keyof WsEventMap & string>;
|
|
8987
|
+
type EntityEventKeys<E extends WsEventEntity> = Extract<keyof WsEventMap, `${E}:${string}`>;
|
|
8988
|
+
type EntityEventPayload<E extends WsEventEntity> = WsEventMap[EntityEventKeys<E>];
|
|
8989
|
+
type SubscribePayload = {
|
|
8990
|
+
entity: WsEventEntity;
|
|
8991
|
+
id: string;
|
|
8992
|
+
};
|
|
8983
8993
|
|
|
8984
8994
|
declare class WsClient {
|
|
8985
8995
|
private config;
|
|
@@ -8988,10 +8998,10 @@ declare class WsClient {
|
|
|
8988
8998
|
private getSocket;
|
|
8989
8999
|
onConnect(cb: () => Promise<void>): void;
|
|
8990
9000
|
subscribe<T extends keyof WsEventMap>(topic: T, cb: (data: WsEventMap[T]) => void): void;
|
|
8991
|
-
|
|
9001
|
+
subscribeEntityById<T extends WsEventEntity>(entity: T, id: string, cb: (data: EntityEventPayload<T>) => void): void;
|
|
9002
|
+
unsubscribeEntityById<T extends WsEventEntity>(entity: T, id: string, cb?: (data: EntityEventPayload<T>) => void): void;
|
|
8992
9003
|
onError(cb: (error: Error) => void): void;
|
|
8993
9004
|
unsubscribe<T extends keyof WsEventMap>(topic: T, cb?: (data: WsEventMap[T]) => void): void;
|
|
8994
|
-
unsubscribe<T>(topic: string, cb?: (data: T) => void): void;
|
|
8995
9005
|
offError(cb?: (error: Error) => void): void;
|
|
8996
9006
|
}
|
|
8997
9007
|
|
|
@@ -9585,4 +9595,4 @@ declare const createTokenSigner: (options: {
|
|
|
9585
9595
|
}) => Promise<string>;
|
|
9586
9596
|
};
|
|
9587
9597
|
|
|
9588
|
-
export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, GPTV3InputModel, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventMap, createSDK, createTokenSigner };
|
|
9598
|
+
export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };
|
package/dist/index.d.ts
CHANGED
|
@@ -1496,6 +1496,7 @@ interface DetachAccessControllerParamsDto {
|
|
|
1496
1496
|
*/
|
|
1497
1497
|
interface EchoV1Input {
|
|
1498
1498
|
text: string;
|
|
1499
|
+
delay?: number;
|
|
1499
1500
|
}
|
|
1500
1501
|
|
|
1501
1502
|
/**
|
|
@@ -2753,6 +2754,22 @@ declare const GPTV3FileSearchToolDtoType: {
|
|
|
2753
2754
|
readonly file_search: "file_search";
|
|
2754
2755
|
};
|
|
2755
2756
|
|
|
2757
|
+
/**
|
|
2758
|
+
* Generated by orval v7.10.0 🍺
|
|
2759
|
+
* Do not edit manually.
|
|
2760
|
+
* Hautech API
|
|
2761
|
+
* OpenAPI spec version: 1.0
|
|
2762
|
+
*/
|
|
2763
|
+
|
|
2764
|
+
interface GPTV3FileSearchToolDto {
|
|
2765
|
+
/** The type of the tool. */
|
|
2766
|
+
type: GPTV3FileSearchToolDtoType;
|
|
2767
|
+
/** The IDs of the vector stores to search. */
|
|
2768
|
+
vector_store_ids?: string[];
|
|
2769
|
+
/** The maximum number of results to return. */
|
|
2770
|
+
max_num_results?: number;
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2756
2773
|
/**
|
|
2757
2774
|
* Generated by orval v7.10.0 🍺
|
|
2758
2775
|
* Do not edit manually.
|
|
@@ -2781,34 +2798,6 @@ type GPTV3FileSearchToolDtoRanking = {
|
|
|
2781
2798
|
[key: string]: unknown;
|
|
2782
2799
|
} | null;
|
|
2783
2800
|
|
|
2784
|
-
/**
|
|
2785
|
-
* Generated by orval v7.10.0 🍺
|
|
2786
|
-
* Do not edit manually.
|
|
2787
|
-
* Hautech API
|
|
2788
|
-
* OpenAPI spec version: 1.0
|
|
2789
|
-
*/
|
|
2790
|
-
|
|
2791
|
-
interface GPTV3FileSearchToolDto {
|
|
2792
|
-
/** The type of the tool. */
|
|
2793
|
-
type: GPTV3FileSearchToolDtoType;
|
|
2794
|
-
/** The IDs of the vector stores to search. */
|
|
2795
|
-
vector_store_ids?: string[];
|
|
2796
|
-
/** The search query used for the file search. */
|
|
2797
|
-
query?: string;
|
|
2798
|
-
/**
|
|
2799
|
-
* A filter to apply to the search.
|
|
2800
|
-
* @nullable
|
|
2801
|
-
*/
|
|
2802
|
-
filters?: GPTV3FileSearchToolDtoFilters;
|
|
2803
|
-
/** The maximum number of results to return. */
|
|
2804
|
-
max_num_results?: number;
|
|
2805
|
-
/**
|
|
2806
|
-
* Ranking options for the search.
|
|
2807
|
-
* @nullable
|
|
2808
|
-
*/
|
|
2809
|
-
ranking?: GPTV3FileSearchToolDtoRanking;
|
|
2810
|
-
}
|
|
2811
|
-
|
|
2812
2801
|
/**
|
|
2813
2802
|
* Generated by orval v7.10.0 🍺
|
|
2814
2803
|
* Do not edit manually.
|
|
@@ -3229,10 +3218,19 @@ interface GPTV3UserMessageDto {
|
|
|
3229
3218
|
* OpenAPI spec version: 1.0
|
|
3230
3219
|
*/
|
|
3231
3220
|
|
|
3221
|
+
type GPTV3InputInputOneOfItem = GPTV3SystemMessageDto | GPTV3UserMessageDto | GPTV3AssistantMessageDto | GPTV3DeveloperMessageDto;
|
|
3222
|
+
|
|
3232
3223
|
/**
|
|
3233
|
-
*
|
|
3224
|
+
* Generated by orval v7.10.0 🍺
|
|
3225
|
+
* Do not edit manually.
|
|
3226
|
+
* Hautech API
|
|
3227
|
+
* OpenAPI spec version: 1.0
|
|
3234
3228
|
*/
|
|
3235
|
-
|
|
3229
|
+
|
|
3230
|
+
/**
|
|
3231
|
+
* Text, image, or file inputs to the model, used to generate a response. Can be a simple string, a single message object, or an array of messages with different roles.
|
|
3232
|
+
*/
|
|
3233
|
+
type GPTV3InputInput = string | GPTV3SystemMessageDto | GPTV3UserMessageDto | GPTV3AssistantMessageDto | GPTV3DeveloperMessageDto | GPTV3InputInputOneOfItem[];
|
|
3236
3234
|
|
|
3237
3235
|
/**
|
|
3238
3236
|
* Generated by orval v7.10.0 🍺
|
|
@@ -3439,7 +3437,7 @@ interface GPTV3ToolChoiceDto {
|
|
|
3439
3437
|
interface GPTV3Input {
|
|
3440
3438
|
/** ID of the model to use. See OpenAI docs for model endpoint compatibility. */
|
|
3441
3439
|
model?: GPTV3InputModel;
|
|
3442
|
-
/** Text, image, or file inputs to the model, used to generate a response. Can be a simple string or an array of messages with different roles. */
|
|
3440
|
+
/** Text, image, or file inputs to the model, used to generate a response. Can be a simple string, a single message object, or an array of messages with different roles. */
|
|
3443
3441
|
input?: GPTV3InputInput;
|
|
3444
3442
|
/** Configuration options for a text response from the model. Can be plain text or structured JSON data. */
|
|
3445
3443
|
text?: GPTV3TextConfigDto;
|
|
@@ -8970,16 +8968,28 @@ interface Config {
|
|
|
8970
8968
|
wsConfig?: Parameters<typeof io>[1];
|
|
8971
8969
|
}
|
|
8972
8970
|
|
|
8971
|
+
type WsEventMap = EntityEvents<'operation', OperationEntity, Pick<OperationEntity, 'id' | 'status' | 'creatorId' | 'createdAt' | 'updatedAt'>> & EntityEvents<'pipeline', PipelineDto, Pick<PipelineDto, 'id' | 'status' | 'metadata' | 'creatorId' | 'createdAt' | 'updatedAt'>>;
|
|
8972
|
+
type BaseWsEventType = 'created' | 'updated' | 'deleted';
|
|
8973
8973
|
interface BaseWsEvent<T> {
|
|
8974
8974
|
timestamp: string;
|
|
8975
8975
|
data: T;
|
|
8976
|
-
|
|
8977
|
-
|
|
8978
|
-
|
|
8979
|
-
|
|
8980
|
-
|
|
8981
|
-
|
|
8982
|
-
}
|
|
8976
|
+
type: BaseWsEventType;
|
|
8977
|
+
}
|
|
8978
|
+
type PreviewKey<E extends string> = `${E}:preview`;
|
|
8979
|
+
type EntityKey<E extends string> = `${E}:${string}`;
|
|
8980
|
+
type EntityEvents<E extends string, Full, Preview> = {
|
|
8981
|
+
[K in PreviewKey<E>]: BaseWsEvent<Preview>;
|
|
8982
|
+
} & {
|
|
8983
|
+
[K in EntityKey<E>]: BaseWsEvent<Full>;
|
|
8984
|
+
};
|
|
8985
|
+
type BaseEntity<K extends string> = K extends `${infer E}:${string}` ? E : never;
|
|
8986
|
+
type WsEventEntity = BaseEntity<keyof WsEventMap & string>;
|
|
8987
|
+
type EntityEventKeys<E extends WsEventEntity> = Extract<keyof WsEventMap, `${E}:${string}`>;
|
|
8988
|
+
type EntityEventPayload<E extends WsEventEntity> = WsEventMap[EntityEventKeys<E>];
|
|
8989
|
+
type SubscribePayload = {
|
|
8990
|
+
entity: WsEventEntity;
|
|
8991
|
+
id: string;
|
|
8992
|
+
};
|
|
8983
8993
|
|
|
8984
8994
|
declare class WsClient {
|
|
8985
8995
|
private config;
|
|
@@ -8988,10 +8998,10 @@ declare class WsClient {
|
|
|
8988
8998
|
private getSocket;
|
|
8989
8999
|
onConnect(cb: () => Promise<void>): void;
|
|
8990
9000
|
subscribe<T extends keyof WsEventMap>(topic: T, cb: (data: WsEventMap[T]) => void): void;
|
|
8991
|
-
|
|
9001
|
+
subscribeEntityById<T extends WsEventEntity>(entity: T, id: string, cb: (data: EntityEventPayload<T>) => void): void;
|
|
9002
|
+
unsubscribeEntityById<T extends WsEventEntity>(entity: T, id: string, cb?: (data: EntityEventPayload<T>) => void): void;
|
|
8992
9003
|
onError(cb: (error: Error) => void): void;
|
|
8993
9004
|
unsubscribe<T extends keyof WsEventMap>(topic: T, cb?: (data: WsEventMap[T]) => void): void;
|
|
8994
|
-
unsubscribe<T>(topic: string, cb?: (data: T) => void): void;
|
|
8995
9005
|
offError(cb?: (error: Error) => void): void;
|
|
8996
9006
|
}
|
|
8997
9007
|
|
|
@@ -9585,4 +9595,4 @@ declare const createTokenSigner: (options: {
|
|
|
9585
9595
|
}) => Promise<string>;
|
|
9586
9596
|
};
|
|
9587
9597
|
|
|
9588
|
-
export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, GPTV3InputModel, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventMap, createSDK, createTokenSigner };
|
|
9598
|
+
export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };
|