@mittwald/api-client 4.341.0 → 4.343.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.340.0';
1
+ export const MittwaldAPIClientVersion = '4.342.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. */
@@ -133,7 +133,9 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
133
133
  "x-access-token"?: string | undefined;
134
134
  } | undefined;
135
135
  }) => import("@mittwald/react-use-promise").AsyncResource<{
136
+ appExternalVersion: string;
136
137
  appId: string;
138
+ appName: string;
137
139
  appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
138
140
  createdAt: string;
139
141
  customDocumentRoot?: string | undefined;
@@ -153,6 +155,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
153
155
  screenshotRef?: string | undefined;
154
156
  shortId: string;
155
157
  systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
158
+ updateAvailable: boolean;
156
159
  updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
157
160
  userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
158
161
  }>;
@@ -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;
@@ -1010,7 +1010,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1010
1010
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1011
1011
  }>;
1012
1012
  }, import("@mittwald/api-client-commons").Response<{
1013
+ appExternalVersion: string;
1013
1014
  appId: string;
1015
+ appName: string;
1014
1016
  appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
1015
1017
  createdAt: string;
1016
1018
  customDocumentRoot?: string | undefined;
@@ -1030,6 +1032,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1030
1032
  screenshotRef?: string | undefined;
1031
1033
  shortId: string;
1032
1034
  systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
1035
+ updateAvailable: boolean;
1033
1036
  updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
1034
1037
  userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
1035
1038
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -1051,7 +1054,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1051
1054
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
1052
1055
  }>;
1053
1056
  }, import("@mittwald/api-client-commons").Response<{
1057
+ appExternalVersion: string;
1054
1058
  appId: string;
1059
+ appName: string;
1055
1060
  appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
1056
1061
  createdAt: string;
1057
1062
  customDocumentRoot?: string | undefined;
@@ -1071,6 +1076,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
1071
1076
  screenshotRef?: string | undefined;
1072
1077
  shortId: string;
1073
1078
  systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
1079
+ updateAvailable: boolean;
1074
1080
  updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
1075
1081
  userInputs: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
1076
1082
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -13241,22 +13247,22 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13241
13247
  appInstallationId?: string | undefined;
13242
13248
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13243
13249
  destination?: {
13250
+ url: string;
13251
+ } | {
13244
13252
  interpreter: string;
13245
13253
  path: string;
13246
13254
  parameters?: string | undefined;
13247
- } | {
13248
- url: string;
13249
13255
  } | undefined;
13250
13256
  email?: string | undefined;
13251
13257
  failedExecutionAlertThreshold?: number | undefined;
13252
13258
  target?: {
13253
13259
  appInstallationId: string;
13254
13260
  destination: {
13261
+ url: string;
13262
+ } | {
13255
13263
  interpreter: string;
13256
13264
  path: string;
13257
13265
  parameters?: string | undefined;
13258
- } | {
13259
- url: string;
13260
13266
  };
13261
13267
  } | {
13262
13268
  command: string;
@@ -13614,11 +13620,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13614
13620
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13615
13621
  description?: string | undefined;
13616
13622
  destination?: {
13623
+ url: string;
13624
+ } | {
13617
13625
  interpreter: string;
13618
13626
  path: string;
13619
13627
  parameters?: string | undefined;
13620
- } | {
13621
- url: string;
13622
13628
  } | undefined;
13623
13629
  email?: string | undefined;
13624
13630
  failedExecutionAlertThreshold?: number | undefined;
@@ -13626,11 +13632,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13626
13632
  target?: {
13627
13633
  appInstallationId: string;
13628
13634
  destination: {
13635
+ url: string;
13636
+ } | {
13629
13637
  interpreter: string;
13630
13638
  path: string;
13631
13639
  parameters?: string | undefined;
13632
- } | {
13633
- url: string;
13634
13640
  };
13635
13641
  } | {
13636
13642
  command: string;
@@ -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
  */
@@ -1982,7 +2003,9 @@ export declare namespace MittwaldAPIV2 {
1982
2003
  * An AppInstallation is a concrete manifestation of an App in a specific AppVersion.
1983
2004
  */
1984
2005
  interface AppAppInstallation {
2006
+ appExternalVersion: string;
1985
2007
  appId: string;
2008
+ appName: string;
1986
2009
  appVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
1987
2010
  createdAt: string;
1988
2011
  customDocumentRoot?: string;
@@ -2005,6 +2028,7 @@ export declare namespace MittwaldAPIV2 {
2005
2028
  screenshotRef?: string;
2006
2029
  shortId: string;
2007
2030
  systemSoftware: MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
2031
+ updateAvailable: boolean;
2008
2032
  updatePolicy: MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
2009
2033
  userInputs: MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
2010
2034
  }
@@ -2069,8 +2093,11 @@ export declare namespace MittwaldAPIV2 {
2069
2093
  * InstalledSystemSoftware describes the currently configured and installed SystemSoftwareVersion of a SystemSoftware besides the desired SystemSoftwareUpdatePolicy inside an AppInstallation.
2070
2094
  */
2071
2095
  interface AppInstalledSystemSoftware {
2096
+ externalVersion: string;
2097
+ name: string;
2072
2098
  systemSoftwareId: string;
2073
2099
  systemSoftwareVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
2100
+ updateAvailable: boolean;
2074
2101
  updatePolicy: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
2075
2102
  }
2076
2103
  /**
@@ -3152,6 +3179,10 @@ export declare namespace MittwaldAPIV2 {
3152
3179
  */
3153
3180
  userspaceMs: number;
3154
3181
  }
3182
+ interface CronjobAppInstallationTarget {
3183
+ appInstallationId: string;
3184
+ destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3185
+ }
3155
3186
  interface CronjobCronjobCommand {
3156
3187
  interpreter: string;
3157
3188
  parameters?: string;
@@ -3218,6 +3249,15 @@ export declare namespace MittwaldAPIV2 {
3218
3249
  message: string;
3219
3250
  }
3220
3251
  type CronjobCronjobExecutionSortOrder = "oldestFirst" | "newestFirst" | "slowestFirst" | "fastestFirst";
3252
+ interface CronjobAppInstallationPatchTarget {
3253
+ appInstallationId?: string;
3254
+ destination?: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3255
+ }
3256
+ interface CronjobServicePatchTarget {
3257
+ command?: string;
3258
+ serviceIdentifier?: string;
3259
+ stackId?: string;
3260
+ }
3221
3261
  interface CronjobCronjobRequest {
3222
3262
  active: boolean;
3223
3263
  /**
@@ -3242,6 +3282,27 @@ export declare namespace MittwaldAPIV2 {
3242
3282
  timeZone?: string;
3243
3283
  timeout: number;
3244
3284
  }
3285
+ interface CronjobServiceCronjobRequest {
3286
+ active: boolean;
3287
+ concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
3288
+ description: string;
3289
+ email?: string;
3290
+ failedExecutionAlertThreshold?: number;
3291
+ interval: string;
3292
+ target?: MittwaldAPIV2.Components.Schemas.CronjobServiceTarget;
3293
+ timeZone?: string;
3294
+ timeout: number;
3295
+ }
3296
+ interface CronjobServiceTarget {
3297
+ command: string;
3298
+ serviceIdentifier: string;
3299
+ stackId: string;
3300
+ }
3301
+ interface CronjobServiceTargetResponse {
3302
+ command: string;
3303
+ serviceShortId: string;
3304
+ stackId: string;
3305
+ }
3245
3306
  interface CronjobCronjobUrl {
3246
3307
  url: string;
3247
3308
  }
@@ -5751,6 +5812,16 @@ export declare namespace MittwaldAPIV2 {
5751
5812
  commonName: string;
5752
5813
  projectId: string;
5753
5814
  }
5815
+ /**
5816
+ * Specifies the type of certificate.
5817
+ *
5818
+ * Possible values:
5819
+ * - `0` – `UNSPECIFIED`: The certificate type is not specified.
5820
+ * - `1` – `INTERNAL`: A certificate issued and managed internally by the system.
5821
+ * - `2` – `EXTERNAL`: A certificate provided by an external source and imported into the system.
5822
+ * - `3` – `DNS`: A certificate validated using DNS-based verification.
5823
+ *
5824
+ */
5754
5825
  type SslCertificateType = 0 | 1 | 2 | 3;
5755
5826
  interface SslCheckReplaceChanges {
5756
5827
  commonName?: MittwaldAPIV2.Components.Schemas.SslCheckReplaceFieldChange;
@@ -6061,61 +6132,6 @@ export declare namespace MittwaldAPIV2 {
6061
6132
  }
6062
6133
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6063
6134
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6064
- interface AihostingCustomerDetailedModel {
6065
- activeAt: string;
6066
- displayName: string;
6067
- docLink: string;
6068
- name: string;
6069
- removalAt?: string;
6070
- replacesModelName?: string;
6071
- status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
6072
- termsOfServiceLink: string;
6073
- }
6074
- type AihostingDetailedModelStatus = "active" | "needApproval" | "deprecated";
6075
- interface AihostingProjectDetailedModel {
6076
- activeAt: string;
6077
- displayName: string;
6078
- docLink: string;
6079
- name: string;
6080
- removalAt?: string;
6081
- replacesModelName?: string;
6082
- status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
6083
- termsOfServiceLink: string;
6084
- }
6085
- interface CronjobAppInstallationTarget {
6086
- appInstallationId: string;
6087
- destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
6088
- }
6089
- interface CronjobAppInstallationPatchTarget {
6090
- appInstallationId?: string;
6091
- destination?: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
6092
- }
6093
- interface CronjobServicePatchTarget {
6094
- command?: string;
6095
- serviceIdentifier?: string;
6096
- stackId?: string;
6097
- }
6098
- interface CronjobServiceCronjobRequest {
6099
- active: boolean;
6100
- concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
6101
- description: string;
6102
- email?: string;
6103
- failedExecutionAlertThreshold?: number;
6104
- interval: string;
6105
- target?: MittwaldAPIV2.Components.Schemas.CronjobServiceTarget;
6106
- timeZone?: string;
6107
- timeout: number;
6108
- }
6109
- interface CronjobServiceTarget {
6110
- command: string;
6111
- serviceIdentifier: string;
6112
- stackId: string;
6113
- }
6114
- interface CronjobServiceTargetResponse {
6115
- command: string;
6116
- serviceShortId: string;
6117
- stackId: string;
6118
- }
6119
6135
  interface CommonsAddress {
6120
6136
  street: string;
6121
6137
  houseNumber: string;
@@ -6293,6 +6309,59 @@ export declare namespace MittwaldAPIV2 {
6293
6309
  }
6294
6310
  }
6295
6311
  namespace Paths {
6312
+ namespace V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms {
6313
+ namespace Post {
6314
+ namespace Parameters {
6315
+ type Path = {
6316
+ customerId: string;
6317
+ };
6318
+ type Header = {};
6319
+ type Query = {};
6320
+ }
6321
+ namespace Responses {
6322
+ namespace $204 {
6323
+ namespace Content {
6324
+ type Empty = unknown;
6325
+ }
6326
+ }
6327
+ namespace $400 {
6328
+ namespace Content {
6329
+ interface ApplicationJson {
6330
+ [k: string]: unknown;
6331
+ }
6332
+ }
6333
+ }
6334
+ namespace $403 {
6335
+ namespace Content {
6336
+ interface ApplicationJson {
6337
+ [k: string]: unknown;
6338
+ }
6339
+ }
6340
+ }
6341
+ namespace $404 {
6342
+ namespace Content {
6343
+ interface ApplicationJson {
6344
+ [k: string]: unknown;
6345
+ }
6346
+ }
6347
+ }
6348
+ namespace $429 {
6349
+ namespace Content {
6350
+ interface ApplicationJson {
6351
+ [k: string]: unknown;
6352
+ }
6353
+ }
6354
+ }
6355
+ namespace Default {
6356
+ namespace Content {
6357
+ interface ApplicationJson {
6358
+ [k: string]: unknown;
6359
+ }
6360
+ }
6361
+ }
6362
+ }
6363
+ }
6364
+ }
6296
6365
  namespace V2CustomersCustomerIdAiHostingKeys {
6297
6366
  namespace Get {
6298
6367
  namespace Parameters {
@@ -6607,6 +6676,59 @@ export declare namespace MittwaldAPIV2 {
6607
6676
  }
6608
6677
  }
6609
6678
  }
6679
+ namespace V2CustomersCustomerIdAiHostingModels {
6680
+ namespace Get {
6681
+ namespace Parameters {
6682
+ type Path = {
6683
+ customerId: string;
6684
+ };
6685
+ type Header = {};
6686
+ type Query = {};
6687
+ }
6688
+ namespace Responses {
6689
+ namespace $200 {
6690
+ namespace Content {
6691
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[];
6692
+ }
6693
+ }
6694
+ namespace $400 {
6695
+ namespace Content {
6696
+ interface ApplicationJson {
6697
+ [k: string]: unknown;
6698
+ }
6699
+ }
6700
+ }
6701
+ namespace $403 {
6702
+ namespace Content {
6703
+ interface ApplicationJson {
6704
+ [k: string]: unknown;
6705
+ }
6706
+ }
6707
+ }
6708
+ namespace $404 {
6709
+ namespace Content {
6710
+ interface ApplicationJson {
6711
+ [k: string]: unknown;
6712
+ }
6713
+ }
6714
+ }
6715
+ namespace $429 {
6716
+ namespace Content {
6717
+ interface ApplicationJson {
6718
+ [k: string]: unknown;
6719
+ }
6720
+ }
6721
+ }
6722
+ namespace Default {
6723
+ namespace Content {
6724
+ interface ApplicationJson {
6725
+ [k: string]: unknown;
6726
+ }
6727
+ }
6728
+ }
6729
+ }
6730
+ }
6731
+ }
6610
6732
  namespace V2CustomersCustomerIdAiHosting {
6611
6733
  namespace Get {
6612
6734
  namespace Parameters {
@@ -7025,6 +7147,59 @@ export declare namespace MittwaldAPIV2 {
7025
7147
  }
7026
7148
  }
7027
7149
  }
7150
+ namespace V2ProjectsProjectIdAiHostingModels {
7151
+ namespace Get {
7152
+ namespace Parameters {
7153
+ type Path = {
7154
+ projectId: string;
7155
+ };
7156
+ type Header = {};
7157
+ type Query = {};
7158
+ }
7159
+ namespace Responses {
7160
+ namespace $200 {
7161
+ namespace Content {
7162
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingProjectDetailedModel[];
7163
+ }
7164
+ }
7165
+ namespace $400 {
7166
+ namespace Content {
7167
+ interface ApplicationJson {
7168
+ [k: string]: unknown;
7169
+ }
7170
+ }
7171
+ }
7172
+ namespace $403 {
7173
+ namespace Content {
7174
+ interface ApplicationJson {
7175
+ [k: string]: unknown;
7176
+ }
7177
+ }
7178
+ }
7179
+ namespace $404 {
7180
+ namespace Content {
7181
+ interface ApplicationJson {
7182
+ [k: string]: unknown;
7183
+ }
7184
+ }
7185
+ }
7186
+ namespace $429 {
7187
+ namespace Content {
7188
+ interface ApplicationJson {
7189
+ [k: string]: unknown;
7190
+ }
7191
+ }
7192
+ }
7193
+ namespace Default {
7194
+ namespace Content {
7195
+ interface ApplicationJson {
7196
+ [k: string]: unknown;
7197
+ }
7198
+ }
7199
+ }
7200
+ }
7201
+ }
7202
+ }
7028
7203
  namespace V2ProjectsProjectIdAiHosting {
7029
7204
  namespace Get {
7030
7205
  namespace Parameters {
@@ -16099,6 +16274,8 @@ export declare namespace MittwaldAPIV2 {
16099
16274
  }
16100
16275
  }
16101
16276
  }
16277
+ namespace V2AppinstallationsAppInstallationIdActionsAction { }
16278
+ namespace V2AppInstallationsAppInstallationIdActionsAction { }
16102
16279
  namespace V2AppinstallationsAppInstallationIdDatabases { }
16103
16280
  namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates { }
16104
16281
  namespace V2CustomerCustomerIdActionsLeave { }
@@ -29866,166 +30043,5 @@ export declare namespace MittwaldAPIV2 {
29866
30043
  }
29867
30044
  }
29868
30045
  }
29869
- namespace V2AppinstallationsAppInstallationIdActionsAction { }
29870
- namespace V2AppInstallationsAppInstallationIdActionsAction { }
29871
- namespace V2CustomersCustomerIdAiHostingModels {
29872
- namespace Get {
29873
- namespace Parameters {
29874
- type Path = {
29875
- customerId: string;
29876
- };
29877
- type Header = {};
29878
- type Query = {};
29879
- }
29880
- namespace Responses {
29881
- namespace $200 {
29882
- namespace Content {
29883
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingCustomerDetailedModel[];
29884
- }
29885
- }
29886
- namespace $400 {
29887
- namespace Content {
29888
- interface ApplicationJson {
29889
- [k: string]: unknown;
29890
- }
29891
- }
29892
- }
29893
- namespace $403 {
29894
- namespace Content {
29895
- interface ApplicationJson {
29896
- [k: string]: unknown;
29897
- }
29898
- }
29899
- }
29900
- namespace $404 {
29901
- namespace Content {
29902
- interface ApplicationJson {
29903
- [k: string]: unknown;
29904
- }
29905
- }
29906
- }
29907
- namespace $429 {
29908
- namespace Content {
29909
- interface ApplicationJson {
29910
- [k: string]: unknown;
29911
- }
29912
- }
29913
- }
29914
- namespace Default {
29915
- namespace Content {
29916
- interface ApplicationJson {
29917
- [k: string]: unknown;
29918
- }
29919
- }
29920
- }
29921
- }
29922
- }
29923
- }
29924
- namespace V2ProjectsProjectIdAiHostingModels {
29925
- namespace Get {
29926
- namespace Parameters {
29927
- type Path = {
29928
- projectId: string;
29929
- };
29930
- type Header = {};
29931
- type Query = {};
29932
- }
29933
- namespace Responses {
29934
- namespace $200 {
29935
- namespace Content {
29936
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.AihostingProjectDetailedModel[];
29937
- }
29938
- }
29939
- namespace $400 {
29940
- namespace Content {
29941
- interface ApplicationJson {
29942
- [k: string]: unknown;
29943
- }
29944
- }
29945
- }
29946
- namespace $403 {
29947
- namespace Content {
29948
- interface ApplicationJson {
29949
- [k: string]: unknown;
29950
- }
29951
- }
29952
- }
29953
- namespace $404 {
29954
- namespace Content {
29955
- interface ApplicationJson {
29956
- [k: string]: unknown;
29957
- }
29958
- }
29959
- }
29960
- namespace $429 {
29961
- namespace Content {
29962
- interface ApplicationJson {
29963
- [k: string]: unknown;
29964
- }
29965
- }
29966
- }
29967
- namespace Default {
29968
- namespace Content {
29969
- interface ApplicationJson {
29970
- [k: string]: unknown;
29971
- }
29972
- }
29973
- }
29974
- }
29975
- }
29976
- }
29977
- namespace V2CustomersCustomerIdAiHostingModelsActionsAcceptTerms {
29978
- namespace Post {
29979
- namespace Parameters {
29980
- type Path = {
29981
- customerId: string;
29982
- };
29983
- type Header = {};
29984
- type Query = {};
29985
- }
29986
- namespace Responses {
29987
- namespace $204 {
29988
- namespace Content {
29989
- type Empty = unknown;
29990
- }
29991
- }
29992
- namespace $400 {
29993
- namespace Content {
29994
- interface ApplicationJson {
29995
- [k: string]: unknown;
29996
- }
29997
- }
29998
- }
29999
- namespace $403 {
30000
- namespace Content {
30001
- interface ApplicationJson {
30002
- [k: string]: unknown;
30003
- }
30004
- }
30005
- }
30006
- namespace $404 {
30007
- namespace Content {
30008
- interface ApplicationJson {
30009
- [k: string]: unknown;
30010
- }
30011
- }
30012
- }
30013
- namespace $429 {
30014
- namespace Content {
30015
- interface ApplicationJson {
30016
- [k: string]: unknown;
30017
- }
30018
- }
30019
- }
30020
- namespace Default {
30021
- namespace Content {
30022
- interface ApplicationJson {
30023
- [k: string]: unknown;
30024
- }
30025
- }
30026
- }
30027
- }
30028
- }
30029
- }
30030
30046
  }
30031
30047
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.340.0';
1
+ export declare const MittwaldAPIClientVersion = '4.342.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.341.0",
3
+ "version": "4.343.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.341.0",
49
+ "@mittwald/api-client-commons": "^4.343.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.341.0",
53
+ "@mittwald/api-code-generator": "^4.343.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": "a392741b6905f428bc2b2d5dcda32fb412093531"
83
+ "gitHead": "e35132b921d3728452b1b9e25560667278894a44"
84
84
  }