@mittwald/api-client 4.340.0 → 4.342.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.
@@ -6,6 +6,8 @@ const buildAiHostingApi = (baseClient) => ({
6
6
  customerGetKeys: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetKeys, baseClient.aiHosting.customerGetKeys).getApiResource,
7
7
  /** Get a key of a customer. */
8
8
  customerGetKey: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetKey, baseClient.aiHosting.customerGetKey).getApiResource,
9
+ /** Get a list of currently active models. */
10
+ customerGetDetailedModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetDetailedModels, baseClient.aiHosting.customerGetDetailedModels).getApiResource,
9
11
  /** Get ai hosting plan and usages of a customer. */
10
12
  customerGetUsage: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetUsage, baseClient.aiHosting.customerGetUsage).getApiResource,
11
13
  /** Get a list of currently active models. */
@@ -14,12 +16,10 @@ const buildAiHostingApi = (baseClient) => ({
14
16
  projectGetKeys: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetKeys, baseClient.aiHosting.projectGetKeys).getApiResource,
15
17
  /** Get a key of a project. */
16
18
  projectGetKey: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetKey, baseClient.aiHosting.projectGetKey).getApiResource,
17
- /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
18
- projectGetUsage: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetUsage, baseClient.aiHosting.projectGetUsage).getApiResource,
19
- /** Get a list of currently active models. */
20
- customerGetDetailedModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetDetailedModels, baseClient.aiHosting.customerGetDetailedModels).getApiResource,
21
19
  /** Get a list of currently active models. */
22
20
  projectGetDetailedModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetDetailedModels, baseClient.aiHosting.projectGetDetailedModels).getApiResource,
21
+ /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
22
+ projectGetUsage: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetUsage, baseClient.aiHosting.projectGetUsage).getApiResource,
23
23
  });
24
24
  const buildAppApi = (baseClient) => ({
25
25
  /** Get an App. */
@@ -6,6 +6,8 @@ import { ApiClientBase } from "@mittwald/api-client-commons";
6
6
  export class MittwaldAPIV2Client extends ApiClientBase {
7
7
  /** The AI hosting provides access to multiple large language and embedding models – GDPR compliant and hosted in Germany. */
8
8
  aiHosting = {
9
+ /** Accepts the model terms for a customer. */
10
+ customerAcceptModelTerms: this.requestFunctionFactory(descriptors.aiHostingCustomerAcceptModelTerms),
9
11
  /** Get a list of already created keys. */
10
12
  customerGetKeys: this.requestFunctionFactory(descriptors.aiHostingCustomerGetKeys),
11
13
  /** Creates a new key. */
@@ -16,6 +18,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
16
18
  customerUpdateKey: this.requestFunctionFactory(descriptors.aiHostingCustomerUpdateKey),
17
19
  /** Delete a key for a customer. */
18
20
  customerDeleteKey: this.requestFunctionFactory(descriptors.aiHostingCustomerDeleteKey),
21
+ /** Get a list of currently active models. */
22
+ customerGetDetailedModels: this.requestFunctionFactory(descriptors.aiHostingCustomerGetDetailedModels),
19
23
  /** Get ai hosting plan and usages of a customer. */
20
24
  customerGetUsage: this.requestFunctionFactory(descriptors.aiHostingCustomerGetUsage),
21
25
  /** Get a list of currently active models. */
@@ -30,14 +34,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
30
34
  projectUpdateKey: this.requestFunctionFactory(descriptors.aiHostingProjectUpdateKey),
31
35
  /** Delete a key for a project. */
32
36
  projectDeleteKey: this.requestFunctionFactory(descriptors.aiHostingProjectDeleteKey),
33
- /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
34
- projectGetUsage: this.requestFunctionFactory(descriptors.aiHostingProjectGetUsage),
35
- /** Get a list of currently active models. */
36
- customerGetDetailedModels: this.requestFunctionFactory(descriptors.aiHostingCustomerGetDetailedModels),
37
37
  /** Get a list of currently active models. */
38
38
  projectGetDetailedModels: this.requestFunctionFactory(descriptors.aiHostingProjectGetDetailedModels),
39
- /** Accepts the model terms for a customer. */
40
- customerAcceptModelTerms: this.requestFunctionFactory(descriptors.aiHostingCustomerAcceptModelTerms),
39
+ /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
40
+ projectGetUsage: this.requestFunctionFactory(descriptors.aiHostingProjectGetUsage),
41
41
  };
42
42
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
43
43
  app = {
@@ -1,3 +1,9 @@
1
+ /** Accepts the model terms for a customer. */
2
+ export const aiHostingCustomerAcceptModelTerms = {
3
+ path: "/v2/customers/{customerId}/ai-hosting-models/actions/accept-terms",
4
+ method: "POST",
5
+ operationId: "ai-hosting-customer-accept-model-terms",
6
+ };
1
7
  /** Get a list of already created keys. */
2
8
  export const aiHostingCustomerGetKeys = {
3
9
  path: "/v2/customers/{customerId}/ai-hosting-keys",
@@ -28,6 +34,12 @@ export const aiHostingCustomerDeleteKey = {
28
34
  method: "DELETE",
29
35
  operationId: "ai-hosting-customer-delete-key",
30
36
  };
37
+ /** Get a list of currently active models. */
38
+ export const aiHostingCustomerGetDetailedModels = {
39
+ path: "/v2/customers/{customerId}/ai-hosting-models",
40
+ method: "GET",
41
+ operationId: "ai-hosting-customer-get-detailed-models",
42
+ };
31
43
  /** Get ai hosting plan and usages of a customer. */
32
44
  export const aiHostingCustomerGetUsage = {
33
45
  path: "/v2/customers/{customerId}/ai-hosting",
@@ -70,6 +82,12 @@ export const aiHostingProjectDeleteKey = {
70
82
  method: "DELETE",
71
83
  operationId: "ai-hosting-project-delete-key",
72
84
  };
85
+ /** Get a list of currently active models. */
86
+ export const aiHostingProjectGetDetailedModels = {
87
+ path: "/v2/projects/{projectId}/ai-hosting-models",
88
+ method: "GET",
89
+ operationId: "ai-hosting-project-get-detailed-models",
90
+ };
73
91
  /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
74
92
  export const aiHostingProjectGetUsage = {
75
93
  path: "/v2/projects/{projectId}/ai-hosting",
@@ -2746,21 +2764,3 @@ export const verificationVerifyCompany = {
2746
2764
  method: "POST",
2747
2765
  operationId: "verification-verify-company",
2748
2766
  };
2749
- /** Get a list of currently active models. */
2750
- export const aiHostingCustomerGetDetailedModels = {
2751
- path: "/v2/customers/{customerId}/ai-hosting-models",
2752
- method: "GET",
2753
- operationId: "ai-hosting-customer-get-detailed-models",
2754
- };
2755
- /** Get a list of currently active models. */
2756
- export const aiHostingProjectGetDetailedModels = {
2757
- path: "/v2/projects/{projectId}/ai-hosting-models",
2758
- method: "GET",
2759
- operationId: "ai-hosting-project-get-detailed-models",
2760
- };
2761
- /** Accepts the model terms for a customer. */
2762
- export const aiHostingCustomerAcceptModelTerms = {
2763
- path: "/v2/customers/{customerId}/ai-hosting-models/actions/accept-terms",
2764
- method: "POST",
2765
- operationId: "ai-hosting-customer-accept-model-terms",
2766
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.339.0';
1
+ export const MittwaldAPIClientVersion = '4.341.0';
@@ -27,6 +27,13 @@ declare const buildAiHostingApi: (baseClient: MittwaldAPIV2Client) => {
27
27
  rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
28
28
  tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
29
29
  }>;
30
+ /** Get a list of currently active models. */
31
+ customerGetDetailedModels: (conf: {
32
+ customerId: string;
33
+ headers?: {
34
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
35
+ } | undefined;
36
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[]>;
30
37
  /** Get ai hosting plan and usages of a customer. */
31
38
  customerGetUsage: (conf: {
32
39
  customerId: string;
@@ -84,6 +91,13 @@ declare const buildAiHostingApi: (baseClient: MittwaldAPIV2Client) => {
84
91
  rateLimit: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingRateLimit;
85
92
  tokenUsage: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingTokenUsage;
86
93
  }>;
94
+ /** Get a list of currently active models. */
95
+ projectGetDetailedModels: (conf: {
96
+ projectId: string;
97
+ headers?: {
98
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
99
+ } | undefined;
100
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingProjectDetailedModel[]>;
87
101
  /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
88
102
  projectGetUsage: (conf: {
89
103
  projectId: string;
@@ -96,20 +110,6 @@ declare const buildAiHostingApi: (baseClient: MittwaldAPIV2Client) => {
96
110
  nextTokenReset?: string | undefined;
97
111
  projectId: string;
98
112
  }>;
99
- /** Get a list of currently active models. */
100
- customerGetDetailedModels: (conf: {
101
- customerId: string;
102
- headers?: {
103
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
104
- } | undefined;
105
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[]>;
106
- /** Get a list of currently active models. */
107
- projectGetDetailedModels: (conf: {
108
- projectId: string;
109
- headers?: {
110
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
111
- } | undefined;
112
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingProjectDetailedModel[]>;
113
113
  };
114
114
  declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
115
115
  /** Get an App. */
@@ -3177,6 +3177,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3177
3177
  isReady: boolean;
3178
3178
  projectHostingId?: string | undefined;
3179
3179
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
3180
+ serverGroupId: string;
3180
3181
  serverId?: string | undefined;
3181
3182
  serverShortId?: string | undefined;
3182
3183
  shortId: string;
@@ -3241,6 +3242,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3241
3242
  customerId: string;
3242
3243
  description: string;
3243
3244
  disabledReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason | undefined;
3245
+ groupId: string;
3244
3246
  id: string;
3245
3247
  imageRefId?: string | undefined;
3246
3248
  isReady: boolean;
@@ -3332,6 +3334,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3332
3334
  isReady: boolean;
3333
3335
  projectHostingId?: string;
3334
3336
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
3337
+ serverGroupId: string;
3335
3338
  serverId?: string;
3336
3339
  shortId: string;
3337
3340
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
@@ -2,6 +2,45 @@ import { ApiClientBase } from "@mittwald/api-client-commons";
2
2
  export declare class MittwaldAPIV2Client extends ApiClientBase {
3
3
  /** The AI hosting provides access to multiple large language and embedding models – GDPR compliant and hosted in Germany. */
4
4
  readonly aiHosting: {
5
+ /** Accepts the model terms for a customer. */
6
+ customerAcceptModelTerms: (request: {
7
+ customerId: string;
8
+ headers?: {
9
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
10
+ } | undefined;
11
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
12
+ headers?: Partial<{
13
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
14
+ }>;
15
+ } & {
16
+ pathParameters: {
17
+ customerId: string;
18
+ };
19
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
20
+ [x: string]: unknown;
21
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22
+ [x: string]: unknown;
23
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
24
+ [x: string]: unknown;
25
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
26
+ [x: string]: unknown;
27
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
28
+ headers?: Partial<{
29
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30
+ }>;
31
+ } & {
32
+ pathParameters: {
33
+ customerId: string;
34
+ };
35
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
36
+ [x: string]: unknown;
37
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
38
+ [x: string]: unknown;
39
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
40
+ [x: string]: unknown;
41
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
42
+ [x: string]: unknown;
43
+ }, 429, "application/json">>>;
5
44
  /** Get a list of already created keys. */
6
45
  customerGetKeys: (request: {
7
46
  customerId: string;
@@ -330,6 +369,45 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
330
369
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
331
370
  [x: string]: unknown;
332
371
  }, 429, "application/json">>>;
372
+ /** Get a list of currently active models. */
373
+ customerGetDetailedModels: (request: {
374
+ customerId: string;
375
+ headers?: {
376
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
377
+ } | undefined;
378
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
379
+ headers?: Partial<{
380
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
381
+ }>;
382
+ } & {
383
+ pathParameters: {
384
+ customerId: string;
385
+ };
386
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
387
+ [x: string]: unknown;
388
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
389
+ [x: string]: unknown;
390
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
391
+ [x: string]: unknown;
392
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
393
+ [x: string]: unknown;
394
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
395
+ headers?: Partial<{
396
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
397
+ }>;
398
+ } & {
399
+ pathParameters: {
400
+ customerId: string;
401
+ };
402
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
403
+ [x: string]: unknown;
404
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
405
+ [x: string]: unknown;
406
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
407
+ [x: string]: unknown;
408
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
409
+ [x: string]: unknown;
410
+ }, 429, "application/json">>>;
333
411
  /** Get ai hosting plan and usages of a customer. */
334
412
  customerGetUsage: (request: {
335
413
  customerId: string;
@@ -765,94 +843,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
765
843
  }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
766
844
  [x: string]: unknown;
767
845
  }, 429, "application/json">>>;
768
- /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
769
- projectGetUsage: (request: {
770
- projectId: string;
771
- headers?: {
772
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
773
- } | undefined;
774
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
775
- headers?: Partial<{
776
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
777
- }>;
778
- } & {
779
- pathParameters: {
780
- projectId: string;
781
- };
782
- }, import("@mittwald/api-client-commons").Response<{
783
- keys: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
784
- modelTermsApprovalRequired: boolean;
785
- nextTokenReset?: string | undefined;
786
- projectId: string;
787
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
788
- [x: string]: unknown;
789
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
790
- [x: string]: unknown;
791
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
792
- [x: string]: unknown;
793
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
794
- [x: string]: unknown;
795
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
796
- headers?: Partial<{
797
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
798
- }>;
799
- } & {
800
- pathParameters: {
801
- projectId: string;
802
- };
803
- }, import("@mittwald/api-client-commons").Response<{
804
- keys: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
805
- modelTermsApprovalRequired: boolean;
806
- nextTokenReset?: string | undefined;
807
- projectId: string;
808
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
809
- [x: string]: unknown;
810
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
811
- [x: string]: unknown;
812
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
813
- [x: string]: unknown;
814
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
815
- [x: string]: unknown;
816
- }, 429, "application/json">>>;
817
- /** Get a list of currently active models. */
818
- customerGetDetailedModels: (request: {
819
- customerId: string;
820
- headers?: {
821
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
822
- } | undefined;
823
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
824
- headers?: Partial<{
825
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
826
- }>;
827
- } & {
828
- pathParameters: {
829
- customerId: string;
830
- };
831
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
832
- [x: string]: unknown;
833
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
834
- [x: string]: unknown;
835
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
836
- [x: string]: unknown;
837
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
838
- [x: string]: unknown;
839
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
840
- headers?: Partial<{
841
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
842
- }>;
843
- } & {
844
- pathParameters: {
845
- customerId: string;
846
- };
847
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
848
- [x: string]: unknown;
849
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
850
- [x: string]: unknown;
851
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
852
- [x: string]: unknown;
853
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
854
- [x: string]: unknown;
855
- }, 429, "application/json">>>;
856
846
  /** Get a list of currently active models. */
857
847
  projectGetDetailedModels: (request: {
858
848
  projectId: string;
@@ -892,9 +882,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
892
882
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
893
883
  [x: string]: unknown;
894
884
  }, 429, "application/json">>>;
895
- /** Accepts the model terms for a customer. */
896
- customerAcceptModelTerms: (request: {
897
- customerId: string;
885
+ /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
886
+ projectGetUsage: (request: {
887
+ projectId: string;
898
888
  headers?: {
899
889
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
900
890
  } | undefined;
@@ -904,9 +894,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
904
894
  }>;
905
895
  } & {
906
896
  pathParameters: {
907
- customerId: string;
897
+ projectId: string;
908
898
  };
909
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
899
+ }, import("@mittwald/api-client-commons").Response<{
900
+ keys: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
901
+ modelTermsApprovalRequired: boolean;
902
+ nextTokenReset?: string | undefined;
903
+ projectId: string;
904
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
910
905
  [x: string]: unknown;
911
906
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
912
907
  [x: string]: unknown;
@@ -920,9 +915,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
920
915
  }>;
921
916
  } & {
922
917
  pathParameters: {
923
- customerId: string;
918
+ projectId: string;
924
919
  };
925
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
920
+ }, import("@mittwald/api-client-commons").Response<{
921
+ keys: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingPlanUsage;
922
+ modelTermsApprovalRequired: boolean;
923
+ nextTokenReset?: string | undefined;
924
+ projectId: string;
925
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
926
926
  [x: string]: unknown;
927
927
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
928
928
  [x: string]: unknown;
@@ -13241,22 +13241,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13241
13241
  appInstallationId?: string | undefined;
13242
13242
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13243
13243
  destination?: {
13244
+ url: string;
13245
+ } | {
13244
13246
  interpreter: string;
13245
13247
  path: string;
13246
13248
  parameters?: string | undefined;
13247
- } | {
13248
- url: string;
13249
13249
  } | undefined;
13250
13250
  email?: string | undefined;
13251
13251
  failedExecutionAlertThreshold?: number | undefined;
13252
13252
  target?: {
13253
13253
  appInstallationId: string;
13254
13254
  destination: {
13255
+ url: string;
13256
+ } | {
13255
13257
  interpreter: string;
13256
13258
  path: string;
13257
13259
  parameters?: string | undefined;
13258
- } | {
13259
- url: string;
13260
13260
  };
13261
13261
  } | {
13262
13262
  command: string;
@@ -13614,11 +13614,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13614
13614
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13615
13615
  description?: string | undefined;
13616
13616
  destination?: {
13617
+ url: string;
13618
+ } | {
13617
13619
  interpreter: string;
13618
13620
  path: string;
13619
13621
  parameters?: string | undefined;
13620
- } | {
13621
- url: string;
13622
13622
  } | undefined;
13623
13623
  email?: string | undefined;
13624
13624
  failedExecutionAlertThreshold?: number | undefined;
@@ -13626,11 +13626,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13626
13626
  target?: {
13627
13627
  appInstallationId: string;
13628
13628
  destination: {
13629
+ url: string;
13630
+ } | {
13629
13631
  interpreter: string;
13630
13632
  path: string;
13631
13633
  parameters?: string | undefined;
13632
- } | {
13633
- url: string;
13634
13634
  };
13635
13635
  } | {
13636
13636
  command: string;
@@ -27771,6 +27771,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
27771
27771
  isReady: boolean;
27772
27772
  projectHostingId?: string | undefined;
27773
27773
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
27774
+ serverGroupId: string;
27774
27775
  serverId?: string | undefined;
27775
27776
  serverShortId?: string | undefined;
27776
27777
  shortId: string;
@@ -27821,6 +27822,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
27821
27822
  isReady: boolean;
27822
27823
  projectHostingId?: string | undefined;
27823
27824
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
27825
+ serverGroupId: string;
27824
27826
  serverId?: string | undefined;
27825
27827
  serverShortId?: string | undefined;
27826
27828
  shortId: string;
@@ -28155,6 +28157,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28155
28157
  customerId: string;
28156
28158
  description: string;
28157
28159
  disabledReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason | undefined;
28160
+ groupId: string;
28158
28161
  id: string;
28159
28162
  imageRefId?: string | undefined;
28160
28163
  isReady: boolean;
@@ -28190,6 +28193,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28190
28193
  customerId: string;
28191
28194
  description: string;
28192
28195
  disabledReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason | undefined;
28196
+ groupId: string;
28193
28197
  id: string;
28194
28198
  imageRefId?: string | undefined;
28195
28199
  isReady: boolean;
@@ -28470,6 +28474,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28470
28474
  isReady: boolean;
28471
28475
  projectHostingId?: string;
28472
28476
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
28477
+ serverGroupId: string;
28473
28478
  serverId?: string;
28474
28479
  shortId: string;
28475
28480
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
@@ -28524,6 +28529,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28524
28529
  isReady: boolean;
28525
28530
  projectHostingId?: string;
28526
28531
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
28532
+ serverGroupId: string;
28527
28533
  serverId?: string;
28528
28534
  shortId: string;
28529
28535
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
@@ -3,6 +3,8 @@ import { RequestType } from "@mittwald/api-client-commons";
3
3
  import { Response } from "@mittwald/api-client-commons";
4
4
  import { OpenAPIOperation } from "@mittwald/api-client-commons";
5
5
  import { MittwaldAPIV2 } from "./types.js";
6
+ /** Accepts the model terms for a customer. */
7
+ export declare const aiHostingCustomerAcceptModelTerms: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
6
8
  /** Get a list of already created keys. */
7
9
  export declare const aiHostingCustomerGetKeys: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeys.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeys.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeys.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeys.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeys.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeys.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeys.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeys.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeys.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
8
10
  /** Creates a new key. */
@@ -13,6 +15,8 @@ export declare const aiHostingCustomerGetKey: OpenAPIOperation<RequestType<Simpl
13
15
  export declare const aiHostingCustomerUpdateKey: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
14
16
  /** Delete a key for a customer. */
15
17
  export declare const aiHostingCustomerDeleteKey: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingKeysKeyId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
18
+ /** Get a list of currently active models. */
19
+ export declare const aiHostingCustomerGetDetailedModels: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
16
20
  /** Get ai hosting plan and usages of a customer. */
17
21
  export declare const aiHostingCustomerGetUsage: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHosting.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHosting.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHosting.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHosting.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHosting.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHosting.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHosting.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHosting.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHosting.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
18
22
  /** Get a list of currently active models. */
@@ -27,6 +31,8 @@ export declare const aiHostingProjectGetKey: OpenAPIOperation<RequestType<Simpli
27
31
  export declare const aiHostingProjectUpdateKey: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
28
32
  /** Delete a key for a project. */
29
33
  export declare const aiHostingProjectDeleteKey: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingKeysKeyId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
34
+ /** Get a list of currently active models. */
35
+ export declare const aiHostingProjectGetDetailedModels: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
30
36
  /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
31
37
  export declare const aiHostingProjectGetUsage: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHosting.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHosting.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHosting.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHosting.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHosting.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHosting.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHosting.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHosting.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHosting.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
32
38
  /** Get an App. */
@@ -919,9 +925,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
919
925
  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.Default.Content.ApplicationJson>, "default", "application/json">>;
920
926
  /** Check if a company exists. */
921
927
  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.Default.Content.ApplicationJson>, "default", "application/json">>;
922
- /** Get a list of currently active models. */
923
- export declare const aiHostingCustomerGetDetailedModels: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModels.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
924
- /** Get a list of currently active models. */
925
- export declare const aiHostingProjectGetDetailedModels: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingModels.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
926
- /** Accepts the model terms for a customer. */
927
- export declare const aiHostingCustomerAcceptModelTerms: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -2,6 +2,10 @@ import * as descriptors from "./descriptors.js";
2
2
  import { InferredRequestData, InferredResponseData, HttpStatus } from "@mittwald/api-client-commons";
3
3
  export declare namespace MittwaldAPIV2 {
4
4
  namespace Operations {
5
+ namespace AiHostingCustomerAcceptModelTerms {
6
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerAcceptModelTerms>;
7
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerAcceptModelTerms, TStatus>;
8
+ }
5
9
  namespace AiHostingCustomerGetKeys {
6
10
  type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetKeys>;
7
11
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetKeys, TStatus>;
@@ -22,6 +26,10 @@ export declare namespace MittwaldAPIV2 {
22
26
  type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerDeleteKey>;
23
27
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerDeleteKey, TStatus>;
24
28
  }
29
+ namespace AiHostingCustomerGetDetailedModels {
30
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetDetailedModels>;
31
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetDetailedModels, TStatus>;
32
+ }
25
33
  namespace AiHostingCustomerGetUsage {
26
34
  type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetUsage>;
27
35
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetUsage, TStatus>;
@@ -50,6 +58,10 @@ export declare namespace MittwaldAPIV2 {
50
58
  type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectDeleteKey>;
51
59
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectDeleteKey, TStatus>;
52
60
  }
61
+ namespace AiHostingProjectGetDetailedModels {
62
+ type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectGetDetailedModels>;
63
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectGetDetailedModels, TStatus>;
64
+ }
53
65
  namespace AiHostingProjectGetUsage {
54
66
  type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectGetUsage>;
55
67
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectGetUsage, TStatus>;
@@ -1834,18 +1846,6 @@ export declare namespace MittwaldAPIV2 {
1834
1846
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1835
1847
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1836
1848
  }
1837
- namespace AiHostingCustomerGetDetailedModels {
1838
- type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerGetDetailedModels>;
1839
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerGetDetailedModels, TStatus>;
1840
- }
1841
- namespace AiHostingProjectGetDetailedModels {
1842
- type RequestData = InferredRequestData<typeof descriptors.aiHostingProjectGetDetailedModels>;
1843
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingProjectGetDetailedModels, TStatus>;
1844
- }
1845
- namespace AiHostingCustomerAcceptModelTerms {
1846
- type RequestData = InferredRequestData<typeof descriptors.aiHostingCustomerAcceptModelTerms>;
1847
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.aiHostingCustomerAcceptModelTerms, TStatus>;
1848
- }
1849
1849
  }
1850
1850
  namespace Components {
1851
1851
  namespace Schemas {
@@ -1856,6 +1856,17 @@ export declare namespace MittwaldAPIV2 {
1856
1856
  stackId?: string;
1857
1857
  status: "created" | "requested" | "failed";
1858
1858
  }
1859
+ interface AihostingCustomerDetailedModel {
1860
+ activeAt: string;
1861
+ displayName: string;
1862
+ docLink: string;
1863
+ name: string;
1864
+ removalAt?: string;
1865
+ replacesModelName?: string;
1866
+ status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
1867
+ termsOfServiceLink: string;
1868
+ }
1869
+ type AihostingDetailedModelStatus = "active" | "needApproval" | "deprecated";
1859
1870
  interface AihostingKey {
1860
1871
  containerMeta?: MittwaldAPIV2.Components.Schemas.AihostingContainerMeta;
1861
1872
  customerId?: string;
@@ -1912,6 +1923,16 @@ export declare namespace MittwaldAPIV2 {
1912
1923
  planLimit: number;
1913
1924
  used: number;
1914
1925
  }
1926
+ interface AihostingProjectDetailedModel {
1927
+ activeAt: string;
1928
+ displayName: string;
1929
+ docLink: string;
1930
+ name: string;
1931
+ removalAt?: string;
1932
+ replacesModelName?: string;
1933
+ status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
1934
+ termsOfServiceLink: string;
1935
+ }
1915
1936
  /**
1916
1937
  * The number of allowed requests per unit. Limits are shared across all keys within the same project.
1917
1938
  */
@@ -3152,6 +3173,10 @@ export declare namespace MittwaldAPIV2 {
3152
3173
  */
3153
3174
  userspaceMs: number;
3154
3175
  }
3176
+ interface CronjobAppInstallationTarget {
3177
+ appInstallationId: string;
3178
+ destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3179
+ }
3155
3180
  interface CronjobCronjobCommand {
3156
3181
  interpreter: string;
3157
3182
  parameters?: string;
@@ -3218,6 +3243,15 @@ export declare namespace MittwaldAPIV2 {
3218
3243
  message: string;
3219
3244
  }
3220
3245
  type CronjobCronjobExecutionSortOrder = "oldestFirst" | "newestFirst" | "slowestFirst" | "fastestFirst";
3246
+ interface CronjobAppInstallationPatchTarget {
3247
+ appInstallationId?: string;
3248
+ destination?: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3249
+ }
3250
+ interface CronjobServicePatchTarget {
3251
+ command?: string;
3252
+ serviceIdentifier?: string;
3253
+ stackId?: string;
3254
+ }
3221
3255
  interface CronjobCronjobRequest {
3222
3256
  active: boolean;
3223
3257
  /**
@@ -3242,6 +3276,27 @@ export declare namespace MittwaldAPIV2 {
3242
3276
  timeZone?: string;
3243
3277
  timeout: number;
3244
3278
  }
3279
+ interface CronjobServiceCronjobRequest {
3280
+ active: boolean;
3281
+ concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
3282
+ description: string;
3283
+ email?: string;
3284
+ failedExecutionAlertThreshold?: number;
3285
+ interval: string;
3286
+ target?: MittwaldAPIV2.Components.Schemas.CronjobServiceTarget;
3287
+ timeZone?: string;
3288
+ timeout: number;
3289
+ }
3290
+ interface CronjobServiceTarget {
3291
+ command: string;
3292
+ serviceIdentifier: string;
3293
+ stackId: string;
3294
+ }
3295
+ interface CronjobServiceTargetResponse {
3296
+ command: string;
3297
+ serviceShortId: string;
3298
+ stackId: string;
3299
+ }
3245
3300
  interface CronjobCronjobUrl {
3246
3301
  url: string;
3247
3302
  }
@@ -5550,6 +5605,7 @@ export declare namespace MittwaldAPIV2 {
5550
5605
  isReady: boolean;
5551
5606
  projectHostingId?: string;
5552
5607
  readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
5608
+ serverGroupId: string;
5553
5609
  serverId?: string;
5554
5610
  serverShortId?: string;
5555
5611
  shortId: string;
@@ -5569,6 +5625,7 @@ export declare namespace MittwaldAPIV2 {
5569
5625
  customerId: string;
5570
5626
  description: string;
5571
5627
  disabledReason?: MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason;
5628
+ groupId: string;
5572
5629
  id: string;
5573
5630
  imageRefId?: string;
5574
5631
  /**
@@ -6059,61 +6116,6 @@ export declare namespace MittwaldAPIV2 {
6059
6116
  }
6060
6117
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6061
6118
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6062
- interface AihostingCustomerDetailedModel {
6063
- activeAt: string;
6064
- displayName: string;
6065
- docLink: string;
6066
- name: string;
6067
- removalAt?: string;
6068
- replacesModelName?: string;
6069
- status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
6070
- termsOfServiceLink: string;
6071
- }
6072
- type AihostingDetailedModelStatus = "active" | "needApproval" | "deprecated";
6073
- interface AihostingProjectDetailedModel {
6074
- activeAt: string;
6075
- displayName: string;
6076
- docLink: string;
6077
- name: string;
6078
- removalAt?: string;
6079
- replacesModelName?: string;
6080
- status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
6081
- termsOfServiceLink: string;
6082
- }
6083
- interface CronjobAppInstallationTarget {
6084
- appInstallationId: string;
6085
- destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
6086
- }
6087
- interface CronjobAppInstallationPatchTarget {
6088
- appInstallationId?: string;
6089
- destination?: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
6090
- }
6091
- interface CronjobServicePatchTarget {
6092
- command?: string;
6093
- serviceIdentifier?: string;
6094
- stackId?: string;
6095
- }
6096
- interface CronjobServiceCronjobRequest {
6097
- active: boolean;
6098
- concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
6099
- description: string;
6100
- email?: string;
6101
- failedExecutionAlertThreshold?: number;
6102
- interval: string;
6103
- target?: MittwaldAPIV2.Components.Schemas.CronjobServiceTarget;
6104
- timeZone?: string;
6105
- timeout: number;
6106
- }
6107
- interface CronjobServiceTarget {
6108
- command: string;
6109
- serviceIdentifier: string;
6110
- stackId: string;
6111
- }
6112
- interface CronjobServiceTargetResponse {
6113
- command: string;
6114
- serviceShortId: string;
6115
- stackId: string;
6116
- }
6117
6119
  interface CommonsAddress {
6118
6120
  street: string;
6119
6121
  houseNumber: string;
@@ -6291,6 +6293,59 @@ export declare namespace MittwaldAPIV2 {
6291
6293
  }
6292
6294
  }
6293
6295
  namespace Paths {
6296
+ namespace V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms {
6297
+ namespace Post {
6298
+ namespace Parameters {
6299
+ type Path = {
6300
+ customerId: string;
6301
+ };
6302
+ type Header = {};
6303
+ type Query = {};
6304
+ }
6305
+ namespace Responses {
6306
+ namespace $204 {
6307
+ namespace Content {
6308
+ type Empty = unknown;
6309
+ }
6310
+ }
6311
+ namespace $400 {
6312
+ namespace Content {
6313
+ interface ApplicationJson {
6314
+ [k: string]: unknown;
6315
+ }
6316
+ }
6317
+ }
6318
+ namespace $403 {
6319
+ namespace Content {
6320
+ interface ApplicationJson {
6321
+ [k: string]: unknown;
6322
+ }
6323
+ }
6324
+ }
6325
+ namespace $404 {
6326
+ namespace Content {
6327
+ interface ApplicationJson {
6328
+ [k: string]: unknown;
6329
+ }
6330
+ }
6331
+ }
6332
+ namespace $429 {
6333
+ namespace Content {
6334
+ interface ApplicationJson {
6335
+ [k: string]: unknown;
6336
+ }
6337
+ }
6338
+ }
6339
+ namespace Default {
6340
+ namespace Content {
6341
+ interface ApplicationJson {
6342
+ [k: string]: unknown;
6343
+ }
6344
+ }
6345
+ }
6346
+ }
6347
+ }
6348
+ }
6294
6349
  namespace V2CustomersCustomerIdAiHostingKeys {
6295
6350
  namespace Get {
6296
6351
  namespace Parameters {
@@ -6605,6 +6660,59 @@ export declare namespace MittwaldAPIV2 {
6605
6660
  }
6606
6661
  }
6607
6662
  }
6663
+ namespace V2CustomersCustomerIdAiHostingModels {
6664
+ namespace Get {
6665
+ namespace Parameters {
6666
+ type Path = {
6667
+ customerId: string;
6668
+ };
6669
+ type Header = {};
6670
+ type Query = {};
6671
+ }
6672
+ namespace Responses {
6673
+ namespace $200 {
6674
+ namespace Content {
6675
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[];
6676
+ }
6677
+ }
6678
+ namespace $400 {
6679
+ namespace Content {
6680
+ interface ApplicationJson {
6681
+ [k: string]: unknown;
6682
+ }
6683
+ }
6684
+ }
6685
+ namespace $403 {
6686
+ namespace Content {
6687
+ interface ApplicationJson {
6688
+ [k: string]: unknown;
6689
+ }
6690
+ }
6691
+ }
6692
+ namespace $404 {
6693
+ namespace Content {
6694
+ interface ApplicationJson {
6695
+ [k: string]: unknown;
6696
+ }
6697
+ }
6698
+ }
6699
+ namespace $429 {
6700
+ namespace Content {
6701
+ interface ApplicationJson {
6702
+ [k: string]: unknown;
6703
+ }
6704
+ }
6705
+ }
6706
+ namespace Default {
6707
+ namespace Content {
6708
+ interface ApplicationJson {
6709
+ [k: string]: unknown;
6710
+ }
6711
+ }
6712
+ }
6713
+ }
6714
+ }
6715
+ }
6608
6716
  namespace V2CustomersCustomerIdAiHosting {
6609
6717
  namespace Get {
6610
6718
  namespace Parameters {
@@ -7023,6 +7131,59 @@ export declare namespace MittwaldAPIV2 {
7023
7131
  }
7024
7132
  }
7025
7133
  }
7134
+ namespace V2ProjectsProjectIdAiHostingModels {
7135
+ namespace Get {
7136
+ namespace Parameters {
7137
+ type Path = {
7138
+ projectId: string;
7139
+ };
7140
+ type Header = {};
7141
+ type Query = {};
7142
+ }
7143
+ namespace Responses {
7144
+ namespace $200 {
7145
+ namespace Content {
7146
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingProjectDetailedModel[];
7147
+ }
7148
+ }
7149
+ namespace $400 {
7150
+ namespace Content {
7151
+ interface ApplicationJson {
7152
+ [k: string]: unknown;
7153
+ }
7154
+ }
7155
+ }
7156
+ namespace $403 {
7157
+ namespace Content {
7158
+ interface ApplicationJson {
7159
+ [k: string]: unknown;
7160
+ }
7161
+ }
7162
+ }
7163
+ namespace $404 {
7164
+ namespace Content {
7165
+ interface ApplicationJson {
7166
+ [k: string]: unknown;
7167
+ }
7168
+ }
7169
+ }
7170
+ namespace $429 {
7171
+ namespace Content {
7172
+ interface ApplicationJson {
7173
+ [k: string]: unknown;
7174
+ }
7175
+ }
7176
+ }
7177
+ namespace Default {
7178
+ namespace Content {
7179
+ interface ApplicationJson {
7180
+ [k: string]: unknown;
7181
+ }
7182
+ }
7183
+ }
7184
+ }
7185
+ }
7186
+ }
7026
7187
  namespace V2ProjectsProjectIdAiHosting {
7027
7188
  namespace Get {
7028
7189
  namespace Parameters {
@@ -16097,6 +16258,8 @@ export declare namespace MittwaldAPIV2 {
16097
16258
  }
16098
16259
  }
16099
16260
  }
16261
+ namespace V2AppinstallationsAppInstallationIdActionsAction { }
16262
+ namespace V2AppInstallationsAppInstallationIdActionsAction { }
16100
16263
  namespace V2AppinstallationsAppInstallationIdDatabases { }
16101
16264
  namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates { }
16102
16265
  namespace V2CustomerCustomerIdActionsLeave { }
@@ -25819,6 +25982,7 @@ export declare namespace MittwaldAPIV2 {
25819
25982
  isReady: boolean;
25820
25983
  projectHostingId?: string;
25821
25984
  readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
25985
+ serverGroupId: string;
25822
25986
  serverId?: string;
25823
25987
  shortId: string;
25824
25988
  status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
@@ -29863,166 +30027,5 @@ export declare namespace MittwaldAPIV2 {
29863
30027
  }
29864
30028
  }
29865
30029
  }
29866
- namespace V2AppinstallationsAppInstallationIdActionsAction { }
29867
- namespace V2AppInstallationsAppInstallationIdActionsAction { }
29868
- namespace V2CustomersCustomerIdAiHostingModels {
29869
- namespace Get {
29870
- namespace Parameters {
29871
- type Path = {
29872
- customerId: string;
29873
- };
29874
- type Header = {};
29875
- type Query = {};
29876
- }
29877
- namespace Responses {
29878
- namespace $200 {
29879
- namespace Content {
29880
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[];
29881
- }
29882
- }
29883
- namespace $400 {
29884
- namespace Content {
29885
- interface ApplicationJson {
29886
- [k: string]: unknown;
29887
- }
29888
- }
29889
- }
29890
- namespace $403 {
29891
- namespace Content {
29892
- interface ApplicationJson {
29893
- [k: string]: unknown;
29894
- }
29895
- }
29896
- }
29897
- namespace $404 {
29898
- namespace Content {
29899
- interface ApplicationJson {
29900
- [k: string]: unknown;
29901
- }
29902
- }
29903
- }
29904
- namespace $429 {
29905
- namespace Content {
29906
- interface ApplicationJson {
29907
- [k: string]: unknown;
29908
- }
29909
- }
29910
- }
29911
- namespace Default {
29912
- namespace Content {
29913
- interface ApplicationJson {
29914
- [k: string]: unknown;
29915
- }
29916
- }
29917
- }
29918
- }
29919
- }
29920
- }
29921
- namespace V2ProjectsProjectIdAiHostingModels {
29922
- namespace Get {
29923
- namespace Parameters {
29924
- type Path = {
29925
- projectId: string;
29926
- };
29927
- type Header = {};
29928
- type Query = {};
29929
- }
29930
- namespace Responses {
29931
- namespace $200 {
29932
- namespace Content {
29933
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingProjectDetailedModel[];
29934
- }
29935
- }
29936
- namespace $400 {
29937
- namespace Content {
29938
- interface ApplicationJson {
29939
- [k: string]: unknown;
29940
- }
29941
- }
29942
- }
29943
- namespace $403 {
29944
- namespace Content {
29945
- interface ApplicationJson {
29946
- [k: string]: unknown;
29947
- }
29948
- }
29949
- }
29950
- namespace $404 {
29951
- namespace Content {
29952
- interface ApplicationJson {
29953
- [k: string]: unknown;
29954
- }
29955
- }
29956
- }
29957
- namespace $429 {
29958
- namespace Content {
29959
- interface ApplicationJson {
29960
- [k: string]: unknown;
29961
- }
29962
- }
29963
- }
29964
- namespace Default {
29965
- namespace Content {
29966
- interface ApplicationJson {
29967
- [k: string]: unknown;
29968
- }
29969
- }
29970
- }
29971
- }
29972
- }
29973
- }
29974
- namespace V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms {
29975
- namespace Post {
29976
- namespace Parameters {
29977
- type Path = {
29978
- customerId: string;
29979
- };
29980
- type Header = {};
29981
- type Query = {};
29982
- }
29983
- namespace Responses {
29984
- namespace $204 {
29985
- namespace Content {
29986
- type Empty = unknown;
29987
- }
29988
- }
29989
- namespace $400 {
29990
- namespace Content {
29991
- interface ApplicationJson {
29992
- [k: string]: unknown;
29993
- }
29994
- }
29995
- }
29996
- namespace $403 {
29997
- namespace Content {
29998
- interface ApplicationJson {
29999
- [k: string]: unknown;
30000
- }
30001
- }
30002
- }
30003
- namespace $404 {
30004
- namespace Content {
30005
- interface ApplicationJson {
30006
- [k: string]: unknown;
30007
- }
30008
- }
30009
- }
30010
- namespace $429 {
30011
- namespace Content {
30012
- interface ApplicationJson {
30013
- [k: string]: unknown;
30014
- }
30015
- }
30016
- }
30017
- namespace Default {
30018
- namespace Content {
30019
- interface ApplicationJson {
30020
- [k: string]: unknown;
30021
- }
30022
- }
30023
- }
30024
- }
30025
- }
30026
- }
30027
30030
  }
30028
30031
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.339.0';
1
+ export declare const MittwaldAPIClientVersion = '4.341.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.340.0",
3
+ "version": "4.342.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",
@@ -46,11 +46,11 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^4.340.0",
49
+ "@mittwald/api-client-commons": "^4.342.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.340.0",
53
+ "@mittwald/api-code-generator": "^4.342.0",
54
54
  "@mittwald/react-use-promise": "^2.6.2",
55
55
  "@types/node": "^22.18.11",
56
56
  "@types/react": "^18.3.26",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "c5b9488d7f2e03c8ebe4f1d110b14ebf7102e32e"
83
+ "gitHead": "c3c08264a347f9ca95106f94c157522941674c2e"
84
84
  }