@mittwald/api-client 4.287.0 → 4.289.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 +5 -1
- package/dist/esm/generated/v2/client.js +8 -4
- package/dist/esm/generated/v2/descriptors.js +25 -13
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +28 -2
- package/dist/types/generated/v2/client.d.ts +149 -30
- package/dist/types/generated/v2/descriptors.d.ts +9 -5
- package/dist/types/generated/v2/types.d.ts +277 -125
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -64,8 +64,10 @@ const buildBackupApi = (baseClient) => ({
|
|
|
64
64
|
getProjectBackupSchedule: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupSchedule, baseClient.backup.getProjectBackupSchedule).getApiResource,
|
|
65
65
|
/** Get a ProjectBackup. */
|
|
66
66
|
getProjectBackup: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackup, baseClient.backup.getProjectBackup).getApiResource,
|
|
67
|
-
/**
|
|
67
|
+
/** List paths for a ProjectBackup. */
|
|
68
68
|
getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource,
|
|
69
|
+
/** List database dump's for a ProjectBackup. */
|
|
70
|
+
getProjectBackupDatabaseDumpsV2Experimental: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, baseClient.backup.getProjectBackupDatabaseDumpsV2Experimental).getApiResource,
|
|
69
71
|
});
|
|
70
72
|
const buildContainerApi = (baseClient) => ({
|
|
71
73
|
/** List Registries belonging to a Project. */
|
|
@@ -148,6 +150,8 @@ const buildMarketplaceApi = (baseClient) => ({
|
|
|
148
150
|
contributorListOnbehalfInvoices: new ApiCallAsyncResourceFactory(descriptors.contributorListOnbehalfInvoices, baseClient.marketplace.contributorListOnbehalfInvoices).getApiResource,
|
|
149
151
|
/** Request an Access Token for the Incoming Invoice file. */
|
|
150
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,
|
|
151
155
|
/** List ExtensionInstances. */
|
|
152
156
|
extensionListExtensionInstances: new ApiCallAsyncResourceFactory(descriptors.extensionListExtensionInstances, baseClient.marketplace.extensionListExtensionInstances).getApiResource,
|
|
153
157
|
/** Get an ExtensionInstance. */
|
|
@@ -115,12 +115,14 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
115
115
|
getProjectBackup: this.requestFunctionFactory(descriptors.backupGetProjectBackup),
|
|
116
116
|
/** Delete a ProjectBackup. */
|
|
117
117
|
deleteProjectBackup: this.requestFunctionFactory(descriptors.backupDeleteProjectBackup),
|
|
118
|
-
/**
|
|
118
|
+
/** List paths for a ProjectBackup. */
|
|
119
119
|
getProjectBackupDirectories: this.requestFunctionFactory(descriptors.backupGetProjectBackupDirectories),
|
|
120
|
-
/** Restore a ProjectBackup's path. */
|
|
121
|
-
requestProjectBackupRestorePath: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestorePath),
|
|
122
120
|
/** Change the description of a ProjectBackup. */
|
|
123
121
|
updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
|
|
122
|
+
/** List database dump's for a ProjectBackup. */
|
|
123
|
+
getProjectBackupDatabaseDumpsV2Experimental: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental),
|
|
124
|
+
/** Restore a ProjectBackup. */
|
|
125
|
+
requestProjectBackupRestoreV2Experimental: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestoreV2Experimental),
|
|
124
126
|
};
|
|
125
127
|
/** The container API allows you to manage your stacks, containers, volumes and registries. */
|
|
126
128
|
container = {
|
|
@@ -284,6 +286,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
284
286
|
extensionCancelExtensionVariantChange: this.requestFunctionFactory(descriptors.extensionCancelExtensionVariantChange),
|
|
285
287
|
/** Change the context of an Extension. */
|
|
286
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),
|
|
287
291
|
/** Consent to extension scopes. */
|
|
288
292
|
extensionConsentToExtensionScopes: this.requestFunctionFactory(descriptors.extensionConsentToExtensionScopes),
|
|
289
293
|
/** Create the OnboardingProcess of a Contributor. */
|
|
@@ -415,7 +419,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
415
419
|
/** Get a CronjobExecution. */
|
|
416
420
|
getExecution: this.requestFunctionFactory(descriptors.cronjobGetExecution),
|
|
417
421
|
/** Update a Cronjob's app installation id. */
|
|
418
|
-
|
|
422
|
+
replaceCronjobAppInstallationId: this.requestFunctionFactory(descriptors.cronjobReplaceCronjobAppInstallationId),
|
|
419
423
|
};
|
|
420
424
|
/** The customer API allows you to manage your own organizations and users. */
|
|
421
425
|
customer = {
|
|
@@ -298,18 +298,12 @@ export const backupDeleteProjectBackup = {
|
|
|
298
298
|
method: "DELETE",
|
|
299
299
|
operationId: "backup-delete-project-backup",
|
|
300
300
|
};
|
|
301
|
-
/**
|
|
301
|
+
/** List paths for a ProjectBackup. */
|
|
302
302
|
export const backupGetProjectBackupDirectories = {
|
|
303
303
|
path: "/v2/project-backups/{projectBackupId}/path",
|
|
304
304
|
method: "GET",
|
|
305
305
|
operationId: "backup-get-project-backup-directories",
|
|
306
306
|
};
|
|
307
|
-
/** Restore a ProjectBackup's path. */
|
|
308
|
-
export const backupRequestProjectBackupRestorePath = {
|
|
309
|
-
path: "/v2/project-backups/{projectBackupId}/restore-path",
|
|
310
|
-
method: "POST",
|
|
311
|
-
operationId: "backup-request-project-backup-restore-path",
|
|
312
|
-
};
|
|
313
307
|
/** Change the description of a ProjectBackup. */
|
|
314
308
|
export const backupUpdateProjectBackupDescription = {
|
|
315
309
|
path: "/v2/project-backups/{projectBackupId}/description",
|
|
@@ -796,12 +790,6 @@ export const cronjobGetExecution = {
|
|
|
796
790
|
method: "GET",
|
|
797
791
|
operationId: "cronjob-get-execution",
|
|
798
792
|
};
|
|
799
|
-
/** Update a Cronjob's app installation id. */
|
|
800
|
-
export const cronjobUpdateCronjobAppId = {
|
|
801
|
-
path: "/v2/cronjobs/{cronjobId}/app-installation-id",
|
|
802
|
-
method: "PATCH",
|
|
803
|
-
operationId: "cronjob-update-cronjob-app-id",
|
|
804
|
-
};
|
|
805
793
|
/** Accept a CustomerInvite. */
|
|
806
794
|
export const customerAcceptCustomerInvite = {
|
|
807
795
|
path: "/v2/customer-invites/{customerInviteId}/actions/accept",
|
|
@@ -1354,6 +1342,12 @@ export const extensionChangeContext = {
|
|
|
1354
1342
|
method: "PUT",
|
|
1355
1343
|
operationId: "extension-change-context",
|
|
1356
1344
|
};
|
|
1345
|
+
/** Check if an Extension is unchargable for this specific context or if it must be charged. */
|
|
1346
|
+
export const extensionCheckExtensionIsChargable = {
|
|
1347
|
+
path: "/v2/extensions/{extensionId}/contexts/{contextId}/chargability",
|
|
1348
|
+
method: "GET",
|
|
1349
|
+
operationId: "extension-check-extension-is-chargable",
|
|
1350
|
+
};
|
|
1357
1351
|
/** Consent to extension scopes. */
|
|
1358
1352
|
export const extensionConsentToExtensionScopes = {
|
|
1359
1353
|
path: "/v2/extension-instances/{extensionInstanceId}/scopes",
|
|
@@ -2680,3 +2674,21 @@ export const verificationVerifyCompany = {
|
|
|
2680
2674
|
method: "POST",
|
|
2681
2675
|
operationId: "verification-verify-company",
|
|
2682
2676
|
};
|
|
2677
|
+
/** Update a Cronjob's app installation id. */
|
|
2678
|
+
export const cronjobReplaceCronjobAppInstallationId = {
|
|
2679
|
+
path: "/v2/cronjobs/{cronjobId}/app-installation-id",
|
|
2680
|
+
method: "PUT",
|
|
2681
|
+
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
2682
|
+
};
|
|
2683
|
+
/** List database dump's for a ProjectBackup. */
|
|
2684
|
+
export const backupGetProjectBackupDatabaseDumpsV2Experimental = {
|
|
2685
|
+
path: "/v2/project-backups/{projectBackupId}/database-dumps",
|
|
2686
|
+
method: "GET",
|
|
2687
|
+
operationId: "backup-get-project-backup-database-dumps-v2-experimental",
|
|
2688
|
+
};
|
|
2689
|
+
/** Restore a ProjectBackup. */
|
|
2690
|
+
export const backupRequestProjectBackupRestoreV2Experimental = {
|
|
2691
|
+
path: "/v2/project-backups/{projectBackupId}/restore",
|
|
2692
|
+
method: "POST",
|
|
2693
|
+
operationId: "backup-request-project-backup-restore-v2-experimental",
|
|
2694
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.288.0';
|
|
@@ -400,6 +400,7 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
400
400
|
searchTerm?: string | undefined;
|
|
401
401
|
withExportsOnly?: boolean | undefined;
|
|
402
402
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
403
|
+
runningRestoresOnly?: boolean | undefined;
|
|
403
404
|
limit?: number | undefined;
|
|
404
405
|
skip?: number | undefined;
|
|
405
406
|
page?: number | undefined;
|
|
@@ -439,10 +440,11 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
439
440
|
parentId?: string | undefined;
|
|
440
441
|
projectId: string;
|
|
441
442
|
requestedAt: string;
|
|
442
|
-
|
|
443
|
+
restore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestore | undefined;
|
|
444
|
+
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathDeprecated | undefined;
|
|
443
445
|
status: string;
|
|
444
446
|
}>;
|
|
445
|
-
/**
|
|
447
|
+
/** List paths for a ProjectBackup. */
|
|
446
448
|
getProjectBackupDirectories: (conf: {
|
|
447
449
|
projectBackupId: string;
|
|
448
450
|
headers?: {
|
|
@@ -464,6 +466,16 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
464
466
|
size: number;
|
|
465
467
|
target?: string | undefined;
|
|
466
468
|
}>;
|
|
469
|
+
/** List database dump's for a ProjectBackup. */
|
|
470
|
+
getProjectBackupDatabaseDumpsV2Experimental: (conf: {
|
|
471
|
+
projectBackupId: string;
|
|
472
|
+
headers?: {
|
|
473
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
474
|
+
"x-access-token"?: string | undefined;
|
|
475
|
+
} | undefined;
|
|
476
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
477
|
+
databases: string[];
|
|
478
|
+
}>;
|
|
467
479
|
};
|
|
468
480
|
declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
469
481
|
/** List Registries belonging to a Project. */
|
|
@@ -1125,6 +1137,20 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1125
1137
|
accessToken: string;
|
|
1126
1138
|
expiresAt: string;
|
|
1127
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
|
+
}>;
|
|
1128
1154
|
/** List ExtensionInstances. */
|
|
1129
1155
|
extensionListExtensionInstances: (conf?: {
|
|
1130
1156
|
headers?: {
|
|
@@ -2625,6 +2625,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2625
2625
|
searchTerm?: string | undefined;
|
|
2626
2626
|
withExportsOnly?: boolean | undefined;
|
|
2627
2627
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
2628
|
+
runningRestoresOnly?: boolean | undefined;
|
|
2628
2629
|
limit?: number | undefined;
|
|
2629
2630
|
skip?: number | undefined;
|
|
2630
2631
|
page?: number | undefined;
|
|
@@ -2642,6 +2643,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2642
2643
|
searchTerm?: string | undefined;
|
|
2643
2644
|
withExportsOnly?: boolean | undefined;
|
|
2644
2645
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
2646
|
+
runningRestoresOnly?: boolean | undefined;
|
|
2645
2647
|
limit?: number | undefined;
|
|
2646
2648
|
skip?: number | undefined;
|
|
2647
2649
|
page?: number | undefined;
|
|
@@ -2669,6 +2671,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2669
2671
|
searchTerm?: string | undefined;
|
|
2670
2672
|
withExportsOnly?: boolean | undefined;
|
|
2671
2673
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
2674
|
+
runningRestoresOnly?: boolean | undefined;
|
|
2672
2675
|
limit?: number | undefined;
|
|
2673
2676
|
skip?: number | undefined;
|
|
2674
2677
|
page?: number | undefined;
|
|
@@ -2724,7 +2727,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2724
2727
|
parentId?: string | undefined;
|
|
2725
2728
|
projectId: string;
|
|
2726
2729
|
requestedAt: string;
|
|
2727
|
-
|
|
2730
|
+
restore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestore | undefined;
|
|
2731
|
+
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathDeprecated | undefined;
|
|
2728
2732
|
status: string;
|
|
2729
2733
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2730
2734
|
[x: string]: unknown;
|
|
@@ -2761,7 +2765,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2761
2765
|
parentId?: string | undefined;
|
|
2762
2766
|
projectId: string;
|
|
2763
2767
|
requestedAt: string;
|
|
2764
|
-
|
|
2768
|
+
restore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestore | undefined;
|
|
2769
|
+
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathDeprecated | undefined;
|
|
2765
2770
|
status: string;
|
|
2766
2771
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2767
2772
|
[x: string]: unknown;
|
|
@@ -2984,7 +2989,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2984
2989
|
parentId?: string | undefined;
|
|
2985
2990
|
projectId: string;
|
|
2986
2991
|
requestedAt: string;
|
|
2987
|
-
|
|
2992
|
+
restore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestore | undefined;
|
|
2993
|
+
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathDeprecated | undefined;
|
|
2988
2994
|
status: string;
|
|
2989
2995
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2990
2996
|
[x: string]: unknown;
|
|
@@ -3016,7 +3022,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3016
3022
|
parentId?: string | undefined;
|
|
3017
3023
|
projectId: string;
|
|
3018
3024
|
requestedAt: string;
|
|
3019
|
-
|
|
3025
|
+
restore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestore | undefined;
|
|
3026
|
+
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathDeprecated | undefined;
|
|
3020
3027
|
status: string;
|
|
3021
3028
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3022
3029
|
[x: string]: unknown;
|
|
@@ -3073,7 +3080,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3073
3080
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3074
3081
|
[x: string]: unknown;
|
|
3075
3082
|
}, 429, "application/json">>>;
|
|
3076
|
-
/**
|
|
3083
|
+
/** List paths for a ProjectBackup. */
|
|
3077
3084
|
getProjectBackupDirectories: (request: {
|
|
3078
3085
|
projectBackupId: string;
|
|
3079
3086
|
headers?: {
|
|
@@ -3165,23 +3172,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3165
3172
|
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3166
3173
|
[x: string]: unknown;
|
|
3167
3174
|
}, 503, "application/json">>>;
|
|
3168
|
-
/**
|
|
3169
|
-
|
|
3170
|
-
data: {
|
|
3171
|
-
sourcePath: string;
|
|
3172
|
-
clearTargetPath?: boolean | undefined;
|
|
3173
|
-
targetPath?: string | undefined;
|
|
3174
|
-
};
|
|
3175
|
+
/** Change the description of a ProjectBackup. */
|
|
3176
|
+
updateProjectBackupDescription: (request: {
|
|
3175
3177
|
projectBackupId: string;
|
|
3178
|
+
data?: {
|
|
3179
|
+
description?: string | undefined;
|
|
3180
|
+
} | undefined;
|
|
3176
3181
|
headers?: {
|
|
3177
3182
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3178
3183
|
"x-access-token"?: string | undefined;
|
|
3179
3184
|
} | undefined;
|
|
3180
3185
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3181
3186
|
data: {
|
|
3182
|
-
|
|
3183
|
-
sourcePath: string;
|
|
3184
|
-
targetPath?: string | undefined;
|
|
3187
|
+
description?: string | undefined;
|
|
3185
3188
|
};
|
|
3186
3189
|
} & {
|
|
3187
3190
|
pathParameters: {
|
|
@@ -3207,9 +3210,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3207
3210
|
[x: string]: unknown;
|
|
3208
3211
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3209
3212
|
data: {
|
|
3210
|
-
|
|
3211
|
-
sourcePath: string;
|
|
3212
|
-
targetPath?: string | undefined;
|
|
3213
|
+
description?: string | undefined;
|
|
3213
3214
|
};
|
|
3214
3215
|
} & {
|
|
3215
3216
|
pathParameters: {
|
|
@@ -3234,11 +3235,76 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3234
3235
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3235
3236
|
[x: string]: unknown;
|
|
3236
3237
|
}, 429, "application/json">>>;
|
|
3237
|
-
/**
|
|
3238
|
-
|
|
3238
|
+
/** List database dump's for a ProjectBackup. */
|
|
3239
|
+
getProjectBackupDatabaseDumpsV2Experimental: (request: {
|
|
3240
|
+
projectBackupId: string;
|
|
3241
|
+
headers?: {
|
|
3242
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3243
|
+
"x-access-token"?: string | undefined;
|
|
3244
|
+
} | undefined;
|
|
3245
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3246
|
+
headers?: Partial<{
|
|
3247
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3248
|
+
}>;
|
|
3249
|
+
} & {
|
|
3250
|
+
pathParameters: {
|
|
3251
|
+
projectBackupId: string;
|
|
3252
|
+
};
|
|
3253
|
+
} & {
|
|
3254
|
+
headers: {
|
|
3255
|
+
"x-access-token"?: string | undefined;
|
|
3256
|
+
} & Partial<{
|
|
3257
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3258
|
+
}>;
|
|
3259
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
3260
|
+
databases: string[];
|
|
3261
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3262
|
+
[x: string]: unknown;
|
|
3263
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3264
|
+
[x: string]: unknown;
|
|
3265
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3266
|
+
[x: string]: unknown;
|
|
3267
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3268
|
+
[x: string]: unknown;
|
|
3269
|
+
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3270
|
+
[x: string]: unknown;
|
|
3271
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3272
|
+
headers?: Partial<{
|
|
3273
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3274
|
+
}>;
|
|
3275
|
+
} & {
|
|
3276
|
+
pathParameters: {
|
|
3277
|
+
projectBackupId: string;
|
|
3278
|
+
};
|
|
3279
|
+
} & {
|
|
3280
|
+
headers: {
|
|
3281
|
+
"x-access-token"?: string | undefined;
|
|
3282
|
+
} & Partial<{
|
|
3283
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3284
|
+
}>;
|
|
3285
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
3286
|
+
databases: string[];
|
|
3287
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3288
|
+
[x: string]: unknown;
|
|
3289
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3290
|
+
[x: string]: unknown;
|
|
3291
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3292
|
+
[x: string]: unknown;
|
|
3293
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3294
|
+
[x: string]: unknown;
|
|
3295
|
+
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3296
|
+
[x: string]: unknown;
|
|
3297
|
+
}, 503, "application/json">>>;
|
|
3298
|
+
/** Restore a ProjectBackup. */
|
|
3299
|
+
requestProjectBackupRestoreV2Experimental: (request: {
|
|
3239
3300
|
projectBackupId: string;
|
|
3240
3301
|
data?: {
|
|
3241
|
-
|
|
3302
|
+
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3303
|
+
pathRestore?: {
|
|
3304
|
+
sourcePaths: string[];
|
|
3305
|
+
clearTargetPath?: boolean | undefined;
|
|
3306
|
+
targetRestorePath?: string | undefined;
|
|
3307
|
+
} | undefined;
|
|
3242
3308
|
} | undefined;
|
|
3243
3309
|
headers?: {
|
|
3244
3310
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -3246,7 +3312,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3246
3312
|
} | undefined;
|
|
3247
3313
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3248
3314
|
data: {
|
|
3249
|
-
|
|
3315
|
+
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3316
|
+
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3250
3317
|
};
|
|
3251
3318
|
} & {
|
|
3252
3319
|
pathParameters: {
|
|
@@ -3272,7 +3339,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3272
3339
|
[x: string]: unknown;
|
|
3273
3340
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3274
3341
|
data: {
|
|
3275
|
-
|
|
3342
|
+
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3343
|
+
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3276
3344
|
};
|
|
3277
3345
|
} & {
|
|
3278
3346
|
pathParameters: {
|
|
@@ -8866,6 +8934,60 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8866
8934
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8867
8935
|
[x: string]: unknown;
|
|
8868
8936
|
}, 429, "application/json">>>;
|
|
8937
|
+
/** Check if an Extension is unchargable for this specific context or if it must be charged. */
|
|
8938
|
+
extensionCheckExtensionIsChargable: (request: {
|
|
8939
|
+
extensionId: string;
|
|
8940
|
+
contextId: string;
|
|
8941
|
+
headers?: {
|
|
8942
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8943
|
+
} | undefined;
|
|
8944
|
+
queryParameters?: {
|
|
8945
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8946
|
+
variantKey?: string | undefined;
|
|
8947
|
+
} | undefined;
|
|
8948
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8949
|
+
headers?: Partial<{
|
|
8950
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8951
|
+
}>;
|
|
8952
|
+
} & {
|
|
8953
|
+
pathParameters: {
|
|
8954
|
+
extensionId: string;
|
|
8955
|
+
contextId: string;
|
|
8956
|
+
};
|
|
8957
|
+
} & {
|
|
8958
|
+
queryParameters: {
|
|
8959
|
+
variantKey?: string | undefined;
|
|
8960
|
+
} & Partial<{
|
|
8961
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8962
|
+
}>;
|
|
8963
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8964
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
8965
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8966
|
+
[x: string]: unknown;
|
|
8967
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8968
|
+
[x: string]: unknown;
|
|
8969
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8970
|
+
headers?: Partial<{
|
|
8971
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8972
|
+
}>;
|
|
8973
|
+
} & {
|
|
8974
|
+
pathParameters: {
|
|
8975
|
+
extensionId: string;
|
|
8976
|
+
contextId: string;
|
|
8977
|
+
};
|
|
8978
|
+
} & {
|
|
8979
|
+
queryParameters: {
|
|
8980
|
+
variantKey?: string | undefined;
|
|
8981
|
+
} & Partial<{
|
|
8982
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8983
|
+
}>;
|
|
8984
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
8985
|
+
chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
8986
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8987
|
+
[x: string]: unknown;
|
|
8988
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8989
|
+
[x: string]: unknown;
|
|
8990
|
+
}, 429, "application/json">>>;
|
|
8869
8991
|
/** Consent to extension scopes. */
|
|
8870
8992
|
extensionConsentToExtensionScopes: (request: {
|
|
8871
8993
|
data: {
|
|
@@ -13157,10 +13279,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13157
13279
|
[x: string]: unknown;
|
|
13158
13280
|
}, 429, "application/json">>>;
|
|
13159
13281
|
/** Update a Cronjob's app installation id. */
|
|
13160
|
-
|
|
13282
|
+
replaceCronjobAppInstallationId: (request: {
|
|
13161
13283
|
data: {
|
|
13162
|
-
|
|
13163
|
-
appInstallationId?: string | undefined;
|
|
13284
|
+
appInstallationId: string;
|
|
13164
13285
|
};
|
|
13165
13286
|
cronjobId: string;
|
|
13166
13287
|
headers?: {
|
|
@@ -13169,8 +13290,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13169
13290
|
} | undefined;
|
|
13170
13291
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13171
13292
|
data: {
|
|
13172
|
-
|
|
13173
|
-
appInstallationId?: string | undefined;
|
|
13293
|
+
appInstallationId: string;
|
|
13174
13294
|
};
|
|
13175
13295
|
} & {
|
|
13176
13296
|
pathParameters: {
|
|
@@ -13194,8 +13314,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
13194
13314
|
[x: string]: unknown;
|
|
13195
13315
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
13196
13316
|
data: {
|
|
13197
|
-
|
|
13198
|
-
appInstallationId?: string | undefined;
|
|
13317
|
+
appInstallationId: string;
|
|
13199
13318
|
};
|
|
13200
13319
|
} & {
|
|
13201
13320
|
pathParameters: {
|
|
@@ -103,10 +103,8 @@ export declare const backupUpdateProjectBackupSchedule: OpenAPIOperation<Request
|
|
|
103
103
|
export declare const backupGetProjectBackup: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
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 paths for a ProjectBackup. */
|
|
107
107
|
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">>;
|
|
108
|
-
/** Restore a ProjectBackup's path. */
|
|
109
|
-
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">>;
|
|
110
108
|
/** Change the description of a ProjectBackup. */
|
|
111
109
|
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">>;
|
|
112
110
|
/** List Registries belonging to a Project. */
|
|
@@ -269,8 +267,6 @@ export declare const cronjobUpdateCronjob: OpenAPIOperation<RequestType<Simplify
|
|
|
269
267
|
export declare const cronjobGetExecutionAnalysis: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionIdAnalysis.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
270
268
|
/** Get a CronjobExecution. */
|
|
271
269
|
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">>;
|
|
272
|
-
/** Update a Cronjob's app installation id. */
|
|
273
|
-
export declare const cronjobUpdateCronjobAppId: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
274
270
|
/** Accept a CustomerInvite. */
|
|
275
271
|
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">>;
|
|
276
272
|
/** List Invites belonging to a Customer. */
|
|
@@ -455,6 +451,8 @@ export declare const extensionScheduleExtensionVariantChange: OpenAPIOperation<R
|
|
|
455
451
|
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">>;
|
|
456
452
|
/** Change the context of an Extension. */
|
|
457
453
|
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">>;
|
|
454
|
+
/** Check if an Extension is unchargable for this specific context or if it must be charged. */
|
|
455
|
+
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">>;
|
|
458
456
|
/** Consent to extension scopes. */
|
|
459
457
|
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">>;
|
|
460
458
|
/** Create the OnboardingProcess of a Contributor. */
|
|
@@ -897,3 +895,9 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
897
895
|
export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
898
896
|
/** Check if a company exists. */
|
|
899
897
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
898
|
+
/** Update a Cronjob's app installation id. */
|
|
899
|
+
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">>;
|
|
900
|
+
/** List database dump's for a ProjectBackup. */
|
|
901
|
+
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">>;
|
|
902
|
+
/** Restore a ProjectBackup. */
|
|
903
|
+
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">>;
|
|
@@ -206,10 +206,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
206
206
|
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDirectories>;
|
|
207
207
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDirectories, TStatus>;
|
|
208
208
|
}
|
|
209
|
-
namespace BackupRequestProjectBackupRestorePath {
|
|
210
|
-
type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestorePath>;
|
|
211
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestorePath, TStatus>;
|
|
212
|
-
}
|
|
213
209
|
namespace BackupUpdateProjectBackupDescription {
|
|
214
210
|
type RequestData = InferredRequestData<typeof descriptors.backupUpdateProjectBackupDescription>;
|
|
215
211
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupUpdateProjectBackupDescription, TStatus>;
|
|
@@ -534,10 +530,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
534
530
|
type RequestData = InferredRequestData<typeof descriptors.cronjobGetExecution>;
|
|
535
531
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobGetExecution, TStatus>;
|
|
536
532
|
}
|
|
537
|
-
namespace CronjobUpdateCronjobAppId {
|
|
538
|
-
type RequestData = InferredRequestData<typeof descriptors.cronjobUpdateCronjobAppId>;
|
|
539
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobUpdateCronjobAppId, TStatus>;
|
|
540
|
-
}
|
|
541
533
|
namespace CustomerAcceptCustomerInvite {
|
|
542
534
|
type RequestData = InferredRequestData<typeof descriptors.customerAcceptCustomerInvite>;
|
|
543
535
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerAcceptCustomerInvite, TStatus>;
|
|
@@ -906,6 +898,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
906
898
|
type RequestData = InferredRequestData<typeof descriptors.extensionChangeContext>;
|
|
907
899
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionChangeContext, TStatus>;
|
|
908
900
|
}
|
|
901
|
+
namespace ExtensionCheckExtensionIsChargable {
|
|
902
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionCheckExtensionIsChargable>;
|
|
903
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionCheckExtensionIsChargable, TStatus>;
|
|
904
|
+
}
|
|
909
905
|
namespace ExtensionConsentToExtensionScopes {
|
|
910
906
|
type RequestData = InferredRequestData<typeof descriptors.extensionConsentToExtensionScopes>;
|
|
911
907
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionConsentToExtensionScopes, TStatus>;
|
|
@@ -1790,6 +1786,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1790
1786
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1791
1787
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1792
1788
|
}
|
|
1789
|
+
namespace CronjobReplaceCronjobAppInstallationId {
|
|
1790
|
+
type RequestData = InferredRequestData<typeof descriptors.cronjobReplaceCronjobAppInstallationId>;
|
|
1791
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobReplaceCronjobAppInstallationId, TStatus>;
|
|
1792
|
+
}
|
|
1793
|
+
namespace BackupGetProjectBackupDatabaseDumpsV2Experimental {
|
|
1794
|
+
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental>;
|
|
1795
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, TStatus>;
|
|
1796
|
+
}
|
|
1797
|
+
namespace BackupRequestProjectBackupRestoreV2Experimental {
|
|
1798
|
+
type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental>;
|
|
1799
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental, TStatus>;
|
|
1800
|
+
}
|
|
1793
1801
|
}
|
|
1794
1802
|
namespace Components {
|
|
1795
1803
|
namespace Schemas {
|
|
@@ -2117,7 +2125,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2117
2125
|
current?: string;
|
|
2118
2126
|
desired: string;
|
|
2119
2127
|
}
|
|
2120
|
-
type BackupRestorePathPhase = "running" | "completed";
|
|
2121
2128
|
type BackupBackupSortOrder = "oldestFirst" | "newestFirst";
|
|
2122
2129
|
interface BackupBackupTemplate {
|
|
2123
2130
|
expirationTime: string;
|
|
@@ -2141,7 +2148,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2141
2148
|
parentId?: string;
|
|
2142
2149
|
projectId: string;
|
|
2143
2150
|
requestedAt: string;
|
|
2144
|
-
|
|
2151
|
+
restore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestore;
|
|
2152
|
+
restorePath?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathDeprecated;
|
|
2145
2153
|
status: string;
|
|
2146
2154
|
}
|
|
2147
2155
|
interface BackupProjectBackupExport {
|
|
@@ -2168,18 +2176,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2168
2176
|
* Whether to clear the target path before restoring. If true, existing files in the target path will be deleted before the restore. If false, existing files will be kept and may be overwritten if they exist in the backup.
|
|
2169
2177
|
*/
|
|
2170
2178
|
clearTargetPath?: boolean;
|
|
2171
|
-
|
|
2179
|
+
sourcePaths: string[];
|
|
2172
2180
|
/**
|
|
2173
|
-
* Target path where the source
|
|
2181
|
+
* Target path where the source paths should be restored to. If not set, the target path will be determined to equal the origin source. The target path should always be a folder, no files allowed here.
|
|
2174
2182
|
*/
|
|
2175
|
-
|
|
2183
|
+
targetRestorePath?: string;
|
|
2176
2184
|
}
|
|
2177
2185
|
interface BackupProjectBackupRestorePath {
|
|
2178
2186
|
clearTargetPath: boolean;
|
|
2179
2187
|
determinedTargetPath: string;
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
targetPath?: string;
|
|
2188
|
+
sourcePaths: string[];
|
|
2189
|
+
targetRestorePath?: string;
|
|
2183
2190
|
}
|
|
2184
2191
|
interface BackupProjectBackupSchedule {
|
|
2185
2192
|
createdAt?: string;
|
|
@@ -5636,6 +5643,48 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5636
5643
|
}
|
|
5637
5644
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5638
5645
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5646
|
+
interface BackupProjectBackupRestore {
|
|
5647
|
+
databaseRestores?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabase[];
|
|
5648
|
+
pathRestore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath;
|
|
5649
|
+
phase: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePhase;
|
|
5650
|
+
}
|
|
5651
|
+
interface BackupProjectBackupRestoreDatabaseRequest {
|
|
5652
|
+
/**
|
|
5653
|
+
* Database backup dump from the backup to restore from.
|
|
5654
|
+
*/
|
|
5655
|
+
databaseBackupDump: string;
|
|
5656
|
+
/**
|
|
5657
|
+
* ID of the target database to restore to.
|
|
5658
|
+
*/
|
|
5659
|
+
targetDatabaseId: string;
|
|
5660
|
+
}
|
|
5661
|
+
interface BackupProjectBackupRestoreDatabase {
|
|
5662
|
+
databaseBackupDump: string;
|
|
5663
|
+
targetDatabaseId: string;
|
|
5664
|
+
}
|
|
5665
|
+
interface BackupProjectBackupRestorePathDeprecated {
|
|
5666
|
+
clearTargetPath: boolean;
|
|
5667
|
+
determinedTargetPath: string;
|
|
5668
|
+
phase: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePhase;
|
|
5669
|
+
sourcePath: string;
|
|
5670
|
+
targetPath?: string;
|
|
5671
|
+
}
|
|
5672
|
+
interface BackupProjectBackupRestorePathRequestDeprecated {
|
|
5673
|
+
/**
|
|
5674
|
+
* Whether to clear the target path before restoring. If true, existing files in the target path will be deleted before the restore. If false, existing files will be kept and may be overwritten if they exist in the backup.
|
|
5675
|
+
*/
|
|
5676
|
+
clearTargetPath?: boolean;
|
|
5677
|
+
sourcePath: string;
|
|
5678
|
+
/**
|
|
5679
|
+
* Target path where the source path should be restored to. If not set, the target path will be determined to equal the origin source. The target path should always be a folder, no files allowed here.
|
|
5680
|
+
*/
|
|
5681
|
+
targetPath?: string;
|
|
5682
|
+
}
|
|
5683
|
+
type BackupProjectBackupRestorePhase = "running" | "completed";
|
|
5684
|
+
interface BackupProjectBackupRestoreRequest {
|
|
5685
|
+
databaseRestores?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[];
|
|
5686
|
+
pathRestore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest;
|
|
5687
|
+
}
|
|
5639
5688
|
interface CommonsAddress {
|
|
5640
5689
|
street: string;
|
|
5641
5690
|
houseNumber: string;
|
|
@@ -7915,6 +7964,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7915
7964
|
searchTerm?: string;
|
|
7916
7965
|
withExportsOnly?: boolean;
|
|
7917
7966
|
sortOrder?: MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder;
|
|
7967
|
+
runningRestoresOnly?: boolean;
|
|
7918
7968
|
limit?: number;
|
|
7919
7969
|
skip?: number;
|
|
7920
7970
|
page?: number;
|
|
@@ -8304,60 +8354,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8304
8354
|
}
|
|
8305
8355
|
}
|
|
8306
8356
|
}
|
|
8307
|
-
namespace V2ProjectBackupsProjectBackupIdRestorePath {
|
|
8308
|
-
namespace Post {
|
|
8309
|
-
namespace Parameters {
|
|
8310
|
-
type Path = {
|
|
8311
|
-
projectBackupId: string;
|
|
8312
|
-
};
|
|
8313
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest;
|
|
8314
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8315
|
-
type Query = {};
|
|
8316
|
-
}
|
|
8317
|
-
namespace Responses {
|
|
8318
|
-
namespace $204 {
|
|
8319
|
-
namespace Content {
|
|
8320
|
-
type Empty = unknown;
|
|
8321
|
-
}
|
|
8322
|
-
}
|
|
8323
|
-
namespace $400 {
|
|
8324
|
-
namespace Content {
|
|
8325
|
-
interface ApplicationJson {
|
|
8326
|
-
[k: string]: unknown;
|
|
8327
|
-
}
|
|
8328
|
-
}
|
|
8329
|
-
}
|
|
8330
|
-
namespace $403 {
|
|
8331
|
-
namespace Content {
|
|
8332
|
-
interface ApplicationJson {
|
|
8333
|
-
[k: string]: unknown;
|
|
8334
|
-
}
|
|
8335
|
-
}
|
|
8336
|
-
}
|
|
8337
|
-
namespace $404 {
|
|
8338
|
-
namespace Content {
|
|
8339
|
-
interface ApplicationJson {
|
|
8340
|
-
[k: string]: unknown;
|
|
8341
|
-
}
|
|
8342
|
-
}
|
|
8343
|
-
}
|
|
8344
|
-
namespace $429 {
|
|
8345
|
-
namespace Content {
|
|
8346
|
-
interface ApplicationJson {
|
|
8347
|
-
[k: string]: unknown;
|
|
8348
|
-
}
|
|
8349
|
-
}
|
|
8350
|
-
}
|
|
8351
|
-
namespace Default {
|
|
8352
|
-
namespace Content {
|
|
8353
|
-
interface ApplicationJson {
|
|
8354
|
-
[k: string]: unknown;
|
|
8355
|
-
}
|
|
8356
|
-
}
|
|
8357
|
-
}
|
|
8358
|
-
}
|
|
8359
|
-
}
|
|
8360
|
-
}
|
|
8361
8357
|
namespace V2ProjectBackupsProjectBackupIdDescription {
|
|
8362
8358
|
namespace Patch {
|
|
8363
8359
|
namespace Parameters {
|
|
@@ -12729,61 +12725,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12729
12725
|
}
|
|
12730
12726
|
}
|
|
12731
12727
|
}
|
|
12732
|
-
namespace V2CronjobsCronjobIdAppId { }
|
|
12733
|
-
namespace V2CronjobsCronjobIdAppInstallationId {
|
|
12734
|
-
namespace Patch {
|
|
12735
|
-
namespace Parameters {
|
|
12736
|
-
type Path = {
|
|
12737
|
-
cronjobId: string;
|
|
12738
|
-
};
|
|
12739
|
-
interface RequestBody {
|
|
12740
|
-
/**
|
|
12741
|
-
* @deprecated
|
|
12742
|
-
* DEPRECATED: Use 'appInstallationId' instead. This field will be removed in a future version.
|
|
12743
|
-
*/
|
|
12744
|
-
appId: string;
|
|
12745
|
-
appInstallationId?: string;
|
|
12746
|
-
}
|
|
12747
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12748
|
-
type Query = {};
|
|
12749
|
-
}
|
|
12750
|
-
namespace Responses {
|
|
12751
|
-
namespace $204 {
|
|
12752
|
-
namespace Content {
|
|
12753
|
-
type Empty = unknown;
|
|
12754
|
-
}
|
|
12755
|
-
}
|
|
12756
|
-
namespace $400 {
|
|
12757
|
-
namespace Content {
|
|
12758
|
-
interface ApplicationJson {
|
|
12759
|
-
[k: string]: unknown;
|
|
12760
|
-
}
|
|
12761
|
-
}
|
|
12762
|
-
}
|
|
12763
|
-
namespace $412 {
|
|
12764
|
-
namespace Content {
|
|
12765
|
-
interface ApplicationJson {
|
|
12766
|
-
[k: string]: unknown;
|
|
12767
|
-
}
|
|
12768
|
-
}
|
|
12769
|
-
}
|
|
12770
|
-
namespace $429 {
|
|
12771
|
-
namespace Content {
|
|
12772
|
-
interface ApplicationJson {
|
|
12773
|
-
[k: string]: unknown;
|
|
12774
|
-
}
|
|
12775
|
-
}
|
|
12776
|
-
}
|
|
12777
|
-
namespace Default {
|
|
12778
|
-
namespace Content {
|
|
12779
|
-
interface ApplicationJson {
|
|
12780
|
-
[k: string]: unknown;
|
|
12781
|
-
}
|
|
12782
|
-
}
|
|
12783
|
-
}
|
|
12784
|
-
}
|
|
12785
|
-
}
|
|
12786
|
-
}
|
|
12787
12728
|
namespace V2CustomerInvitesCustomerInviteIdActionsAccept {
|
|
12788
12729
|
namespace Post {
|
|
12789
12730
|
namespace Parameters {
|
|
@@ -17376,6 +17317,50 @@ export declare namespace MittwaldAPIV2 {
|
|
|
17376
17317
|
}
|
|
17377
17318
|
}
|
|
17378
17319
|
}
|
|
17320
|
+
namespace V2ExtensionsExtensionIdContextsContextIdChargability {
|
|
17321
|
+
namespace Get {
|
|
17322
|
+
namespace Parameters {
|
|
17323
|
+
type Path = {
|
|
17324
|
+
extensionId: string;
|
|
17325
|
+
contextId: string;
|
|
17326
|
+
};
|
|
17327
|
+
type Header = {};
|
|
17328
|
+
type Query = {
|
|
17329
|
+
variantKey?: string;
|
|
17330
|
+
};
|
|
17331
|
+
}
|
|
17332
|
+
namespace Responses {
|
|
17333
|
+
namespace $200 {
|
|
17334
|
+
namespace Content {
|
|
17335
|
+
interface ApplicationJson {
|
|
17336
|
+
chargeability: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
17337
|
+
}
|
|
17338
|
+
}
|
|
17339
|
+
}
|
|
17340
|
+
namespace $404 {
|
|
17341
|
+
namespace Content {
|
|
17342
|
+
interface ApplicationJson {
|
|
17343
|
+
[k: string]: unknown;
|
|
17344
|
+
}
|
|
17345
|
+
}
|
|
17346
|
+
}
|
|
17347
|
+
namespace $429 {
|
|
17348
|
+
namespace Content {
|
|
17349
|
+
interface ApplicationJson {
|
|
17350
|
+
[k: string]: unknown;
|
|
17351
|
+
}
|
|
17352
|
+
}
|
|
17353
|
+
}
|
|
17354
|
+
namespace Default {
|
|
17355
|
+
namespace Content {
|
|
17356
|
+
interface ApplicationJson {
|
|
17357
|
+
[k: string]: unknown;
|
|
17358
|
+
}
|
|
17359
|
+
}
|
|
17360
|
+
}
|
|
17361
|
+
}
|
|
17362
|
+
}
|
|
17363
|
+
}
|
|
17379
17364
|
namespace V2ExtensionInstancesExtensionInstanceIdScopes {
|
|
17380
17365
|
namespace Patch {
|
|
17381
17366
|
namespace Parameters {
|
|
@@ -28641,5 +28626,172 @@ export declare namespace MittwaldAPIV2 {
|
|
|
28641
28626
|
}
|
|
28642
28627
|
}
|
|
28643
28628
|
}
|
|
28629
|
+
namespace V2CronjobsCronjobIdAppId { }
|
|
28630
|
+
namespace V2CronjobsCronjobIdAppInstallationId {
|
|
28631
|
+
namespace Put {
|
|
28632
|
+
namespace Parameters {
|
|
28633
|
+
type Path = {
|
|
28634
|
+
cronjobId: string;
|
|
28635
|
+
};
|
|
28636
|
+
interface RequestBody {
|
|
28637
|
+
appInstallationId: string;
|
|
28638
|
+
}
|
|
28639
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28640
|
+
type Query = {};
|
|
28641
|
+
}
|
|
28642
|
+
namespace Responses {
|
|
28643
|
+
namespace $204 {
|
|
28644
|
+
namespace Content {
|
|
28645
|
+
type Empty = unknown;
|
|
28646
|
+
}
|
|
28647
|
+
}
|
|
28648
|
+
namespace $400 {
|
|
28649
|
+
namespace Content {
|
|
28650
|
+
interface ApplicationJson {
|
|
28651
|
+
[k: string]: unknown;
|
|
28652
|
+
}
|
|
28653
|
+
}
|
|
28654
|
+
}
|
|
28655
|
+
namespace $412 {
|
|
28656
|
+
namespace Content {
|
|
28657
|
+
interface ApplicationJson {
|
|
28658
|
+
[k: string]: unknown;
|
|
28659
|
+
}
|
|
28660
|
+
}
|
|
28661
|
+
}
|
|
28662
|
+
namespace $429 {
|
|
28663
|
+
namespace Content {
|
|
28664
|
+
interface ApplicationJson {
|
|
28665
|
+
[k: string]: unknown;
|
|
28666
|
+
}
|
|
28667
|
+
}
|
|
28668
|
+
}
|
|
28669
|
+
namespace Default {
|
|
28670
|
+
namespace Content {
|
|
28671
|
+
interface ApplicationJson {
|
|
28672
|
+
[k: string]: unknown;
|
|
28673
|
+
}
|
|
28674
|
+
}
|
|
28675
|
+
}
|
|
28676
|
+
}
|
|
28677
|
+
}
|
|
28678
|
+
}
|
|
28679
|
+
namespace V2ProjectBackupsProjectBackupIdDatabaseDumps {
|
|
28680
|
+
namespace Get {
|
|
28681
|
+
namespace Parameters {
|
|
28682
|
+
type Path = {
|
|
28683
|
+
projectBackupId: string;
|
|
28684
|
+
};
|
|
28685
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28686
|
+
type Query = {};
|
|
28687
|
+
}
|
|
28688
|
+
namespace Responses {
|
|
28689
|
+
namespace $200 {
|
|
28690
|
+
namespace Content {
|
|
28691
|
+
interface ApplicationJson {
|
|
28692
|
+
databases: string[];
|
|
28693
|
+
}
|
|
28694
|
+
}
|
|
28695
|
+
}
|
|
28696
|
+
namespace $403 {
|
|
28697
|
+
namespace Content {
|
|
28698
|
+
interface ApplicationJson {
|
|
28699
|
+
[k: string]: unknown;
|
|
28700
|
+
}
|
|
28701
|
+
}
|
|
28702
|
+
}
|
|
28703
|
+
namespace $404 {
|
|
28704
|
+
namespace Content {
|
|
28705
|
+
interface ApplicationJson {
|
|
28706
|
+
[k: string]: unknown;
|
|
28707
|
+
}
|
|
28708
|
+
}
|
|
28709
|
+
}
|
|
28710
|
+
namespace $429 {
|
|
28711
|
+
namespace Content {
|
|
28712
|
+
interface ApplicationJson {
|
|
28713
|
+
[k: string]: unknown;
|
|
28714
|
+
}
|
|
28715
|
+
}
|
|
28716
|
+
}
|
|
28717
|
+
namespace $502 {
|
|
28718
|
+
namespace Content {
|
|
28719
|
+
interface ApplicationJson {
|
|
28720
|
+
[k: string]: unknown;
|
|
28721
|
+
}
|
|
28722
|
+
}
|
|
28723
|
+
}
|
|
28724
|
+
namespace $503 {
|
|
28725
|
+
namespace Content {
|
|
28726
|
+
interface ApplicationJson {
|
|
28727
|
+
[k: string]: unknown;
|
|
28728
|
+
}
|
|
28729
|
+
}
|
|
28730
|
+
}
|
|
28731
|
+
namespace Default {
|
|
28732
|
+
namespace Content {
|
|
28733
|
+
interface ApplicationJson {
|
|
28734
|
+
[k: string]: unknown;
|
|
28735
|
+
}
|
|
28736
|
+
}
|
|
28737
|
+
}
|
|
28738
|
+
}
|
|
28739
|
+
}
|
|
28740
|
+
}
|
|
28741
|
+
namespace V2ProjectBackupsProjectBackupIdRestorePath { }
|
|
28742
|
+
namespace V2ProjectBackupsProjectBackupIdRestore {
|
|
28743
|
+
namespace Post {
|
|
28744
|
+
namespace Parameters {
|
|
28745
|
+
type Path = {
|
|
28746
|
+
projectBackupId: string;
|
|
28747
|
+
};
|
|
28748
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreRequest;
|
|
28749
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28750
|
+
type Query = {};
|
|
28751
|
+
}
|
|
28752
|
+
namespace Responses {
|
|
28753
|
+
namespace $204 {
|
|
28754
|
+
namespace Content {
|
|
28755
|
+
type Empty = unknown;
|
|
28756
|
+
}
|
|
28757
|
+
}
|
|
28758
|
+
namespace $400 {
|
|
28759
|
+
namespace Content {
|
|
28760
|
+
interface ApplicationJson {
|
|
28761
|
+
[k: string]: unknown;
|
|
28762
|
+
}
|
|
28763
|
+
}
|
|
28764
|
+
}
|
|
28765
|
+
namespace $403 {
|
|
28766
|
+
namespace Content {
|
|
28767
|
+
interface ApplicationJson {
|
|
28768
|
+
[k: string]: unknown;
|
|
28769
|
+
}
|
|
28770
|
+
}
|
|
28771
|
+
}
|
|
28772
|
+
namespace $404 {
|
|
28773
|
+
namespace Content {
|
|
28774
|
+
interface ApplicationJson {
|
|
28775
|
+
[k: string]: unknown;
|
|
28776
|
+
}
|
|
28777
|
+
}
|
|
28778
|
+
}
|
|
28779
|
+
namespace $429 {
|
|
28780
|
+
namespace Content {
|
|
28781
|
+
interface ApplicationJson {
|
|
28782
|
+
[k: string]: unknown;
|
|
28783
|
+
}
|
|
28784
|
+
}
|
|
28785
|
+
}
|
|
28786
|
+
namespace Default {
|
|
28787
|
+
namespace Content {
|
|
28788
|
+
interface ApplicationJson {
|
|
28789
|
+
[k: string]: unknown;
|
|
28790
|
+
}
|
|
28791
|
+
}
|
|
28792
|
+
}
|
|
28793
|
+
}
|
|
28794
|
+
}
|
|
28795
|
+
}
|
|
28644
28796
|
}
|
|
28645
28797
|
}
|
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": "4.
|
|
3
|
+
"version": "4.289.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.289.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.289.0",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "cb7308a1bcb50ac30bd46c756f22d024c98f1bc9"
|
|
84
84
|
}
|