@mittwald/api-client 0.0.0-development-5f2817b-20250709 → 0.0.0-development-bc8cbfe-20250710

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
  }>;
@@ -22901,6 +22905,164 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22901
22905
  [x: string]: unknown;
22902
22906
  }, 429, "application/json">>>;
22903
22907
  };
22908
+ /** API endpoints that are not related to any specific API domain */
22909
+ readonly misc: {
22910
+ /** Get a list of currently active llm models. */
22911
+ getLlmModelsExperimental: (request?: {
22912
+ headers?: {
22913
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22914
+ } | undefined;
22915
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22916
+ headers?: Partial<{
22917
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22918
+ }>;
22919
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22920
+ [x: string]: unknown;
22921
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22922
+ [x: string]: unknown;
22923
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22924
+ [x: string]: unknown;
22925
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22926
+ [x: string]: unknown;
22927
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22928
+ headers?: Partial<{
22929
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22930
+ }>;
22931
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22932
+ [x: string]: unknown;
22933
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22934
+ [x: string]: unknown;
22935
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22936
+ [x: string]: unknown;
22937
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22938
+ [x: string]: unknown;
22939
+ }, 429, "application/json">>>;
22940
+ /** Check if an email is from mittwald. */
22941
+ verificationDetectPhishingEmail: (request?: {
22942
+ data?: {
22943
+ [x: string]: unknown;
22944
+ } | undefined;
22945
+ headers?: {
22946
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22947
+ } | undefined;
22948
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22949
+ data: {
22950
+ [x: string]: unknown;
22951
+ };
22952
+ } & {
22953
+ headers?: Partial<{
22954
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22955
+ }>;
22956
+ }, import("@mittwald/api-client-commons").Response<{
22957
+ result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
22958
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22959
+ [x: string]: unknown;
22960
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22961
+ [x: string]: unknown;
22962
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22963
+ data: {
22964
+ [x: string]: unknown;
22965
+ };
22966
+ } & {
22967
+ headers?: Partial<{
22968
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22969
+ }>;
22970
+ }, import("@mittwald/api-client-commons").Response<{
22971
+ result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
22972
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22973
+ [x: string]: unknown;
22974
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22975
+ [x: string]: unknown;
22976
+ }, 429, "application/json">>>;
22977
+ /** Check if an address exists. */
22978
+ verificationVerifyAddress: (request: {
22979
+ data: {
22980
+ city: string;
22981
+ country: string;
22982
+ street: string;
22983
+ zip: string;
22984
+ };
22985
+ headers?: {
22986
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22987
+ } | undefined;
22988
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22989
+ data: {
22990
+ city: string;
22991
+ country: string;
22992
+ street: string;
22993
+ zip: string;
22994
+ };
22995
+ } & {
22996
+ headers?: Partial<{
22997
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22998
+ }>;
22999
+ }, import("@mittwald/api-client-commons").Response<{
23000
+ exists: boolean;
23001
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23002
+ [x: string]: unknown;
23003
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23004
+ data: {
23005
+ city: string;
23006
+ country: string;
23007
+ street: string;
23008
+ zip: string;
23009
+ };
23010
+ } & {
23011
+ headers?: Partial<{
23012
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23013
+ }>;
23014
+ }, import("@mittwald/api-client-commons").Response<{
23015
+ exists: boolean;
23016
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23017
+ [x: string]: unknown;
23018
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
23019
+ /** Check if a company exists. */
23020
+ verificationVerifyCompany: (request: {
23021
+ data: {
23022
+ name: string;
23023
+ };
23024
+ headers?: {
23025
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23026
+ "x-access-token"?: string | undefined;
23027
+ } | undefined;
23028
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23029
+ data: {
23030
+ name: string;
23031
+ };
23032
+ } & {
23033
+ headers?: Partial<{
23034
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23035
+ }>;
23036
+ } & {
23037
+ headers: {
23038
+ "x-access-token"?: string | undefined;
23039
+ } & Partial<{
23040
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23041
+ }>;
23042
+ }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
23043
+ exists: boolean;
23044
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
23045
+ [x: string]: unknown;
23046
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23047
+ data: {
23048
+ name: string;
23049
+ };
23050
+ } & {
23051
+ headers?: Partial<{
23052
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23053
+ }>;
23054
+ } & {
23055
+ headers: {
23056
+ "x-access-token"?: string | undefined;
23057
+ } & Partial<{
23058
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23059
+ }>;
23060
+ }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
23061
+ exists: boolean;
23062
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
23063
+ [x: string]: unknown;
23064
+ }, 429, "application/json">>>;
23065
+ };
22904
23066
  /** The page insights API allows you to get page insights information. */
22905
23067
  readonly pageInsights: {
22906
23068
  /** Get detailed performance data for a given domain and path. */
@@ -23264,6 +23426,124 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23264
23426
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
23265
23427
  [x: string]: unknown;
23266
23428
  }, 429, "application/json">>>;
23429
+ /** Get a list of already created llm licences. */
23430
+ getLlmLicencesExperimental: (request: {
23431
+ projectId: string;
23432
+ headers?: {
23433
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23434
+ } | undefined;
23435
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23436
+ headers?: Partial<{
23437
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23438
+ }>;
23439
+ } & {
23440
+ pathParameters: {
23441
+ projectId: string;
23442
+ };
23443
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23444
+ [x: string]: unknown;
23445
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23446
+ [x: string]: unknown;
23447
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23448
+ [x: string]: unknown;
23449
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23450
+ [x: string]: unknown;
23451
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23452
+ headers?: Partial<{
23453
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23454
+ }>;
23455
+ } & {
23456
+ pathParameters: {
23457
+ projectId: string;
23458
+ };
23459
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23460
+ [x: string]: unknown;
23461
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23462
+ [x: string]: unknown;
23463
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23464
+ [x: string]: unknown;
23465
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23466
+ [x: string]: unknown;
23467
+ }, 429, "application/json">>>;
23468
+ /** Creates a new llm beta Licence for a project. Will be purged on end of beta. */
23469
+ createLlmBetaLicenceExperimental: (request: {
23470
+ data: {
23471
+ name: string;
23472
+ createWebuiContainer?: boolean | undefined;
23473
+ };
23474
+ projectId: string;
23475
+ headers?: {
23476
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23477
+ } | undefined;
23478
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23479
+ data: {
23480
+ createWebuiContainer?: boolean | undefined;
23481
+ name: string;
23482
+ };
23483
+ } & {
23484
+ pathParameters: {
23485
+ projectId: string;
23486
+ };
23487
+ } & {
23488
+ headers?: Partial<{
23489
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23490
+ }>;
23491
+ }, import("@mittwald/api-client-commons").Response<{
23492
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23493
+ customerId?: string | undefined;
23494
+ licenceId: string;
23495
+ licenceKey: string;
23496
+ models: string[];
23497
+ name: string;
23498
+ projectId?: string | undefined;
23499
+ rateLimit: number;
23500
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
23501
+ [x: string]: unknown;
23502
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23503
+ [x: string]: unknown;
23504
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23505
+ [x: string]: unknown;
23506
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23507
+ [x: string]: unknown;
23508
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23509
+ [x: string]: unknown;
23510
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
23511
+ [x: string]: unknown;
23512
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23513
+ data: {
23514
+ createWebuiContainer?: boolean | undefined;
23515
+ name: string;
23516
+ };
23517
+ } & {
23518
+ pathParameters: {
23519
+ projectId: string;
23520
+ };
23521
+ } & {
23522
+ headers?: Partial<{
23523
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23524
+ }>;
23525
+ }, import("@mittwald/api-client-commons").Response<{
23526
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23527
+ customerId?: string | undefined;
23528
+ licenceId: string;
23529
+ licenceKey: string;
23530
+ models: string[];
23531
+ name: string;
23532
+ projectId?: string | undefined;
23533
+ rateLimit: number;
23534
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
23535
+ [x: string]: unknown;
23536
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23537
+ [x: string]: unknown;
23538
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23539
+ [x: string]: unknown;
23540
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23541
+ [x: string]: unknown;
23542
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23543
+ [x: string]: unknown;
23544
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
23545
+ [x: string]: unknown;
23546
+ }, 429, "application/json">>>;
23267
23547
  /** List Invites belonging to a Project. */
23268
23548
  listInvitesForProject: (request: {
23269
23549
  projectId: string;
@@ -24154,6 +24434,148 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24154
24434
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24155
24435
  [x: string]: unknown;
24156
24436
  }, 429, "application/json">>>;
24437
+ /** Get a licence of a project. */
24438
+ getLlmLicenceExperimental: (request: {
24439
+ projectId: string;
24440
+ licenceId: string;
24441
+ headers?: {
24442
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
24443
+ } | undefined;
24444
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
24445
+ headers?: Partial<{
24446
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24447
+ }>;
24448
+ } & {
24449
+ pathParameters: {
24450
+ projectId: string;
24451
+ licenceId: string;
24452
+ };
24453
+ }, import("@mittwald/api-client-commons").Response<{
24454
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24455
+ customerId?: string | undefined;
24456
+ licenceId: string;
24457
+ licenceKey: string;
24458
+ models: string[];
24459
+ name: string;
24460
+ projectId?: string | undefined;
24461
+ rateLimit: number;
24462
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24463
+ [x: string]: unknown;
24464
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24465
+ [x: string]: unknown;
24466
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24467
+ [x: string]: unknown;
24468
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24469
+ [x: string]: unknown;
24470
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24471
+ headers?: Partial<{
24472
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24473
+ }>;
24474
+ } & {
24475
+ pathParameters: {
24476
+ projectId: string;
24477
+ licenceId: string;
24478
+ };
24479
+ }, import("@mittwald/api-client-commons").Response<{
24480
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24481
+ customerId?: string | undefined;
24482
+ licenceId: string;
24483
+ licenceKey: string;
24484
+ models: string[];
24485
+ name: string;
24486
+ projectId?: string | undefined;
24487
+ rateLimit: number;
24488
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24489
+ [x: string]: unknown;
24490
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24491
+ [x: string]: unknown;
24492
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24493
+ [x: string]: unknown;
24494
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24495
+ [x: string]: unknown;
24496
+ }, 429, "application/json">>>;
24497
+ /** Update a llm Licence for a project. */
24498
+ updateLlmLicenceExperimental: (request: {
24499
+ projectId: string;
24500
+ licenceId: string;
24501
+ data?: {
24502
+ createWebuiContainer?: boolean | undefined;
24503
+ name?: string | undefined;
24504
+ } | undefined;
24505
+ headers?: {
24506
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
24507
+ } | undefined;
24508
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
24509
+ data: {
24510
+ createWebuiContainer?: boolean | undefined;
24511
+ name?: string | undefined;
24512
+ };
24513
+ } & {
24514
+ pathParameters: {
24515
+ projectId: string;
24516
+ licenceId: string;
24517
+ };
24518
+ } & {
24519
+ headers?: Partial<{
24520
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24521
+ }>;
24522
+ }, import("@mittwald/api-client-commons").Response<{
24523
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24524
+ customerId?: string | undefined;
24525
+ licenceId: string;
24526
+ licenceKey: string;
24527
+ models: string[];
24528
+ name: string;
24529
+ projectId?: string | undefined;
24530
+ rateLimit: number;
24531
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24532
+ [x: string]: unknown;
24533
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24534
+ [x: string]: unknown;
24535
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24536
+ [x: string]: unknown;
24537
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24538
+ [x: string]: unknown;
24539
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
24540
+ [x: string]: unknown;
24541
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
24542
+ [x: string]: unknown;
24543
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
24544
+ data: {
24545
+ createWebuiContainer?: boolean | undefined;
24546
+ name?: string | undefined;
24547
+ };
24548
+ } & {
24549
+ pathParameters: {
24550
+ projectId: string;
24551
+ licenceId: string;
24552
+ };
24553
+ } & {
24554
+ headers?: Partial<{
24555
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24556
+ }>;
24557
+ }, import("@mittwald/api-client-commons").Response<{
24558
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24559
+ customerId?: string | undefined;
24560
+ licenceId: string;
24561
+ licenceKey: string;
24562
+ models: string[];
24563
+ name: string;
24564
+ projectId?: string | undefined;
24565
+ rateLimit: number;
24566
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24567
+ [x: string]: unknown;
24568
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24569
+ [x: string]: unknown;
24570
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24571
+ [x: string]: unknown;
24572
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
24573
+ [x: string]: unknown;
24574
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
24575
+ [x: string]: unknown;
24576
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
24577
+ [x: string]: unknown;
24578
+ }, 429, "application/json">>>;
24157
24579
  /** Get a ProjectInvite by token. */
24158
24580
  getProjectTokenInvite: (request: {
24159
24581
  headers: {
@@ -26482,133 +26904,5 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26482
26904
  [x: string]: unknown;
26483
26905
  }, 429, "application/json">>>;
26484
26906
  };
26485
- /** API endpoints that are not related to any specific API domain */
26486
- readonly misc: {
26487
- /** Check if an email is from mittwald. */
26488
- verificationDetectPhishingEmail: (request?: {
26489
- data?: {
26490
- [x: string]: unknown;
26491
- } | undefined;
26492
- headers?: {
26493
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
26494
- } | undefined;
26495
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
26496
- data: {
26497
- [x: string]: unknown;
26498
- };
26499
- } & {
26500
- headers?: Partial<{
26501
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26502
- }>;
26503
- }, import("@mittwald/api-client-commons").Response<{
26504
- result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
26505
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26506
- [x: string]: unknown;
26507
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
26508
- [x: string]: unknown;
26509
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26510
- data: {
26511
- [x: string]: unknown;
26512
- };
26513
- } & {
26514
- headers?: Partial<{
26515
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26516
- }>;
26517
- }, import("@mittwald/api-client-commons").Response<{
26518
- result: import("./types.js").MittwaldAPIV2.Components.Schemas.VerificationEmailOrigin;
26519
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26520
- [x: string]: unknown;
26521
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
26522
- [x: string]: unknown;
26523
- }, 429, "application/json">>>;
26524
- /** Check if an address exists. */
26525
- verificationVerifyAddress: (request: {
26526
- data: {
26527
- city: string;
26528
- country: string;
26529
- street: string;
26530
- zip: string;
26531
- };
26532
- headers?: {
26533
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
26534
- } | undefined;
26535
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
26536
- data: {
26537
- city: string;
26538
- country: string;
26539
- street: string;
26540
- zip: string;
26541
- };
26542
- } & {
26543
- headers?: Partial<{
26544
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26545
- }>;
26546
- }, import("@mittwald/api-client-commons").Response<{
26547
- exists: boolean;
26548
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26549
- [x: string]: unknown;
26550
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26551
- data: {
26552
- city: string;
26553
- country: string;
26554
- street: string;
26555
- zip: string;
26556
- };
26557
- } & {
26558
- headers?: Partial<{
26559
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26560
- }>;
26561
- }, import("@mittwald/api-client-commons").Response<{
26562
- exists: boolean;
26563
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
26564
- [x: string]: unknown;
26565
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty">>>;
26566
- /** Check if a company exists. */
26567
- verificationVerifyCompany: (request: {
26568
- data: {
26569
- name: string;
26570
- };
26571
- headers?: {
26572
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
26573
- "x-access-token"?: string | undefined;
26574
- } | undefined;
26575
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
26576
- data: {
26577
- name: string;
26578
- };
26579
- } & {
26580
- headers?: Partial<{
26581
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26582
- }>;
26583
- } & {
26584
- headers: {
26585
- "x-access-token"?: string | undefined;
26586
- } & Partial<{
26587
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26588
- }>;
26589
- }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
26590
- exists: boolean;
26591
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
26592
- [x: string]: unknown;
26593
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
26594
- data: {
26595
- name: string;
26596
- };
26597
- } & {
26598
- headers?: Partial<{
26599
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26600
- }>;
26601
- } & {
26602
- headers: {
26603
- "x-access-token"?: string | undefined;
26604
- } & Partial<{
26605
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26606
- }>;
26607
- }, import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{
26608
- exists: boolean;
26609
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 412, "empty"> | import("@mittwald/api-client-commons").Response<{
26610
- [x: string]: unknown;
26611
- }, 429, "application/json">>>;
26612
- };
26613
26907
  }
26614
26908
  export default MittwaldAPIV2Client;