@mittwald/api-client 4.182.0 → 4.184.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.
@@ -14884,6 +14884,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14884
14884
  [x: string]: unknown;
14885
14885
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
14886
14886
  [x: string]: unknown;
14887
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
14888
+ [x: string]: unknown;
14887
14889
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
14888
14890
  [x: string]: unknown;
14889
14891
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -14921,6 +14923,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14921
14923
  [x: string]: unknown;
14922
14924
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
14923
14925
  [x: string]: unknown;
14926
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
14927
+ [x: string]: unknown;
14924
14928
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
14925
14929
  [x: string]: unknown;
14926
14930
  }, 429, "application/json">>>;
@@ -22398,6 +22402,200 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22398
22402
  [x: string]: unknown;
22399
22403
  }, 429, "application/json">>>;
22400
22404
  };
22405
+ /** API endpoints that are not related to any specific API domain */
22406
+ readonly misc: {
22407
+ /** Get a list of currently active llm models. */
22408
+ getLlmModelsExperimental: (request?: {
22409
+ headers?: {
22410
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22411
+ } | undefined;
22412
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22413
+ headers?: Partial<{
22414
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22415
+ }>;
22416
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22417
+ [x: string]: unknown;
22418
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22419
+ [x: string]: unknown;
22420
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22421
+ [x: string]: unknown;
22422
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22423
+ [x: string]: unknown;
22424
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22425
+ headers?: Partial<{
22426
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22427
+ }>;
22428
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22429
+ [x: string]: unknown;
22430
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22431
+ [x: string]: unknown;
22432
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22433
+ [x: string]: unknown;
22434
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22435
+ [x: string]: unknown;
22436
+ }, 429, "application/json">>>;
22437
+ /** Obtain a service token. */
22438
+ servicetokenAuthenticateService: (request: {
22439
+ data: {
22440
+ secretAccessKey: string;
22441
+ };
22442
+ accessKeyId: string;
22443
+ headers?: {
22444
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22445
+ "x-access-token"?: string | undefined;
22446
+ } | undefined;
22447
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22448
+ data: {
22449
+ secretAccessKey: string;
22450
+ };
22451
+ } & {
22452
+ pathParameters: {
22453
+ accessKeyId: string;
22454
+ };
22455
+ } & {
22456
+ headers?: Partial<{
22457
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22458
+ }>;
22459
+ } & {
22460
+ headers: {
22461
+ "x-access-token"?: string | undefined;
22462
+ } & Partial<{
22463
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22464
+ }>;
22465
+ }, import("@mittwald/api-client-commons").Response<{
22466
+ accessToken: {
22467
+ id: string;
22468
+ jwtClaims: {
22469
+ exp: string;
22470
+ iat: string;
22471
+ iss: string;
22472
+ sub: string;
22473
+ };
22474
+ publicToken: string;
22475
+ };
22476
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22477
+ [x: string]: unknown;
22478
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22479
+ data: {
22480
+ secretAccessKey: string;
22481
+ };
22482
+ } & {
22483
+ pathParameters: {
22484
+ accessKeyId: string;
22485
+ };
22486
+ } & {
22487
+ headers?: Partial<{
22488
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22489
+ }>;
22490
+ } & {
22491
+ headers: {
22492
+ "x-access-token"?: string | undefined;
22493
+ } & Partial<{
22494
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22495
+ }>;
22496
+ }, import("@mittwald/api-client-commons").Response<{
22497
+ accessToken: {
22498
+ id: string;
22499
+ jwtClaims: {
22500
+ exp: string;
22501
+ iat: string;
22502
+ iss: string;
22503
+ sub: string;
22504
+ };
22505
+ publicToken: string;
22506
+ };
22507
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22508
+ [x: string]: unknown;
22509
+ }, 429, "application/json">>>;
22510
+ /** Check if an address exists. */
22511
+ verificationVerifyAddress: (request: {
22512
+ data: {
22513
+ city: string;
22514
+ country: string;
22515
+ street: string;
22516
+ zip: string;
22517
+ };
22518
+ headers?: {
22519
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22520
+ } | undefined;
22521
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22522
+ data: {
22523
+ city: string;
22524
+ country: string;
22525
+ street: string;
22526
+ zip: string;
22527
+ };
22528
+ } & {
22529
+ headers?: Partial<{
22530
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22531
+ }>;
22532
+ }, import("@mittwald/api-client-commons").Response<{
22533
+ exists: boolean;
22534
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22535
+ [x: string]: unknown;
22536
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22537
+ data: {
22538
+ city: string;
22539
+ country: string;
22540
+ street: string;
22541
+ zip: string;
22542
+ };
22543
+ } & {
22544
+ headers?: Partial<{
22545
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22546
+ }>;
22547
+ }, import("@mittwald/api-client-commons").Response<{
22548
+ exists: boolean;
22549
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22550
+ [x: string]: unknown;
22551
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
22552
+ /** Check if a company exists. */
22553
+ verificationVerifyCompany: (request: {
22554
+ data: {
22555
+ name: string;
22556
+ };
22557
+ headers?: {
22558
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22559
+ "x-access-token"?: string | undefined;
22560
+ } | undefined;
22561
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22562
+ data: {
22563
+ name: string;
22564
+ };
22565
+ } & {
22566
+ headers?: Partial<{
22567
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22568
+ }>;
22569
+ } & {
22570
+ headers: {
22571
+ "x-access-token"?: string | undefined;
22572
+ } & Partial<{
22573
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22574
+ }>;
22575
+ }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
22576
+ exists: boolean;
22577
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
22578
+ [x: string]: unknown;
22579
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22580
+ data: {
22581
+ name: string;
22582
+ };
22583
+ } & {
22584
+ headers?: Partial<{
22585
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22586
+ }>;
22587
+ } & {
22588
+ headers: {
22589
+ "x-access-token"?: string | undefined;
22590
+ } & Partial<{
22591
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22592
+ }>;
22593
+ }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
22594
+ exists: boolean;
22595
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
22596
+ [x: string]: unknown;
22597
+ }, 429, "application/json">>>;
22598
+ };
22401
22599
  /** The page insights API allows you to get page insights information. */
22402
22600
  readonly pageInsights: {
22403
22601
  /** Get detailed performance data for a given domain and path. */
@@ -22761,17 +22959,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22761
22959
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
22762
22960
  [x: string]: unknown;
22763
22961
  }, 429, "application/json">>>;
22764
- /** List Invites belonging to a Project. */
22765
- listInvitesForProject: (request: {
22962
+ /** Get a list of already created llm licences. */
22963
+ getLlmLicencesExperimental: (request: {
22766
22964
  projectId: string;
22767
22965
  headers?: {
22768
22966
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22769
- "x-access-token"?: string | undefined;
22770
- } | undefined;
22771
- queryParameters?: {
22772
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22773
- limit?: number | undefined;
22774
- skip?: number | undefined;
22775
22967
  } | undefined;
22776
22968
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22777
22969
  headers?: Partial<{
@@ -22781,20 +22973,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22781
22973
  pathParameters: {
22782
22974
  projectId: string;
22783
22975
  };
22784
- } & {
22785
- queryParameters: {
22786
- limit?: number | undefined;
22787
- skip?: number | undefined;
22788
- } & Partial<{
22789
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22790
- }>;
22791
- } & {
22792
- headers: {
22793
- "x-access-token"?: string | undefined;
22794
- } & Partial<{
22795
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22796
- }>;
22797
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22976
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22977
+ [x: string]: unknown;
22978
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22979
+ [x: string]: unknown;
22980
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22798
22981
  [x: string]: unknown;
22799
22982
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22800
22983
  [x: string]: unknown;
@@ -22806,43 +22989,29 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22806
22989
  pathParameters: {
22807
22990
  projectId: string;
22808
22991
  };
22809
- } & {
22810
- queryParameters: {
22811
- limit?: number | undefined;
22812
- skip?: number | undefined;
22813
- } & Partial<{
22814
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22815
- }>;
22816
- } & {
22817
- headers: {
22818
- "x-access-token"?: string | undefined;
22819
- } & Partial<{
22820
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22821
- }>;
22822
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22992
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22993
+ [x: string]: unknown;
22994
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22995
+ [x: string]: unknown;
22996
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22823
22997
  [x: string]: unknown;
22824
22998
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22825
22999
  [x: string]: unknown;
22826
23000
  }, 429, "application/json">>>;
22827
- /** Create a ProjectInvite. */
22828
- createProjectInvite: (request: {
23001
+ /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
23002
+ createLlmBetaLicenceExperimental: (request: {
22829
23003
  data: {
22830
- mailAddress: string;
22831
- role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
22832
- membershipExpiresAt?: string | undefined;
22833
- message?: string | undefined;
23004
+ name: string;
23005
+ createWebuiContainer?: boolean | undefined;
22834
23006
  };
22835
23007
  projectId: string;
22836
23008
  headers?: {
22837
23009
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22838
- "x-access-token"?: string | undefined;
22839
23010
  } | undefined;
22840
23011
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22841
23012
  data: {
22842
- mailAddress: string;
22843
- membershipExpiresAt?: string | undefined;
22844
- message?: string | undefined;
22845
- role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
23013
+ createWebuiContainer?: boolean | undefined;
23014
+ name: string;
22846
23015
  };
22847
23016
  } & {
22848
23017
  pathParameters: {
@@ -22852,11 +23021,158 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22852
23021
  headers?: Partial<{
22853
23022
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22854
23023
  }>;
22855
- } & {
22856
- headers: {
22857
- "x-access-token"?: string | undefined;
22858
- } & Partial<{
22859
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23024
+ }, import("@mittwald/api-client-commons").Response<{
23025
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23026
+ customerId?: string | undefined;
23027
+ licenceId: string;
23028
+ licenceKey: string;
23029
+ models: string[];
23030
+ name: string;
23031
+ projectId?: string | undefined;
23032
+ rateLimit: number;
23033
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
23034
+ [x: string]: unknown;
23035
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23036
+ [x: string]: unknown;
23037
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23038
+ [x: string]: unknown;
23039
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23040
+ [x: string]: unknown;
23041
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23042
+ [x: string]: unknown;
23043
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
23044
+ [x: string]: unknown;
23045
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23046
+ data: {
23047
+ createWebuiContainer?: boolean | undefined;
23048
+ name: string;
23049
+ };
23050
+ } & {
23051
+ pathParameters: {
23052
+ projectId: string;
23053
+ };
23054
+ } & {
23055
+ headers?: Partial<{
23056
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23057
+ }>;
23058
+ }, import("@mittwald/api-client-commons").Response<{
23059
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23060
+ customerId?: string | undefined;
23061
+ licenceId: string;
23062
+ licenceKey: string;
23063
+ models: string[];
23064
+ name: string;
23065
+ projectId?: string | undefined;
23066
+ rateLimit: number;
23067
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
23068
+ [x: string]: unknown;
23069
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23070
+ [x: string]: unknown;
23071
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23072
+ [x: string]: unknown;
23073
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23074
+ [x: string]: unknown;
23075
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23076
+ [x: string]: unknown;
23077
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
23078
+ [x: string]: unknown;
23079
+ }, 429, "application/json">>>;
23080
+ /** List Invites belonging to a Project. */
23081
+ listInvitesForProject: (request: {
23082
+ projectId: string;
23083
+ headers?: {
23084
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23085
+ "x-access-token"?: string | undefined;
23086
+ } | undefined;
23087
+ queryParameters?: {
23088
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23089
+ limit?: number | undefined;
23090
+ skip?: number | undefined;
23091
+ } | undefined;
23092
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23093
+ headers?: Partial<{
23094
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23095
+ }>;
23096
+ } & {
23097
+ pathParameters: {
23098
+ projectId: string;
23099
+ };
23100
+ } & {
23101
+ queryParameters: {
23102
+ limit?: number | undefined;
23103
+ skip?: number | undefined;
23104
+ } & Partial<{
23105
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23106
+ }>;
23107
+ } & {
23108
+ headers: {
23109
+ "x-access-token"?: string | undefined;
23110
+ } & Partial<{
23111
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23112
+ }>;
23113
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23114
+ [x: string]: unknown;
23115
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23116
+ [x: string]: unknown;
23117
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23118
+ headers?: Partial<{
23119
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23120
+ }>;
23121
+ } & {
23122
+ pathParameters: {
23123
+ projectId: string;
23124
+ };
23125
+ } & {
23126
+ queryParameters: {
23127
+ limit?: number | undefined;
23128
+ skip?: number | undefined;
23129
+ } & Partial<{
23130
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23131
+ }>;
23132
+ } & {
23133
+ headers: {
23134
+ "x-access-token"?: string | undefined;
23135
+ } & Partial<{
23136
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23137
+ }>;
23138
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23139
+ [x: string]: unknown;
23140
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23141
+ [x: string]: unknown;
23142
+ }, 429, "application/json">>>;
23143
+ /** Create a ProjectInvite. */
23144
+ createProjectInvite: (request: {
23145
+ data: {
23146
+ mailAddress: string;
23147
+ role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
23148
+ membershipExpiresAt?: string | undefined;
23149
+ message?: string | undefined;
23150
+ };
23151
+ projectId: string;
23152
+ headers?: {
23153
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23154
+ "x-access-token"?: string | undefined;
23155
+ } | undefined;
23156
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23157
+ data: {
23158
+ mailAddress: string;
23159
+ membershipExpiresAt?: string | undefined;
23160
+ message?: string | undefined;
23161
+ role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
23162
+ };
23163
+ } & {
23164
+ pathParameters: {
23165
+ projectId: string;
23166
+ };
23167
+ } & {
23168
+ headers?: Partial<{
23169
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23170
+ }>;
23171
+ } & {
23172
+ headers: {
23173
+ "x-access-token"?: string | undefined;
23174
+ } & Partial<{
23175
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22860
23176
  }>;
22861
23177
  }, import("@mittwald/api-client-commons").Response<{
22862
23178
  avatarRefId?: string | undefined;
@@ -23651,6 +23967,148 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23651
23967
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23652
23968
  [x: string]: unknown;
23653
23969
  }, 429, "application/json">>>;
23970
+ /** Get a licence of a project. */
23971
+ getLlmLicenceExperimental: (request: {
23972
+ projectId: string;
23973
+ licenceId: string;
23974
+ headers?: {
23975
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23976
+ } | undefined;
23977
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23978
+ headers?: Partial<{
23979
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23980
+ }>;
23981
+ } & {
23982
+ pathParameters: {
23983
+ projectId: string;
23984
+ licenceId: string;
23985
+ };
23986
+ }, import("@mittwald/api-client-commons").Response<{
23987
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23988
+ customerId?: string | undefined;
23989
+ licenceId: string;
23990
+ licenceKey: string;
23991
+ models: string[];
23992
+ name: string;
23993
+ projectId?: string | undefined;
23994
+ rateLimit: number;
23995
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23996
+ [x: string]: unknown;
23997
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23998
+ [x: string]: unknown;
23999
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24000
+ [x: string]: unknown;
24001
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24002
+ [x: string]: unknown;
24003
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24004
+ headers?: Partial<{
24005
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24006
+ }>;
24007
+ } & {
24008
+ pathParameters: {
24009
+ projectId: string;
24010
+ licenceId: string;
24011
+ };
24012
+ }, import("@mittwald/api-client-commons").Response<{
24013
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24014
+ customerId?: string | undefined;
24015
+ licenceId: string;
24016
+ licenceKey: string;
24017
+ models: string[];
24018
+ name: string;
24019
+ projectId?: string | undefined;
24020
+ rateLimit: number;
24021
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24022
+ [x: string]: unknown;
24023
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24024
+ [x: string]: unknown;
24025
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24026
+ [x: string]: unknown;
24027
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24028
+ [x: string]: unknown;
24029
+ }, 429, "application/json">>>;
24030
+ /** Update a llm Licence for a project. */
24031
+ updateLlmLicenceExperimental: (request: {
24032
+ projectId: string;
24033
+ licenceId: string;
24034
+ data?: {
24035
+ createWebuiContainer?: boolean | undefined;
24036
+ name?: string | undefined;
24037
+ } | undefined;
24038
+ headers?: {
24039
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
24040
+ } | undefined;
24041
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
24042
+ data: {
24043
+ createWebuiContainer?: boolean | undefined;
24044
+ name?: string | undefined;
24045
+ };
24046
+ } & {
24047
+ pathParameters: {
24048
+ projectId: string;
24049
+ licenceId: string;
24050
+ };
24051
+ } & {
24052
+ headers?: Partial<{
24053
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24054
+ }>;
24055
+ }, import("@mittwald/api-client-commons").Response<{
24056
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24057
+ customerId?: string | undefined;
24058
+ licenceId: string;
24059
+ licenceKey: string;
24060
+ models: string[];
24061
+ name: string;
24062
+ projectId?: string | undefined;
24063
+ rateLimit: number;
24064
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24065
+ [x: string]: unknown;
24066
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24067
+ [x: string]: unknown;
24068
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24069
+ [x: string]: unknown;
24070
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24071
+ [x: string]: unknown;
24072
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
24073
+ [x: string]: unknown;
24074
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
24075
+ [x: string]: unknown;
24076
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24077
+ data: {
24078
+ createWebuiContainer?: boolean | undefined;
24079
+ name?: string | undefined;
24080
+ };
24081
+ } & {
24082
+ pathParameters: {
24083
+ projectId: string;
24084
+ licenceId: string;
24085
+ };
24086
+ } & {
24087
+ headers?: Partial<{
24088
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24089
+ }>;
24090
+ }, import("@mittwald/api-client-commons").Response<{
24091
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24092
+ customerId?: string | undefined;
24093
+ licenceId: string;
24094
+ licenceKey: string;
24095
+ models: string[];
24096
+ name: string;
24097
+ projectId?: string | undefined;
24098
+ rateLimit: number;
24099
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24100
+ [x: string]: unknown;
24101
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24102
+ [x: string]: unknown;
24103
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24104
+ [x: string]: unknown;
24105
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24106
+ [x: string]: unknown;
24107
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
24108
+ [x: string]: unknown;
24109
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
24110
+ [x: string]: unknown;
24111
+ }, 429, "application/json">>>;
23654
24112
  /** Get a ProjectInvite by token. */
23655
24113
  getProjectTokenInvite: (request: {
23656
24114
  headers: {
@@ -25262,170 +25720,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25262
25720
  [x: string]: unknown;
25263
25721
  }, 429, "application/json">>>;
25264
25722
  };
25265
- /** API endpoints that are not related to any specific API domain */
25266
- readonly misc: {
25267
- /** Obtain a service token. */
25268
- servicetokenAuthenticateService: (request: {
25269
- data: {
25270
- secretAccessKey: string;
25271
- };
25272
- accessKeyId: string;
25273
- headers?: {
25274
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
25275
- "x-access-token"?: string | undefined;
25276
- } | undefined;
25277
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
25278
- data: {
25279
- secretAccessKey: string;
25280
- };
25281
- } & {
25282
- pathParameters: {
25283
- accessKeyId: string;
25284
- };
25285
- } & {
25286
- headers?: Partial<{
25287
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25288
- }>;
25289
- } & {
25290
- headers: {
25291
- "x-access-token"?: string | undefined;
25292
- } & Partial<{
25293
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25294
- }>;
25295
- }, import("@mittwald/api-client-commons").Response<{
25296
- accessToken: {
25297
- id: string;
25298
- jwtClaims: {
25299
- exp: string;
25300
- iat: string;
25301
- iss: string;
25302
- sub: string;
25303
- };
25304
- publicToken: string;
25305
- };
25306
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25307
- [x: string]: unknown;
25308
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
25309
- data: {
25310
- secretAccessKey: string;
25311
- };
25312
- } & {
25313
- pathParameters: {
25314
- accessKeyId: string;
25315
- };
25316
- } & {
25317
- headers?: Partial<{
25318
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25319
- }>;
25320
- } & {
25321
- headers: {
25322
- "x-access-token"?: string | undefined;
25323
- } & Partial<{
25324
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25325
- }>;
25326
- }, import("@mittwald/api-client-commons").Response<{
25327
- accessToken: {
25328
- id: string;
25329
- jwtClaims: {
25330
- exp: string;
25331
- iat: string;
25332
- iss: string;
25333
- sub: string;
25334
- };
25335
- publicToken: string;
25336
- };
25337
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25338
- [x: string]: unknown;
25339
- }, 429, "application/json">>>;
25340
- /** Check if an address exists. */
25341
- verificationVerifyAddress: (request: {
25342
- data: {
25343
- city: string;
25344
- country: string;
25345
- street: string;
25346
- zip: string;
25347
- };
25348
- headers?: {
25349
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
25350
- } | undefined;
25351
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
25352
- data: {
25353
- city: string;
25354
- country: string;
25355
- street: string;
25356
- zip: string;
25357
- };
25358
- } & {
25359
- headers?: Partial<{
25360
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25361
- }>;
25362
- }, import("@mittwald/api-client-commons").Response<{
25363
- exists: boolean;
25364
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25365
- [x: string]: unknown;
25366
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
25367
- data: {
25368
- city: string;
25369
- country: string;
25370
- street: string;
25371
- zip: string;
25372
- };
25373
- } & {
25374
- headers?: Partial<{
25375
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25376
- }>;
25377
- }, import("@mittwald/api-client-commons").Response<{
25378
- exists: boolean;
25379
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25380
- [x: string]: unknown;
25381
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
25382
- /** Check if a company exists. */
25383
- verificationVerifyCompany: (request: {
25384
- data: {
25385
- name: string;
25386
- };
25387
- headers?: {
25388
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
25389
- "x-access-token"?: string | undefined;
25390
- } | undefined;
25391
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
25392
- data: {
25393
- name: string;
25394
- };
25395
- } & {
25396
- headers?: Partial<{
25397
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25398
- }>;
25399
- } & {
25400
- headers: {
25401
- "x-access-token"?: string | undefined;
25402
- } & Partial<{
25403
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25404
- }>;
25405
- }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
25406
- exists: boolean;
25407
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
25408
- [x: string]: unknown;
25409
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
25410
- data: {
25411
- name: string;
25412
- };
25413
- } & {
25414
- headers?: Partial<{
25415
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25416
- }>;
25417
- } & {
25418
- headers: {
25419
- "x-access-token"?: string | undefined;
25420
- } & Partial<{
25421
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25422
- }>;
25423
- }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
25424
- exists: boolean;
25425
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
25426
- [x: string]: unknown;
25427
- }, 429, "application/json">>>;
25428
- };
25429
25723
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
25430
25724
  readonly sshsftpUser: {
25431
25725
  /** Get all SFTPUsers for a Project. */