@mittwald/api-client 0.0.0-development-a7ffc6b-20250910 → 0.0.0-development-404b2c6-20250912

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.
@@ -595,8 +595,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
595
595
  getMailAddress: this.requestFunctionFactory(descriptors.mailGetMailAddress),
596
596
  /** Delete a MailAddress. */
597
597
  deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
598
- /** Disable a MailAddress Archive. */
599
- disableMailArchive: this.requestFunctionFactory(descriptors.mailDisableMailArchive),
600
598
  /** List backups belonging to a MailAddress. */
601
599
  listBackupsForMailAddress: this.requestFunctionFactory(descriptors.mailListBackupsForMailAddress),
602
600
  /** List mail settings of a Project. */
@@ -621,6 +619,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
621
619
  updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
622
620
  /** Update a mail setting of a Project. */
623
621
  updateProjectMailSetting: this.requestFunctionFactory(descriptors.mailUpdateProjectMailSetting),
622
+ /** Disable the mail-archive of a MailAddress. */
623
+ disableMailArchive: this.requestFunctionFactory(descriptors.mailDisableMailArchive),
624
624
  };
625
625
  /** The notification API allows you to manage your notifications. */
626
626
  notification = {
@@ -1666,12 +1666,6 @@ export const mailDeleteMailAddress = {
1666
1666
  method: "DELETE",
1667
1667
  operationId: "mail-delete-mail-address",
1668
1668
  };
1669
- /** Disable a MailAddress Archive. */
1670
- export const mailDisableMailArchive = {
1671
- path: "/v2/mail-archive/{mailArchiveId}",
1672
- method: "DELETE",
1673
- operationId: "mail-disable-mail-archive",
1674
- };
1675
1669
  /** List backups belonging to a MailAddress. */
1676
1670
  export const mailListBackupsForMailAddress = {
1677
1671
  path: "/v2/mail-addresses/{mailAddressId}/backups",
@@ -2578,3 +2572,9 @@ export const verificationVerifyCompany = {
2578
2572
  method: "POST",
2579
2573
  operationId: "verification-verify-company",
2580
2574
  };
2575
+ /** Disable the mail-archive of a MailAddress. */
2576
+ export const mailDisableMailArchive = {
2577
+ path: "/v2/mail-addresses/{mailAddressId}/mail-archive",
2578
+ method: "DELETE",
2579
+ operationId: "mail-disable-mail-archive",
2580
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.220.0';
1
+ export const MittwaldAPIClientVersion = '4.223.0';
@@ -446,6 +446,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
446
446
  } | undefined;
447
447
  }) => import("@mittwald/react-use-promise").AsyncResource<{
448
448
  command?: string[] | undefined;
449
+ digest: string;
449
450
  entrypoint?: string[] | undefined;
450
451
  env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
451
452
  exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
@@ -1040,6 +1041,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1040
1041
  id: string;
1041
1042
  pendingInstallation: boolean;
1042
1043
  pendingRemoval: boolean;
1044
+ variantKey?: string | undefined;
1043
1045
  }>;
1044
1046
  /** Get Extension of own contributor. */
1045
1047
  extensionGetOwnExtension: (conf: {
@@ -1143,6 +1145,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1143
1145
  id: string;
1144
1146
  pendingInstallation: boolean;
1145
1147
  pendingRemoval: boolean;
1148
+ variantKey?: string | undefined;
1146
1149
  }>;
1147
1150
  /** Get the ExtensionInstance of a specific project and extension, if existing. */
1148
1151
  extensionGetExtensionInstanceForProject: (conf: {
@@ -1173,6 +1176,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1173
1176
  id: string;
1174
1177
  pendingInstallation: boolean;
1175
1178
  pendingRemoval: boolean;
1179
+ variantKey?: string | undefined;
1176
1180
  }>;
1177
1181
  /** Get an Extension. */
1178
1182
  extensionGetExtension: (conf: {
@@ -2458,7 +2462,7 @@ declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
2458
2462
  headers?: {
2459
2463
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2460
2464
  } | undefined;
2461
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[]>;
2465
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[]>;
2462
2466
  };
2463
2467
  declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
2464
2468
  /** Getting the subscription status of the subscription. */
@@ -2788,7 +2792,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2788
2792
  headers?: {
2789
2793
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2790
2794
  } | undefined;
2791
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[]>;
2795
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingLicence[]>;
2792
2796
  /** List Invites belonging to a Project. */
2793
2797
  listInvitesForProject: (conf: {
2794
2798
  projectId: string;
@@ -2889,11 +2893,15 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2889
2893
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2890
2894
  } | undefined;
2891
2895
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2892
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
2896
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
2893
2897
  customerId?: string | undefined;
2894
2898
  isBlocked: boolean;
2895
2899
  licenceId: string;
2896
2900
  licenceKey: string;
2901
+ limit: {
2902
+ allowedRequestsPerUnit: number;
2903
+ unit: "minute" | "hour";
2904
+ };
2897
2905
  models: string[];
2898
2906
  name: string;
2899
2907
  projectId?: string | undefined;
@@ -3326,6 +3326,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3326
3326
  }>;
3327
3327
  }, import("@mittwald/api-client-commons").Response<{
3328
3328
  command?: string[] | undefined;
3329
+ digest: string;
3329
3330
  entrypoint?: string[] | undefined;
3330
3331
  env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
3331
3332
  exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
@@ -3369,6 +3370,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3369
3370
  }>;
3370
3371
  }, import("@mittwald/api-client-commons").Response<{
3371
3372
  command?: string[] | undefined;
3373
+ digest: string;
3372
3374
  entrypoint?: string[] | undefined;
3373
3375
  env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
3374
3376
  exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
@@ -8004,6 +8006,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8004
8006
  id: string;
8005
8007
  pendingInstallation: boolean;
8006
8008
  pendingRemoval: boolean;
8009
+ variantKey?: string | undefined;
8007
8010
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8008
8011
  [x: string]: unknown;
8009
8012
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -8043,6 +8046,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8043
8046
  id: string;
8044
8047
  pendingInstallation: boolean;
8045
8048
  pendingRemoval: boolean;
8049
+ variantKey?: string | undefined;
8046
8050
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
8047
8051
  [x: string]: unknown;
8048
8052
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -8925,18 +8929,25 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8925
8929
  /** Update or Create Contract for existing Extension Instances. */
8926
8930
  extensionUpdateExtensionInstanceContract: (request: {
8927
8931
  extensionInstanceId: string;
8932
+ data?: {
8933
+ variantKey?: string | undefined;
8934
+ } | undefined;
8928
8935
  headers?: {
8929
8936
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
8930
8937
  "x-access-token"?: string | undefined;
8931
8938
  } | undefined;
8932
8939
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
8933
- headers?: Partial<{
8934
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8935
- }>;
8940
+ data: {
8941
+ variantKey?: string | undefined;
8942
+ };
8936
8943
  } & {
8937
8944
  pathParameters: {
8938
8945
  extensionInstanceId: string;
8939
8946
  };
8947
+ } & {
8948
+ headers?: Partial<{
8949
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8950
+ }>;
8940
8951
  } & {
8941
8952
  headers: {
8942
8953
  "x-access-token"?: string | undefined;
@@ -8950,13 +8961,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8950
8961
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
8951
8962
  [x: string]: unknown;
8952
8963
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
8953
- headers?: Partial<{
8954
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8955
- }>;
8964
+ data: {
8965
+ variantKey?: string | undefined;
8966
+ };
8956
8967
  } & {
8957
8968
  pathParameters: {
8958
8969
  extensionInstanceId: string;
8959
8970
  };
8971
+ } & {
8972
+ headers?: Partial<{
8973
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
8974
+ }>;
8960
8975
  } & {
8961
8976
  headers: {
8962
8977
  "x-access-token"?: string | undefined;
@@ -9014,6 +9029,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9014
9029
  id: string;
9015
9030
  pendingInstallation: boolean;
9016
9031
  pendingRemoval: boolean;
9032
+ variantKey?: string | undefined;
9017
9033
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9018
9034
  [x: string]: unknown;
9019
9035
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9054,6 +9070,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9054
9070
  id: string;
9055
9071
  pendingInstallation: boolean;
9056
9072
  pendingRemoval: boolean;
9073
+ variantKey?: string | undefined;
9057
9074
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9058
9075
  [x: string]: unknown;
9059
9076
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9103,6 +9120,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9103
9120
  id: string;
9104
9121
  pendingInstallation: boolean;
9105
9122
  pendingRemoval: boolean;
9123
+ variantKey?: string | undefined;
9106
9124
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9107
9125
  [x: string]: unknown;
9108
9126
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9143,6 +9161,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9143
9161
  id: string;
9144
9162
  pendingInstallation: boolean;
9145
9163
  pendingRemoval: boolean;
9164
+ variantKey?: string | undefined;
9146
9165
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
9147
9166
  [x: string]: unknown;
9148
9167
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -9682,6 +9701,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9682
9701
  data: {
9683
9702
  consentedScopes: string[];
9684
9703
  customerId: string;
9704
+ variantKey?: string | undefined;
9685
9705
  };
9686
9706
  extensionId: string;
9687
9707
  headers?: {
@@ -9692,6 +9712,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9692
9712
  data: {
9693
9713
  consentedScopes: string[];
9694
9714
  projectId: string;
9715
+ variantKey?: string | undefined;
9695
9716
  };
9696
9717
  extensionId: string;
9697
9718
  headers?: {
@@ -9702,11 +9723,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9702
9723
  data: {
9703
9724
  consentedScopes: string[];
9704
9725
  customerId: string;
9726
+ variantKey?: string | undefined;
9705
9727
  };
9706
9728
  } | {
9707
9729
  data: {
9708
9730
  consentedScopes: string[];
9709
9731
  projectId: string;
9732
+ variantKey?: string | undefined;
9710
9733
  };
9711
9734
  }) & {
9712
9735
  pathParameters: {
@@ -9734,11 +9757,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9734
9757
  data: {
9735
9758
  consentedScopes: string[];
9736
9759
  customerId: string;
9760
+ variantKey?: string | undefined;
9737
9761
  };
9738
9762
  } | {
9739
9763
  data: {
9740
9764
  consentedScopes: string[];
9741
9765
  projectId: string;
9766
+ variantKey?: string | undefined;
9742
9767
  };
9743
9768
  }) & {
9744
9769
  pathParameters: {
@@ -10181,27 +10206,45 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10181
10206
  }, 429, "application/json">>>;
10182
10207
  /** Creates or Updates Pricing for an Extension. */
10183
10208
  extensionUpdateExtensionPricing: (request: {
10209
+ data: {
10210
+ priceInCents: number;
10211
+ dryRun?: boolean | undefined;
10212
+ };
10184
10213
  extensionId: string;
10185
10214
  contributorId: string;
10186
- data?: {
10187
- dryRun?: boolean | undefined;
10188
- priceInCents?: number | undefined;
10215
+ headers?: {
10216
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10217
+ "x-access-token"?: string | undefined;
10189
10218
  } | undefined;
10219
+ } | {
10220
+ data: {
10221
+ pricePlan: {
10222
+ variants: import("./types.js").MittwaldAPIV2.Components.Schemas.ExtensionVariant[];
10223
+ };
10224
+ dryRun?: boolean | undefined;
10225
+ };
10226
+ extensionId: string;
10227
+ contributorId: string;
10190
10228
  headers?: {
10191
10229
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10192
10230
  "x-access-token"?: string | undefined;
10193
10231
  } | undefined;
10194
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
10232
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<(({
10195
10233
  data: {
10196
10234
  dryRun?: boolean | undefined;
10197
- priceInCents?: number | undefined;
10235
+ priceInCents: number;
10198
10236
  };
10199
- } & {
10237
+ } | {
10238
+ data: {
10239
+ dryRun?: boolean | undefined;
10240
+ pricePlan: import("./types.js").MittwaldAPIV2.Components.Schemas.ExtensionPricePlan;
10241
+ };
10242
+ }) & {
10200
10243
  pathParameters: {
10201
10244
  extensionId: string;
10202
10245
  contributorId: string;
10203
10246
  };
10204
- } & {
10247
+ }) & {
10205
10248
  headers?: Partial<{
10206
10249
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10207
10250
  }>;
@@ -10229,17 +10272,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
10229
10272
  [x: string]: unknown;
10230
10273
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
10231
10274
  [x: string]: unknown;
10232
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
10275
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<(({
10233
10276
  data: {
10234
10277
  dryRun?: boolean | undefined;
10235
- priceInCents?: number | undefined;
10278
+ priceInCents: number;
10236
10279
  };
10237
- } & {
10280
+ } | {
10281
+ data: {
10282
+ dryRun?: boolean | undefined;
10283
+ pricePlan: import("./types.js").MittwaldAPIV2.Components.Schemas.ExtensionPricePlan;
10284
+ };
10285
+ }) & {
10238
10286
  pathParameters: {
10239
10287
  extensionId: string;
10240
10288
  contributorId: string;
10241
10289
  };
10242
- } & {
10290
+ }) & {
10243
10291
  headers?: Partial<{
10244
10292
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
10245
10293
  }>;
@@ -18557,58 +18605,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18557
18605
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
18558
18606
  [x: string]: unknown;
18559
18607
  }, 503, "application/json">>>;
18560
- /** Disable a MailAddress Archive. */
18561
- disableMailArchive: (request: {
18562
- mailArchiveId: string;
18563
- headers?: {
18564
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
18565
- "x-access-token"?: string | undefined;
18566
- } | undefined;
18567
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
18568
- headers?: Partial<{
18569
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18570
- }>;
18571
- } & {
18572
- pathParameters: {
18573
- mailArchiveId: string;
18574
- };
18575
- } & {
18576
- headers: {
18577
- "x-access-token"?: string | undefined;
18578
- } & Partial<{
18579
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18580
- }>;
18581
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
18582
- [x: string]: unknown;
18583
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
18584
- [x: string]: unknown;
18585
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
18586
- [x: string]: unknown;
18587
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
18588
- [x: string]: unknown;
18589
- }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
18590
- headers?: Partial<{
18591
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18592
- }>;
18593
- } & {
18594
- pathParameters: {
18595
- mailArchiveId: string;
18596
- };
18597
- } & {
18598
- headers: {
18599
- "x-access-token"?: string | undefined;
18600
- } & Partial<{
18601
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18602
- }>;
18603
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
18604
- [x: string]: unknown;
18605
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
18606
- [x: string]: unknown;
18607
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
18608
- [x: string]: unknown;
18609
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
18610
- [x: string]: unknown;
18611
- }, 503, "application/json">>>;
18612
18608
  /** List backups belonging to a MailAddress. */
18613
18609
  listBackupsForMailAddress: (request: {
18614
18610
  mailAddressId: string;
@@ -19391,6 +19387,66 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
19391
19387
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
19392
19388
  [x: string]: unknown;
19393
19389
  }, 503, "application/json">>>;
19390
+ /** Disable the mail-archive of a MailAddress. */
19391
+ disableMailArchive: (request: {
19392
+ mailAddressId: string;
19393
+ headers?: {
19394
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
19395
+ "x-access-token"?: string | undefined;
19396
+ } | undefined;
19397
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
19398
+ headers?: Partial<{
19399
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19400
+ }>;
19401
+ } & {
19402
+ pathParameters: {
19403
+ mailAddressId: string;
19404
+ };
19405
+ } & {
19406
+ headers: {
19407
+ "x-access-token"?: string | undefined;
19408
+ } & Partial<{
19409
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19410
+ }>;
19411
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
19412
+ [x: string]: unknown;
19413
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19414
+ [x: string]: unknown;
19415
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19416
+ [x: string]: unknown;
19417
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19418
+ [x: string]: unknown;
19419
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19420
+ [x: string]: unknown;
19421
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
19422
+ [x: string]: unknown;
19423
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
19424
+ headers?: Partial<{
19425
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19426
+ }>;
19427
+ } & {
19428
+ pathParameters: {
19429
+ mailAddressId: string;
19430
+ };
19431
+ } & {
19432
+ headers: {
19433
+ "x-access-token"?: string | undefined;
19434
+ } & Partial<{
19435
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19436
+ }>;
19437
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
19438
+ [x: string]: unknown;
19439
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19440
+ [x: string]: unknown;
19441
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19442
+ [x: string]: unknown;
19443
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19444
+ [x: string]: unknown;
19445
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19446
+ [x: string]: unknown;
19447
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
19448
+ [x: string]: unknown;
19449
+ }, 503, "application/json">>>;
19394
19450
  };
19395
19451
  /** The notification API allows you to manage your notifications. */
19396
19452
  readonly notification: {
@@ -23901,7 +23957,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23901
23957
  headers?: Partial<{
23902
23958
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23903
23959
  }>;
23904
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23960
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23905
23961
  [x: string]: unknown;
23906
23962
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23907
23963
  [x: string]: unknown;
@@ -23913,7 +23969,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23913
23969
  headers?: Partial<{
23914
23970
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23915
23971
  }>;
23916
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23972
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23917
23973
  [x: string]: unknown;
23918
23974
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23919
23975
  [x: string]: unknown;
@@ -24425,7 +24481,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24425
24481
  pathParameters: {
24426
24482
  projectId: string;
24427
24483
  };
24428
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24484
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24429
24485
  [x: string]: unknown;
24430
24486
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24431
24487
  [x: string]: unknown;
@@ -24441,7 +24497,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24441
24497
  pathParameters: {
24442
24498
  projectId: string;
24443
24499
  };
24444
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24500
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24445
24501
  [x: string]: unknown;
24446
24502
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
24447
24503
  [x: string]: unknown;
@@ -24474,11 +24530,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24474
24530
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24475
24531
  }>;
24476
24532
  }, import("@mittwald/api-client-commons").Response<{
24477
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24533
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
24478
24534
  customerId?: string | undefined;
24479
24535
  isBlocked: boolean;
24480
24536
  licenceId: string;
24481
24537
  licenceKey: string;
24538
+ limit: {
24539
+ allowedRequestsPerUnit: number;
24540
+ unit: "minute" | "hour";
24541
+ };
24482
24542
  models: string[];
24483
24543
  name: string;
24484
24544
  projectId?: string | undefined;
@@ -24509,11 +24569,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24509
24569
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24510
24570
  }>;
24511
24571
  }, import("@mittwald/api-client-commons").Response<{
24512
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24572
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
24513
24573
  customerId?: string | undefined;
24514
24574
  isBlocked: boolean;
24515
24575
  licenceId: string;
24516
24576
  licenceKey: string;
24577
+ limit: {
24578
+ allowedRequestsPerUnit: number;
24579
+ unit: "minute" | "hour";
24580
+ };
24517
24581
  models: string[];
24518
24582
  name: string;
24519
24583
  projectId?: string | undefined;
@@ -25442,11 +25506,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25442
25506
  licenceId: string;
25443
25507
  };
25444
25508
  }, import("@mittwald/api-client-commons").Response<{
25445
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
25509
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
25446
25510
  customerId?: string | undefined;
25447
25511
  isBlocked: boolean;
25448
25512
  licenceId: string;
25449
25513
  licenceKey: string;
25514
+ limit: {
25515
+ allowedRequestsPerUnit: number;
25516
+ unit: "minute" | "hour";
25517
+ };
25450
25518
  models: string[];
25451
25519
  name: string;
25452
25520
  projectId?: string | undefined;
@@ -25469,11 +25537,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25469
25537
  licenceId: string;
25470
25538
  };
25471
25539
  }, import("@mittwald/api-client-commons").Response<{
25472
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
25540
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
25473
25541
  customerId?: string | undefined;
25474
25542
  isBlocked: boolean;
25475
25543
  licenceId: string;
25476
25544
  licenceKey: string;
25545
+ limit: {
25546
+ allowedRequestsPerUnit: number;
25547
+ unit: "minute" | "hour";
25548
+ };
25477
25549
  models: string[];
25478
25550
  name: string;
25479
25551
  projectId?: string | undefined;
@@ -25513,11 +25585,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25513
25585
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25514
25586
  }>;
25515
25587
  }, import("@mittwald/api-client-commons").Response<{
25516
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
25588
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
25517
25589
  customerId?: string | undefined;
25518
25590
  isBlocked: boolean;
25519
25591
  licenceId: string;
25520
25592
  licenceKey: string;
25593
+ limit: {
25594
+ allowedRequestsPerUnit: number;
25595
+ unit: "minute" | "hour";
25596
+ };
25521
25597
  models: string[];
25522
25598
  name: string;
25523
25599
  projectId?: string | undefined;
@@ -25549,11 +25625,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25549
25625
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25550
25626
  }>;
25551
25627
  }, import("@mittwald/api-client-commons").Response<{
25552
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
25628
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
25553
25629
  customerId?: string | undefined;
25554
25630
  isBlocked: boolean;
25555
25631
  licenceId: string;
25556
25632
  licenceKey: string;
25633
+ limit: {
25634
+ allowedRequestsPerUnit: number;
25635
+ unit: "minute" | "hour";
25636
+ };
25557
25637
  models: string[];
25558
25638
  name: string;
25559
25639
  projectId?: string | undefined;
@@ -559,8 +559,6 @@ export declare const mailDeleteDeliveryBox: OpenAPIOperation<RequestType<Simplif
559
559
  export declare const mailGetMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
560
560
  /** Delete a MailAddress. */
561
561
  export declare const mailDeleteMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
562
- /** Disable a MailAddress Archive. */
563
- export declare const mailDisableMailArchive: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailArchiveMailArchiveId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
564
562
  /** List backups belonging to a MailAddress. */
565
563
  export declare const mailListBackupsForMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
566
564
  /** List mail settings of a Project. */
@@ -863,3 +861,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
863
861
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
864
862
  /** Check if a company exists. */
865
863
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
864
+ /** Disable the mail-archive of a MailAddress. */
865
+ export declare const mailDisableMailArchive: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1114,10 +1114,6 @@ export declare namespace MittwaldAPIV2 {
1114
1114
  type RequestData = InferredRequestData<typeof descriptors.mailDeleteMailAddress>;
1115
1115
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDeleteMailAddress, TStatus>;
1116
1116
  }
1117
- namespace MailDisableMailArchive {
1118
- type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
1119
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
1120
- }
1121
1117
  namespace MailListBackupsForMailAddress {
1122
1118
  type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
1123
1119
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
@@ -1722,6 +1718,10 @@ export declare namespace MittwaldAPIV2 {
1722
1718
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1723
1719
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1724
1720
  }
1721
+ namespace MailDisableMailArchive {
1722
+ type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
1723
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
1724
+ }
1725
1725
  }
1726
1726
  namespace Components {
1727
1727
  namespace Schemas {
@@ -1775,7 +1775,7 @@ export declare namespace MittwaldAPIV2 {
1775
1775
  /**
1776
1776
  * Phase describes the current phase/state of an AppInstallation in its lifecycle.
1777
1777
  */
1778
- type AppPhase = "pending" | "installing" | "upgrading" | "ready" | "disabled";
1778
+ type AppPhase = "pending" | "installing" | "upgrading" | "ready" | "disabled" | "reconfiguring";
1779
1779
  /**
1780
1780
  * AppUpdatePolicy describes which updates should be applied automatically by our systems.
1781
1781
  */
@@ -2085,6 +2085,10 @@ export declare namespace MittwaldAPIV2 {
2085
2085
  * Command of the container image.
2086
2086
  */
2087
2087
  command?: string[];
2088
+ /**
2089
+ * The image digest.
2090
+ */
2091
+ digest: string;
2088
2092
  /**
2089
2093
  * Entrypoint of the container image.
2090
2094
  */
@@ -2566,7 +2570,6 @@ export declare namespace MittwaldAPIV2 {
2566
2570
  * @maxItems 0
2567
2571
  */
2568
2572
  files?: [];
2569
- internal?: boolean;
2570
2573
  messageContent: "relocation" | "call";
2571
2574
  messageId: string;
2572
2575
  meta: MittwaldAPIV2.Components.Schemas.ConversationServiceRequestRelocationPayload;
@@ -3289,6 +3292,7 @@ export declare namespace MittwaldAPIV2 {
3289
3292
  id: string;
3290
3293
  pendingInstallation: boolean;
3291
3294
  pendingRemoval: boolean;
3295
+ variantKey?: string;
3292
3296
  }
3293
3297
  interface MarketplaceExtensionInstanceChargeability {
3294
3298
  isChargeable: boolean;
@@ -4020,8 +4024,17 @@ export declare namespace MittwaldAPIV2 {
4020
4024
  interface MailMailAddress {
4021
4025
  address: string;
4022
4026
  archive: {
4027
+ /**
4028
+ * shows if the mail-archive is enabled
4029
+ */
4023
4030
  active: boolean;
4031
+ /**
4032
+ * maximum available mail-archive storage in bytes
4033
+ */
4024
4034
  quota: number;
4035
+ /**
4036
+ * current mail-archive usage in bytes
4037
+ */
4025
4038
  usedBytes: number;
4026
4039
  };
4027
4040
  autoResponder: {
@@ -4756,28 +4769,48 @@ export declare namespace MittwaldAPIV2 {
4756
4769
  memory?: string;
4757
4770
  storage: string;
4758
4771
  }
4759
- interface LlmlocksmithContainerMeta {
4772
+ interface AihostingContainerMeta {
4760
4773
  containerId?: string;
4761
4774
  errorMessage?: string;
4762
4775
  ingressId?: string;
4763
4776
  stackId?: string;
4764
4777
  status: "created" | "requested" | "failed";
4765
4778
  }
4766
- interface LlmlocksmithLicence {
4767
- containerMeta?: MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta;
4779
+ interface AihostingLicence {
4780
+ containerMeta?: MittwaldAPIV2.Components.Schemas.AihostingContainerMeta;
4768
4781
  customerId?: string;
4769
4782
  /**
4770
4783
  * Indicates whether the licence is blocked.
4771
4784
  */
4772
4785
  isBlocked: boolean;
4786
+ /**
4787
+ * Auto generated uuid to identify licences in requests.
4788
+ */
4773
4789
  licenceId: string;
4790
+ /**
4791
+ * The secret API key which is required for authentication with the LLM hosting.
4792
+ */
4774
4793
  licenceKey: string;
4794
+ /**
4795
+ * The number of allowed requests per unit. Limits are shared across all licences within the same project.
4796
+ */
4797
+ limit: {
4798
+ allowedRequestsPerUnit: number;
4799
+ unit: "minute" | "hour";
4800
+ };
4801
+ /**
4802
+ * An array of LLM model identifiers enabled for this licence.
4803
+ */
4775
4804
  models: string[];
4776
4805
  name: string;
4777
4806
  projectId?: string;
4807
+ /**
4808
+ * @deprecated
4809
+ * Deprecated, please us limit.allowedRequestsPerUnit
4810
+ */
4778
4811
  rateLimit: number;
4779
4812
  }
4780
- interface LlmlocksmithModel {
4813
+ interface AihostingModel {
4781
4814
  displayName: string;
4782
4815
  docLink: string;
4783
4816
  name: string;
@@ -5319,6 +5352,30 @@ export declare namespace MittwaldAPIV2 {
5319
5352
  }
5320
5353
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
5321
5354
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
5355
+ /**
5356
+ * PricePlan with Variants.
5357
+ */
5358
+ interface ExtensionPricePlan {
5359
+ variants: MittwaldAPIV2.Components.Schemas.ExtensionVariant[];
5360
+ }
5361
+ interface ExtensionVariant {
5362
+ /**
5363
+ * Description of Variant.
5364
+ */
5365
+ description?: string;
5366
+ /**
5367
+ * Key that needs to be unique in Variant.
5368
+ */
5369
+ key: string;
5370
+ /**
5371
+ * Name of Variant.
5372
+ */
5373
+ name?: string;
5374
+ /**
5375
+ * Price in cents.
5376
+ */
5377
+ priceInCents: number;
5378
+ }
5322
5379
  interface CommonsAddress {
5323
5380
  street: string;
5324
5381
  houseNumber: string;
@@ -16529,6 +16586,10 @@ export declare namespace MittwaldAPIV2 {
16529
16586
  extensionInstanceId: string;
16530
16587
  };
16531
16588
  interface RequestBody {
16589
+ /**
16590
+ * The Variant Key of the selected Variant of the Extension. This is only required if the Extension has multiple Variants.
16591
+ */
16592
+ variantKey?: string;
16532
16593
  }
16533
16594
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
16534
16595
  type Query = {};
@@ -17049,12 +17110,20 @@ export declare namespace MittwaldAPIV2 {
17049
17110
  * The customer the extension should be booked for. Either customerId or projectId is required.
17050
17111
  */
17051
17112
  customerId: string;
17113
+ /**
17114
+ * The Variant Key of the selected Variant of the Extension. This is only required if the Extension has multiple Variants.
17115
+ */
17116
+ variantKey?: string;
17052
17117
  } | {
17053
17118
  consentedScopes: string[];
17054
17119
  /**
17055
17120
  * The project the extension should be installed in. Either customerId or projectId is required.
17056
17121
  */
17057
17122
  projectId: string;
17123
+ /**
17124
+ * The Variant Key of the selected Variant of the Extension. This is only required if the Extension has multiple Variants.
17125
+ */
17126
+ variantKey?: string;
17058
17127
  };
17059
17128
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17060
17129
  type Query = {};
@@ -17439,7 +17508,7 @@ export declare namespace MittwaldAPIV2 {
17439
17508
  extensionId: string;
17440
17509
  contributorId: string;
17441
17510
  };
17442
- interface RequestBody {
17511
+ type RequestBody = {
17443
17512
  /**
17444
17513
  * If set to true, the request will be validated but not executed.
17445
17514
  */
@@ -17447,8 +17516,14 @@ export declare namespace MittwaldAPIV2 {
17447
17516
  /**
17448
17517
  * Price in cents.
17449
17518
  */
17450
- priceInCents?: number;
17451
- }
17519
+ priceInCents: number;
17520
+ } | {
17521
+ /**
17522
+ * If set to true, the request will be validated but not executed.
17523
+ */
17524
+ dryRun?: boolean;
17525
+ pricePlan: MittwaldAPIV2.Components.Schemas.ExtensionPricePlan;
17526
+ };
17452
17527
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17453
17528
  type Query = {};
17454
17529
  }
@@ -19773,59 +19848,6 @@ export declare namespace MittwaldAPIV2 {
19773
19848
  }
19774
19849
  }
19775
19850
  }
19776
- namespace V2MailArchiveMailArchiveId {
19777
- namespace Delete {
19778
- namespace Parameters {
19779
- type Path = {
19780
- mailArchiveId: string;
19781
- };
19782
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
19783
- type Query = {};
19784
- }
19785
- namespace Responses {
19786
- namespace $204 {
19787
- namespace Content {
19788
- type Empty = unknown;
19789
- }
19790
- }
19791
- namespace $403 {
19792
- namespace Content {
19793
- interface ApplicationJson {
19794
- [k: string]: unknown;
19795
- }
19796
- }
19797
- }
19798
- namespace $429 {
19799
- namespace Content {
19800
- interface ApplicationJson {
19801
- [k: string]: unknown;
19802
- }
19803
- }
19804
- }
19805
- namespace $500 {
19806
- namespace Content {
19807
- interface ApplicationJson {
19808
- [k: string]: unknown;
19809
- }
19810
- }
19811
- }
19812
- namespace $503 {
19813
- namespace Content {
19814
- interface ApplicationJson {
19815
- [k: string]: unknown;
19816
- }
19817
- }
19818
- }
19819
- namespace Default {
19820
- namespace Content {
19821
- interface ApplicationJson {
19822
- [k: string]: unknown;
19823
- }
19824
- }
19825
- }
19826
- }
19827
- }
19828
- }
19829
19851
  namespace V2MailAddressesMailAddressIdBackups {
19830
19852
  namespace Get {
19831
19853
  namespace Parameters {
@@ -20635,7 +20657,7 @@ export declare namespace MittwaldAPIV2 {
20635
20657
  namespace Responses {
20636
20658
  namespace $200 {
20637
20659
  namespace Content {
20638
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[];
20660
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingModel[];
20639
20661
  }
20640
20662
  }
20641
20663
  namespace $400 {
@@ -21567,7 +21589,7 @@ export declare namespace MittwaldAPIV2 {
21567
21589
  namespace Responses {
21568
21590
  namespace $200 {
21569
21591
  namespace Content {
21570
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[];
21592
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingLicence[];
21571
21593
  }
21572
21594
  }
21573
21595
  namespace $400 {
@@ -21622,7 +21644,7 @@ export declare namespace MittwaldAPIV2 {
21622
21644
  namespace Responses {
21623
21645
  namespace $201 {
21624
21646
  namespace Content {
21625
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
21647
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingLicence;
21626
21648
  }
21627
21649
  }
21628
21650
  namespace $400 {
@@ -22649,7 +22671,7 @@ export declare namespace MittwaldAPIV2 {
22649
22671
  namespace Responses {
22650
22672
  namespace $200 {
22651
22673
  namespace Content {
22652
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
22674
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingLicence;
22653
22675
  }
22654
22676
  }
22655
22677
  namespace $400 {
@@ -22705,7 +22727,7 @@ export declare namespace MittwaldAPIV2 {
22705
22727
  namespace Responses {
22706
22728
  namespace $200 {
22707
22729
  namespace Content {
22708
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
22730
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingLicence;
22709
22731
  }
22710
22732
  }
22711
22733
  namespace $400 {
@@ -27111,5 +27133,72 @@ export declare namespace MittwaldAPIV2 {
27111
27133
  }
27112
27134
  }
27113
27135
  }
27136
+ namespace V2MailAddressesMailAddressIdMailArchive {
27137
+ namespace Delete {
27138
+ namespace Parameters {
27139
+ type Path = {
27140
+ mailAddressId: string;
27141
+ };
27142
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
27143
+ type Query = {};
27144
+ }
27145
+ namespace Responses {
27146
+ namespace $204 {
27147
+ namespace Content {
27148
+ type Empty = unknown;
27149
+ }
27150
+ }
27151
+ namespace $400 {
27152
+ namespace Content {
27153
+ interface ApplicationJson {
27154
+ [k: string]: unknown;
27155
+ }
27156
+ }
27157
+ }
27158
+ namespace $403 {
27159
+ namespace Content {
27160
+ interface ApplicationJson {
27161
+ [k: string]: unknown;
27162
+ }
27163
+ }
27164
+ }
27165
+ namespace $404 {
27166
+ namespace Content {
27167
+ interface ApplicationJson {
27168
+ [k: string]: unknown;
27169
+ }
27170
+ }
27171
+ }
27172
+ namespace $429 {
27173
+ namespace Content {
27174
+ interface ApplicationJson {
27175
+ [k: string]: unknown;
27176
+ }
27177
+ }
27178
+ }
27179
+ namespace $500 {
27180
+ namespace Content {
27181
+ interface ApplicationJson {
27182
+ [k: string]: unknown;
27183
+ }
27184
+ }
27185
+ }
27186
+ namespace $503 {
27187
+ namespace Content {
27188
+ interface ApplicationJson {
27189
+ [k: string]: unknown;
27190
+ }
27191
+ }
27192
+ }
27193
+ namespace Default {
27194
+ namespace Content {
27195
+ interface ApplicationJson {
27196
+ [k: string]: unknown;
27197
+ }
27198
+ }
27199
+ }
27200
+ }
27201
+ }
27202
+ }
27114
27203
  }
27115
27204
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.220.0';
1
+ export declare const MittwaldAPIClientVersion = '4.223.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-a7ffc6b-20250910",
3
+ "version": "0.0.0-development-404b2c6-20250912",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -46,11 +46,11 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^0.0.0-development-a7ffc6b-20250910",
49
+ "@mittwald/api-client-commons": "^0.0.0-development-404b2c6-20250912",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^0.0.0-development-a7ffc6b-20250910",
53
+ "@mittwald/api-code-generator": "^0.0.0-development-404b2c6-20250912",
54
54
  "@mittwald/react-use-promise": "^2.6.0",
55
55
  "@types/node": "^22.10.1",
56
56
  "@types/react": "^18.3.14",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "3726c6f6bfba866fe83e3ec5b760584ed37c5b4e"
83
+ "gitHead": "d6745d93ec9415c06ed6573dcdb716dd121d78bd"
84
84
  }