@mittwald/api-client 4.178.0 → 4.179.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.
@@ -124,7 +124,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
124
124
  lockedBy?: {
125
125
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
126
126
  } | undefined;
127
- processes?: string[] | undefined;
128
127
  projectId?: string | undefined;
129
128
  screenshotId?: string | undefined;
130
129
  screenshotRef?: string | undefined;
@@ -163,7 +162,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
163
162
  lockedBy?: {
164
163
  [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
165
164
  } | undefined;
166
- processes?: string[] | undefined;
167
165
  projectId?: string | undefined;
168
166
  screenshotId?: string | undefined;
169
167
  screenshotRef?: string | undefined;
@@ -5361,6 +5359,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5361
5359
  limit?: number | undefined;
5362
5360
  skip?: number | undefined;
5363
5361
  page?: number | undefined;
5362
+ sort?: "invoiceNumber"[] | undefined;
5363
+ order?: ("asc" | "desc")[] | undefined;
5364
5364
  } | undefined;
5365
5365
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5366
5366
  headers?: Partial<{
@@ -5376,6 +5376,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5376
5376
  limit?: number | undefined;
5377
5377
  skip?: number | undefined;
5378
5378
  page?: number | undefined;
5379
+ sort?: "invoiceNumber"[] | undefined;
5380
+ order?: ("asc" | "desc")[] | undefined;
5379
5381
  } & Partial<{
5380
5382
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5381
5383
  }>;
@@ -5405,6 +5407,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5405
5407
  limit?: number | undefined;
5406
5408
  skip?: number | undefined;
5407
5409
  page?: number | undefined;
5410
+ sort?: "invoiceNumber"[] | undefined;
5411
+ order?: ("asc" | "desc")[] | undefined;
5408
5412
  } & Partial<{
5409
5413
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5410
5414
  }>;
@@ -22419,200 +22423,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22419
22423
  [x: string]: unknown;
22420
22424
  }, 429, "application/json">>>;
22421
22425
  };
22422
- /** API endpoints that are not related to any specific API domain */
22423
- readonly misc: {
22424
- /** Get a list of currently active llm models. */
22425
- getLlmModelsExperimental: (request?: {
22426
- headers?: {
22427
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22428
- } | undefined;
22429
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22430
- headers?: Partial<{
22431
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22432
- }>;
22433
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22434
- [x: string]: unknown;
22435
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22436
- [x: string]: unknown;
22437
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22438
- [x: string]: unknown;
22439
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22440
- [x: string]: unknown;
22441
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22442
- headers?: Partial<{
22443
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22444
- }>;
22445
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22446
- [x: string]: unknown;
22447
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22448
- [x: string]: unknown;
22449
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22450
- [x: string]: unknown;
22451
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22452
- [x: string]: unknown;
22453
- }, 429, "application/json">>>;
22454
- /** Obtain a service token. */
22455
- servicetokenAuthenticateService: (request: {
22456
- data: {
22457
- secretAccessKey: string;
22458
- };
22459
- accessKeyId: string;
22460
- headers?: {
22461
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22462
- "x-access-token"?: string | undefined;
22463
- } | undefined;
22464
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22465
- data: {
22466
- secretAccessKey: string;
22467
- };
22468
- } & {
22469
- pathParameters: {
22470
- accessKeyId: string;
22471
- };
22472
- } & {
22473
- headers?: Partial<{
22474
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22475
- }>;
22476
- } & {
22477
- headers: {
22478
- "x-access-token"?: string | undefined;
22479
- } & Partial<{
22480
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22481
- }>;
22482
- }, import("@mittwald/api-client-commons").Response<{
22483
- accessToken: {
22484
- id: string;
22485
- jwtClaims: {
22486
- exp: string;
22487
- iat: string;
22488
- iss: string;
22489
- sub: string;
22490
- };
22491
- publicToken: string;
22492
- };
22493
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22494
- [x: string]: unknown;
22495
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22496
- data: {
22497
- secretAccessKey: string;
22498
- };
22499
- } & {
22500
- pathParameters: {
22501
- accessKeyId: string;
22502
- };
22503
- } & {
22504
- headers?: Partial<{
22505
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22506
- }>;
22507
- } & {
22508
- headers: {
22509
- "x-access-token"?: string | undefined;
22510
- } & Partial<{
22511
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22512
- }>;
22513
- }, import("@mittwald/api-client-commons").Response<{
22514
- accessToken: {
22515
- id: string;
22516
- jwtClaims: {
22517
- exp: string;
22518
- iat: string;
22519
- iss: string;
22520
- sub: string;
22521
- };
22522
- publicToken: string;
22523
- };
22524
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22525
- [x: string]: unknown;
22526
- }, 429, "application/json">>>;
22527
- /** Check if an address exists. */
22528
- verificationVerifyAddress: (request: {
22529
- data: {
22530
- city: string;
22531
- country: string;
22532
- street: string;
22533
- zip: string;
22534
- };
22535
- headers?: {
22536
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22537
- } | undefined;
22538
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22539
- data: {
22540
- city: string;
22541
- country: string;
22542
- street: string;
22543
- zip: string;
22544
- };
22545
- } & {
22546
- headers?: Partial<{
22547
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22548
- }>;
22549
- }, import("@mittwald/api-client-commons").Response<{
22550
- exists: boolean;
22551
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22552
- [x: string]: unknown;
22553
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22554
- data: {
22555
- city: string;
22556
- country: string;
22557
- street: string;
22558
- zip: string;
22559
- };
22560
- } & {
22561
- headers?: Partial<{
22562
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22563
- }>;
22564
- }, import("@mittwald/api-client-commons").Response<{
22565
- exists: boolean;
22566
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22567
- [x: string]: unknown;
22568
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
22569
- /** Check if a company exists. */
22570
- verificationVerifyCompany: (request: {
22571
- data: {
22572
- name: string;
22573
- };
22574
- headers?: {
22575
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22576
- "x-access-token"?: string | undefined;
22577
- } | undefined;
22578
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22579
- data: {
22580
- name: string;
22581
- };
22582
- } & {
22583
- headers?: Partial<{
22584
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22585
- }>;
22586
- } & {
22587
- headers: {
22588
- "x-access-token"?: string | undefined;
22589
- } & Partial<{
22590
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22591
- }>;
22592
- }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
22593
- exists: boolean;
22594
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
22595
- [x: string]: unknown;
22596
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22597
- data: {
22598
- name: string;
22599
- };
22600
- } & {
22601
- headers?: Partial<{
22602
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22603
- }>;
22604
- } & {
22605
- headers: {
22606
- "x-access-token"?: string | undefined;
22607
- } & Partial<{
22608
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22609
- }>;
22610
- }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
22611
- exists: boolean;
22612
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
22613
- [x: string]: unknown;
22614
- }, 429, "application/json">>>;
22615
- };
22616
22426
  /** The page insights API allows you to get page insights information. */
22617
22427
  readonly pageInsights: {
22618
22428
  /** Get detailed performance data for a given domain and path. */
@@ -22976,11 +22786,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22976
22786
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
22977
22787
  [x: string]: unknown;
22978
22788
  }, 429, "application/json">>>;
22979
- /** Get a list of already created llm licences. */
22980
- getLlmLicencesExperimental: (request: {
22789
+ /** List Invites belonging to a Project. */
22790
+ listInvitesForProject: (request: {
22981
22791
  projectId: string;
22982
22792
  headers?: {
22983
22793
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22794
+ "x-access-token"?: string | undefined;
22795
+ } | undefined;
22796
+ queryParameters?: {
22797
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22798
+ limit?: number | undefined;
22799
+ skip?: number | undefined;
22984
22800
  } | undefined;
22985
22801
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22986
22802
  headers?: Partial<{
@@ -22990,11 +22806,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22990
22806
  pathParameters: {
22991
22807
  projectId: string;
22992
22808
  };
22993
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22994
- [x: string]: unknown;
22995
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22996
- [x: string]: unknown;
22997
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
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<{
22998
22823
  [x: string]: unknown;
22999
22824
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23000
22825
  [x: string]: unknown;
@@ -23006,29 +22831,43 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23006
22831
  pathParameters: {
23007
22832
  projectId: string;
23008
22833
  };
23009
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23010
- [x: string]: unknown;
23011
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23012
- [x: string]: unknown;
23013
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22834
+ } & {
22835
+ queryParameters: {
22836
+ limit?: number | undefined;
22837
+ skip?: number | undefined;
22838
+ } & Partial<{
22839
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22840
+ }>;
22841
+ } & {
22842
+ headers: {
22843
+ "x-access-token"?: string | undefined;
22844
+ } & Partial<{
22845
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22846
+ }>;
22847
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23014
22848
  [x: string]: unknown;
23015
22849
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23016
22850
  [x: string]: unknown;
23017
22851
  }, 429, "application/json">>>;
23018
- /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
23019
- createLlmBetaLicenceExperimental: (request: {
22852
+ /** Create a ProjectInvite. */
22853
+ createProjectInvite: (request: {
23020
22854
  data: {
23021
- name: string;
23022
- createWebuiContainer?: boolean | undefined;
22855
+ mailAddress: string;
22856
+ role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
22857
+ membershipExpiresAt?: string | undefined;
22858
+ message?: string | undefined;
23023
22859
  };
23024
22860
  projectId: string;
23025
22861
  headers?: {
23026
22862
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22863
+ "x-access-token"?: string | undefined;
23027
22864
  } | undefined;
23028
22865
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23029
22866
  data: {
23030
- createWebuiContainer?: boolean | undefined;
23031
- name: string;
22867
+ mailAddress: string;
22868
+ membershipExpiresAt?: string | undefined;
22869
+ message?: string | undefined;
22870
+ role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
23032
22871
  };
23033
22872
  } & {
23034
22873
  pathParameters: {
@@ -23036,159 +22875,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23036
22875
  };
23037
22876
  } & {
23038
22877
  headers?: Partial<{
23039
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23040
- }>;
23041
- }, import("@mittwald/api-client-commons").Response<{
23042
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23043
- customerId?: string | undefined;
23044
- licenceId: string;
23045
- licenceKey: string;
23046
- models: string[];
23047
- name: string;
23048
- projectId?: string | undefined;
23049
- rateLimit: number;
23050
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
23051
- [x: string]: unknown;
23052
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23053
- [x: string]: unknown;
23054
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23055
- [x: string]: unknown;
23056
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23057
- [x: string]: unknown;
23058
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23059
- [x: string]: unknown;
23060
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
23061
- [x: string]: unknown;
23062
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23063
- data: {
23064
- createWebuiContainer?: boolean | undefined;
23065
- name: string;
23066
- };
23067
- } & {
23068
- pathParameters: {
23069
- projectId: string;
23070
- };
23071
- } & {
23072
- headers?: Partial<{
23073
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23074
- }>;
23075
- }, import("@mittwald/api-client-commons").Response<{
23076
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23077
- customerId?: string | undefined;
23078
- licenceId: string;
23079
- licenceKey: string;
23080
- models: string[];
23081
- name: string;
23082
- projectId?: string | undefined;
23083
- rateLimit: number;
23084
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
23085
- [x: string]: unknown;
23086
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23087
- [x: string]: unknown;
23088
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23089
- [x: string]: unknown;
23090
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23091
- [x: string]: unknown;
23092
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23093
- [x: string]: unknown;
23094
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
23095
- [x: string]: unknown;
23096
- }, 429, "application/json">>>;
23097
- /** List Invites belonging to a Project. */
23098
- listInvitesForProject: (request: {
23099
- projectId: string;
23100
- headers?: {
23101
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23102
- "x-access-token"?: string | undefined;
23103
- } | undefined;
23104
- queryParameters?: {
23105
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23106
- limit?: number | undefined;
23107
- skip?: number | undefined;
23108
- } | undefined;
23109
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23110
- headers?: Partial<{
23111
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23112
- }>;
23113
- } & {
23114
- pathParameters: {
23115
- projectId: string;
23116
- };
23117
- } & {
23118
- queryParameters: {
23119
- limit?: number | undefined;
23120
- skip?: number | undefined;
23121
- } & Partial<{
23122
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23123
- }>;
23124
- } & {
23125
- headers: {
23126
- "x-access-token"?: string | undefined;
23127
- } & Partial<{
23128
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23129
- }>;
23130
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23131
- [x: string]: unknown;
23132
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23133
- [x: string]: unknown;
23134
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23135
- headers?: Partial<{
23136
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23137
- }>;
23138
- } & {
23139
- pathParameters: {
23140
- projectId: string;
23141
- };
23142
- } & {
23143
- queryParameters: {
23144
- limit?: number | undefined;
23145
- skip?: number | undefined;
23146
- } & Partial<{
23147
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23148
- }>;
23149
- } & {
23150
- headers: {
23151
- "x-access-token"?: string | undefined;
23152
- } & Partial<{
23153
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23154
- }>;
23155
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23156
- [x: string]: unknown;
23157
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23158
- [x: string]: unknown;
23159
- }, 429, "application/json">>>;
23160
- /** Create a ProjectInvite. */
23161
- createProjectInvite: (request: {
23162
- data: {
23163
- mailAddress: string;
23164
- role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
23165
- membershipExpiresAt?: string | undefined;
23166
- message?: string | undefined;
23167
- };
23168
- projectId: string;
23169
- headers?: {
23170
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23171
- "x-access-token"?: string | undefined;
23172
- } | undefined;
23173
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23174
- data: {
23175
- mailAddress: string;
23176
- membershipExpiresAt?: string | undefined;
23177
- message?: string | undefined;
23178
- role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
23179
- };
23180
- } & {
23181
- pathParameters: {
23182
- projectId: string;
23183
- };
23184
- } & {
23185
- headers?: Partial<{
23186
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23187
- }>;
23188
- } & {
23189
- headers: {
23190
- "x-access-token"?: string | undefined;
23191
- } & Partial<{
22878
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22879
+ }>;
22880
+ } & {
22881
+ headers: {
22882
+ "x-access-token"?: string | undefined;
22883
+ } & Partial<{
23192
22884
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23193
22885
  }>;
23194
22886
  }, import("@mittwald/api-client-commons").Response<{
@@ -23984,148 +23676,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23984
23676
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23985
23677
  [x: string]: unknown;
23986
23678
  }, 429, "application/json">>>;
23987
- /** Get a licence of a project. */
23988
- getLlmLicenceExperimental: (request: {
23989
- projectId: string;
23990
- licenceId: string;
23991
- headers?: {
23992
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23993
- } | undefined;
23994
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23995
- headers?: Partial<{
23996
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23997
- }>;
23998
- } & {
23999
- pathParameters: {
24000
- projectId: string;
24001
- licenceId: string;
24002
- };
24003
- }, import("@mittwald/api-client-commons").Response<{
24004
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24005
- customerId?: string | undefined;
24006
- licenceId: string;
24007
- licenceKey: string;
24008
- models: string[];
24009
- name: string;
24010
- projectId?: string | undefined;
24011
- rateLimit: number;
24012
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24013
- [x: string]: unknown;
24014
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24015
- [x: string]: unknown;
24016
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24017
- [x: string]: unknown;
24018
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24019
- [x: string]: unknown;
24020
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24021
- headers?: Partial<{
24022
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24023
- }>;
24024
- } & {
24025
- pathParameters: {
24026
- projectId: string;
24027
- licenceId: string;
24028
- };
24029
- }, import("@mittwald/api-client-commons").Response<{
24030
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24031
- customerId?: string | undefined;
24032
- licenceId: string;
24033
- licenceKey: string;
24034
- models: string[];
24035
- name: string;
24036
- projectId?: string | undefined;
24037
- rateLimit: number;
24038
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24039
- [x: string]: unknown;
24040
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24041
- [x: string]: unknown;
24042
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24043
- [x: string]: unknown;
24044
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24045
- [x: string]: unknown;
24046
- }, 429, "application/json">>>;
24047
- /** Update a llm Licence for a project. */
24048
- updateLlmLicenceExperimental: (request: {
24049
- projectId: string;
24050
- licenceId: string;
24051
- data?: {
24052
- createWebuiContainer?: boolean | undefined;
24053
- name?: string | undefined;
24054
- } | undefined;
24055
- headers?: {
24056
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
24057
- } | undefined;
24058
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
24059
- data: {
24060
- createWebuiContainer?: boolean | undefined;
24061
- name?: string | undefined;
24062
- };
24063
- } & {
24064
- pathParameters: {
24065
- projectId: string;
24066
- licenceId: string;
24067
- };
24068
- } & {
24069
- headers?: Partial<{
24070
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24071
- }>;
24072
- }, import("@mittwald/api-client-commons").Response<{
24073
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24074
- customerId?: string | undefined;
24075
- licenceId: string;
24076
- licenceKey: string;
24077
- models: string[];
24078
- name: string;
24079
- projectId?: string | undefined;
24080
- rateLimit: number;
24081
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24082
- [x: string]: unknown;
24083
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24084
- [x: string]: unknown;
24085
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24086
- [x: string]: unknown;
24087
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24088
- [x: string]: unknown;
24089
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
24090
- [x: string]: unknown;
24091
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
24092
- [x: string]: unknown;
24093
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24094
- data: {
24095
- createWebuiContainer?: boolean | undefined;
24096
- name?: string | undefined;
24097
- };
24098
- } & {
24099
- pathParameters: {
24100
- projectId: string;
24101
- licenceId: string;
24102
- };
24103
- } & {
24104
- headers?: Partial<{
24105
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24106
- }>;
24107
- }, import("@mittwald/api-client-commons").Response<{
24108
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24109
- customerId?: string | undefined;
24110
- licenceId: string;
24111
- licenceKey: string;
24112
- models: string[];
24113
- name: string;
24114
- projectId?: string | undefined;
24115
- rateLimit: number;
24116
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24117
- [x: string]: unknown;
24118
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24119
- [x: string]: unknown;
24120
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24121
- [x: string]: unknown;
24122
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24123
- [x: string]: unknown;
24124
- }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
24125
- [x: string]: unknown;
24126
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
24127
- [x: string]: unknown;
24128
- }, 429, "application/json">>>;
24129
23679
  /** Get a ProjectInvite by token. */
24130
23680
  getProjectTokenInvite: (request: {
24131
23681
  headers: {
@@ -25737,6 +25287,170 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25737
25287
  [x: string]: unknown;
25738
25288
  }, 429, "application/json">>>;
25739
25289
  };
25290
+ /** API endpoints that are not related to any specific API domain */
25291
+ readonly misc: {
25292
+ /** Obtain a service token. */
25293
+ servicetokenAuthenticateService: (request: {
25294
+ data: {
25295
+ secretAccessKey: string;
25296
+ };
25297
+ accessKeyId: string;
25298
+ headers?: {
25299
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
25300
+ "x-access-token"?: string | undefined;
25301
+ } | undefined;
25302
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
25303
+ data: {
25304
+ secretAccessKey: string;
25305
+ };
25306
+ } & {
25307
+ pathParameters: {
25308
+ accessKeyId: string;
25309
+ };
25310
+ } & {
25311
+ headers?: Partial<{
25312
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25313
+ }>;
25314
+ } & {
25315
+ headers: {
25316
+ "x-access-token"?: string | undefined;
25317
+ } & Partial<{
25318
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25319
+ }>;
25320
+ }, import("@mittwald/api-client-commons").Response<{
25321
+ accessToken: {
25322
+ id: string;
25323
+ jwtClaims: {
25324
+ exp: string;
25325
+ iat: string;
25326
+ iss: string;
25327
+ sub: string;
25328
+ };
25329
+ publicToken: string;
25330
+ };
25331
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25332
+ [x: string]: unknown;
25333
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
25334
+ data: {
25335
+ secretAccessKey: string;
25336
+ };
25337
+ } & {
25338
+ pathParameters: {
25339
+ accessKeyId: string;
25340
+ };
25341
+ } & {
25342
+ headers?: Partial<{
25343
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25344
+ }>;
25345
+ } & {
25346
+ headers: {
25347
+ "x-access-token"?: string | undefined;
25348
+ } & Partial<{
25349
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25350
+ }>;
25351
+ }, import("@mittwald/api-client-commons").Response<{
25352
+ accessToken: {
25353
+ id: string;
25354
+ jwtClaims: {
25355
+ exp: string;
25356
+ iat: string;
25357
+ iss: string;
25358
+ sub: string;
25359
+ };
25360
+ publicToken: string;
25361
+ };
25362
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25363
+ [x: string]: unknown;
25364
+ }, 429, "application/json">>>;
25365
+ /** Check if an address exists. */
25366
+ verificationVerifyAddress: (request: {
25367
+ data: {
25368
+ city: string;
25369
+ country: string;
25370
+ street: string;
25371
+ zip: string;
25372
+ };
25373
+ headers?: {
25374
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
25375
+ } | undefined;
25376
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
25377
+ data: {
25378
+ city: string;
25379
+ country: string;
25380
+ street: string;
25381
+ zip: string;
25382
+ };
25383
+ } & {
25384
+ headers?: Partial<{
25385
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25386
+ }>;
25387
+ }, import("@mittwald/api-client-commons").Response<{
25388
+ exists: boolean;
25389
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25390
+ [x: string]: unknown;
25391
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
25392
+ data: {
25393
+ city: string;
25394
+ country: string;
25395
+ street: string;
25396
+ zip: string;
25397
+ };
25398
+ } & {
25399
+ headers?: Partial<{
25400
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25401
+ }>;
25402
+ }, import("@mittwald/api-client-commons").Response<{
25403
+ exists: boolean;
25404
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
25405
+ [x: string]: unknown;
25406
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
25407
+ /** Check if a company exists. */
25408
+ verificationVerifyCompany: (request: {
25409
+ data: {
25410
+ name: string;
25411
+ };
25412
+ headers?: {
25413
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
25414
+ "x-access-token"?: string | undefined;
25415
+ } | undefined;
25416
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
25417
+ data: {
25418
+ name: string;
25419
+ };
25420
+ } & {
25421
+ headers?: Partial<{
25422
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25423
+ }>;
25424
+ } & {
25425
+ headers: {
25426
+ "x-access-token"?: string | undefined;
25427
+ } & Partial<{
25428
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25429
+ }>;
25430
+ }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
25431
+ exists: boolean;
25432
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
25433
+ [x: string]: unknown;
25434
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
25435
+ data: {
25436
+ name: string;
25437
+ };
25438
+ } & {
25439
+ headers?: Partial<{
25440
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25441
+ }>;
25442
+ } & {
25443
+ headers: {
25444
+ "x-access-token"?: string | undefined;
25445
+ } & Partial<{
25446
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25447
+ }>;
25448
+ }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
25449
+ exists: boolean;
25450
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
25451
+ [x: string]: unknown;
25452
+ }, 429, "application/json">>>;
25453
+ };
25740
25454
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
25741
25455
  readonly sshsftpUser: {
25742
25456
  /** Get all SFTPUsers for a Project. */