@mittwald/api-client 0.0.0-development-4fd9a59-20260121 → 0.0.0-development-833ac69-20260128
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 +3 -1
- package/dist/esm/generated/v2/client.js +5 -5
- package/dist/esm/generated/v2/descriptors.js +13 -13
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +15 -2
- package/dist/types/generated/v2/client.d.ts +66 -84
- package/dist/types/generated/v2/descriptors.d.ts +7 -7
- package/dist/types/generated/v2/types.d.ts +111 -118
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -65,7 +65,7 @@ const buildBackupApi = (baseClient) => ({
|
|
|
65
65
|
/** Get a ProjectBackup. */
|
|
66
66
|
getProjectBackup: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackup, baseClient.backup.getProjectBackup).getApiResource,
|
|
67
67
|
/** List database dump's for a ProjectBackup. */
|
|
68
|
-
|
|
68
|
+
getProjectBackupDatabaseDumpsV2Experimental: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, baseClient.backup.getProjectBackupDatabaseDumpsV2Experimental).getApiResource,
|
|
69
69
|
/** List paths for a ProjectBackup. */
|
|
70
70
|
getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource,
|
|
71
71
|
});
|
|
@@ -150,6 +150,8 @@ const buildMarketplaceApi = (baseClient) => ({
|
|
|
150
150
|
contributorListOnbehalfInvoices: new ApiCallAsyncResourceFactory(descriptors.contributorListOnbehalfInvoices, baseClient.marketplace.contributorListOnbehalfInvoices).getApiResource,
|
|
151
151
|
/** Request an Access Token for the Incoming Invoice file. */
|
|
152
152
|
contributorReceiptGetFileAccessToken: new ApiCallAsyncResourceFactory(descriptors.contributorReceiptGetFileAccessToken, baseClient.marketplace.contributorReceiptGetFileAccessToken).getApiResource,
|
|
153
|
+
/** Check if an Extension is unchargable for this specific context or if it must be charged. */
|
|
154
|
+
extensionCheckExtensionIsChargable: new ApiCallAsyncResourceFactory(descriptors.extensionCheckExtensionIsChargable, baseClient.marketplace.extensionCheckExtensionIsChargable).getApiResource,
|
|
153
155
|
/** List ExtensionInstances. */
|
|
154
156
|
extensionListExtensionInstances: new ApiCallAsyncResourceFactory(descriptors.extensionListExtensionInstances, baseClient.marketplace.extensionListExtensionInstances).getApiResource,
|
|
155
157
|
/** Get an ExtensionInstance. */
|
|
@@ -116,13 +116,11 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
116
116
|
/** Delete a ProjectBackup. */
|
|
117
117
|
deleteProjectBackup: this.requestFunctionFactory(descriptors.backupDeleteProjectBackup),
|
|
118
118
|
/** List database dump's for a ProjectBackup. */
|
|
119
|
-
|
|
119
|
+
getProjectBackupDatabaseDumpsV2Experimental: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental),
|
|
120
120
|
/** List paths for a ProjectBackup. */
|
|
121
121
|
getProjectBackupDirectories: this.requestFunctionFactory(descriptors.backupGetProjectBackupDirectories),
|
|
122
|
-
/** Restore a ProjectBackup's path. */
|
|
123
|
-
requestProjectBackupRestorePath: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestorePath),
|
|
124
122
|
/** Restore a ProjectBackup. */
|
|
125
|
-
|
|
123
|
+
requestProjectBackupRestoreV2Experimental: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestoreV2Experimental),
|
|
126
124
|
/** Change the description of a ProjectBackup. */
|
|
127
125
|
updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
|
|
128
126
|
};
|
|
@@ -288,6 +286,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
288
286
|
extensionCancelExtensionVariantChange: this.requestFunctionFactory(descriptors.extensionCancelExtensionVariantChange),
|
|
289
287
|
/** Change the context of an Extension. */
|
|
290
288
|
extensionChangeContext: this.requestFunctionFactory(descriptors.extensionChangeContext),
|
|
289
|
+
/** Check if an Extension is unchargable for this specific context or if it must be charged. */
|
|
290
|
+
extensionCheckExtensionIsChargable: this.requestFunctionFactory(descriptors.extensionCheckExtensionIsChargable),
|
|
291
291
|
/** Consent to extension scopes. */
|
|
292
292
|
extensionConsentToExtensionScopes: this.requestFunctionFactory(descriptors.extensionConsentToExtensionScopes),
|
|
293
293
|
/** Create the OnboardingProcess of a Contributor. */
|
|
@@ -419,7 +419,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
419
419
|
/** Get a CronjobExecution. */
|
|
420
420
|
getExecution: this.requestFunctionFactory(descriptors.cronjobGetExecution),
|
|
421
421
|
/** Update a Cronjob's app installation id. */
|
|
422
|
-
|
|
422
|
+
replaceCronjobAppInstallationId: this.requestFunctionFactory(descriptors.cronjobReplaceCronjobAppInstallationId),
|
|
423
423
|
};
|
|
424
424
|
/** The customer API allows you to manage your own organizations and users. */
|
|
425
425
|
customer = {
|
|
@@ -299,10 +299,10 @@ export const backupDeleteProjectBackup = {
|
|
|
299
299
|
operationId: "backup-delete-project-backup",
|
|
300
300
|
};
|
|
301
301
|
/** List database dump's for a ProjectBackup. */
|
|
302
|
-
export const
|
|
302
|
+
export const backupGetProjectBackupDatabaseDumpsV2Experimental = {
|
|
303
303
|
path: "/v2/project-backups/{projectBackupId}/database-dumps",
|
|
304
304
|
method: "GET",
|
|
305
|
-
operationId: "backup-get-project-backup-database-dumps",
|
|
305
|
+
operationId: "backup-get-project-backup-database-dumps-v2-experimental",
|
|
306
306
|
};
|
|
307
307
|
/** List paths for a ProjectBackup. */
|
|
308
308
|
export const backupGetProjectBackupDirectories = {
|
|
@@ -310,17 +310,11 @@ export const backupGetProjectBackupDirectories = {
|
|
|
310
310
|
method: "GET",
|
|
311
311
|
operationId: "backup-get-project-backup-directories",
|
|
312
312
|
};
|
|
313
|
-
/** Restore a ProjectBackup's path. */
|
|
314
|
-
export const backupRequestProjectBackupRestorePath = {
|
|
315
|
-
path: "/v2/project-backups/{projectBackupId}/restore-path",
|
|
316
|
-
method: "POST",
|
|
317
|
-
operationId: "backup-request-project-backup-restore-path",
|
|
318
|
-
};
|
|
319
313
|
/** Restore a ProjectBackup. */
|
|
320
|
-
export const
|
|
314
|
+
export const backupRequestProjectBackupRestoreV2Experimental = {
|
|
321
315
|
path: "/v2/project-backups/{projectBackupId}/restore",
|
|
322
316
|
method: "POST",
|
|
323
|
-
operationId: "backup-request-project-backup-restore",
|
|
317
|
+
operationId: "backup-request-project-backup-restore-v2-experimental",
|
|
324
318
|
};
|
|
325
319
|
/** Change the description of a ProjectBackup. */
|
|
326
320
|
export const backupUpdateProjectBackupDescription = {
|
|
@@ -809,10 +803,10 @@ export const cronjobGetExecution = {
|
|
|
809
803
|
operationId: "cronjob-get-execution",
|
|
810
804
|
};
|
|
811
805
|
/** Update a Cronjob's app installation id. */
|
|
812
|
-
export const
|
|
806
|
+
export const cronjobReplaceCronjobAppInstallationId = {
|
|
813
807
|
path: "/v2/cronjobs/{cronjobId}/app-installation-id",
|
|
814
|
-
method: "
|
|
815
|
-
operationId: "cronjob-
|
|
808
|
+
method: "PUT",
|
|
809
|
+
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
816
810
|
};
|
|
817
811
|
/** Accept a CustomerInvite. */
|
|
818
812
|
export const customerAcceptCustomerInvite = {
|
|
@@ -1366,6 +1360,12 @@ export const extensionChangeContext = {
|
|
|
1366
1360
|
method: "PUT",
|
|
1367
1361
|
operationId: "extension-change-context",
|
|
1368
1362
|
};
|
|
1363
|
+
/** Check if an Extension is unchargable for this specific context or if it must be charged. */
|
|
1364
|
+
export const extensionCheckExtensionIsChargable = {
|
|
1365
|
+
path: "/v2/extensions/{extensionId}/contexts/{contextId}/chargability",
|
|
1366
|
+
method: "GET",
|
|
1367
|
+
operationId: "extension-check-extension-is-chargable",
|
|
1368
|
+
};
|
|
1369
1369
|
/** Consent to extension scopes. */
|
|
1370
1370
|
export const extensionConsentToExtensionScopes = {
|
|
1371
1371
|
path: "/v2/extension-instances/{extensionInstanceId}/scopes",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.288.0';
|
|
@@ -445,7 +445,7 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
445
445
|
status: string;
|
|
446
446
|
}>;
|
|
447
447
|
/** List database dump's for a ProjectBackup. */
|
|
448
|
-
|
|
448
|
+
getProjectBackupDatabaseDumpsV2Experimental: (conf: {
|
|
449
449
|
projectBackupId: string;
|
|
450
450
|
headers?: {
|
|
451
451
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -1137,6 +1137,20 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1137
1137
|
accessToken: string;
|
|
1138
1138
|
expiresAt: string;
|
|
1139
1139
|
}>;
|
|
1140
|
+
/** Check if an Extension is unchargable for this specific context or if it must be charged. */
|
|
1141
|
+
extensionCheckExtensionIsChargable: (conf: {
|
|
1142
|
+
extensionId: string;
|
|
1143
|
+
contextId: string;
|
|
1144
|
+
headers?: {
|
|
1145
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1146
|
+
} | undefined;
|
|
1147
|
+
queryParameters?: {
|
|
1148
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1149
|
+
variantKey?: string | undefined;
|
|
1150
|
+
} | undefined;
|
|
1151
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1152
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
1153
|
+
}>;
|
|
1140
1154
|
/** List ExtensionInstances. */
|
|
1141
1155
|
extensionListExtensionInstances: (conf?: {
|
|
1142
1156
|
headers?: {
|
|
@@ -1740,7 +1754,6 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1740
1754
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
1741
1755
|
isBanned?: boolean | undefined;
|
|
1742
1756
|
isInDefaultOfPayment?: boolean | undefined;
|
|
1743
|
-
isMailAddressInvalid?: boolean | undefined;
|
|
1744
1757
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
1745
1758
|
memberCount: number;
|
|
1746
1759
|
name: string;
|
|
@@ -3081,7 +3081,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3081
3081
|
[x: string]: unknown;
|
|
3082
3082
|
}, 429, "application/json">>>;
|
|
3083
3083
|
/** List database dump's for a ProjectBackup. */
|
|
3084
|
-
|
|
3084
|
+
getProjectBackupDatabaseDumpsV2Experimental: (request: {
|
|
3085
3085
|
projectBackupId: string;
|
|
3086
3086
|
headers?: {
|
|
3087
3087
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -3232,77 +3232,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3232
3232
|
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3233
3233
|
[x: string]: unknown;
|
|
3234
3234
|
}, 503, "application/json">>>;
|
|
3235
|
-
/** Restore a ProjectBackup's path. */
|
|
3236
|
-
requestProjectBackupRestorePath: (request: {
|
|
3237
|
-
data: {
|
|
3238
|
-
sourcePath: string;
|
|
3239
|
-
clearTargetPath?: boolean | undefined;
|
|
3240
|
-
targetPath?: string | undefined;
|
|
3241
|
-
};
|
|
3242
|
-
projectBackupId: string;
|
|
3243
|
-
headers?: {
|
|
3244
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3245
|
-
"x-access-token"?: string | undefined;
|
|
3246
|
-
} | undefined;
|
|
3247
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3248
|
-
data: {
|
|
3249
|
-
clearTargetPath?: boolean | undefined;
|
|
3250
|
-
sourcePath: string;
|
|
3251
|
-
targetPath?: string | undefined;
|
|
3252
|
-
};
|
|
3253
|
-
} & {
|
|
3254
|
-
pathParameters: {
|
|
3255
|
-
projectBackupId: string;
|
|
3256
|
-
};
|
|
3257
|
-
} & {
|
|
3258
|
-
headers?: Partial<{
|
|
3259
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3260
|
-
}>;
|
|
3261
|
-
} & {
|
|
3262
|
-
headers: {
|
|
3263
|
-
"x-access-token"?: string | undefined;
|
|
3264
|
-
} & Partial<{
|
|
3265
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3266
|
-
}>;
|
|
3267
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
3268
|
-
[x: string]: unknown;
|
|
3269
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3270
|
-
[x: string]: unknown;
|
|
3271
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3272
|
-
[x: string]: unknown;
|
|
3273
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3274
|
-
[x: string]: unknown;
|
|
3275
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3276
|
-
data: {
|
|
3277
|
-
clearTargetPath?: boolean | undefined;
|
|
3278
|
-
sourcePath: string;
|
|
3279
|
-
targetPath?: string | undefined;
|
|
3280
|
-
};
|
|
3281
|
-
} & {
|
|
3282
|
-
pathParameters: {
|
|
3283
|
-
projectBackupId: string;
|
|
3284
|
-
};
|
|
3285
|
-
} & {
|
|
3286
|
-
headers?: Partial<{
|
|
3287
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3288
|
-
}>;
|
|
3289
|
-
} & {
|
|
3290
|
-
headers: {
|
|
3291
|
-
"x-access-token"?: string | undefined;
|
|
3292
|
-
} & Partial<{
|
|
3293
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3294
|
-
}>;
|
|
3295
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
3296
|
-
[x: string]: unknown;
|
|
3297
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3298
|
-
[x: string]: unknown;
|
|
3299
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3300
|
-
[x: string]: unknown;
|
|
3301
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3302
|
-
[x: string]: unknown;
|
|
3303
|
-
}, 429, "application/json">>>;
|
|
3304
3235
|
/** Restore a ProjectBackup. */
|
|
3305
|
-
|
|
3236
|
+
requestProjectBackupRestoreV2Experimental: (request: {
|
|
3306
3237
|
projectBackupId: string;
|
|
3307
3238
|
data?: {
|
|
3308
3239
|
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
@@ -6964,6 +6895,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6964
6895
|
requestsPerMinute: number;
|
|
6965
6896
|
useFreeTrial?: boolean | undefined;
|
|
6966
6897
|
} | {
|
|
6898
|
+
description: string;
|
|
6967
6899
|
licenseType: "typo3";
|
|
6968
6900
|
majorVersion: number;
|
|
6969
6901
|
projectId: string;
|
|
@@ -7342,6 +7274,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7342
7274
|
} | {
|
|
7343
7275
|
licenseType: "typo3";
|
|
7344
7276
|
majorVersion: number;
|
|
7277
|
+
description?: string | undefined;
|
|
7345
7278
|
} | undefined;
|
|
7346
7279
|
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license" | undefined;
|
|
7347
7280
|
} | undefined;
|
|
@@ -9010,6 +8943,60 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9010
8943
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9011
8944
|
[x: string]: unknown;
|
|
9012
8945
|
}, 429, "application/json">>>;
|
|
8946
|
+
/** Check if an Extension is unchargable for this specific context or if it must be charged. */
|
|
8947
|
+
extensionCheckExtensionIsChargable: (request: {
|
|
8948
|
+
extensionId: string;
|
|
8949
|
+
contextId: string;
|
|
8950
|
+
headers?: {
|
|
8951
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8952
|
+
} | undefined;
|
|
8953
|
+
queryParameters?: {
|
|
8954
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8955
|
+
variantKey?: string | undefined;
|
|
8956
|
+
} | undefined;
|
|
8957
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8958
|
+
headers?: Partial<{
|
|
8959
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8960
|
+
}>;
|
|
8961
|
+
} & {
|
|
8962
|
+
pathParameters: {
|
|
8963
|
+
extensionId: string;
|
|
8964
|
+
contextId: string;
|
|
8965
|
+
};
|
|
8966
|
+
} & {
|
|
8967
|
+
queryParameters: {
|
|
8968
|
+
variantKey?: string | undefined;
|
|
8969
|
+
} & Partial<{
|
|
8970
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8971
|
+
}>;
|
|
8972
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8973
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
8974
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8975
|
+
[x: string]: unknown;
|
|
8976
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8977
|
+
[x: string]: unknown;
|
|
8978
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8979
|
+
headers?: Partial<{
|
|
8980
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8981
|
+
}>;
|
|
8982
|
+
} & {
|
|
8983
|
+
pathParameters: {
|
|
8984
|
+
extensionId: string;
|
|
8985
|
+
contextId: string;
|
|
8986
|
+
};
|
|
8987
|
+
} & {
|
|
8988
|
+
queryParameters: {
|
|
8989
|
+
variantKey?: string | undefined;
|
|
8990
|
+
} & Partial<{
|
|
8991
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8992
|
+
}>;
|
|
8993
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8994
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
8995
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8996
|
+
[x: string]: unknown;
|
|
8997
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8998
|
+
[x: string]: unknown;
|
|
8999
|
+
}, 429, "application/json">>>;
|
|
9013
9000
|
/** Consent to extension scopes. */
|
|
9014
9001
|
extensionConsentToExtensionScopes: (request: {
|
|
9015
9002
|
data: {
|
|
@@ -13301,10 +13288,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13301
13288
|
[x: string]: unknown;
|
|
13302
13289
|
}, 429, "application/json">>>;
|
|
13303
13290
|
/** Update a Cronjob's app installation id. */
|
|
13304
|
-
|
|
13291
|
+
replaceCronjobAppInstallationId: (request: {
|
|
13305
13292
|
data: {
|
|
13306
|
-
|
|
13307
|
-
appInstallationId?: string | undefined;
|
|
13293
|
+
appInstallationId: string;
|
|
13308
13294
|
};
|
|
13309
13295
|
cronjobId: string;
|
|
13310
13296
|
headers?: {
|
|
@@ -13313,8 +13299,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13313
13299
|
} | undefined;
|
|
13314
13300
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13315
13301
|
data: {
|
|
13316
|
-
|
|
13317
|
-
appInstallationId?: string | undefined;
|
|
13302
|
+
appInstallationId: string;
|
|
13318
13303
|
};
|
|
13319
13304
|
} & {
|
|
13320
13305
|
pathParameters: {
|
|
@@ -13338,8 +13323,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13338
13323
|
[x: string]: unknown;
|
|
13339
13324
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13340
13325
|
data: {
|
|
13341
|
-
|
|
13342
|
-
appInstallationId?: string | undefined;
|
|
13326
|
+
appInstallationId: string;
|
|
13343
13327
|
};
|
|
13344
13328
|
} & {
|
|
13345
13329
|
pathParameters: {
|
|
@@ -14264,7 +14248,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14264
14248
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
14265
14249
|
isBanned?: boolean | undefined;
|
|
14266
14250
|
isInDefaultOfPayment?: boolean | undefined;
|
|
14267
|
-
isMailAddressInvalid?: boolean | undefined;
|
|
14268
14251
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
14269
14252
|
memberCount: number;
|
|
14270
14253
|
name: string;
|
|
@@ -14309,7 +14292,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14309
14292
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
14310
14293
|
isBanned?: boolean | undefined;
|
|
14311
14294
|
isInDefaultOfPayment?: boolean | undefined;
|
|
14312
|
-
isMailAddressInvalid?: boolean | undefined;
|
|
14313
14295
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
14314
14296
|
memberCount: number;
|
|
14315
14297
|
name: string;
|
|
@@ -18768,6 +18750,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18768
18750
|
[x: string]: unknown;
|
|
18769
18751
|
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18770
18752
|
[x: string]: unknown;
|
|
18753
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18754
|
+
[x: string]: unknown;
|
|
18771
18755
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
|
|
18772
18756
|
data: {
|
|
18773
18757
|
certificate: string;
|
|
@@ -18812,6 +18796,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
18812
18796
|
[x: string]: unknown;
|
|
18813
18797
|
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18814
18798
|
[x: string]: unknown;
|
|
18799
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
18800
|
+
[x: string]: unknown;
|
|
18815
18801
|
}, 429, "application/json">>>;
|
|
18816
18802
|
/** Delete a CertificateRequest. */
|
|
18817
18803
|
sslDeleteCertificateRequest: (request: {
|
|
@@ -25950,8 +25936,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25950
25936
|
[x: string]: unknown;
|
|
25951
25937
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25952
25938
|
[x: string]: unknown;
|
|
25953
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25954
|
-
[x: string]: unknown;
|
|
25955
25939
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25956
25940
|
[x: string]: unknown;
|
|
25957
25941
|
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -25983,8 +25967,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25983
25967
|
[x: string]: unknown;
|
|
25984
25968
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25985
25969
|
[x: string]: unknown;
|
|
25986
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25987
|
-
[x: string]: unknown;
|
|
25988
25970
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25989
25971
|
[x: string]: unknown;
|
|
25990
25972
|
}, 500, "application/json">>>;
|
|
@@ -104,13 +104,11 @@ export declare const backupGetProjectBackup: OpenAPIOperation<RequestType<Simpli
|
|
|
104
104
|
/** Delete a ProjectBackup. */
|
|
105
105
|
export declare const backupDeleteProjectBackup: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
106
106
|
/** List database dump's for a ProjectBackup. */
|
|
107
|
-
export declare const
|
|
107
|
+
export declare const backupGetProjectBackupDatabaseDumpsV2Experimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
108
108
|
/** List paths for a ProjectBackup. */
|
|
109
109
|
export declare const backupGetProjectBackupDirectories: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
110
|
-
/** Restore a ProjectBackup's path. */
|
|
111
|
-
export declare const backupRequestProjectBackupRestorePath: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
112
110
|
/** Restore a ProjectBackup. */
|
|
113
|
-
export declare const
|
|
111
|
+
export declare const backupRequestProjectBackupRestoreV2Experimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
114
112
|
/** Change the description of a ProjectBackup. */
|
|
115
113
|
export declare const backupUpdateProjectBackupDescription: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
116
114
|
/** List Registries belonging to a Project. */
|
|
@@ -274,7 +272,7 @@ export declare const cronjobGetExecutionAnalysis: OpenAPIOperation<RequestType<S
|
|
|
274
272
|
/** Get a CronjobExecution. */
|
|
275
273
|
export declare const cronjobGetExecution: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
276
274
|
/** Update a Cronjob's app installation id. */
|
|
277
|
-
export declare const
|
|
275
|
+
export declare const cronjobReplaceCronjobAppInstallationId: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
278
276
|
/** Accept a CustomerInvite. */
|
|
279
277
|
export declare const customerAcceptCustomerInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
280
278
|
/** List Invites belonging to a Customer. */
|
|
@@ -459,6 +457,8 @@ export declare const extensionScheduleExtensionVariantChange: OpenAPIOperation<R
|
|
|
459
457
|
export declare const extensionCancelExtensionVariantChange: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdContractVariantChange.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
460
458
|
/** Change the context of an Extension. */
|
|
461
459
|
export declare const extensionChangeContext: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdContext.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
460
|
+
/** Check if an Extension is unchargable for this specific context or if it must be charged. */
|
|
461
|
+
export declare const extensionCheckExtensionIsChargable: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdContextsContextIdChargability.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdContextsContextIdChargability.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdContextsContextIdChargability.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdContextsContextIdChargability.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdContextsContextIdChargability.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdContextsContextIdChargability.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdContextsContextIdChargability.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
462
462
|
/** Consent to extension scopes. */
|
|
463
463
|
export declare const extensionConsentToExtensionScopes: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdScopes.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
464
464
|
/** Create the OnboardingProcess of a Contributor. */
|
|
@@ -598,7 +598,7 @@ export declare const leadfyndrReserveUnlockedLead: OpenAPIOperation<RequestType<
|
|
|
598
598
|
/** Removes a reservation on a unlocked lead for the given customerId. */
|
|
599
599
|
export declare const leadfyndrRemoveUnlockedLeadReservation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsLeadIdReservation.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
600
600
|
/** Get a license. */
|
|
601
|
-
export declare const licenseGetLicense: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$
|
|
601
|
+
export declare const licenseGetLicense: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2LicensesLicenseId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
602
602
|
/** List Licenses belonging to a Project. */
|
|
603
603
|
export declare const licenseListLicensesForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdLicenses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
604
604
|
/** rotate a License's key, i.e. revoke the old and generate a new one. */
|
|
@@ -784,7 +784,7 @@ export declare const sslCheckReplaceCertificate: OpenAPIOperation<RequestType<Si
|
|
|
784
784
|
/** List CertificateRequests belonging to a Project or an Ingress. */
|
|
785
785
|
export declare const sslListCertificateRequests: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
786
786
|
/** Create a CertificateRequest. */
|
|
787
|
-
export declare const sslCreateCertificateRequest: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
787
|
+
export declare const sslCreateCertificateRequest: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequests.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
788
788
|
/** Delete a CertificateRequest. */
|
|
789
789
|
export declare const sslDeleteCertificateRequest: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CertificateRequestCertificateRequestId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
790
790
|
/** Delete a Certificate. */
|
|
@@ -202,21 +202,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
202
202
|
type RequestData = InferredRequestData<typeof descriptors.backupDeleteProjectBackup>;
|
|
203
203
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupDeleteProjectBackup, TStatus>;
|
|
204
204
|
}
|
|
205
|
-
namespace
|
|
206
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
207
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
205
|
+
namespace BackupGetProjectBackupDatabaseDumpsV2Experimental {
|
|
206
|
+
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental>;
|
|
207
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, TStatus>;
|
|
208
208
|
}
|
|
209
209
|
namespace BackupGetProjectBackupDirectories {
|
|
210
210
|
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDirectories>;
|
|
211
211
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDirectories, TStatus>;
|
|
212
212
|
}
|
|
213
|
-
namespace
|
|
214
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
215
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
216
|
-
}
|
|
217
|
-
namespace BackupRequestProjectBackupRestore {
|
|
218
|
-
type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestore>;
|
|
219
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestore, TStatus>;
|
|
213
|
+
namespace BackupRequestProjectBackupRestoreV2Experimental {
|
|
214
|
+
type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental>;
|
|
215
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental, TStatus>;
|
|
220
216
|
}
|
|
221
217
|
namespace BackupUpdateProjectBackupDescription {
|
|
222
218
|
type RequestData = InferredRequestData<typeof descriptors.backupUpdateProjectBackupDescription>;
|
|
@@ -542,9 +538,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
542
538
|
type RequestData = InferredRequestData<typeof descriptors.cronjobGetExecution>;
|
|
543
539
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobGetExecution, TStatus>;
|
|
544
540
|
}
|
|
545
|
-
namespace
|
|
546
|
-
type RequestData = InferredRequestData<typeof descriptors.
|
|
547
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.
|
|
541
|
+
namespace CronjobReplaceCronjobAppInstallationId {
|
|
542
|
+
type RequestData = InferredRequestData<typeof descriptors.cronjobReplaceCronjobAppInstallationId>;
|
|
543
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobReplaceCronjobAppInstallationId, TStatus>;
|
|
548
544
|
}
|
|
549
545
|
namespace CustomerAcceptCustomerInvite {
|
|
550
546
|
type RequestData = InferredRequestData<typeof descriptors.customerAcceptCustomerInvite>;
|
|
@@ -914,6 +910,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
914
910
|
type RequestData = InferredRequestData<typeof descriptors.extensionChangeContext>;
|
|
915
911
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionChangeContext, TStatus>;
|
|
916
912
|
}
|
|
913
|
+
namespace ExtensionCheckExtensionIsChargable {
|
|
914
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionCheckExtensionIsChargable>;
|
|
915
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionCheckExtensionIsChargable, TStatus>;
|
|
916
|
+
}
|
|
917
917
|
namespace ExtensionConsentToExtensionScopes {
|
|
918
918
|
type RequestData = InferredRequestData<typeof descriptors.extensionConsentToExtensionScopes>;
|
|
919
919
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionConsentToExtensionScopes, TStatus>;
|
|
@@ -3114,7 +3114,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3114
3114
|
isAllowedToPlaceOrders?: boolean;
|
|
3115
3115
|
isBanned?: boolean;
|
|
3116
3116
|
isInDefaultOfPayment?: boolean;
|
|
3117
|
-
isMailAddressInvalid?: boolean;
|
|
3118
3117
|
levelOfUndeliverableDunningNotice?: "first" | "second";
|
|
3119
3118
|
memberCount: number;
|
|
3120
3119
|
name: string;
|
|
@@ -4036,23 +4035,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4036
4035
|
projectId: string;
|
|
4037
4036
|
tls: MittwaldAPIV2.Components.Schemas.IngressTlsAcmeDeprecated | MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
|
|
4038
4037
|
}
|
|
4039
|
-
interface IngressListIngressesCompatibleWithCertificateIDRequest {
|
|
4040
|
-
/**
|
|
4041
|
-
* The certificates UUID.
|
|
4042
|
-
*/
|
|
4043
|
-
certificateId: string;
|
|
4044
|
-
}
|
|
4045
|
-
interface IngressListIngressesCompatibleWithCertificateRequest {
|
|
4046
|
-
/**
|
|
4047
|
-
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
4048
|
-
* .
|
|
4049
|
-
*/
|
|
4050
|
-
certificate: string;
|
|
4051
|
-
/**
|
|
4052
|
-
* The projects UUID.
|
|
4053
|
-
*/
|
|
4054
|
-
projectId: string;
|
|
4055
|
-
}
|
|
4056
4038
|
interface IngressOwnership {
|
|
4057
4039
|
txtRecord?: string;
|
|
4058
4040
|
/**
|
|
@@ -4967,21 +4949,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4967
4949
|
reservationLimit: number;
|
|
4968
4950
|
unlockLimit: number;
|
|
4969
4951
|
}
|
|
4970
|
-
type OrderLicenseOrderPreview = {
|
|
4971
|
-
licenseType: "typo3";
|
|
4972
|
-
/**
|
|
4973
|
-
* The major version for which a license should be purchased.
|
|
4974
|
-
*/
|
|
4975
|
-
majorVersion: number;
|
|
4976
|
-
};
|
|
4977
|
-
type OrderLicenseOrder = {
|
|
4978
|
-
licenseType: "typo3";
|
|
4979
|
-
/**
|
|
4980
|
-
* The major version for which a license should be purchased.
|
|
4981
|
-
*/
|
|
4982
|
-
majorVersion: number;
|
|
4983
|
-
projectId: string;
|
|
4984
|
-
};
|
|
4985
4952
|
interface OrderMachineTypeSpec {
|
|
4986
4953
|
machineType?: string;
|
|
4987
4954
|
}
|
|
@@ -5031,9 +4998,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5031
4998
|
interface OrderLeadFyndrOrderPreviewResponse {
|
|
5032
4999
|
totalPrice: number;
|
|
5033
5000
|
}
|
|
5034
|
-
interface OrderLicenseOrderPreviewResponse {
|
|
5035
|
-
totalPrice: number;
|
|
5036
|
-
}
|
|
5037
5001
|
interface OrderDomainOrderPreviewResponse {
|
|
5038
5002
|
/**
|
|
5039
5003
|
* Contract duration in months.
|
|
@@ -5798,6 +5762,49 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5798
5762
|
}
|
|
5799
5763
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5800
5764
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5765
|
+
interface IngressListIngressesCompatibleWithCertificateRequest {
|
|
5766
|
+
/**
|
|
5767
|
+
* PEM-encoded certificate. Linebreaks have to be escaped with
|
|
5768
|
+
* .
|
|
5769
|
+
*/
|
|
5770
|
+
certificate: string;
|
|
5771
|
+
/**
|
|
5772
|
+
* The projects UUID.
|
|
5773
|
+
*/
|
|
5774
|
+
projectId: string;
|
|
5775
|
+
}
|
|
5776
|
+
interface IngressListIngressesCompatibleWithCertificateIDRequest {
|
|
5777
|
+
/**
|
|
5778
|
+
* The certificates UUID.
|
|
5779
|
+
*/
|
|
5780
|
+
certificateId: string;
|
|
5781
|
+
}
|
|
5782
|
+
interface OrderLicenseOrderPreviewResponse {
|
|
5783
|
+
totalPrice: number;
|
|
5784
|
+
}
|
|
5785
|
+
type OrderLicenseOrder = {
|
|
5786
|
+
/**
|
|
5787
|
+
* Describe for which typo3 instance the license will be used.
|
|
5788
|
+
*/
|
|
5789
|
+
description: string;
|
|
5790
|
+
licenseType: "typo3";
|
|
5791
|
+
/**
|
|
5792
|
+
* The major version for which a license should be purchased.
|
|
5793
|
+
*/
|
|
5794
|
+
majorVersion: number;
|
|
5795
|
+
projectId: string;
|
|
5796
|
+
};
|
|
5797
|
+
type OrderLicenseOrderPreview = {
|
|
5798
|
+
/**
|
|
5799
|
+
* Describe for which typo3 instance the license will be used.
|
|
5800
|
+
*/
|
|
5801
|
+
description?: string;
|
|
5802
|
+
licenseType: "typo3";
|
|
5803
|
+
/**
|
|
5804
|
+
* The major version for which a license should be purchased.
|
|
5805
|
+
*/
|
|
5806
|
+
majorVersion: number;
|
|
5807
|
+
};
|
|
5801
5808
|
interface CommonsAddress {
|
|
5802
5809
|
street: string;
|
|
5803
5810
|
houseNumber: string;
|
|
@@ -5920,7 +5927,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5920
5927
|
}
|
|
5921
5928
|
}
|
|
5922
5929
|
namespace SslValidationError {
|
|
5923
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
5930
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateError;
|
|
5924
5931
|
}
|
|
5925
5932
|
namespace SignupInternalServerError {
|
|
5926
5933
|
type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
|
|
@@ -8516,60 +8523,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8516
8523
|
}
|
|
8517
8524
|
}
|
|
8518
8525
|
}
|
|
8519
|
-
namespace V2ProjectBackupsProjectBackupIdRestorePath {
|
|
8520
|
-
namespace Post {
|
|
8521
|
-
namespace Parameters {
|
|
8522
|
-
type Path = {
|
|
8523
|
-
projectBackupId: string;
|
|
8524
|
-
};
|
|
8525
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequestDeprecated;
|
|
8526
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8527
|
-
type Query = {};
|
|
8528
|
-
}
|
|
8529
|
-
namespace Responses {
|
|
8530
|
-
namespace $204 {
|
|
8531
|
-
namespace Content {
|
|
8532
|
-
type Empty = unknown;
|
|
8533
|
-
}
|
|
8534
|
-
}
|
|
8535
|
-
namespace $400 {
|
|
8536
|
-
namespace Content {
|
|
8537
|
-
interface ApplicationJson {
|
|
8538
|
-
[k: string]: unknown;
|
|
8539
|
-
}
|
|
8540
|
-
}
|
|
8541
|
-
}
|
|
8542
|
-
namespace $403 {
|
|
8543
|
-
namespace Content {
|
|
8544
|
-
interface ApplicationJson {
|
|
8545
|
-
[k: string]: unknown;
|
|
8546
|
-
}
|
|
8547
|
-
}
|
|
8548
|
-
}
|
|
8549
|
-
namespace $404 {
|
|
8550
|
-
namespace Content {
|
|
8551
|
-
interface ApplicationJson {
|
|
8552
|
-
[k: string]: unknown;
|
|
8553
|
-
}
|
|
8554
|
-
}
|
|
8555
|
-
}
|
|
8556
|
-
namespace $429 {
|
|
8557
|
-
namespace Content {
|
|
8558
|
-
interface ApplicationJson {
|
|
8559
|
-
[k: string]: unknown;
|
|
8560
|
-
}
|
|
8561
|
-
}
|
|
8562
|
-
}
|
|
8563
|
-
namespace Default {
|
|
8564
|
-
namespace Content {
|
|
8565
|
-
interface ApplicationJson {
|
|
8566
|
-
[k: string]: unknown;
|
|
8567
|
-
}
|
|
8568
|
-
}
|
|
8569
|
-
}
|
|
8570
|
-
}
|
|
8571
|
-
}
|
|
8572
|
-
}
|
|
8526
|
+
namespace V2ProjectBackupsProjectBackupIdRestorePath { }
|
|
8573
8527
|
namespace V2ProjectBackupsProjectBackupIdRestore {
|
|
8574
8528
|
namespace Post {
|
|
8575
8529
|
namespace Parameters {
|
|
@@ -12996,18 +12950,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12996
12950
|
}
|
|
12997
12951
|
}
|
|
12998
12952
|
namespace V2CronjobsCronjobIdAppInstallationId {
|
|
12999
|
-
namespace
|
|
12953
|
+
namespace Put {
|
|
13000
12954
|
namespace Parameters {
|
|
13001
12955
|
type Path = {
|
|
13002
12956
|
cronjobId: string;
|
|
13003
12957
|
};
|
|
13004
12958
|
interface RequestBody {
|
|
13005
|
-
|
|
13006
|
-
* @deprecated
|
|
13007
|
-
* DEPRECATED: Use 'appInstallationId' instead. This field will be removed in a future version.
|
|
13008
|
-
*/
|
|
13009
|
-
appId: string;
|
|
13010
|
-
appInstallationId?: string;
|
|
12959
|
+
appInstallationId: string;
|
|
13011
12960
|
}
|
|
13012
12961
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
13013
12962
|
type Query = {};
|
|
@@ -17626,6 +17575,50 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17626
17575
|
}
|
|
17627
17576
|
}
|
|
17628
17577
|
}
|
|
17578
|
+
namespace V2ExtensionsExtensionIdContextsContextIdChargability {
|
|
17579
|
+
namespace Get {
|
|
17580
|
+
namespace Parameters {
|
|
17581
|
+
type Path = {
|
|
17582
|
+
extensionId: string;
|
|
17583
|
+
contextId: string;
|
|
17584
|
+
};
|
|
17585
|
+
type Header = {};
|
|
17586
|
+
type Query = {
|
|
17587
|
+
variantKey?: string;
|
|
17588
|
+
};
|
|
17589
|
+
}
|
|
17590
|
+
namespace Responses {
|
|
17591
|
+
namespace $200 {
|
|
17592
|
+
namespace Content {
|
|
17593
|
+
interface ApplicationJson {
|
|
17594
|
+
chargeability: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
17595
|
+
}
|
|
17596
|
+
}
|
|
17597
|
+
}
|
|
17598
|
+
namespace $404 {
|
|
17599
|
+
namespace Content {
|
|
17600
|
+
interface ApplicationJson {
|
|
17601
|
+
[k: string]: unknown;
|
|
17602
|
+
}
|
|
17603
|
+
}
|
|
17604
|
+
}
|
|
17605
|
+
namespace $429 {
|
|
17606
|
+
namespace Content {
|
|
17607
|
+
interface ApplicationJson {
|
|
17608
|
+
[k: string]: unknown;
|
|
17609
|
+
}
|
|
17610
|
+
}
|
|
17611
|
+
}
|
|
17612
|
+
namespace Default {
|
|
17613
|
+
namespace Content {
|
|
17614
|
+
interface ApplicationJson {
|
|
17615
|
+
[k: string]: unknown;
|
|
17616
|
+
}
|
|
17617
|
+
}
|
|
17618
|
+
}
|
|
17619
|
+
}
|
|
17620
|
+
}
|
|
17621
|
+
}
|
|
17629
17622
|
namespace V2ExtensionInstancesExtensionInstanceIdScopes {
|
|
17630
17623
|
namespace Patch {
|
|
17631
17624
|
namespace Parameters {
|
|
@@ -21373,13 +21366,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21373
21366
|
}
|
|
21374
21367
|
}
|
|
21375
21368
|
}
|
|
21376
|
-
namespace $404 {
|
|
21377
|
-
namespace Content {
|
|
21378
|
-
interface ApplicationJson {
|
|
21379
|
-
[k: string]: unknown;
|
|
21380
|
-
}
|
|
21381
|
-
}
|
|
21382
|
-
}
|
|
21383
21369
|
namespace $429 {
|
|
21384
21370
|
namespace Content {
|
|
21385
21371
|
interface ApplicationJson {
|
|
@@ -26209,6 +26195,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26209
26195
|
}
|
|
26210
26196
|
}
|
|
26211
26197
|
}
|
|
26198
|
+
namespace $412 {
|
|
26199
|
+
namespace Content {
|
|
26200
|
+
interface ApplicationJson {
|
|
26201
|
+
[k: string]: unknown;
|
|
26202
|
+
}
|
|
26203
|
+
}
|
|
26204
|
+
}
|
|
26212
26205
|
namespace $429 {
|
|
26213
26206
|
namespace Content {
|
|
26214
26207
|
interface ApplicationJson {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.288.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "0.0.0-development-
|
|
3
|
+
"version": "0.0.0-development-833ac69-20260128",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^0.0.0-development-
|
|
49
|
+
"@mittwald/api-client-commons": "^0.0.0-development-833ac69-20260128",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^0.0.0-development-
|
|
53
|
+
"@mittwald/api-code-generator": "^0.0.0-development-833ac69-20260128",
|
|
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": "
|
|
83
|
+
"gitHead": "bb3600e436aa35b52d32f8811c8d0d85dab9f0bb"
|
|
84
84
|
}
|