@mittwald/api-client 4.427.0 → 4.429.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.
- package/dist/esm/generated/v2/client-react.js +2 -2
- package/dist/esm/generated/v2/client.js +2 -2
- package/dist/esm/generated/v2/descriptors.js +6 -6
- package/dist/esm/generated/v3-next/client-react.js +2 -2
- package/dist/esm/generated/v3-next/client.js +2 -2
- package/dist/esm/generated/v3-next/descriptors.js +6 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +17 -15
- package/dist/types/generated/v2/client.d.ts +67 -62
- package/dist/types/generated/v2/descriptors.d.ts +2 -2
- package/dist/types/generated/v2/types.d.ts +56 -50
- package/dist/types/generated/v3-next/client-react.d.ts +17 -15
- package/dist/types/generated/v3-next/client.d.ts +67 -62
- package/dist/types/generated/v3-next/descriptors.d.ts +2 -2
- package/dist/types/generated/v3-next/types.d.ts +56 -50
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -110,8 +110,6 @@ const buildContainerApi = (baseClient) => ({
|
|
|
110
110
|
const buildContractApi = (baseClient) => ({
|
|
111
111
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
112
112
|
getBaseItemOfContract: new ApiCallAsyncResourceFactory(descriptors.contractGetBaseItemOfContract, baseClient.contract.getBaseItemOfContract).getApiResource,
|
|
113
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
114
|
-
getDetailOfContractByAiHosting: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByAiHosting, baseClient.contract.getDetailOfContractByAiHosting).getApiResource,
|
|
115
113
|
/** Return the Contract for the given Certificate. */
|
|
116
114
|
getDetailOfContractByCertificate: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByCertificate, baseClient.contract.getDetailOfContractByCertificate).getApiResource,
|
|
117
115
|
/** Return the Contract for the given Domain. */
|
|
@@ -148,6 +146,8 @@ const buildContractApi = (baseClient) => ({
|
|
|
148
146
|
orderListCustomerOrders: new ApiCallAsyncResourceFactory(descriptors.orderListCustomerOrders, baseClient.contract.orderListCustomerOrders).getApiResource,
|
|
149
147
|
/** Get list of Orders of a Project. */
|
|
150
148
|
orderListProjectOrders: new ApiCallAsyncResourceFactory(descriptors.orderListProjectOrders, baseClient.contract.orderListProjectOrders).getApiResource,
|
|
149
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
150
|
+
getDetailOfContractByAiHosting: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByAiHosting, baseClient.contract.getDetailOfContractByAiHosting).getApiResource,
|
|
151
151
|
});
|
|
152
152
|
const buildMarketplaceApi = (baseClient) => ({
|
|
153
153
|
/** Get a Contributor. */
|
|
@@ -215,8 +215,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
215
215
|
cancelContractTermination: this.requestFunctionFactory(descriptors.contractCancelContractTermination),
|
|
216
216
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
217
217
|
getBaseItemOfContract: this.requestFunctionFactory(descriptors.contractGetBaseItemOfContract),
|
|
218
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
219
|
-
getDetailOfContractByAiHosting: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByAiHosting),
|
|
220
218
|
/** Return the Contract for the given Certificate. */
|
|
221
219
|
getDetailOfContractByCertificate: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByCertificate),
|
|
222
220
|
/** Return the Contract for the given Domain. */
|
|
@@ -263,6 +261,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
263
261
|
orderPreviewOrder: this.requestFunctionFactory(descriptors.orderPreviewOrder),
|
|
264
262
|
/** Preview TariffChange. */
|
|
265
263
|
orderPreviewTariffChange: this.requestFunctionFactory(descriptors.orderPreviewTariffChange),
|
|
264
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
265
|
+
getDetailOfContractByAiHosting: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByAiHosting),
|
|
266
266
|
};
|
|
267
267
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
268
268
|
marketplace = {
|
|
@@ -574,12 +574,6 @@ export const contractGetBaseItemOfContract = {
|
|
|
574
574
|
method: "GET",
|
|
575
575
|
operationId: "contract-get-base-item-of-contract",
|
|
576
576
|
};
|
|
577
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
578
|
-
export const contractGetDetailOfContractByAiHosting = {
|
|
579
|
-
path: "/v2/customers/{customerId}/ai-hosting/contract",
|
|
580
|
-
method: "GET",
|
|
581
|
-
operationId: "contract-get-detail-of-contract-by-ai-hosting",
|
|
582
|
-
};
|
|
583
577
|
/** Return the Contract for the given Certificate. */
|
|
584
578
|
export const contractGetDetailOfContractByCertificate = {
|
|
585
579
|
path: "/v2/certificates/{certificateId}/contract",
|
|
@@ -2860,3 +2854,9 @@ export const containerAddTemplateComponent = {
|
|
|
2860
2854
|
method: "POST",
|
|
2861
2855
|
operationId: "container-add-template-component",
|
|
2862
2856
|
};
|
|
2857
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
2858
|
+
export const contractGetDetailOfContractByAiHosting = {
|
|
2859
|
+
path: "/v2/customers/{customerId}/ai-hostings/{aiHostingId}/contract",
|
|
2860
|
+
method: "GET",
|
|
2861
|
+
operationId: "contract-get-detail-of-contract-by-ai-hosting",
|
|
2862
|
+
};
|
|
@@ -110,8 +110,6 @@ const buildContainerApi = (baseClient) => ({
|
|
|
110
110
|
const buildContractApi = (baseClient) => ({
|
|
111
111
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
112
112
|
getBaseItemOfContract: new ApiCallAsyncResourceFactory(descriptors.contractGetBaseItemOfContract, baseClient.contract.getBaseItemOfContract).getApiResource,
|
|
113
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
114
|
-
getDetailOfContractByAiHosting: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByAiHosting, baseClient.contract.getDetailOfContractByAiHosting).getApiResource,
|
|
115
113
|
/** Return the Contract for the given Certificate. */
|
|
116
114
|
getDetailOfContractByCertificate: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByCertificate, baseClient.contract.getDetailOfContractByCertificate).getApiResource,
|
|
117
115
|
/** Return the Contract for the given Domain. */
|
|
@@ -148,6 +146,8 @@ const buildContractApi = (baseClient) => ({
|
|
|
148
146
|
orderListCustomerOrders: new ApiCallAsyncResourceFactory(descriptors.orderListCustomerOrders, baseClient.contract.orderListCustomerOrders).getApiResource,
|
|
149
147
|
/** Get list of Orders of a Project. */
|
|
150
148
|
orderListProjectOrders: new ApiCallAsyncResourceFactory(descriptors.orderListProjectOrders, baseClient.contract.orderListProjectOrders).getApiResource,
|
|
149
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
150
|
+
getDetailOfContractByAiHosting: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractByAiHosting, baseClient.contract.getDetailOfContractByAiHosting).getApiResource,
|
|
151
151
|
});
|
|
152
152
|
const buildMarketplaceApi = (baseClient) => ({
|
|
153
153
|
/** Get a Contributor. */
|
|
@@ -215,8 +215,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
215
215
|
cancelContractTermination: this.requestFunctionFactory(descriptors.contractCancelContractTermination),
|
|
216
216
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
217
217
|
getBaseItemOfContract: this.requestFunctionFactory(descriptors.contractGetBaseItemOfContract),
|
|
218
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
219
|
-
getDetailOfContractByAiHosting: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByAiHosting),
|
|
220
218
|
/** Return the Contract for the given Certificate. */
|
|
221
219
|
getDetailOfContractByCertificate: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByCertificate),
|
|
222
220
|
/** Return the Contract for the given Domain. */
|
|
@@ -263,6 +261,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
263
261
|
orderPreviewOrder: this.requestFunctionFactory(descriptors.orderPreviewOrder),
|
|
264
262
|
/** Preview TariffChange. */
|
|
265
263
|
orderPreviewTariffChange: this.requestFunctionFactory(descriptors.orderPreviewTariffChange),
|
|
264
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
265
|
+
getDetailOfContractByAiHosting: this.requestFunctionFactory(descriptors.contractGetDetailOfContractByAiHosting),
|
|
266
266
|
};
|
|
267
267
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
268
268
|
marketplace = {
|
|
@@ -574,12 +574,6 @@ export const contractGetBaseItemOfContract = {
|
|
|
574
574
|
method: "GET",
|
|
575
575
|
operationId: "contract-get-base-item-of-contract",
|
|
576
576
|
};
|
|
577
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
578
|
-
export const contractGetDetailOfContractByAiHosting = {
|
|
579
|
-
path: "/v3-next/customers/{customerId}/ai-hosting/contract",
|
|
580
|
-
method: "GET",
|
|
581
|
-
operationId: "contract-get-detail-of-contract-by-ai-hosting",
|
|
582
|
-
};
|
|
583
577
|
/** Return the Contract for the given Certificate. */
|
|
584
578
|
export const contractGetDetailOfContractByCertificate = {
|
|
585
579
|
path: "/v3-next/certificates/{certificateId}/contract",
|
|
@@ -2860,3 +2854,9 @@ export const containerAddTemplateComponent = {
|
|
|
2860
2854
|
method: "POST",
|
|
2861
2855
|
operationId: "container-add-template-component",
|
|
2862
2856
|
};
|
|
2857
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
2858
|
+
export const contractGetDetailOfContractByAiHosting = {
|
|
2859
|
+
path: "/v3-next/customers/{customerId}/ai-hostings/{aiHostingId}/contract",
|
|
2860
|
+
method: "GET",
|
|
2861
|
+
operationId: "contract-get-detail-of-contract-by-ai-hosting",
|
|
2862
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.428.0';
|
|
@@ -668,6 +668,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
668
668
|
stackId: string;
|
|
669
669
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
|
|
670
670
|
statusSetAt: string;
|
|
671
|
+
templateId?: string | undefined;
|
|
671
672
|
}>;
|
|
672
673
|
/** Get a Container Template asset. */
|
|
673
674
|
getTemplateAsset: (conf: {
|
|
@@ -850,21 +851,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
850
851
|
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
851
852
|
totalPrice: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractPrice;
|
|
852
853
|
}>;
|
|
853
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
854
|
-
getDetailOfContractByAiHosting: (conf: {
|
|
855
|
-
customerId: string;
|
|
856
|
-
headers?: {
|
|
857
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
858
|
-
"x-access-token"?: string | undefined;
|
|
859
|
-
} | undefined;
|
|
860
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
861
|
-
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
862
|
-
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
863
|
-
contractId: string;
|
|
864
|
-
contractNumber: string;
|
|
865
|
-
customerId: string;
|
|
866
|
-
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
867
|
-
}>;
|
|
868
854
|
/** Return the Contract for the given Certificate. */
|
|
869
855
|
getDetailOfContractByCertificate: (conf: {
|
|
870
856
|
certificateId: string;
|
|
@@ -1186,6 +1172,22 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1186
1172
|
templateNames?: string[] | undefined;
|
|
1187
1173
|
} | undefined;
|
|
1188
1174
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
|
|
1175
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
1176
|
+
getDetailOfContractByAiHosting: (conf: {
|
|
1177
|
+
customerId: string;
|
|
1178
|
+
aiHostingId: string;
|
|
1179
|
+
headers?: {
|
|
1180
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1181
|
+
"x-access-token"?: string | undefined;
|
|
1182
|
+
} | undefined;
|
|
1183
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1184
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
1185
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
1186
|
+
contractId: string;
|
|
1187
|
+
contractNumber: string;
|
|
1188
|
+
customerId: string;
|
|
1189
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
1190
|
+
}>;
|
|
1189
1191
|
};
|
|
1190
1192
|
declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1191
1193
|
/** Get a Contributor. */
|
|
@@ -5113,6 +5113,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5113
5113
|
stackId: string;
|
|
5114
5114
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
|
|
5115
5115
|
statusSetAt: string;
|
|
5116
|
+
templateId?: string | undefined;
|
|
5116
5117
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5117
5118
|
[x: string]: unknown;
|
|
5118
5119
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -5155,6 +5156,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5155
5156
|
stackId: string;
|
|
5156
5157
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
|
|
5157
5158
|
statusSetAt: string;
|
|
5159
|
+
templateId?: string | undefined;
|
|
5158
5160
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5159
5161
|
[x: string]: unknown;
|
|
5160
5162
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -6743,68 +6745,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6743
6745
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6744
6746
|
[x: string]: unknown;
|
|
6745
6747
|
}, 429, "application/json">>>;
|
|
6746
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
6747
|
-
getDetailOfContractByAiHosting: (request: {
|
|
6748
|
-
customerId: string;
|
|
6749
|
-
headers?: {
|
|
6750
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6751
|
-
"x-access-token"?: string | undefined;
|
|
6752
|
-
} | undefined;
|
|
6753
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6754
|
-
headers?: Partial<{
|
|
6755
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6756
|
-
}>;
|
|
6757
|
-
} & {
|
|
6758
|
-
pathParameters: {
|
|
6759
|
-
customerId: string;
|
|
6760
|
-
};
|
|
6761
|
-
} & {
|
|
6762
|
-
headers: {
|
|
6763
|
-
"x-access-token"?: string | undefined;
|
|
6764
|
-
} & Partial<{
|
|
6765
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6766
|
-
}>;
|
|
6767
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
6768
|
-
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
6769
|
-
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
6770
|
-
contractId: string;
|
|
6771
|
-
contractNumber: string;
|
|
6772
|
-
customerId: string;
|
|
6773
|
-
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
6774
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6775
|
-
[x: string]: unknown;
|
|
6776
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6777
|
-
[x: string]: unknown;
|
|
6778
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6779
|
-
[x: string]: unknown;
|
|
6780
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6781
|
-
headers?: Partial<{
|
|
6782
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6783
|
-
}>;
|
|
6784
|
-
} & {
|
|
6785
|
-
pathParameters: {
|
|
6786
|
-
customerId: string;
|
|
6787
|
-
};
|
|
6788
|
-
} & {
|
|
6789
|
-
headers: {
|
|
6790
|
-
"x-access-token"?: string | undefined;
|
|
6791
|
-
} & Partial<{
|
|
6792
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6793
|
-
}>;
|
|
6794
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
6795
|
-
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
6796
|
-
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
6797
|
-
contractId: string;
|
|
6798
|
-
contractNumber: string;
|
|
6799
|
-
customerId: string;
|
|
6800
|
-
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
6801
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6802
|
-
[x: string]: unknown;
|
|
6803
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6804
|
-
[x: string]: unknown;
|
|
6805
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6806
|
-
[x: string]: unknown;
|
|
6807
|
-
}, 429, "application/json">>>;
|
|
6808
6748
|
/** Return the Contract for the given Certificate. */
|
|
6809
6749
|
getDetailOfContractByCertificate: (request: {
|
|
6810
6750
|
certificateId: string;
|
|
@@ -8515,6 +8455,71 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8515
8455
|
}, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8516
8456
|
[x: string]: unknown;
|
|
8517
8457
|
}, 429, "application/json">>>;
|
|
8458
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
8459
|
+
getDetailOfContractByAiHosting: (request: {
|
|
8460
|
+
customerId: string;
|
|
8461
|
+
aiHostingId: string;
|
|
8462
|
+
headers?: {
|
|
8463
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8464
|
+
"x-access-token"?: string | undefined;
|
|
8465
|
+
} | undefined;
|
|
8466
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8467
|
+
headers?: Partial<{
|
|
8468
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8469
|
+
}>;
|
|
8470
|
+
} & {
|
|
8471
|
+
pathParameters: {
|
|
8472
|
+
customerId: string;
|
|
8473
|
+
aiHostingId: string;
|
|
8474
|
+
};
|
|
8475
|
+
} & {
|
|
8476
|
+
headers: {
|
|
8477
|
+
"x-access-token"?: string | undefined;
|
|
8478
|
+
} & Partial<{
|
|
8479
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8480
|
+
}>;
|
|
8481
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8482
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
8483
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
8484
|
+
contractId: string;
|
|
8485
|
+
contractNumber: string;
|
|
8486
|
+
customerId: string;
|
|
8487
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
8488
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8489
|
+
[x: string]: unknown;
|
|
8490
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8491
|
+
[x: string]: unknown;
|
|
8492
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8493
|
+
[x: string]: unknown;
|
|
8494
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8495
|
+
headers?: Partial<{
|
|
8496
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8497
|
+
}>;
|
|
8498
|
+
} & {
|
|
8499
|
+
pathParameters: {
|
|
8500
|
+
customerId: string;
|
|
8501
|
+
aiHostingId: string;
|
|
8502
|
+
};
|
|
8503
|
+
} & {
|
|
8504
|
+
headers: {
|
|
8505
|
+
"x-access-token"?: string | undefined;
|
|
8506
|
+
} & Partial<{
|
|
8507
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8508
|
+
}>;
|
|
8509
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8510
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
8511
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
8512
|
+
contractId: string;
|
|
8513
|
+
contractNumber: string;
|
|
8514
|
+
customerId: string;
|
|
8515
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
8516
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8517
|
+
[x: string]: unknown;
|
|
8518
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8519
|
+
[x: string]: unknown;
|
|
8520
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8521
|
+
[x: string]: unknown;
|
|
8522
|
+
}, 429, "application/json">>>;
|
|
8518
8523
|
};
|
|
8519
8524
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
8520
8525
|
readonly marketplace: {
|
|
@@ -195,8 +195,6 @@ export declare const contractTerminateContract: OpenAPIOperation<RequestType<Sim
|
|
|
195
195
|
export declare const contractCancelContractTermination: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdTermination.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
196
196
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
197
197
|
export declare const contractGetBaseItemOfContract: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdBaseItems.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
198
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
199
|
-
export declare const contractGetDetailOfContractByAiHosting: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
200
198
|
/** Return the Contract for the given Certificate. */
|
|
201
199
|
export declare const contractGetDetailOfContractByCertificate: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificatesCertificateIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
202
200
|
/** Return the Contract for the given Domain. */
|
|
@@ -957,3 +955,5 @@ export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Sim
|
|
|
957
955
|
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">>;
|
|
958
956
|
/** Add a template component to a Stack. */
|
|
959
957
|
export declare const containerAddTemplateComponent: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
958
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
959
|
+
export declare const contractGetDetailOfContractByAiHosting: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingsAiHostingIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingsAiHostingIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingsAiHostingIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -386,10 +386,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
386
386
|
type RequestData = InferredRequestData<typeof descriptors.contractGetBaseItemOfContract>;
|
|
387
387
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetBaseItemOfContract, TStatus>;
|
|
388
388
|
}
|
|
389
|
-
namespace ContractGetDetailOfContractByAiHosting {
|
|
390
|
-
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByAiHosting>;
|
|
391
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByAiHosting, TStatus>;
|
|
392
|
-
}
|
|
393
389
|
namespace ContractGetDetailOfContractByCertificate {
|
|
394
390
|
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByCertificate>;
|
|
395
391
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByCertificate, TStatus>;
|
|
@@ -1910,6 +1906,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1910
1906
|
type RequestData = InferredRequestData<typeof descriptors.containerAddTemplateComponent>;
|
|
1911
1907
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerAddTemplateComponent, TStatus>;
|
|
1912
1908
|
}
|
|
1909
|
+
namespace ContractGetDetailOfContractByAiHosting {
|
|
1910
|
+
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByAiHosting>;
|
|
1911
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByAiHosting, TStatus>;
|
|
1912
|
+
}
|
|
1913
1913
|
}
|
|
1914
1914
|
namespace Components {
|
|
1915
1915
|
namespace Schemas {
|
|
@@ -2818,6 +2818,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2818
2818
|
stackId: string;
|
|
2819
2819
|
status: MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
|
|
2820
2820
|
statusSetAt: string;
|
|
2821
|
+
/**
|
|
2822
|
+
* ID of the template used to create this service, if one was used.
|
|
2823
|
+
*/
|
|
2824
|
+
templateId?: string;
|
|
2821
2825
|
}
|
|
2822
2826
|
interface ContainerServiceState {
|
|
2823
2827
|
/**
|
|
@@ -12545,52 +12549,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12545
12549
|
}
|
|
12546
12550
|
}
|
|
12547
12551
|
}
|
|
12548
|
-
namespace V2CustomersCustomerIdAiHostingContract {
|
|
12549
|
-
namespace Get {
|
|
12550
|
-
namespace Parameters {
|
|
12551
|
-
type Path = {
|
|
12552
|
-
customerId: string;
|
|
12553
|
-
};
|
|
12554
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12555
|
-
type Query = {};
|
|
12556
|
-
}
|
|
12557
|
-
namespace Responses {
|
|
12558
|
-
namespace $200 {
|
|
12559
|
-
namespace Content {
|
|
12560
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
|
|
12561
|
-
}
|
|
12562
|
-
}
|
|
12563
|
-
namespace $400 {
|
|
12564
|
-
namespace Content {
|
|
12565
|
-
interface ApplicationJson {
|
|
12566
|
-
[k: string]: unknown;
|
|
12567
|
-
}
|
|
12568
|
-
}
|
|
12569
|
-
}
|
|
12570
|
-
namespace $404 {
|
|
12571
|
-
namespace Content {
|
|
12572
|
-
interface ApplicationJson {
|
|
12573
|
-
[k: string]: unknown;
|
|
12574
|
-
}
|
|
12575
|
-
}
|
|
12576
|
-
}
|
|
12577
|
-
namespace $429 {
|
|
12578
|
-
namespace Content {
|
|
12579
|
-
interface ApplicationJson {
|
|
12580
|
-
[k: string]: unknown;
|
|
12581
|
-
}
|
|
12582
|
-
}
|
|
12583
|
-
}
|
|
12584
|
-
namespace Default {
|
|
12585
|
-
namespace Content {
|
|
12586
|
-
interface ApplicationJson {
|
|
12587
|
-
[k: string]: unknown;
|
|
12588
|
-
}
|
|
12589
|
-
}
|
|
12590
|
-
}
|
|
12591
|
-
}
|
|
12592
|
-
}
|
|
12593
|
-
}
|
|
12552
|
+
namespace V2CustomersCustomerIdAiHostingContract { }
|
|
12594
12553
|
namespace V2CertificatesCertificateIdContract {
|
|
12595
12554
|
namespace Get {
|
|
12596
12555
|
namespace Parameters {
|
|
@@ -31834,5 +31793,52 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31834
31793
|
}
|
|
31835
31794
|
}
|
|
31836
31795
|
}
|
|
31796
|
+
namespace V2CustomersCustomerIdAiHostingsAiHostingIdContract {
|
|
31797
|
+
namespace Get {
|
|
31798
|
+
namespace Parameters {
|
|
31799
|
+
type Path = {
|
|
31800
|
+
customerId: string;
|
|
31801
|
+
aiHostingId: string;
|
|
31802
|
+
};
|
|
31803
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31804
|
+
type Query = {};
|
|
31805
|
+
}
|
|
31806
|
+
namespace Responses {
|
|
31807
|
+
namespace $200 {
|
|
31808
|
+
namespace Content {
|
|
31809
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContractContract;
|
|
31810
|
+
}
|
|
31811
|
+
}
|
|
31812
|
+
namespace $400 {
|
|
31813
|
+
namespace Content {
|
|
31814
|
+
interface ApplicationJson {
|
|
31815
|
+
[k: string]: unknown;
|
|
31816
|
+
}
|
|
31817
|
+
}
|
|
31818
|
+
}
|
|
31819
|
+
namespace $404 {
|
|
31820
|
+
namespace Content {
|
|
31821
|
+
interface ApplicationJson {
|
|
31822
|
+
[k: string]: unknown;
|
|
31823
|
+
}
|
|
31824
|
+
}
|
|
31825
|
+
}
|
|
31826
|
+
namespace $429 {
|
|
31827
|
+
namespace Content {
|
|
31828
|
+
interface ApplicationJson {
|
|
31829
|
+
[k: string]: unknown;
|
|
31830
|
+
}
|
|
31831
|
+
}
|
|
31832
|
+
}
|
|
31833
|
+
namespace Default {
|
|
31834
|
+
namespace Content {
|
|
31835
|
+
interface ApplicationJson {
|
|
31836
|
+
[k: string]: unknown;
|
|
31837
|
+
}
|
|
31838
|
+
}
|
|
31839
|
+
}
|
|
31840
|
+
}
|
|
31841
|
+
}
|
|
31842
|
+
}
|
|
31837
31843
|
}
|
|
31838
31844
|
}
|
|
@@ -668,6 +668,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
668
668
|
stackId: string;
|
|
669
669
|
status: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
|
|
670
670
|
statusSetAt: string;
|
|
671
|
+
templateId?: string | undefined;
|
|
671
672
|
}>;
|
|
672
673
|
/** Get a Container Template asset. */
|
|
673
674
|
getTemplateAsset: (conf: {
|
|
@@ -850,21 +851,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
850
851
|
termination?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractTermination | undefined;
|
|
851
852
|
totalPrice: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractPrice;
|
|
852
853
|
}>;
|
|
853
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
854
|
-
getDetailOfContractByAiHosting: (conf: {
|
|
855
|
-
customerId: string;
|
|
856
|
-
headers?: {
|
|
857
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
858
|
-
"x-access-token"?: string | undefined;
|
|
859
|
-
} | undefined;
|
|
860
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
861
|
-
additionalItems?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem[] | undefined;
|
|
862
|
-
baseItem: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem;
|
|
863
|
-
contractId: string;
|
|
864
|
-
contractNumber: string;
|
|
865
|
-
customerId: string;
|
|
866
|
-
termination?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractTermination | undefined;
|
|
867
|
-
}>;
|
|
868
854
|
/** Return the Contract for the given Certificate. */
|
|
869
855
|
getDetailOfContractByCertificate: (conf: {
|
|
870
856
|
certificateId: string;
|
|
@@ -1186,6 +1172,22 @@ declare const buildContractApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1186
1172
|
templateNames?: string[] | undefined;
|
|
1187
1173
|
} | undefined;
|
|
1188
1174
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldOrderCustomerOrder[]>;
|
|
1175
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
1176
|
+
getDetailOfContractByAiHosting: (conf: {
|
|
1177
|
+
customerId: string;
|
|
1178
|
+
aiHostingId: string;
|
|
1179
|
+
headers?: {
|
|
1180
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1181
|
+
"x-access-token"?: string | undefined;
|
|
1182
|
+
} | undefined;
|
|
1183
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1184
|
+
additionalItems?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem[] | undefined;
|
|
1185
|
+
baseItem: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem;
|
|
1186
|
+
contractId: string;
|
|
1187
|
+
contractNumber: string;
|
|
1188
|
+
customerId: string;
|
|
1189
|
+
termination?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractTermination | undefined;
|
|
1190
|
+
}>;
|
|
1189
1191
|
};
|
|
1190
1192
|
declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
1191
1193
|
/** Get a Contributor. */
|
|
@@ -5113,6 +5113,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
5113
5113
|
stackId: string;
|
|
5114
5114
|
status: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
|
|
5115
5115
|
statusSetAt: string;
|
|
5116
|
+
templateId?: string | undefined;
|
|
5116
5117
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5117
5118
|
[x: string]: unknown;
|
|
5118
5119
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -5155,6 +5156,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
5155
5156
|
stackId: string;
|
|
5156
5157
|
status: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
|
|
5157
5158
|
statusSetAt: string;
|
|
5159
|
+
templateId?: string | undefined;
|
|
5158
5160
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5159
5161
|
[x: string]: unknown;
|
|
5160
5162
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -6743,68 +6745,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
6743
6745
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6744
6746
|
[x: string]: unknown;
|
|
6745
6747
|
}, 429, "application/json">>>;
|
|
6746
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
6747
|
-
getDetailOfContractByAiHosting: (request: {
|
|
6748
|
-
customerId: string;
|
|
6749
|
-
headers?: {
|
|
6750
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6751
|
-
"x-access-token"?: string | undefined;
|
|
6752
|
-
} | undefined;
|
|
6753
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6754
|
-
headers?: Partial<{
|
|
6755
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6756
|
-
}>;
|
|
6757
|
-
} & {
|
|
6758
|
-
pathParameters: {
|
|
6759
|
-
customerId: string;
|
|
6760
|
-
};
|
|
6761
|
-
} & {
|
|
6762
|
-
headers: {
|
|
6763
|
-
"x-access-token"?: string | undefined;
|
|
6764
|
-
} & Partial<{
|
|
6765
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6766
|
-
}>;
|
|
6767
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
6768
|
-
additionalItems?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem[] | undefined;
|
|
6769
|
-
baseItem: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem;
|
|
6770
|
-
contractId: string;
|
|
6771
|
-
contractNumber: string;
|
|
6772
|
-
customerId: string;
|
|
6773
|
-
termination?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractTermination | undefined;
|
|
6774
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6775
|
-
[x: string]: unknown;
|
|
6776
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6777
|
-
[x: string]: unknown;
|
|
6778
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6779
|
-
[x: string]: unknown;
|
|
6780
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6781
|
-
headers?: Partial<{
|
|
6782
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6783
|
-
}>;
|
|
6784
|
-
} & {
|
|
6785
|
-
pathParameters: {
|
|
6786
|
-
customerId: string;
|
|
6787
|
-
};
|
|
6788
|
-
} & {
|
|
6789
|
-
headers: {
|
|
6790
|
-
"x-access-token"?: string | undefined;
|
|
6791
|
-
} & Partial<{
|
|
6792
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6793
|
-
}>;
|
|
6794
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
6795
|
-
additionalItems?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem[] | undefined;
|
|
6796
|
-
baseItem: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem;
|
|
6797
|
-
contractId: string;
|
|
6798
|
-
contractNumber: string;
|
|
6799
|
-
customerId: string;
|
|
6800
|
-
termination?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractTermination | undefined;
|
|
6801
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6802
|
-
[x: string]: unknown;
|
|
6803
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6804
|
-
[x: string]: unknown;
|
|
6805
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6806
|
-
[x: string]: unknown;
|
|
6807
|
-
}, 429, "application/json">>>;
|
|
6808
6748
|
/** Return the Contract for the given Certificate. */
|
|
6809
6749
|
getDetailOfContractByCertificate: (request: {
|
|
6810
6750
|
certificateId: string;
|
|
@@ -8515,6 +8455,71 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
8515
8455
|
}, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8516
8456
|
[x: string]: unknown;
|
|
8517
8457
|
}, 429, "application/json">>>;
|
|
8458
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
8459
|
+
getDetailOfContractByAiHosting: (request: {
|
|
8460
|
+
customerId: string;
|
|
8461
|
+
aiHostingId: string;
|
|
8462
|
+
headers?: {
|
|
8463
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8464
|
+
"x-access-token"?: string | undefined;
|
|
8465
|
+
} | undefined;
|
|
8466
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8467
|
+
headers?: Partial<{
|
|
8468
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8469
|
+
}>;
|
|
8470
|
+
} & {
|
|
8471
|
+
pathParameters: {
|
|
8472
|
+
customerId: string;
|
|
8473
|
+
aiHostingId: string;
|
|
8474
|
+
};
|
|
8475
|
+
} & {
|
|
8476
|
+
headers: {
|
|
8477
|
+
"x-access-token"?: string | undefined;
|
|
8478
|
+
} & Partial<{
|
|
8479
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8480
|
+
}>;
|
|
8481
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8482
|
+
additionalItems?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem[] | undefined;
|
|
8483
|
+
baseItem: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem;
|
|
8484
|
+
contractId: string;
|
|
8485
|
+
contractNumber: string;
|
|
8486
|
+
customerId: string;
|
|
8487
|
+
termination?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractTermination | undefined;
|
|
8488
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8489
|
+
[x: string]: unknown;
|
|
8490
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8491
|
+
[x: string]: unknown;
|
|
8492
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8493
|
+
[x: string]: unknown;
|
|
8494
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8495
|
+
headers?: Partial<{
|
|
8496
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8497
|
+
}>;
|
|
8498
|
+
} & {
|
|
8499
|
+
pathParameters: {
|
|
8500
|
+
customerId: string;
|
|
8501
|
+
aiHostingId: string;
|
|
8502
|
+
};
|
|
8503
|
+
} & {
|
|
8504
|
+
headers: {
|
|
8505
|
+
"x-access-token"?: string | undefined;
|
|
8506
|
+
} & Partial<{
|
|
8507
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8508
|
+
}>;
|
|
8509
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8510
|
+
additionalItems?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem[] | undefined;
|
|
8511
|
+
baseItem: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContractItem;
|
|
8512
|
+
contractId: string;
|
|
8513
|
+
contractNumber: string;
|
|
8514
|
+
customerId: string;
|
|
8515
|
+
termination?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractTermination | undefined;
|
|
8516
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8517
|
+
[x: string]: unknown;
|
|
8518
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8519
|
+
[x: string]: unknown;
|
|
8520
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8521
|
+
[x: string]: unknown;
|
|
8522
|
+
}, 429, "application/json">>>;
|
|
8518
8523
|
};
|
|
8519
8524
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
8520
8525
|
readonly marketplace: {
|
|
@@ -195,8 +195,6 @@ export declare const contractTerminateContract: OpenAPIOperation<RequestType<Sim
|
|
|
195
195
|
export declare const contractCancelContractTermination: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdTermination.Delete.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdTermination.Delete.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdTermination.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdTermination.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdTermination.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdTermination.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdTermination.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdTermination.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdTermination.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
196
196
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
197
197
|
export declare const contractGetBaseItemOfContract: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdBaseItems.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdBaseItems.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdBaseItems.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdBaseItems.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdBaseItems.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdBaseItems.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdBaseItems.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContractsContractIdBaseItems.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
198
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
199
|
-
export declare const contractGetDetailOfContractByAiHosting: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingContract.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingContract.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
200
198
|
/** Return the Contract for the given Certificate. */
|
|
201
199
|
export declare const contractGetDetailOfContractByCertificate: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextCertificatesCertificateIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextCertificatesCertificateIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextCertificatesCertificateIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCertificatesCertificateIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCertificatesCertificateIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCertificatesCertificateIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCertificatesCertificateIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCertificatesCertificateIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
202
200
|
/** Return the Contract for the given Domain. */
|
|
@@ -957,3 +955,5 @@ export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Sim
|
|
|
957
955
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
958
956
|
/** Add a template component to a Stack. */
|
|
959
957
|
export declare const containerAddTemplateComponent: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdActionsAddTemplateComponent.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
958
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
959
|
+
export declare const contractGetDetailOfContractByAiHosting: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingsAiHostingIdContract.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingsAiHostingIdContract.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingsAiHostingIdContract.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextCustomersCustomerIdAiHostingsAiHostingIdContract.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -386,10 +386,6 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
386
386
|
type RequestData = InferredRequestData<typeof descriptors.contractGetBaseItemOfContract>;
|
|
387
387
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetBaseItemOfContract, TStatus>;
|
|
388
388
|
}
|
|
389
|
-
namespace ContractGetDetailOfContractByAiHosting {
|
|
390
|
-
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByAiHosting>;
|
|
391
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByAiHosting, TStatus>;
|
|
392
|
-
}
|
|
393
389
|
namespace ContractGetDetailOfContractByCertificate {
|
|
394
390
|
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByCertificate>;
|
|
395
391
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByCertificate, TStatus>;
|
|
@@ -1910,6 +1906,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1910
1906
|
type RequestData = InferredRequestData<typeof descriptors.containerAddTemplateComponent>;
|
|
1911
1907
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerAddTemplateComponent, TStatus>;
|
|
1912
1908
|
}
|
|
1909
|
+
namespace ContractGetDetailOfContractByAiHosting {
|
|
1910
|
+
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContractByAiHosting>;
|
|
1911
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContractByAiHosting, TStatus>;
|
|
1912
|
+
}
|
|
1913
1913
|
}
|
|
1914
1914
|
namespace Components {
|
|
1915
1915
|
namespace Schemas {
|
|
@@ -2818,6 +2818,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
2818
2818
|
stackId: string;
|
|
2819
2819
|
status: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
|
|
2820
2820
|
statusSetAt: string;
|
|
2821
|
+
/**
|
|
2822
|
+
* ID of the template used to create this service, if one was used.
|
|
2823
|
+
*/
|
|
2824
|
+
templateId?: string;
|
|
2821
2825
|
}
|
|
2822
2826
|
interface DeMittwaldContainerServiceState {
|
|
2823
2827
|
/**
|
|
@@ -12537,52 +12541,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
12537
12541
|
}
|
|
12538
12542
|
}
|
|
12539
12543
|
}
|
|
12540
|
-
namespace V3NextCustomersCustomerIdAiHostingContract {
|
|
12541
|
-
namespace Get {
|
|
12542
|
-
namespace Parameters {
|
|
12543
|
-
type Path = {
|
|
12544
|
-
customerId: string;
|
|
12545
|
-
};
|
|
12546
|
-
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
12547
|
-
type Query = {};
|
|
12548
|
-
}
|
|
12549
|
-
namespace Responses {
|
|
12550
|
-
namespace $200 {
|
|
12551
|
-
namespace Content {
|
|
12552
|
-
type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContract;
|
|
12553
|
-
}
|
|
12554
|
-
}
|
|
12555
|
-
namespace $400 {
|
|
12556
|
-
namespace Content {
|
|
12557
|
-
interface ApplicationJson {
|
|
12558
|
-
[k: string]: unknown;
|
|
12559
|
-
}
|
|
12560
|
-
}
|
|
12561
|
-
}
|
|
12562
|
-
namespace $404 {
|
|
12563
|
-
namespace Content {
|
|
12564
|
-
interface ApplicationJson {
|
|
12565
|
-
[k: string]: unknown;
|
|
12566
|
-
}
|
|
12567
|
-
}
|
|
12568
|
-
}
|
|
12569
|
-
namespace $429 {
|
|
12570
|
-
namespace Content {
|
|
12571
|
-
interface ApplicationJson {
|
|
12572
|
-
[k: string]: unknown;
|
|
12573
|
-
}
|
|
12574
|
-
}
|
|
12575
|
-
}
|
|
12576
|
-
namespace Default {
|
|
12577
|
-
namespace Content {
|
|
12578
|
-
interface ApplicationJson {
|
|
12579
|
-
[k: string]: unknown;
|
|
12580
|
-
}
|
|
12581
|
-
}
|
|
12582
|
-
}
|
|
12583
|
-
}
|
|
12584
|
-
}
|
|
12585
|
-
}
|
|
12544
|
+
namespace V3NextCustomersCustomerIdAiHostingContract { }
|
|
12586
12545
|
namespace V3NextCertificatesCertificateIdContract {
|
|
12587
12546
|
namespace Get {
|
|
12588
12547
|
namespace Parameters {
|
|
@@ -31758,5 +31717,52 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31758
31717
|
}
|
|
31759
31718
|
}
|
|
31760
31719
|
}
|
|
31720
|
+
namespace V3NextCustomersCustomerIdAiHostingsAiHostingIdContract {
|
|
31721
|
+
namespace Get {
|
|
31722
|
+
namespace Parameters {
|
|
31723
|
+
type Path = {
|
|
31724
|
+
customerId: string;
|
|
31725
|
+
aiHostingId: string;
|
|
31726
|
+
};
|
|
31727
|
+
type Header = {} & MittwaldAPIV3Next.Components.SecuritySchemes.DeMittwaldCommonsAccessToken;
|
|
31728
|
+
type Query = {};
|
|
31729
|
+
}
|
|
31730
|
+
namespace Responses {
|
|
31731
|
+
namespace $200 {
|
|
31732
|
+
namespace Content {
|
|
31733
|
+
type ApplicationJson = MittwaldAPIV3Next.Components.Schemas.DeMittwaldContractContract;
|
|
31734
|
+
}
|
|
31735
|
+
}
|
|
31736
|
+
namespace $400 {
|
|
31737
|
+
namespace Content {
|
|
31738
|
+
interface ApplicationJson {
|
|
31739
|
+
[k: string]: unknown;
|
|
31740
|
+
}
|
|
31741
|
+
}
|
|
31742
|
+
}
|
|
31743
|
+
namespace $404 {
|
|
31744
|
+
namespace Content {
|
|
31745
|
+
interface ApplicationJson {
|
|
31746
|
+
[k: string]: unknown;
|
|
31747
|
+
}
|
|
31748
|
+
}
|
|
31749
|
+
}
|
|
31750
|
+
namespace $429 {
|
|
31751
|
+
namespace Content {
|
|
31752
|
+
interface ApplicationJson {
|
|
31753
|
+
[k: string]: unknown;
|
|
31754
|
+
}
|
|
31755
|
+
}
|
|
31756
|
+
}
|
|
31757
|
+
namespace Default {
|
|
31758
|
+
namespace Content {
|
|
31759
|
+
interface ApplicationJson {
|
|
31760
|
+
[k: string]: unknown;
|
|
31761
|
+
}
|
|
31762
|
+
}
|
|
31763
|
+
}
|
|
31764
|
+
}
|
|
31765
|
+
}
|
|
31766
|
+
}
|
|
31761
31767
|
}
|
|
31762
31768
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.428.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.429.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",
|
|
@@ -72,11 +72,11 @@
|
|
|
72
72
|
"test:compile": "run tsc --noEmit"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@mittwald/api-client-commons": "^4.
|
|
75
|
+
"@mittwald/api-client-commons": "^4.429.0",
|
|
76
76
|
"browser-or-node": "^3.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@mittwald/api-code-generator": "^4.
|
|
79
|
+
"@mittwald/api-code-generator": "^4.429.0",
|
|
80
80
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
81
81
|
"@types/node": "^22.18.11",
|
|
82
82
|
"@types/react": "^18.3.26",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"optional": true
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "5bf49c710559d303b51f1ec861c601c9ee92365f"
|
|
110
110
|
}
|