@hautechai/sdk 2.21.11 → 2.22.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 +208 -6
- package/dist/index.d.ts +208 -6
- package/dist/index.js +96 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +92 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -23,6 +23,21 @@ interface CreateUserProfileDto {
|
|
|
23
23
|
pictureUrl?: string | null;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
/**
|
|
27
|
+
* Generated by orval v7.10.0 🍺
|
|
28
|
+
* Do not edit manually.
|
|
29
|
+
* directory-api
|
|
30
|
+
* OpenAPI spec version: none
|
|
31
|
+
*/
|
|
32
|
+
interface PublicUserProfileDto {
|
|
33
|
+
/** @pattern ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$ */
|
|
34
|
+
id: string;
|
|
35
|
+
handle: string;
|
|
36
|
+
name: string;
|
|
37
|
+
/** @nullable */
|
|
38
|
+
pictureUrl?: string | null;
|
|
39
|
+
}
|
|
40
|
+
|
|
26
41
|
/**
|
|
27
42
|
* Generated by orval v7.10.0 🍺
|
|
28
43
|
* Do not edit manually.
|
|
@@ -41,6 +56,27 @@ interface UpdateUserProfileDto {
|
|
|
41
56
|
pictureUrl?: string | null;
|
|
42
57
|
}
|
|
43
58
|
|
|
59
|
+
/**
|
|
60
|
+
* Generated by orval v7.10.0 🍺
|
|
61
|
+
* Do not edit manually.
|
|
62
|
+
* directory-api
|
|
63
|
+
* OpenAPI spec version: none
|
|
64
|
+
*/
|
|
65
|
+
interface UserProfileDto {
|
|
66
|
+
/** @pattern ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$ */
|
|
67
|
+
id: string;
|
|
68
|
+
externalId: string;
|
|
69
|
+
handle: string;
|
|
70
|
+
name: string;
|
|
71
|
+
/**
|
|
72
|
+
* @nullable
|
|
73
|
+
* @pattern ^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$
|
|
74
|
+
*/
|
|
75
|
+
email?: string | null;
|
|
76
|
+
/** @nullable */
|
|
77
|
+
pictureUrl?: string | null;
|
|
78
|
+
}
|
|
79
|
+
|
|
44
80
|
/**
|
|
45
81
|
* Generated by orval v7.10.0 🍺
|
|
46
82
|
* Do not edit manually.
|
|
@@ -1401,6 +1437,131 @@ interface ChatDto {
|
|
|
1401
1437
|
updatedAt: string;
|
|
1402
1438
|
}
|
|
1403
1439
|
|
|
1440
|
+
/**
|
|
1441
|
+
* Generated by orval v7.10.0 🍺
|
|
1442
|
+
* Do not edit manually.
|
|
1443
|
+
* Hautech API
|
|
1444
|
+
* OpenAPI spec version: 1.0
|
|
1445
|
+
*/
|
|
1446
|
+
interface ClassifyImageInputDto {
|
|
1447
|
+
/** @minItems 1 */
|
|
1448
|
+
classes: string[];
|
|
1449
|
+
imageId: string;
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
/**
|
|
1453
|
+
* Generated by orval v7.10.0 🍺
|
|
1454
|
+
* Do not edit manually.
|
|
1455
|
+
* Hautech API
|
|
1456
|
+
* OpenAPI spec version: 1.0
|
|
1457
|
+
*/
|
|
1458
|
+
type ClassifyImageOutputDtoKind = typeof ClassifyImageOutputDtoKind[keyof typeof ClassifyImageOutputDtoKind];
|
|
1459
|
+
declare const ClassifyImageOutputDtoKind: {
|
|
1460
|
+
readonly 'text/single': "text/single";
|
|
1461
|
+
};
|
|
1462
|
+
|
|
1463
|
+
/**
|
|
1464
|
+
* Generated by orval v7.10.0 🍺
|
|
1465
|
+
* Do not edit manually.
|
|
1466
|
+
* Hautech API
|
|
1467
|
+
* OpenAPI spec version: 1.0
|
|
1468
|
+
*/
|
|
1469
|
+
|
|
1470
|
+
interface ClassifyImageOutputDto {
|
|
1471
|
+
kind: ClassifyImageOutputDtoKind;
|
|
1472
|
+
text: string;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
/**
|
|
1476
|
+
* Generated by orval v7.10.0 🍺
|
|
1477
|
+
* Do not edit manually.
|
|
1478
|
+
* Hautech API
|
|
1479
|
+
* OpenAPI spec version: 1.0
|
|
1480
|
+
*/
|
|
1481
|
+
type ClipClassifyV1RequestMetadata = {
|
|
1482
|
+
[key: string]: unknown;
|
|
1483
|
+
};
|
|
1484
|
+
|
|
1485
|
+
/**
|
|
1486
|
+
* Generated by orval v7.10.0 🍺
|
|
1487
|
+
* Do not edit manually.
|
|
1488
|
+
* Hautech API
|
|
1489
|
+
* OpenAPI spec version: 1.0
|
|
1490
|
+
*/
|
|
1491
|
+
|
|
1492
|
+
interface ClipClassifyV1Request {
|
|
1493
|
+
input: ClassifyImageInputDto;
|
|
1494
|
+
metadata?: ClipClassifyV1RequestMetadata;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
/**
|
|
1498
|
+
* Generated by orval v7.10.0 🍺
|
|
1499
|
+
* Do not edit manually.
|
|
1500
|
+
* Hautech API
|
|
1501
|
+
* OpenAPI spec version: 1.0
|
|
1502
|
+
*/
|
|
1503
|
+
type ClipClassifyV1ResponseKind = typeof ClipClassifyV1ResponseKind[keyof typeof ClipClassifyV1ResponseKind];
|
|
1504
|
+
declare const ClipClassifyV1ResponseKind: {
|
|
1505
|
+
readonly operation: "operation";
|
|
1506
|
+
};
|
|
1507
|
+
|
|
1508
|
+
/**
|
|
1509
|
+
* Generated by orval v7.10.0 🍺
|
|
1510
|
+
* Do not edit manually.
|
|
1511
|
+
* Hautech API
|
|
1512
|
+
* OpenAPI spec version: 1.0
|
|
1513
|
+
*/
|
|
1514
|
+
type ClipClassifyV1ResponseInput = {
|
|
1515
|
+
[key: string]: unknown;
|
|
1516
|
+
};
|
|
1517
|
+
|
|
1518
|
+
/**
|
|
1519
|
+
* Generated by orval v7.10.0 🍺
|
|
1520
|
+
* Do not edit manually.
|
|
1521
|
+
* Hautech API
|
|
1522
|
+
* OpenAPI spec version: 1.0
|
|
1523
|
+
*/
|
|
1524
|
+
type ClipClassifyV1ResponseStatus = typeof ClipClassifyV1ResponseStatus[keyof typeof ClipClassifyV1ResponseStatus];
|
|
1525
|
+
declare const ClipClassifyV1ResponseStatus: {
|
|
1526
|
+
readonly pending: "pending";
|
|
1527
|
+
readonly finished: "finished";
|
|
1528
|
+
readonly failed: "failed";
|
|
1529
|
+
};
|
|
1530
|
+
|
|
1531
|
+
/**
|
|
1532
|
+
* Generated by orval v7.10.0 🍺
|
|
1533
|
+
* Do not edit manually.
|
|
1534
|
+
* Hautech API
|
|
1535
|
+
* OpenAPI spec version: 1.0
|
|
1536
|
+
*/
|
|
1537
|
+
type ClipClassifyV1ResponseMetadata = {
|
|
1538
|
+
[key: string]: unknown;
|
|
1539
|
+
};
|
|
1540
|
+
|
|
1541
|
+
/**
|
|
1542
|
+
* Generated by orval v7.10.0 🍺
|
|
1543
|
+
* Do not edit manually.
|
|
1544
|
+
* Hautech API
|
|
1545
|
+
* OpenAPI spec version: 1.0
|
|
1546
|
+
*/
|
|
1547
|
+
|
|
1548
|
+
interface ClipClassifyV1Response {
|
|
1549
|
+
kind: ClipClassifyV1ResponseKind;
|
|
1550
|
+
output: ClassifyImageOutputDto;
|
|
1551
|
+
input: ClipClassifyV1ResponseInput;
|
|
1552
|
+
status: ClipClassifyV1ResponseStatus;
|
|
1553
|
+
type: string;
|
|
1554
|
+
price?: string;
|
|
1555
|
+
estimatedPrice?: string;
|
|
1556
|
+
errorMessage?: string;
|
|
1557
|
+
errorCode?: string;
|
|
1558
|
+
id: string;
|
|
1559
|
+
creatorId: string;
|
|
1560
|
+
metadata: ClipClassifyV1ResponseMetadata;
|
|
1561
|
+
createdAt: string;
|
|
1562
|
+
updatedAt: string;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1404
1565
|
/**
|
|
1405
1566
|
* Generated by orval v7.10.0 🍺
|
|
1406
1567
|
* Do not edit manually.
|
|
@@ -12495,6 +12656,44 @@ interface SetPosePreviewDto {
|
|
|
12495
12656
|
previewImageId: string;
|
|
12496
12657
|
}
|
|
12497
12658
|
|
|
12659
|
+
/**
|
|
12660
|
+
* Generated by orval v7.10.0 🍺
|
|
12661
|
+
* Do not edit manually.
|
|
12662
|
+
* Hautech API
|
|
12663
|
+
* OpenAPI spec version: 1.0
|
|
12664
|
+
*/
|
|
12665
|
+
type ShareWithEveryoneControllerParamsDtoAccess = typeof ShareWithEveryoneControllerParamsDtoAccess[keyof typeof ShareWithEveryoneControllerParamsDtoAccess];
|
|
12666
|
+
declare const ShareWithEveryoneControllerParamsDtoAccess: {
|
|
12667
|
+
readonly owner: "owner";
|
|
12668
|
+
readonly maintainer: "maintainer";
|
|
12669
|
+
readonly writer: "writer";
|
|
12670
|
+
readonly reader: "reader";
|
|
12671
|
+
readonly member: "member";
|
|
12672
|
+
readonly can_assign_members: "can_assign_members";
|
|
12673
|
+
readonly can_assign_maintainers: "can_assign_maintainers";
|
|
12674
|
+
readonly can_assign_owners: "can_assign_owners";
|
|
12675
|
+
readonly can_view: "can_view";
|
|
12676
|
+
readonly can_write: "can_write";
|
|
12677
|
+
readonly can_edit: "can_edit";
|
|
12678
|
+
readonly can_delete: "can_delete";
|
|
12679
|
+
readonly can_change_access: "can_change_access";
|
|
12680
|
+
readonly can_add_items: "can_add_items";
|
|
12681
|
+
readonly can_remove_items: "can_remove_items";
|
|
12682
|
+
readonly can_list: "can_list";
|
|
12683
|
+
readonly parent: "parent";
|
|
12684
|
+
};
|
|
12685
|
+
|
|
12686
|
+
/**
|
|
12687
|
+
* Generated by orval v7.10.0 🍺
|
|
12688
|
+
* Do not edit manually.
|
|
12689
|
+
* Hautech API
|
|
12690
|
+
* OpenAPI spec version: 1.0
|
|
12691
|
+
*/
|
|
12692
|
+
|
|
12693
|
+
interface ShareWithEveryoneControllerParamsDto {
|
|
12694
|
+
access: ShareWithEveryoneControllerParamsDtoAccess;
|
|
12695
|
+
}
|
|
12696
|
+
|
|
12498
12697
|
/**
|
|
12499
12698
|
* Generated by orval v7.10.0 🍺
|
|
12500
12699
|
* Do not edit manually.
|
|
@@ -14948,6 +15147,9 @@ declare const pipelineDefinitions: {
|
|
|
14948
15147
|
v1: (imagesRenameV1Request: ImagesRenameV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ImagesRenameV1Response, any>>;
|
|
14949
15148
|
};
|
|
14950
15149
|
};
|
|
15150
|
+
clipClassify: {
|
|
15151
|
+
v1: (clipClassifyV1Request: ClipClassifyV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ClipClassifyV1Response, any>>;
|
|
15152
|
+
};
|
|
14951
15153
|
};
|
|
14952
15154
|
};
|
|
14953
15155
|
poses: {
|
|
@@ -14981,11 +15183,11 @@ declare const pipelineDefinitions: {
|
|
|
14981
15183
|
};
|
|
14982
15184
|
declare const getDirectoryApiDefinitions: () => {
|
|
14983
15185
|
userProfiles: ApiDefinitionTree<{
|
|
14984
|
-
create: (createUserProfileDto: CreateUserProfileDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
14985
|
-
list: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
14986
|
-
self: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
14987
|
-
getByHandle: (handle: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
14988
|
-
update: (id: string, updateUserProfileDto: UpdateUserProfileDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
15186
|
+
create: (createUserProfileDto: CreateUserProfileDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<UserProfileDto, any>>;
|
|
15187
|
+
list: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<UserProfileDto[], any>>;
|
|
15188
|
+
self: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<UserProfileDto, any>>;
|
|
15189
|
+
getByHandle: (handle: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<PublicUserProfileDto | null, any>>;
|
|
15190
|
+
update: (id: string, updateUserProfileDto: UpdateUserProfileDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<UserProfileDto, any>>;
|
|
14989
15191
|
}>;
|
|
14990
15192
|
};
|
|
14991
15193
|
declare const getWsClientDefinitions: (config: Config) => {
|
|
@@ -15150,4 +15352,4 @@ declare const createTokenSigner: (options: {
|
|
|
15150
15352
|
}) => Promise<string>;
|
|
15151
15353
|
};
|
|
15152
15354
|
|
|
15153
|
-
export { type AccessControllerListSharedV1Params, AccessControllerListSharedV1Type, type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddChatItemsDto, type AddChatItemsDtoItemsItem, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AlphabakeVtonV1Input, AlphabakeVtonV1InputGarmentType, AlphabakeVtonV1InputMode, AlphabakeVtonV1InputProcessAsset, type AlphabakeVtonV1Request, type AlphabakeVtonV1RequestMetadata, type AlphabakeVtonV1Response, type AlphabakeVtonV1ResponseInput, AlphabakeVtonV1ResponseKind, type AlphabakeVtonV1ResponseMetadata, AlphabakeVtonV1ResponseStatus, 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 AnimateKling21ProV1Input, AnimateKling21ProV1InputDuration, type AnimateKling21ProV1Request, type AnimateKling21ProV1RequestMetadata, type AnimateKling21ProV1Response, type AnimateKling21ProV1ResponseInput, AnimateKling21ProV1ResponseKind, type AnimateKling21ProV1ResponseMetadata, AnimateKling21ProV1ResponseStatus, type AnimateKling21StandardV1Input, AnimateKling21StandardV1InputDuration, type AnimateKling21StandardV1Request, type AnimateKling21StandardV1RequestMetadata, type AnimateKling21StandardV1Response, type AnimateKling21StandardV1ResponseInput, AnimateKling21StandardV1ResponseKind, type AnimateKling21StandardV1ResponseMetadata, AnimateKling21StandardV1ResponseStatus, 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 CaseDto, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, 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 CreateChatParamsDto, 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 CreateWorkflowParamsDtoPipelineTemplate, 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 DatasetItemDto, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type DirectorySDK, type DirectorySDKOptions, 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 FashnVton16V1Request, type FashnVton16V1RequestMetadata, type FashnVton16V1Response, type FashnVton16V1ResponseInput, FashnVton16V1ResponseKind, type FashnVton16V1ResponseMetadata, FashnVton16V1ResponseStatus, type FashnVtonV1Input, FashnVtonV1InputCategory, FashnVtonV1InputGarmentPhotoType, FashnVtonV1InputMode, FashnVtonV1InputModerationLevel, type Flux11ProUltraV1Input, type FluxKontextDatasetItemDto, type FluxKontextDevPrepareDatasetV1Request, type FluxKontextDevPrepareDatasetV1RequestMetadata, type FluxKontextDevPrepareDatasetV1Response, type FluxKontextDevPrepareDatasetV1ResponseInput, FluxKontextDevPrepareDatasetV1ResponseKind, type FluxKontextDevPrepareDatasetV1ResponseMetadata, FluxKontextDevPrepareDatasetV1ResponseStatus, type FluxKontextDevTrainV1Request, type FluxKontextDevTrainV1RequestMetadata, type FluxKontextDevTrainV1Response, type FluxKontextDevTrainV1ResponseInput, FluxKontextDevTrainV1ResponseKind, type FluxKontextDevTrainV1ResponseMetadata, FluxKontextDevTrainV1ResponseStatus, type FluxKontextDevV1Request, type FluxKontextDevV1RequestMetadata, type FluxKontextDevV1Response, type FluxKontextDevV1ResponseInput, FluxKontextDevV1ResponseKind, type FluxKontextDevV1ResponseMetadata, FluxKontextDevV1ResponseStatus, type FluxKontextPrepareDatasetInputDto, type FluxKontextPrepareDatasetOutputDto, FluxKontextPrepareDatasetOutputDtoKind, type FluxKontextPrepareDatasetResultDto, type FluxKontextPrepareDatasetV1Request, type FluxKontextPrepareDatasetV1RequestMetadata, type FluxKontextPrepareDatasetV1Response, type FluxKontextPrepareDatasetV1ResponseInput, FluxKontextPrepareDatasetV1ResponseKind, type FluxKontextPrepareDatasetV1ResponseMetadata, FluxKontextPrepareDatasetV1ResponseStatus, type FluxKontextTrainInputDto, type FluxKontextTrainOutputDto, FluxKontextTrainOutputDtoKind, type FluxKontextTrainResultDto, type FluxKontextTrainV1Request, type FluxKontextTrainV1RequestMetadata, type FluxKontextTrainV1Response, type FluxKontextTrainV1ResponseInput, FluxKontextTrainV1ResponseKind, type FluxKontextTrainV1ResponseMetadata, FluxKontextTrainV1ResponseStatus, type FluxKontextV1InputDto, type FluxKontextV1Request, type FluxKontextV1RequestMetadata, type FluxKontextV1Response, type FluxKontextV1ResponseInput, FluxKontextV1ResponseKind, type FluxKontextV1ResponseMetadata, FluxKontextV1ResponseStatus, 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 GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchToolDto, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoOutputItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, 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 GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GoogleNanoBananaV1Input, GoogleNanoBananaV1InputAspectRatio, GoogleNanoBananaV1InputOutputFormat, type GoogleNanoBananaV1Request, type GoogleNanoBananaV1RequestMetadata, type GoogleNanoBananaV1Response, type GoogleNanoBananaV1ResponseInput, GoogleNanoBananaV1ResponseKind, type GoogleNanoBananaV1ResponseMetadata, GoogleNanoBananaV1ResponseStatus, 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 HauteNaomiPrepareDatasetV1Request, type HauteNaomiPrepareDatasetV1RequestMetadata, type HauteNaomiPrepareDatasetV1Response, type HauteNaomiPrepareDatasetV1ResponseInput, HauteNaomiPrepareDatasetV1ResponseKind, type HauteNaomiPrepareDatasetV1ResponseMetadata, HauteNaomiPrepareDatasetV1ResponseStatus, type HauteNaomiTrainV1Request, type HauteNaomiTrainV1RequestMetadata, type HauteNaomiTrainV1Response, type HauteNaomiTrainV1ResponseInput, HauteNaomiTrainV1ResponseKind, type HauteNaomiTrainV1ResponseMetadata, HauteNaomiTrainV1ResponseStatus, 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 ImageCompositionJson, type ImageCompositionJsonElementsItem, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4FastV1Input, Imagen4FastV1InputAspectRatio, type Imagen4FastV1Request, type Imagen4FastV1RequestMetadata, type Imagen4FastV1Response, type Imagen4FastV1ResponseInput, Imagen4FastV1ResponseKind, type Imagen4FastV1ResponseMetadata, Imagen4FastV1ResponseStatus, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4StandardV1Input, Imagen4StandardV1InputAspectRatio, type Imagen4StandardV1Request, type Imagen4StandardV1RequestMetadata, type Imagen4StandardV1Response, type Imagen4StandardV1ResponseInput, Imagen4StandardV1ResponseKind, type Imagen4StandardV1ResponseMetadata, Imagen4StandardV1ResponseStatus, type Imagen4UltraV1Input, Imagen4UltraV1InputAspectRatio, type Imagen4UltraV1Request, type Imagen4UltraV1RequestMetadata, type Imagen4UltraV1Response, type Imagen4UltraV1ResponseInput, Imagen4UltraV1ResponseKind, type Imagen4UltraV1ResponseMetadata, Imagen4UltraV1ResponseStatus, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagesRenameV1Input, type ImagesRenameV1Request, type ImagesRenameV1RequestMetadata, type ImagesRenameV1Response, type ImagesRenameV1ResponseInput, ImagesRenameV1ResponseKind, type ImagesRenameV1ResponseMetadata, ImagesRenameV1ResponseStatus, 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 InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type JsonToImageV1Input, type JsonToImageV1Request, type JsonToImageV1RequestMetadata, type JsonToImageV1Response, type JsonToImageV1ResponseInput, JsonToImageV1ResponseKind, type JsonToImageV1ResponseMetadata, JsonToImageV1ResponseStatus, type JsonToVideoV1Input, type JsonToVideoV1Request, type JsonToVideoV1RequestMetadata, type JsonToVideoV1Response, type JsonToVideoV1ResponseInput, JsonToVideoV1ResponseKind, type JsonToVideoV1ResponseMetadata, JsonToVideoV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type KlingKolorsVtonV1Input, type KlingKolorsVtonV1Request, type KlingKolorsVtonV1RequestMetadata, type KlingKolorsVtonV1Response, type KlingKolorsVtonV1ResponseInput, KlingKolorsVtonV1ResponseKind, type KlingKolorsVtonV1ResponseMetadata, KlingKolorsVtonV1ResponseStatus, type KlingVideo25ProImageToVideoV1Input, KlingVideo25ProImageToVideoV1InputDuration, type KlingVideo25ProImageToVideoV1Request, type KlingVideo25ProImageToVideoV1RequestMetadata, type KlingVideo25ProImageToVideoV1Response, type KlingVideo25ProImageToVideoV1ResponseInput, KlingVideo25ProImageToVideoV1ResponseKind, type KlingVideo25ProImageToVideoV1ResponseMetadata, KlingVideo25ProImageToVideoV1ResponseStatus, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListChatsDto, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListLorasDto, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListSharedResourcesResponseDto, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, LoraControllerGetLorasV1ModelType, type LoraControllerGetLorasV1Params, type LoraDto, LoraDtoModelType, LoraDtoStatus, 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 NaomiHauteTrainInputDto, type NaomiHauteTrainOutputDto, NaomiHauteTrainOutputDtoKind, type NaomiHauteTrainResultDto, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NaomiPrepareDatasetInputDto, type NaomiPrepareDatasetOutputDto, NaomiPrepareDatasetOutputDtoKind, type NaomiPrepareDatasetResultDto, 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 OperationOutputNumber, OperationOutputNumberKind, 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 ReveRemixV1Input, ReveRemixV1InputAspectRatio, ReveRemixV1InputVersion, type ReveRemixV1Request, type ReveRemixV1RequestMetadata, type ReveRemixV1Response, type ReveRemixV1ResponseInput, ReveRemixV1ResponseKind, type ReveRemixV1ResponseMetadata, ReveRemixV1ResponseStatus, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SeedV1Input, type SeedV1InputSeed, type SeedV1InputSeedId, type SeedV1Request, type SeedV1RequestMetadata, type SeedV1Response, type SeedV1ResponseInput, SeedV1ResponseKind, type SeedV1ResponseMetadata, SeedV1ResponseStatus, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type Seedream4EditV1Input, type Seedream4EditV1Request, type Seedream4EditV1RequestMetadata, type Seedream4EditV1Response, type Seedream4EditV1ResponseInput, Seedream4EditV1ResponseKind, type Seedream4EditV1ResponseMetadata, Seedream4EditV1ResponseStatus, type Seedream4T2IV1Input, type Seedream4T2iV1Request, type Seedream4T2iV1RequestMetadata, type Seedream4T2iV1Response, type Seedream4T2iV1ResponseInput, Seedream4T2iV1ResponseKind, type Seedream4T2iV1ResponseMetadata, Seedream4T2iV1ResponseStatus, 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 SharedResourceDto, SharedResourceDtoType, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsSwitchV1Input, type StringsSwitchV1Request, type StringsSwitchV1RequestMetadata, type StringsSwitchV1Response, type StringsSwitchV1ResponseInput, StringsSwitchV1ResponseKind, type StringsSwitchV1ResponseMetadata, StringsSwitchV1ResponseStatus, 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 UpdateWorkflowParamsDtoPipelineTemplate, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type VariableDtoValue, type Veo31FastV1Request, type Veo31FastV1RequestMetadata, type Veo31FastV1Response, type Veo31FastV1ResponseInput, Veo31FastV1ResponseKind, type Veo31FastV1ResponseMetadata, Veo31FastV1ResponseStatus, type Veo31Input, Veo31InputAspectRatio, Veo31InputDuration, Veo31InputResolution, type Veo31V1Request, type Veo31V1RequestMetadata, type Veo31V1Response, type Veo31V1ResponseInput, Veo31V1ResponseKind, type Veo31V1ResponseMetadata, Veo31V1ResponseStatus, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputAspectRatio, Veo3V1InputDuration, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoCompositionJson, type VideoCompositionJsonElementsItem, 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, type WorkflowDtoPipelineTemplate, type WorkflowStatisticsDto, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WorkflowsRunV1Input, type WorkflowsRunV1InputInput, type WorkflowsRunV1InputMetadata, type WorkflowsRunV1Output, type WorkflowsRunV1OutputOutput, type WorkflowsRunV1Request, type WorkflowsRunV1RequestMetadata, type WorkflowsRunV1Response, type WorkflowsRunV1ResponseInput, WorkflowsRunV1ResponseKind, type WorkflowsRunV1ResponseMetadata, WorkflowsRunV1ResponseStatus, type WsEventEntity, type WsEventMap, type Yolo11xPoseV1Input, type Yolo11xPoseV1Output, Yolo11xPoseV1OutputKind, type Yolo11xPoseV1Request, type Yolo11xPoseV1RequestMetadata, type Yolo11xPoseV1Response, type Yolo11xPoseV1ResponseInput, Yolo11xPoseV1ResponseKind, type Yolo11xPoseV1ResponseMetadata, Yolo11xPoseV1ResponseStatus, createDirectorySDK, createSDK, createTokenSigner };
|
|
15355
|
+
export { type AccessControllerListSharedV1Params, AccessControllerListSharedV1Type, type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddChatItemsDto, type AddChatItemsDtoItemsItem, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AlphabakeVtonV1Input, AlphabakeVtonV1InputGarmentType, AlphabakeVtonV1InputMode, AlphabakeVtonV1InputProcessAsset, type AlphabakeVtonV1Request, type AlphabakeVtonV1RequestMetadata, type AlphabakeVtonV1Response, type AlphabakeVtonV1ResponseInput, AlphabakeVtonV1ResponseKind, type AlphabakeVtonV1ResponseMetadata, AlphabakeVtonV1ResponseStatus, 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 AnimateKling21ProV1Input, AnimateKling21ProV1InputDuration, type AnimateKling21ProV1Request, type AnimateKling21ProV1RequestMetadata, type AnimateKling21ProV1Response, type AnimateKling21ProV1ResponseInput, AnimateKling21ProV1ResponseKind, type AnimateKling21ProV1ResponseMetadata, AnimateKling21ProV1ResponseStatus, type AnimateKling21StandardV1Input, AnimateKling21StandardV1InputDuration, type AnimateKling21StandardV1Request, type AnimateKling21StandardV1RequestMetadata, type AnimateKling21StandardV1Response, type AnimateKling21StandardV1ResponseInput, AnimateKling21StandardV1ResponseKind, type AnimateKling21StandardV1ResponseMetadata, AnimateKling21StandardV1ResponseStatus, 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 CaseDto, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, type ClassifyImageInputDto, type ClassifyImageOutputDto, ClassifyImageOutputDtoKind, type ClipClassifyV1Request, type ClipClassifyV1RequestMetadata, type ClipClassifyV1Response, type ClipClassifyV1ResponseInput, ClipClassifyV1ResponseKind, type ClipClassifyV1ResponseMetadata, ClipClassifyV1ResponseStatus, 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 CreateChatParamsDto, 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 CreateWorkflowParamsDtoPipelineTemplate, 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 DatasetItemDto, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type DirectorySDK, type DirectorySDKOptions, 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 FashnVton16V1Request, type FashnVton16V1RequestMetadata, type FashnVton16V1Response, type FashnVton16V1ResponseInput, FashnVton16V1ResponseKind, type FashnVton16V1ResponseMetadata, FashnVton16V1ResponseStatus, type FashnVtonV1Input, FashnVtonV1InputCategory, FashnVtonV1InputGarmentPhotoType, FashnVtonV1InputMode, FashnVtonV1InputModerationLevel, type Flux11ProUltraV1Input, type FluxKontextDatasetItemDto, type FluxKontextDevPrepareDatasetV1Request, type FluxKontextDevPrepareDatasetV1RequestMetadata, type FluxKontextDevPrepareDatasetV1Response, type FluxKontextDevPrepareDatasetV1ResponseInput, FluxKontextDevPrepareDatasetV1ResponseKind, type FluxKontextDevPrepareDatasetV1ResponseMetadata, FluxKontextDevPrepareDatasetV1ResponseStatus, type FluxKontextDevTrainV1Request, type FluxKontextDevTrainV1RequestMetadata, type FluxKontextDevTrainV1Response, type FluxKontextDevTrainV1ResponseInput, FluxKontextDevTrainV1ResponseKind, type FluxKontextDevTrainV1ResponseMetadata, FluxKontextDevTrainV1ResponseStatus, type FluxKontextDevV1Request, type FluxKontextDevV1RequestMetadata, type FluxKontextDevV1Response, type FluxKontextDevV1ResponseInput, FluxKontextDevV1ResponseKind, type FluxKontextDevV1ResponseMetadata, FluxKontextDevV1ResponseStatus, type FluxKontextPrepareDatasetInputDto, type FluxKontextPrepareDatasetOutputDto, FluxKontextPrepareDatasetOutputDtoKind, type FluxKontextPrepareDatasetResultDto, type FluxKontextPrepareDatasetV1Request, type FluxKontextPrepareDatasetV1RequestMetadata, type FluxKontextPrepareDatasetV1Response, type FluxKontextPrepareDatasetV1ResponseInput, FluxKontextPrepareDatasetV1ResponseKind, type FluxKontextPrepareDatasetV1ResponseMetadata, FluxKontextPrepareDatasetV1ResponseStatus, type FluxKontextTrainInputDto, type FluxKontextTrainOutputDto, FluxKontextTrainOutputDtoKind, type FluxKontextTrainResultDto, type FluxKontextTrainV1Request, type FluxKontextTrainV1RequestMetadata, type FluxKontextTrainV1Response, type FluxKontextTrainV1ResponseInput, FluxKontextTrainV1ResponseKind, type FluxKontextTrainV1ResponseMetadata, FluxKontextTrainV1ResponseStatus, type FluxKontextV1InputDto, type FluxKontextV1Request, type FluxKontextV1RequestMetadata, type FluxKontextV1Response, type FluxKontextV1ResponseInput, FluxKontextV1ResponseKind, type FluxKontextV1ResponseMetadata, FluxKontextV1ResponseStatus, 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 GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchToolDto, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoOutputItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, 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 GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GoogleNanoBananaV1Input, GoogleNanoBananaV1InputAspectRatio, GoogleNanoBananaV1InputOutputFormat, type GoogleNanoBananaV1Request, type GoogleNanoBananaV1RequestMetadata, type GoogleNanoBananaV1Response, type GoogleNanoBananaV1ResponseInput, GoogleNanoBananaV1ResponseKind, type GoogleNanoBananaV1ResponseMetadata, GoogleNanoBananaV1ResponseStatus, 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 HauteNaomiPrepareDatasetV1Request, type HauteNaomiPrepareDatasetV1RequestMetadata, type HauteNaomiPrepareDatasetV1Response, type HauteNaomiPrepareDatasetV1ResponseInput, HauteNaomiPrepareDatasetV1ResponseKind, type HauteNaomiPrepareDatasetV1ResponseMetadata, HauteNaomiPrepareDatasetV1ResponseStatus, type HauteNaomiTrainV1Request, type HauteNaomiTrainV1RequestMetadata, type HauteNaomiTrainV1Response, type HauteNaomiTrainV1ResponseInput, HauteNaomiTrainV1ResponseKind, type HauteNaomiTrainV1ResponseMetadata, HauteNaomiTrainV1ResponseStatus, 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 ImageCompositionJson, type ImageCompositionJsonElementsItem, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4FastV1Input, Imagen4FastV1InputAspectRatio, type Imagen4FastV1Request, type Imagen4FastV1RequestMetadata, type Imagen4FastV1Response, type Imagen4FastV1ResponseInput, Imagen4FastV1ResponseKind, type Imagen4FastV1ResponseMetadata, Imagen4FastV1ResponseStatus, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4StandardV1Input, Imagen4StandardV1InputAspectRatio, type Imagen4StandardV1Request, type Imagen4StandardV1RequestMetadata, type Imagen4StandardV1Response, type Imagen4StandardV1ResponseInput, Imagen4StandardV1ResponseKind, type Imagen4StandardV1ResponseMetadata, Imagen4StandardV1ResponseStatus, type Imagen4UltraV1Input, Imagen4UltraV1InputAspectRatio, type Imagen4UltraV1Request, type Imagen4UltraV1RequestMetadata, type Imagen4UltraV1Response, type Imagen4UltraV1ResponseInput, Imagen4UltraV1ResponseKind, type Imagen4UltraV1ResponseMetadata, Imagen4UltraV1ResponseStatus, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagesRenameV1Input, type ImagesRenameV1Request, type ImagesRenameV1RequestMetadata, type ImagesRenameV1Response, type ImagesRenameV1ResponseInput, ImagesRenameV1ResponseKind, type ImagesRenameV1ResponseMetadata, ImagesRenameV1ResponseStatus, 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 InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type JsonToImageV1Input, type JsonToImageV1Request, type JsonToImageV1RequestMetadata, type JsonToImageV1Response, type JsonToImageV1ResponseInput, JsonToImageV1ResponseKind, type JsonToImageV1ResponseMetadata, JsonToImageV1ResponseStatus, type JsonToVideoV1Input, type JsonToVideoV1Request, type JsonToVideoV1RequestMetadata, type JsonToVideoV1Response, type JsonToVideoV1ResponseInput, JsonToVideoV1ResponseKind, type JsonToVideoV1ResponseMetadata, JsonToVideoV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type KlingKolorsVtonV1Input, type KlingKolorsVtonV1Request, type KlingKolorsVtonV1RequestMetadata, type KlingKolorsVtonV1Response, type KlingKolorsVtonV1ResponseInput, KlingKolorsVtonV1ResponseKind, type KlingKolorsVtonV1ResponseMetadata, KlingKolorsVtonV1ResponseStatus, type KlingVideo25ProImageToVideoV1Input, KlingVideo25ProImageToVideoV1InputDuration, type KlingVideo25ProImageToVideoV1Request, type KlingVideo25ProImageToVideoV1RequestMetadata, type KlingVideo25ProImageToVideoV1Response, type KlingVideo25ProImageToVideoV1ResponseInput, KlingVideo25ProImageToVideoV1ResponseKind, type KlingVideo25ProImageToVideoV1ResponseMetadata, KlingVideo25ProImageToVideoV1ResponseStatus, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListChatsDto, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListLorasDto, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListSharedResourcesResponseDto, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, LoraControllerGetLorasV1ModelType, type LoraControllerGetLorasV1Params, type LoraDto, LoraDtoModelType, LoraDtoStatus, 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 NaomiHauteTrainInputDto, type NaomiHauteTrainOutputDto, NaomiHauteTrainOutputDtoKind, type NaomiHauteTrainResultDto, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NaomiPrepareDatasetInputDto, type NaomiPrepareDatasetOutputDto, NaomiPrepareDatasetOutputDtoKind, type NaomiPrepareDatasetResultDto, 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 OperationOutputNumber, OperationOutputNumberKind, 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 ReveRemixV1Input, ReveRemixV1InputAspectRatio, ReveRemixV1InputVersion, type ReveRemixV1Request, type ReveRemixV1RequestMetadata, type ReveRemixV1Response, type ReveRemixV1ResponseInput, ReveRemixV1ResponseKind, type ReveRemixV1ResponseMetadata, ReveRemixV1ResponseStatus, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SeedV1Input, type SeedV1InputSeed, type SeedV1InputSeedId, type SeedV1Request, type SeedV1RequestMetadata, type SeedV1Response, type SeedV1ResponseInput, SeedV1ResponseKind, type SeedV1ResponseMetadata, SeedV1ResponseStatus, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type Seedream4EditV1Input, type Seedream4EditV1Request, type Seedream4EditV1RequestMetadata, type Seedream4EditV1Response, type Seedream4EditV1ResponseInput, Seedream4EditV1ResponseKind, type Seedream4EditV1ResponseMetadata, Seedream4EditV1ResponseStatus, type Seedream4T2IV1Input, type Seedream4T2iV1Request, type Seedream4T2iV1RequestMetadata, type Seedream4T2iV1Response, type Seedream4T2iV1ResponseInput, Seedream4T2iV1ResponseKind, type Seedream4T2iV1ResponseMetadata, Seedream4T2iV1ResponseStatus, 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 ShareWithEveryoneControllerParamsDto, ShareWithEveryoneControllerParamsDtoAccess, type SharedResourceDto, SharedResourceDtoType, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsSwitchV1Input, type StringsSwitchV1Request, type StringsSwitchV1RequestMetadata, type StringsSwitchV1Response, type StringsSwitchV1ResponseInput, StringsSwitchV1ResponseKind, type StringsSwitchV1ResponseMetadata, StringsSwitchV1ResponseStatus, 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 UpdateWorkflowParamsDtoPipelineTemplate, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type VariableDtoValue, type Veo31FastV1Request, type Veo31FastV1RequestMetadata, type Veo31FastV1Response, type Veo31FastV1ResponseInput, Veo31FastV1ResponseKind, type Veo31FastV1ResponseMetadata, Veo31FastV1ResponseStatus, type Veo31Input, Veo31InputAspectRatio, Veo31InputDuration, Veo31InputResolution, type Veo31V1Request, type Veo31V1RequestMetadata, type Veo31V1Response, type Veo31V1ResponseInput, Veo31V1ResponseKind, type Veo31V1ResponseMetadata, Veo31V1ResponseStatus, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputAspectRatio, Veo3V1InputDuration, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoCompositionJson, type VideoCompositionJsonElementsItem, 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, type WorkflowDtoPipelineTemplate, type WorkflowStatisticsDto, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WorkflowsRunV1Input, type WorkflowsRunV1InputInput, type WorkflowsRunV1InputMetadata, type WorkflowsRunV1Output, type WorkflowsRunV1OutputOutput, type WorkflowsRunV1Request, type WorkflowsRunV1RequestMetadata, type WorkflowsRunV1Response, type WorkflowsRunV1ResponseInput, WorkflowsRunV1ResponseKind, type WorkflowsRunV1ResponseMetadata, WorkflowsRunV1ResponseStatus, type WsEventEntity, type WsEventMap, type Yolo11xPoseV1Input, type Yolo11xPoseV1Output, Yolo11xPoseV1OutputKind, type Yolo11xPoseV1Request, type Yolo11xPoseV1RequestMetadata, type Yolo11xPoseV1Response, type Yolo11xPoseV1ResponseInput, Yolo11xPoseV1ResponseKind, type Yolo11xPoseV1ResponseMetadata, Yolo11xPoseV1ResponseStatus, createDirectorySDK, createSDK, createTokenSigner };
|