@hautechai/sdk 2.22.3 → 2.23.1

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.ts CHANGED
@@ -6967,6 +6967,9 @@ declare const GrantAccessControllerParamsAccess: {
6967
6967
  readonly writer: "writer";
6968
6968
  readonly reader: "reader";
6969
6969
  readonly member: "member";
6970
+ readonly public_execute: "public_execute";
6971
+ readonly public_read: "public_read";
6972
+ readonly public_write: "public_write";
6970
6973
  readonly can_assign_members: "can_assign_members";
6971
6974
  readonly can_assign_maintainers: "can_assign_maintainers";
6972
6975
  readonly can_assign_owners: "can_assign_owners";
@@ -6978,6 +6981,7 @@ declare const GrantAccessControllerParamsAccess: {
6978
6981
  readonly can_add_items: "can_add_items";
6979
6982
  readonly can_remove_items: "can_remove_items";
6980
6983
  readonly can_list: "can_list";
6984
+ readonly can_execute: "can_execute";
6981
6985
  readonly parent: "parent";
6982
6986
  };
6983
6987
 
@@ -9353,6 +9357,9 @@ declare const ListAccessControllerGrantsDtoAccess: {
9353
9357
  readonly writer: "writer";
9354
9358
  readonly reader: "reader";
9355
9359
  readonly member: "member";
9360
+ readonly public_execute: "public_execute";
9361
+ readonly public_read: "public_read";
9362
+ readonly public_write: "public_write";
9356
9363
  readonly can_assign_members: "can_assign_members";
9357
9364
  readonly can_assign_maintainers: "can_assign_maintainers";
9358
9365
  readonly can_assign_owners: "can_assign_owners";
@@ -9364,6 +9371,7 @@ declare const ListAccessControllerGrantsDtoAccess: {
9364
9371
  readonly can_add_items: "can_add_items";
9365
9372
  readonly can_remove_items: "can_remove_items";
9366
9373
  readonly can_list: "can_list";
9374
+ readonly can_execute: "can_execute";
9367
9375
  readonly parent: "parent";
9368
9376
  };
9369
9377
 
@@ -10149,6 +10157,8 @@ interface WorkflowDto {
10149
10157
  customExecutionPrice?: string | null;
10150
10158
  createdAt: string;
10151
10159
  updatedAt: string;
10160
+ /** Indicates whether the workflow is shared publicly */
10161
+ isPublic: boolean;
10152
10162
  }
10153
10163
 
10154
10164
  /**
@@ -10467,6 +10477,9 @@ declare const ModifyAccessParamsDtoAccess: {
10467
10477
  readonly writer: "writer";
10468
10478
  readonly reader: "reader";
10469
10479
  readonly member: "member";
10480
+ readonly public_execute: "public_execute";
10481
+ readonly public_read: "public_read";
10482
+ readonly public_write: "public_write";
10470
10483
  readonly can_assign_members: "can_assign_members";
10471
10484
  readonly can_assign_maintainers: "can_assign_maintainers";
10472
10485
  readonly can_assign_owners: "can_assign_owners";
@@ -10478,6 +10491,7 @@ declare const ModifyAccessParamsDtoAccess: {
10478
10491
  readonly can_add_items: "can_add_items";
10479
10492
  readonly can_remove_items: "can_remove_items";
10480
10493
  readonly can_list: "can_list";
10494
+ readonly can_execute: "can_execute";
10481
10495
  readonly parent: "parent";
10482
10496
  };
10483
10497
 
@@ -11567,6 +11581,101 @@ type PosesControllerListPosesV1Params = {
11567
11581
  cursor?: string;
11568
11582
  };
11569
11583
 
11584
+ /**
11585
+ * Generated by orval v7.10.0 🍺
11586
+ * Do not edit manually.
11587
+ * Hautech API
11588
+ * OpenAPI spec version: 1.0
11589
+ */
11590
+ interface PublicWorkflowAccessDto {
11591
+ canExecute: boolean;
11592
+ canView: boolean;
11593
+ canEdit: boolean;
11594
+ }
11595
+
11596
+ /**
11597
+ * Generated by orval v7.10.0 🍺
11598
+ * Do not edit manually.
11599
+ * Hautech API
11600
+ * OpenAPI spec version: 1.0
11601
+ */
11602
+ type PublicWorkflowDtoMetadata = {
11603
+ [key: string]: unknown;
11604
+ };
11605
+
11606
+ /**
11607
+ * Generated by orval v7.10.0 🍺
11608
+ * Do not edit manually.
11609
+ * Hautech API
11610
+ * OpenAPI spec version: 1.0
11611
+ */
11612
+ type PublicWorkflowDtoData = {
11613
+ [key: string]: unknown;
11614
+ };
11615
+
11616
+ /**
11617
+ * Generated by orval v7.10.0 🍺
11618
+ * Do not edit manually.
11619
+ * Hautech API
11620
+ * OpenAPI spec version: 1.0
11621
+ */
11622
+ type PublicWorkflowDtoPipelineTemplate = {
11623
+ [key: string]: unknown;
11624
+ };
11625
+
11626
+ /**
11627
+ * Generated by orval v7.10.0 🍺
11628
+ * Do not edit manually.
11629
+ * Hautech API
11630
+ * OpenAPI spec version: 1.0
11631
+ */
11632
+
11633
+ interface PublicWorkflowDto {
11634
+ id: string;
11635
+ creatorId: string;
11636
+ version: string;
11637
+ metadata: PublicWorkflowDtoMetadata;
11638
+ /** @nullable */
11639
+ customExecutionPrice?: string | null;
11640
+ createdAt: string;
11641
+ updatedAt: string;
11642
+ /** Indicates whether the workflow was marked as public */
11643
+ isPublic: boolean;
11644
+ data?: PublicWorkflowDtoData;
11645
+ pipelineTemplate?: PublicWorkflowDtoPipelineTemplate;
11646
+ publicAccess: PublicWorkflowAccessDto;
11647
+ }
11648
+
11649
+ /**
11650
+ * Generated by orval v7.10.0 🍺
11651
+ * Do not edit manually.
11652
+ * Hautech API
11653
+ * OpenAPI spec version: 1.0
11654
+ */
11655
+ type PublicWorkflowSummaryDtoMetadata = {
11656
+ [key: string]: unknown;
11657
+ };
11658
+
11659
+ /**
11660
+ * Generated by orval v7.10.0 🍺
11661
+ * Do not edit manually.
11662
+ * Hautech API
11663
+ * OpenAPI spec version: 1.0
11664
+ */
11665
+
11666
+ interface PublicWorkflowSummaryDto {
11667
+ id: string;
11668
+ creatorId: string;
11669
+ version: string;
11670
+ metadata: PublicWorkflowSummaryDtoMetadata;
11671
+ /** @nullable */
11672
+ customExecutionPrice?: string | null;
11673
+ createdAt: string;
11674
+ updatedAt: string;
11675
+ /** Indicates whether the workflow was marked as public */
11676
+ isPublic: boolean;
11677
+ }
11678
+
11570
11679
  /**
11571
11680
  * Generated by orval v7.10.0 🍺
11572
11681
  * Do not edit manually.
@@ -11915,6 +12024,9 @@ declare const RevokeAccessControllerParamsDtoAccess: {
11915
12024
  readonly writer: "writer";
11916
12025
  readonly reader: "reader";
11917
12026
  readonly member: "member";
12027
+ readonly public_execute: "public_execute";
12028
+ readonly public_read: "public_read";
12029
+ readonly public_write: "public_write";
11918
12030
  readonly can_assign_members: "can_assign_members";
11919
12031
  readonly can_assign_maintainers: "can_assign_maintainers";
11920
12032
  readonly can_assign_owners: "can_assign_owners";
@@ -11926,6 +12038,7 @@ declare const RevokeAccessControllerParamsDtoAccess: {
11926
12038
  readonly can_add_items: "can_add_items";
11927
12039
  readonly can_remove_items: "can_remove_items";
11928
12040
  readonly can_list: "can_list";
12041
+ readonly can_execute: "can_execute";
11929
12042
  readonly parent: "parent";
11930
12043
  };
11931
12044
 
@@ -12786,23 +12899,9 @@ interface SetPosePreviewDto {
12786
12899
  */
12787
12900
  type ShareWithEveryoneControllerParamsDtoAccess = typeof ShareWithEveryoneControllerParamsDtoAccess[keyof typeof ShareWithEveryoneControllerParamsDtoAccess];
12788
12901
  declare const ShareWithEveryoneControllerParamsDtoAccess: {
12789
- readonly owner: "owner";
12790
- readonly maintainer: "maintainer";
12791
- readonly writer: "writer";
12792
- readonly reader: "reader";
12793
- readonly member: "member";
12794
- readonly can_assign_members: "can_assign_members";
12795
- readonly can_assign_maintainers: "can_assign_maintainers";
12796
- readonly can_assign_owners: "can_assign_owners";
12797
- readonly can_view: "can_view";
12798
- readonly can_write: "can_write";
12799
- readonly can_edit: "can_edit";
12800
- readonly can_delete: "can_delete";
12801
- readonly can_change_access: "can_change_access";
12802
- readonly can_add_items: "can_add_items";
12803
- readonly can_remove_items: "can_remove_items";
12804
- readonly can_list: "can_list";
12805
- readonly parent: "parent";
12902
+ readonly public_execute: "public_execute";
12903
+ readonly public_read: "public_read";
12904
+ readonly public_write: "public_write";
12806
12905
  };
12807
12906
 
12808
12907
  /**
@@ -12927,6 +13026,212 @@ interface StorageRecordsResultDto {
12927
13026
  key: string;
12928
13027
  }
12929
13028
 
13029
+ /**
13030
+ * Generated by orval v7.10.0 🍺
13031
+ * Do not edit manually.
13032
+ * Hautech API
13033
+ * OpenAPI spec version: 1.0
13034
+ */
13035
+ interface StringsLengthV1Input {
13036
+ /** String to measure the length of */
13037
+ text: string;
13038
+ }
13039
+
13040
+ /**
13041
+ * Generated by orval v7.10.0 🍺
13042
+ * Do not edit manually.
13043
+ * Hautech API
13044
+ * OpenAPI spec version: 1.0
13045
+ */
13046
+ type StringsLengthV1RequestMetadata = {
13047
+ [key: string]: unknown;
13048
+ };
13049
+
13050
+ /**
13051
+ * Generated by orval v7.10.0 🍺
13052
+ * Do not edit manually.
13053
+ * Hautech API
13054
+ * OpenAPI spec version: 1.0
13055
+ */
13056
+
13057
+ interface StringsLengthV1Request {
13058
+ input: StringsLengthV1Input;
13059
+ metadata?: StringsLengthV1RequestMetadata;
13060
+ }
13061
+
13062
+ /**
13063
+ * Generated by orval v7.10.0 🍺
13064
+ * Do not edit manually.
13065
+ * Hautech API
13066
+ * OpenAPI spec version: 1.0
13067
+ */
13068
+ type StringsLengthV1ResponseKind = typeof StringsLengthV1ResponseKind[keyof typeof StringsLengthV1ResponseKind];
13069
+ declare const StringsLengthV1ResponseKind: {
13070
+ readonly operation: "operation";
13071
+ };
13072
+
13073
+ /**
13074
+ * Generated by orval v7.10.0 🍺
13075
+ * Do not edit manually.
13076
+ * Hautech API
13077
+ * OpenAPI spec version: 1.0
13078
+ */
13079
+ type StringsLengthV1ResponseInput = {
13080
+ [key: string]: unknown;
13081
+ };
13082
+
13083
+ /**
13084
+ * Generated by orval v7.10.0 🍺
13085
+ * Do not edit manually.
13086
+ * Hautech API
13087
+ * OpenAPI spec version: 1.0
13088
+ */
13089
+ type StringsLengthV1ResponseStatus = typeof StringsLengthV1ResponseStatus[keyof typeof StringsLengthV1ResponseStatus];
13090
+ declare const StringsLengthV1ResponseStatus: {
13091
+ readonly pending: "pending";
13092
+ readonly finished: "finished";
13093
+ readonly failed: "failed";
13094
+ };
13095
+
13096
+ /**
13097
+ * Generated by orval v7.10.0 🍺
13098
+ * Do not edit manually.
13099
+ * Hautech API
13100
+ * OpenAPI spec version: 1.0
13101
+ */
13102
+ type StringsLengthV1ResponseMetadata = {
13103
+ [key: string]: unknown;
13104
+ };
13105
+
13106
+ /**
13107
+ * Generated by orval v7.10.0 🍺
13108
+ * Do not edit manually.
13109
+ * Hautech API
13110
+ * OpenAPI spec version: 1.0
13111
+ */
13112
+
13113
+ interface StringsLengthV1Response {
13114
+ kind: StringsLengthV1ResponseKind;
13115
+ output: OperationOutputNumber;
13116
+ input: StringsLengthV1ResponseInput;
13117
+ status: StringsLengthV1ResponseStatus;
13118
+ type: string;
13119
+ price?: string;
13120
+ estimatedPrice?: string;
13121
+ errorMessage?: string;
13122
+ errorCode?: string;
13123
+ id: string;
13124
+ creatorId: string;
13125
+ metadata: StringsLengthV1ResponseMetadata;
13126
+ createdAt: string;
13127
+ updatedAt: string;
13128
+ }
13129
+
13130
+ /**
13131
+ * Generated by orval v7.10.0 🍺
13132
+ * Do not edit manually.
13133
+ * Hautech API
13134
+ * OpenAPI spec version: 1.0
13135
+ */
13136
+ interface StringsSliceV1Input {
13137
+ /** Source string to slice */
13138
+ text: string;
13139
+ /** Start index (inclusive). Negative values count from the end. */
13140
+ start?: number;
13141
+ /** End index (exclusive). Negative values count from the end. */
13142
+ end?: number;
13143
+ }
13144
+
13145
+ /**
13146
+ * Generated by orval v7.10.0 🍺
13147
+ * Do not edit manually.
13148
+ * Hautech API
13149
+ * OpenAPI spec version: 1.0
13150
+ */
13151
+ type StringsSliceV1RequestMetadata = {
13152
+ [key: string]: unknown;
13153
+ };
13154
+
13155
+ /**
13156
+ * Generated by orval v7.10.0 🍺
13157
+ * Do not edit manually.
13158
+ * Hautech API
13159
+ * OpenAPI spec version: 1.0
13160
+ */
13161
+
13162
+ interface StringsSliceV1Request {
13163
+ input: StringsSliceV1Input;
13164
+ metadata?: StringsSliceV1RequestMetadata;
13165
+ }
13166
+
13167
+ /**
13168
+ * Generated by orval v7.10.0 🍺
13169
+ * Do not edit manually.
13170
+ * Hautech API
13171
+ * OpenAPI spec version: 1.0
13172
+ */
13173
+ type StringsSliceV1ResponseKind = typeof StringsSliceV1ResponseKind[keyof typeof StringsSliceV1ResponseKind];
13174
+ declare const StringsSliceV1ResponseKind: {
13175
+ readonly operation: "operation";
13176
+ };
13177
+
13178
+ /**
13179
+ * Generated by orval v7.10.0 🍺
13180
+ * Do not edit manually.
13181
+ * Hautech API
13182
+ * OpenAPI spec version: 1.0
13183
+ */
13184
+ type StringsSliceV1ResponseInput = {
13185
+ [key: string]: unknown;
13186
+ };
13187
+
13188
+ /**
13189
+ * Generated by orval v7.10.0 🍺
13190
+ * Do not edit manually.
13191
+ * Hautech API
13192
+ * OpenAPI spec version: 1.0
13193
+ */
13194
+ type StringsSliceV1ResponseStatus = typeof StringsSliceV1ResponseStatus[keyof typeof StringsSliceV1ResponseStatus];
13195
+ declare const StringsSliceV1ResponseStatus: {
13196
+ readonly pending: "pending";
13197
+ readonly finished: "finished";
13198
+ readonly failed: "failed";
13199
+ };
13200
+
13201
+ /**
13202
+ * Generated by orval v7.10.0 🍺
13203
+ * Do not edit manually.
13204
+ * Hautech API
13205
+ * OpenAPI spec version: 1.0
13206
+ */
13207
+ type StringsSliceV1ResponseMetadata = {
13208
+ [key: string]: unknown;
13209
+ };
13210
+
13211
+ /**
13212
+ * Generated by orval v7.10.0 🍺
13213
+ * Do not edit manually.
13214
+ * Hautech API
13215
+ * OpenAPI spec version: 1.0
13216
+ */
13217
+
13218
+ interface StringsSliceV1Response {
13219
+ kind: StringsSliceV1ResponseKind;
13220
+ output: OperationOutputTextSingle;
13221
+ input: StringsSliceV1ResponseInput;
13222
+ status: StringsSliceV1ResponseStatus;
13223
+ type: string;
13224
+ price?: string;
13225
+ estimatedPrice?: string;
13226
+ errorMessage?: string;
13227
+ errorCode?: string;
13228
+ id: string;
13229
+ creatorId: string;
13230
+ metadata: StringsSliceV1ResponseMetadata;
13231
+ createdAt: string;
13232
+ updatedAt: string;
13233
+ }
13234
+
12930
13235
  /**
12931
13236
  * Generated by orval v7.10.0 🍺
12932
13237
  * Do not edit manually.
@@ -14711,6 +15016,10 @@ declare const apiDefinitions: {
14711
15016
  delete: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
14712
15017
  getSchema: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
14713
15018
  run: (id: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<RunWorkflowResponseDto, any>>;
15019
+ listPublic: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<PublicWorkflowSummaryDto[], any>>;
15020
+ getPublic: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<PublicWorkflowDto, any>>;
15021
+ shareWithEveryone: (id: string, shareWithEveryoneControllerParamsDto: ShareWithEveryoneControllerParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<WorkflowDto, any>>;
15022
+ getStatistics: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<WorkflowStatisticsDto, any>>;
14714
15023
  }>;
14715
15024
  storage: ApiDefinitionTree<{
14716
15025
  create: (createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StorageEntity, any>>;
@@ -14952,6 +15261,8 @@ declare const apiDefinitions: {
14952
15261
  detach: (id: string, detachAccessControllerParamsDto: DetachAccessControllerParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
14953
15262
  grant: (id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
14954
15263
  revoke: (id: string, revokeAccessControllerParamsDto: RevokeAccessControllerParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
15264
+ shareWithEveryone: (id: string, shareWithEveryoneControllerParamsDto: ShareWithEveryoneControllerParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
15265
+ revokeFromEveryone: (id: string, shareWithEveryoneControllerParamsDto: ShareWithEveryoneControllerParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
14955
15266
  list: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListAccessControllerDto, any>>;
14956
15267
  listShared: (params?: AccessControllerListSharedV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListSharedResourcesResponseDto, any>>;
14957
15268
  }>;
@@ -15070,6 +15381,12 @@ declare const pipelineDefinitions: {
15070
15381
  switch: {
15071
15382
  v1: (stringsSwitchV1Request: StringsSwitchV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StringsSwitchV1Response, any>>;
15072
15383
  };
15384
+ slice: {
15385
+ v1: (stringsSliceV1Request: StringsSliceV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StringsSliceV1Response, any>>;
15386
+ };
15387
+ length: {
15388
+ v1: (stringsLengthV1Request: StringsLengthV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<StringsLengthV1Response, any>>;
15389
+ };
15073
15390
  };
15074
15391
  imagine: {
15075
15392
  kate: {
@@ -15477,4 +15794,4 @@ declare const createTokenSigner: (options: {
15477
15794
  }) => Promise<string>;
15478
15795
  };
15479
15796
 
15480
- 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 ImagesDownscaleV1Input, type ImagesDownscaleV1Request, type ImagesDownscaleV1RequestMetadata, type ImagesDownscaleV1Response, type ImagesDownscaleV1ResponseInput, ImagesDownscaleV1ResponseKind, type ImagesDownscaleV1ResponseMetadata, ImagesDownscaleV1ResponseStatus, 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, Seedream4EditV1InputOptimizePromptOptions, 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 };
15797
+ 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 ImagesDownscaleV1Input, type ImagesDownscaleV1Request, type ImagesDownscaleV1RequestMetadata, type ImagesDownscaleV1Response, type ImagesDownscaleV1ResponseInput, ImagesDownscaleV1ResponseKind, type ImagesDownscaleV1ResponseMetadata, ImagesDownscaleV1ResponseStatus, 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 PublicWorkflowAccessDto, type PublicWorkflowDto, type PublicWorkflowDtoData, type PublicWorkflowDtoMetadata, type PublicWorkflowDtoPipelineTemplate, type PublicWorkflowSummaryDto, type PublicWorkflowSummaryDtoMetadata, 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, Seedream4EditV1InputOptimizePromptOptions, 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 StringsLengthV1Input, type StringsLengthV1Request, type StringsLengthV1RequestMetadata, type StringsLengthV1Response, type StringsLengthV1ResponseInput, StringsLengthV1ResponseKind, type StringsLengthV1ResponseMetadata, StringsLengthV1ResponseStatus, type StringsSliceV1Input, type StringsSliceV1Request, type StringsSliceV1RequestMetadata, type StringsSliceV1Response, type StringsSliceV1ResponseInput, StringsSliceV1ResponseKind, type StringsSliceV1ResponseMetadata, StringsSliceV1ResponseStatus, 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 };