@mittwald/api-client 4.222.0 → 4.224.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.
@@ -605,6 +605,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
605
605
  updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
606
606
  /** Update a mail setting of a Project. */
607
607
  updateProjectMailSetting: this.requestFunctionFactory(descriptors.mailUpdateProjectMailSetting),
608
+ /** Disable the mail-archive of a MailAddress. */
609
+ disableMailArchive: this.requestFunctionFactory(descriptors.mailDisableMailArchive),
608
610
  };
609
611
  /** The notification API allows you to manage your notifications. */
610
612
  notification = {
@@ -2536,3 +2536,9 @@ export const verificationVerifyCompany = {
2536
2536
  method: "POST",
2537
2537
  operationId: "verification-verify-company",
2538
2538
  };
2539
+ /** Disable the mail-archive of a MailAddress. */
2540
+ export const mailDisableMailArchive = {
2541
+ path: "/v2/mail-addresses/{mailAddressId}/mail-archive",
2542
+ method: "DELETE",
2543
+ operationId: "mail-disable-mail-archive",
2544
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.221.0';
1
+ export const MittwaldAPIClientVersion = '4.223.0';
@@ -423,6 +423,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
423
423
  } | undefined;
424
424
  }) => import("@mittwald/react-use-promise").AsyncResource<{
425
425
  command?: string[] | undefined;
426
+ digest: string;
426
427
  entrypoint?: string[] | undefined;
427
428
  env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
428
429
  exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
@@ -2306,6 +2307,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2306
2307
  forwardAddress?: boolean | undefined;
2307
2308
  catchAll?: boolean | undefined;
2308
2309
  autoResponder?: boolean | undefined;
2310
+ mailArchive?: boolean | undefined;
2309
2311
  limit?: number | undefined;
2310
2312
  skip?: number | undefined;
2311
2313
  page?: number | undefined;
@@ -2339,6 +2341,11 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2339
2341
  } | undefined;
2340
2342
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2341
2343
  address: string;
2344
+ archive: {
2345
+ active: boolean;
2346
+ quota: number;
2347
+ usedBytes: number;
2348
+ };
2342
2349
  autoResponder: {
2343
2350
  active: boolean;
2344
2351
  expiresAt?: string;
@@ -2399,7 +2406,7 @@ declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
2399
2406
  headers?: {
2400
2407
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2401
2408
  } | undefined;
2402
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[]>;
2409
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[]>;
2403
2410
  };
2404
2411
  declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
2405
2412
  /** Getting the subscription status of the subscription. */
@@ -2729,7 +2736,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2729
2736
  headers?: {
2730
2737
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2731
2738
  } | undefined;
2732
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[]>;
2739
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingLicence[]>;
2733
2740
  /** List Invites belonging to a Project. */
2734
2741
  listInvitesForProject: (conf: {
2735
2742
  projectId: string;
@@ -2830,11 +2837,15 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2830
2837
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2831
2838
  } | undefined;
2832
2839
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2833
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
2840
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
2834
2841
  customerId?: string | undefined;
2835
2842
  isBlocked: boolean;
2836
2843
  licenceId: string;
2837
2844
  licenceKey: string;
2845
+ limit: {
2846
+ allowedRequestsPerUnit: number;
2847
+ unit: "minute" | "hour";
2848
+ };
2838
2849
  models: string[];
2839
2850
  name: string;
2840
2851
  projectId?: string | undefined;
@@ -3161,6 +3161,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3161
3161
  }>;
3162
3162
  }, import("@mittwald/api-client-commons").Response<{
3163
3163
  command?: string[] | undefined;
3164
+ digest: string;
3164
3165
  entrypoint?: string[] | undefined;
3165
3166
  env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
3166
3167
  exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
@@ -3204,6 +3205,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3204
3205
  }>;
3205
3206
  }, import("@mittwald/api-client-commons").Response<{
3206
3207
  command?: string[] | undefined;
3208
+ digest: string;
3207
3209
  entrypoint?: string[] | undefined;
3208
3210
  env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
3209
3211
  exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
@@ -9511,6 +9513,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9511
9513
  data: {
9512
9514
  consentedScopes: string[];
9513
9515
  customerId: string;
9516
+ variantKey?: string | undefined;
9514
9517
  };
9515
9518
  extensionId: string;
9516
9519
  headers?: {
@@ -9521,6 +9524,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9521
9524
  data: {
9522
9525
  consentedScopes: string[];
9523
9526
  projectId: string;
9527
+ variantKey?: string | undefined;
9524
9528
  };
9525
9529
  extensionId: string;
9526
9530
  headers?: {
@@ -9531,11 +9535,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9531
9535
  data: {
9532
9536
  consentedScopes: string[];
9533
9537
  customerId: string;
9538
+ variantKey?: string | undefined;
9534
9539
  };
9535
9540
  } | {
9536
9541
  data: {
9537
9542
  consentedScopes: string[];
9538
9543
  projectId: string;
9544
+ variantKey?: string | undefined;
9539
9545
  };
9540
9546
  }) & {
9541
9547
  pathParameters: {
@@ -9563,11 +9569,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9563
9569
  data: {
9564
9570
  consentedScopes: string[];
9565
9571
  customerId: string;
9572
+ variantKey?: string | undefined;
9566
9573
  };
9567
9574
  } | {
9568
9575
  data: {
9569
9576
  consentedScopes: string[];
9570
9577
  projectId: string;
9578
+ variantKey?: string | undefined;
9571
9579
  };
9572
9580
  }) & {
9573
9581
  pathParameters: {
@@ -17781,6 +17789,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17781
17789
  forwardAddress?: boolean | undefined;
17782
17790
  catchAll?: boolean | undefined;
17783
17791
  autoResponder?: boolean | undefined;
17792
+ mailArchive?: boolean | undefined;
17784
17793
  limit?: number | undefined;
17785
17794
  skip?: number | undefined;
17786
17795
  page?: number | undefined;
@@ -17801,6 +17810,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17801
17810
  forwardAddress?: boolean | undefined;
17802
17811
  catchAll?: boolean | undefined;
17803
17812
  autoResponder?: boolean | undefined;
17813
+ mailArchive?: boolean | undefined;
17804
17814
  limit?: number | undefined;
17805
17815
  skip?: number | undefined;
17806
17816
  page?: number | undefined;
@@ -17841,6 +17851,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
17841
17851
  forwardAddress?: boolean | undefined;
17842
17852
  catchAll?: boolean | undefined;
17843
17853
  autoResponder?: boolean | undefined;
17854
+ mailArchive?: boolean | undefined;
17844
17855
  limit?: number | undefined;
17845
17856
  skip?: number | undefined;
17846
17857
  page?: number | undefined;
@@ -18145,6 +18156,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18145
18156
  }>;
18146
18157
  }, import("@mittwald/api-client-commons").Response<{
18147
18158
  address: string;
18159
+ archive: {
18160
+ active: boolean;
18161
+ quota: number;
18162
+ usedBytes: number;
18163
+ };
18148
18164
  autoResponder: {
18149
18165
  active: boolean;
18150
18166
  expiresAt?: string;
@@ -18205,6 +18221,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18205
18221
  }>;
18206
18222
  }, import("@mittwald/api-client-commons").Response<{
18207
18223
  address: string;
18224
+ archive: {
18225
+ active: boolean;
18226
+ quota: number;
18227
+ usedBytes: number;
18228
+ };
18208
18229
  autoResponder: {
18209
18230
  active: boolean;
18210
18231
  expiresAt?: string;
@@ -18861,6 +18882,66 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
18861
18882
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
18862
18883
  [x: string]: unknown;
18863
18884
  }, 503, "application/json">>>;
18885
+ /** Disable the mail-archive of a MailAddress. */
18886
+ disableMailArchive: (request: {
18887
+ mailAddressId: string;
18888
+ headers?: {
18889
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
18890
+ "x-access-token"?: string | undefined;
18891
+ } | undefined;
18892
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
18893
+ headers?: Partial<{
18894
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18895
+ }>;
18896
+ } & {
18897
+ pathParameters: {
18898
+ mailAddressId: string;
18899
+ };
18900
+ } & {
18901
+ headers: {
18902
+ "x-access-token"?: string | undefined;
18903
+ } & Partial<{
18904
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18905
+ }>;
18906
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
18907
+ [x: string]: unknown;
18908
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
18909
+ [x: string]: unknown;
18910
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
18911
+ [x: string]: unknown;
18912
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
18913
+ [x: string]: unknown;
18914
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
18915
+ [x: string]: unknown;
18916
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
18917
+ [x: string]: unknown;
18918
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
18919
+ headers?: Partial<{
18920
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18921
+ }>;
18922
+ } & {
18923
+ pathParameters: {
18924
+ mailAddressId: string;
18925
+ };
18926
+ } & {
18927
+ headers: {
18928
+ "x-access-token"?: string | undefined;
18929
+ } & Partial<{
18930
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
18931
+ }>;
18932
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
18933
+ [x: string]: unknown;
18934
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
18935
+ [x: string]: unknown;
18936
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
18937
+ [x: string]: unknown;
18938
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
18939
+ [x: string]: unknown;
18940
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
18941
+ [x: string]: unknown;
18942
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
18943
+ [x: string]: unknown;
18944
+ }, 503, "application/json">>>;
18864
18945
  };
18865
18946
  /** The notification API allows you to manage your notifications. */
18866
18947
  readonly notification: {
@@ -23371,7 +23452,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23371
23452
  headers?: Partial<{
23372
23453
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23373
23454
  }>;
23374
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23455
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23375
23456
  [x: string]: unknown;
23376
23457
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23377
23458
  [x: string]: unknown;
@@ -23383,7 +23464,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23383
23464
  headers?: Partial<{
23384
23465
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23385
23466
  }>;
23386
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23467
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23387
23468
  [x: string]: unknown;
23388
23469
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23389
23470
  [x: string]: unknown;
@@ -23968,7 +24049,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23968
24049
  pathParameters: {
23969
24050
  projectId: string;
23970
24051
  };
23971
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24052
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23972
24053
  [x: string]: unknown;
23973
24054
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23974
24055
  [x: string]: unknown;
@@ -23984,7 +24065,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23984
24065
  pathParameters: {
23985
24066
  projectId: string;
23986
24067
  };
23987
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
24068
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingLicence[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23988
24069
  [x: string]: unknown;
23989
24070
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23990
24071
  [x: string]: unknown;
@@ -24017,11 +24098,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24017
24098
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24018
24099
  }>;
24019
24100
  }, import("@mittwald/api-client-commons").Response<{
24020
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24101
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
24021
24102
  customerId?: string | undefined;
24022
24103
  isBlocked: boolean;
24023
24104
  licenceId: string;
24024
24105
  licenceKey: string;
24106
+ limit: {
24107
+ allowedRequestsPerUnit: number;
24108
+ unit: "minute" | "hour";
24109
+ };
24025
24110
  models: string[];
24026
24111
  name: string;
24027
24112
  projectId?: string | undefined;
@@ -24052,11 +24137,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24052
24137
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24053
24138
  }>;
24054
24139
  }, import("@mittwald/api-client-commons").Response<{
24055
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24140
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
24056
24141
  customerId?: string | undefined;
24057
24142
  isBlocked: boolean;
24058
24143
  licenceId: string;
24059
24144
  licenceKey: string;
24145
+ limit: {
24146
+ allowedRequestsPerUnit: number;
24147
+ unit: "minute" | "hour";
24148
+ };
24060
24149
  models: string[];
24061
24150
  name: string;
24062
24151
  projectId?: string | undefined;
@@ -24985,11 +25074,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24985
25074
  licenceId: string;
24986
25075
  };
24987
25076
  }, import("@mittwald/api-client-commons").Response<{
24988
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
25077
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
24989
25078
  customerId?: string | undefined;
24990
25079
  isBlocked: boolean;
24991
25080
  licenceId: string;
24992
25081
  licenceKey: string;
25082
+ limit: {
25083
+ allowedRequestsPerUnit: number;
25084
+ unit: "minute" | "hour";
25085
+ };
24993
25086
  models: string[];
24994
25087
  name: string;
24995
25088
  projectId?: string | undefined;
@@ -25012,11 +25105,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25012
25105
  licenceId: string;
25013
25106
  };
25014
25107
  }, import("@mittwald/api-client-commons").Response<{
25015
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
25108
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
25016
25109
  customerId?: string | undefined;
25017
25110
  isBlocked: boolean;
25018
25111
  licenceId: string;
25019
25112
  licenceKey: string;
25113
+ limit: {
25114
+ allowedRequestsPerUnit: number;
25115
+ unit: "minute" | "hour";
25116
+ };
25020
25117
  models: string[];
25021
25118
  name: string;
25022
25119
  projectId?: string | undefined;
@@ -25056,11 +25153,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25056
25153
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25057
25154
  }>;
25058
25155
  }, import("@mittwald/api-client-commons").Response<{
25059
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
25156
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
25060
25157
  customerId?: string | undefined;
25061
25158
  isBlocked: boolean;
25062
25159
  licenceId: string;
25063
25160
  licenceKey: string;
25161
+ limit: {
25162
+ allowedRequestsPerUnit: number;
25163
+ unit: "minute" | "hour";
25164
+ };
25064
25165
  models: string[];
25065
25166
  name: string;
25066
25167
  projectId?: string | undefined;
@@ -25092,11 +25193,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25092
25193
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
25093
25194
  }>;
25094
25195
  }, import("@mittwald/api-client-commons").Response<{
25095
- containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
25196
+ containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingContainerMeta | undefined;
25096
25197
  customerId?: string | undefined;
25097
25198
  isBlocked: boolean;
25098
25199
  licenceId: string;
25099
25200
  licenceKey: string;
25201
+ limit: {
25202
+ allowedRequestsPerUnit: number;
25203
+ unit: "minute" | "hour";
25204
+ };
25100
25205
  models: string[];
25101
25206
  name: string;
25102
25207
  projectId?: string | undefined;
@@ -849,3 +849,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
849
849
  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">>;
850
850
  /** Check if a company exists. */
851
851
  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">>;
852
+ /** Disable the mail-archive of a MailAddress. */
853
+ 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">>;
@@ -1694,6 +1694,10 @@ export declare namespace MittwaldAPIV2 {
1694
1694
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1695
1695
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1696
1696
  }
1697
+ namespace MailDisableMailArchive {
1698
+ type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
1699
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
1700
+ }
1697
1701
  }
1698
1702
  namespace Components {
1699
1703
  namespace Schemas {
@@ -1747,7 +1751,7 @@ export declare namespace MittwaldAPIV2 {
1747
1751
  /**
1748
1752
  * Phase describes the current phase/state of an AppInstallation in its lifecycle.
1749
1753
  */
1750
- type AppPhase = "pending" | "installing" | "upgrading" | "ready" | "disabled";
1754
+ type AppPhase = "pending" | "installing" | "upgrading" | "ready" | "disabled" | "reconfiguring";
1751
1755
  /**
1752
1756
  * AppUpdatePolicy describes which updates should be applied automatically by our systems.
1753
1757
  */
@@ -2022,6 +2026,10 @@ export declare namespace MittwaldAPIV2 {
2022
2026
  * Command of the container image.
2023
2027
  */
2024
2028
  command?: string[];
2029
+ /**
2030
+ * The image digest.
2031
+ */
2032
+ digest: string;
2025
2033
  /**
2026
2034
  * Entrypoint of the container image.
2027
2035
  */
@@ -3955,6 +3963,20 @@ export declare namespace MittwaldAPIV2 {
3955
3963
  }
3956
3964
  interface MailMailAddress {
3957
3965
  address: string;
3966
+ archive: {
3967
+ /**
3968
+ * shows if the mail-archive is enabled
3969
+ */
3970
+ active: boolean;
3971
+ /**
3972
+ * maximum available mail-archive storage in bytes
3973
+ */
3974
+ quota: number;
3975
+ /**
3976
+ * current mail-archive usage in bytes
3977
+ */
3978
+ usedBytes: number;
3979
+ };
3958
3980
  autoResponder: {
3959
3981
  active: boolean;
3960
3982
  expiresAt?: string;
@@ -4674,28 +4696,48 @@ export declare namespace MittwaldAPIV2 {
4674
4696
  memory?: string;
4675
4697
  storage: string;
4676
4698
  }
4677
- interface LlmlocksmithContainerMeta {
4699
+ interface AihostingContainerMeta {
4678
4700
  containerId?: string;
4679
4701
  errorMessage?: string;
4680
4702
  ingressId?: string;
4681
4703
  stackId?: string;
4682
4704
  status: "created" | "requested" | "failed";
4683
4705
  }
4684
- interface LlmlocksmithLicence {
4685
- containerMeta?: MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta;
4706
+ interface AihostingLicence {
4707
+ containerMeta?: MittwaldAPIV2.Components.Schemas.AihostingContainerMeta;
4686
4708
  customerId?: string;
4687
4709
  /**
4688
4710
  * Indicates whether the licence is blocked.
4689
4711
  */
4690
4712
  isBlocked: boolean;
4713
+ /**
4714
+ * Auto generated uuid to identify licences in requests.
4715
+ */
4691
4716
  licenceId: string;
4717
+ /**
4718
+ * The secret API key which is required for authentication with the LLM hosting.
4719
+ */
4692
4720
  licenceKey: string;
4721
+ /**
4722
+ * The number of allowed requests per unit. Limits are shared across all licences within the same project.
4723
+ */
4724
+ limit: {
4725
+ allowedRequestsPerUnit: number;
4726
+ unit: "minute" | "hour";
4727
+ };
4728
+ /**
4729
+ * An array of LLM model identifiers enabled for this licence.
4730
+ */
4693
4731
  models: string[];
4694
4732
  name: string;
4695
4733
  projectId?: string;
4734
+ /**
4735
+ * @deprecated
4736
+ * Deprecated, please us limit.allowedRequestsPerUnit
4737
+ */
4696
4738
  rateLimit: number;
4697
4739
  }
4698
- interface LlmlocksmithModel {
4740
+ interface AihostingModel {
4699
4741
  displayName: string;
4700
4742
  docLink: string;
4701
4743
  name: string;
@@ -16880,12 +16922,20 @@ export declare namespace MittwaldAPIV2 {
16880
16922
  * The customer the extension should be booked for. Either customerId or projectId is required.
16881
16923
  */
16882
16924
  customerId: string;
16925
+ /**
16926
+ * The Variant Key of the selected Variant of the Extension. This is only required if the Extension has multiple Variants.
16927
+ */
16928
+ variantKey?: string;
16883
16929
  } | {
16884
16930
  consentedScopes: string[];
16885
16931
  /**
16886
16932
  * The project the extension should be installed in. Either customerId or projectId is required.
16887
16933
  */
16888
16934
  projectId: string;
16935
+ /**
16936
+ * The Variant Key of the selected Variant of the Extension. This is only required if the Extension has multiple Variants.
16937
+ */
16938
+ variantKey?: string;
16889
16939
  };
16890
16940
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
16891
16941
  type Query = {};
@@ -19226,6 +19276,7 @@ export declare namespace MittwaldAPIV2 {
19226
19276
  forwardAddress?: boolean;
19227
19277
  catchAll?: boolean;
19228
19278
  autoResponder?: boolean;
19279
+ mailArchive?: boolean;
19229
19280
  limit?: number;
19230
19281
  skip?: number;
19231
19282
  page?: number;
@@ -20267,7 +20318,7 @@ export declare namespace MittwaldAPIV2 {
20267
20318
  namespace Responses {
20268
20319
  namespace $200 {
20269
20320
  namespace Content {
20270
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithModel[];
20321
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingModel[];
20271
20322
  }
20272
20323
  }
20273
20324
  namespace $400 {
@@ -21202,7 +21253,7 @@ export declare namespace MittwaldAPIV2 {
21202
21253
  namespace Responses {
21203
21254
  namespace $200 {
21204
21255
  namespace Content {
21205
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence[];
21256
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingLicence[];
21206
21257
  }
21207
21258
  }
21208
21259
  namespace $400 {
@@ -21257,7 +21308,7 @@ export declare namespace MittwaldAPIV2 {
21257
21308
  namespace Responses {
21258
21309
  namespace $201 {
21259
21310
  namespace Content {
21260
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
21311
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingLicence;
21261
21312
  }
21262
21313
  }
21263
21314
  namespace $400 {
@@ -22289,7 +22340,7 @@ export declare namespace MittwaldAPIV2 {
22289
22340
  namespace Responses {
22290
22341
  namespace $200 {
22291
22342
  namespace Content {
22292
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
22343
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingLicence;
22293
22344
  }
22294
22345
  }
22295
22346
  namespace $400 {
@@ -22345,7 +22396,7 @@ export declare namespace MittwaldAPIV2 {
22345
22396
  namespace Responses {
22346
22397
  namespace $200 {
22347
22398
  namespace Content {
22348
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LlmlocksmithLicence;
22399
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingLicence;
22349
22400
  }
22350
22401
  }
22351
22402
  namespace $400 {
@@ -26757,5 +26808,72 @@ export declare namespace MittwaldAPIV2 {
26757
26808
  }
26758
26809
  }
26759
26810
  }
26811
+ namespace V2MailAddressesMailAddressIdMailArchive {
26812
+ namespace Delete {
26813
+ namespace Parameters {
26814
+ type Path = {
26815
+ mailAddressId: string;
26816
+ };
26817
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
26818
+ type Query = {};
26819
+ }
26820
+ namespace Responses {
26821
+ namespace $204 {
26822
+ namespace Content {
26823
+ type Empty = unknown;
26824
+ }
26825
+ }
26826
+ namespace $400 {
26827
+ namespace Content {
26828
+ interface ApplicationJson {
26829
+ [k: string]: unknown;
26830
+ }
26831
+ }
26832
+ }
26833
+ namespace $403 {
26834
+ namespace Content {
26835
+ interface ApplicationJson {
26836
+ [k: string]: unknown;
26837
+ }
26838
+ }
26839
+ }
26840
+ namespace $404 {
26841
+ namespace Content {
26842
+ interface ApplicationJson {
26843
+ [k: string]: unknown;
26844
+ }
26845
+ }
26846
+ }
26847
+ namespace $429 {
26848
+ namespace Content {
26849
+ interface ApplicationJson {
26850
+ [k: string]: unknown;
26851
+ }
26852
+ }
26853
+ }
26854
+ namespace $500 {
26855
+ namespace Content {
26856
+ interface ApplicationJson {
26857
+ [k: string]: unknown;
26858
+ }
26859
+ }
26860
+ }
26861
+ namespace $503 {
26862
+ namespace Content {
26863
+ interface ApplicationJson {
26864
+ [k: string]: unknown;
26865
+ }
26866
+ }
26867
+ }
26868
+ namespace Default {
26869
+ namespace Content {
26870
+ interface ApplicationJson {
26871
+ [k: string]: unknown;
26872
+ }
26873
+ }
26874
+ }
26875
+ }
26876
+ }
26877
+ }
26760
26878
  }
26761
26879
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.221.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": "4.222.0",
3
+ "version": "4.224.0",
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",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "ecae05c43a02ef4ccdc1643b536fa065cfa08aac"
83
+ "gitHead": "7c3d2857206173edb6c290f70d6455935c9de32e"
84
84
  }