@mittwald/api-client 4.288.0 → 4.290.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 +3 -1
- package/dist/esm/generated/v2/client.js +5 -3
- package/dist/esm/generated/v2/descriptors.js +13 -7
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +14 -2
- package/dist/types/generated/v2/client.d.ts +91 -23
- package/dist/types/generated/v2/descriptors.d.ts +5 -3
- package/dist/types/generated/v2/types.d.ts +175 -66
- 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. */
|
|
@@ -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 = {
|
|
@@ -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",
|
|
@@ -2686,3 +2680,15 @@ export const cronjobReplaceCronjobAppInstallationId = {
|
|
|
2686
2680
|
method: "PUT",
|
|
2687
2681
|
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
2688
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.289.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. */
|
|
@@ -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: {
|
|
@@ -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. */
|
|
@@ -899,3 +897,7 @@ export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Sim
|
|
|
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">>;
|
|
900
898
|
/** Update a Cronjob's app installation id. */
|
|
901
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>;
|
|
@@ -1794,6 +1790,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1794
1790
|
type RequestData = InferredRequestData<typeof descriptors.cronjobReplaceCronjobAppInstallationId>;
|
|
1795
1791
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobReplaceCronjobAppInstallationId, TStatus>;
|
|
1796
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
|
+
}
|
|
1797
1801
|
}
|
|
1798
1802
|
namespace Components {
|
|
1799
1803
|
namespace Schemas {
|
|
@@ -2121,7 +2125,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2121
2125
|
current?: string;
|
|
2122
2126
|
desired: string;
|
|
2123
2127
|
}
|
|
2124
|
-
type BackupRestorePathPhase = "running" | "completed";
|
|
2125
2128
|
type BackupBackupSortOrder = "oldestFirst" | "newestFirst";
|
|
2126
2129
|
interface BackupBackupTemplate {
|
|
2127
2130
|
expirationTime: string;
|
|
@@ -2145,7 +2148,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2145
2148
|
parentId?: string;
|
|
2146
2149
|
projectId: string;
|
|
2147
2150
|
requestedAt: string;
|
|
2148
|
-
|
|
2151
|
+
restore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestore;
|
|
2152
|
+
restorePath?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathDeprecated;
|
|
2149
2153
|
status: string;
|
|
2150
2154
|
}
|
|
2151
2155
|
interface BackupProjectBackupExport {
|
|
@@ -2172,18 +2176,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2172
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.
|
|
2173
2177
|
*/
|
|
2174
2178
|
clearTargetPath?: boolean;
|
|
2175
|
-
|
|
2179
|
+
sourcePaths: string[];
|
|
2176
2180
|
/**
|
|
2177
|
-
* 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.
|
|
2178
2182
|
*/
|
|
2179
|
-
|
|
2183
|
+
targetRestorePath?: string;
|
|
2180
2184
|
}
|
|
2181
2185
|
interface BackupProjectBackupRestorePath {
|
|
2182
2186
|
clearTargetPath: boolean;
|
|
2183
2187
|
determinedTargetPath: string;
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
targetPath?: string;
|
|
2188
|
+
sourcePaths: string[];
|
|
2189
|
+
targetRestorePath?: string;
|
|
2187
2190
|
}
|
|
2188
2191
|
interface BackupProjectBackupSchedule {
|
|
2189
2192
|
createdAt?: string;
|
|
@@ -5640,6 +5643,48 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5640
5643
|
}
|
|
5641
5644
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5642
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 BackupProjectBackupRestoreDatabase {
|
|
5652
|
+
databaseBackupDump: string;
|
|
5653
|
+
targetDatabaseId: string;
|
|
5654
|
+
}
|
|
5655
|
+
interface BackupProjectBackupRestoreDatabaseRequest {
|
|
5656
|
+
/**
|
|
5657
|
+
* Database backup dump from the backup to restore from.
|
|
5658
|
+
*/
|
|
5659
|
+
databaseBackupDump: string;
|
|
5660
|
+
/**
|
|
5661
|
+
* ID of the target database to restore to.
|
|
5662
|
+
*/
|
|
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
|
+
}
|
|
5643
5688
|
interface CommonsAddress {
|
|
5644
5689
|
street: string;
|
|
5645
5690
|
houseNumber: string;
|
|
@@ -7919,6 +7964,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7919
7964
|
searchTerm?: string;
|
|
7920
7965
|
withExportsOnly?: boolean;
|
|
7921
7966
|
sortOrder?: MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder;
|
|
7967
|
+
runningRestoresOnly?: boolean;
|
|
7922
7968
|
limit?: number;
|
|
7923
7969
|
skip?: number;
|
|
7924
7970
|
page?: number;
|
|
@@ -8308,60 +8354,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8308
8354
|
}
|
|
8309
8355
|
}
|
|
8310
8356
|
}
|
|
8311
|
-
namespace V2ProjectBackupsProjectBackupIdRestorePath {
|
|
8312
|
-
namespace Post {
|
|
8313
|
-
namespace Parameters {
|
|
8314
|
-
type Path = {
|
|
8315
|
-
projectBackupId: string;
|
|
8316
|
-
};
|
|
8317
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest;
|
|
8318
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8319
|
-
type Query = {};
|
|
8320
|
-
}
|
|
8321
|
-
namespace Responses {
|
|
8322
|
-
namespace $204 {
|
|
8323
|
-
namespace Content {
|
|
8324
|
-
type Empty = unknown;
|
|
8325
|
-
}
|
|
8326
|
-
}
|
|
8327
|
-
namespace $400 {
|
|
8328
|
-
namespace Content {
|
|
8329
|
-
interface ApplicationJson {
|
|
8330
|
-
[k: string]: unknown;
|
|
8331
|
-
}
|
|
8332
|
-
}
|
|
8333
|
-
}
|
|
8334
|
-
namespace $403 {
|
|
8335
|
-
namespace Content {
|
|
8336
|
-
interface ApplicationJson {
|
|
8337
|
-
[k: string]: unknown;
|
|
8338
|
-
}
|
|
8339
|
-
}
|
|
8340
|
-
}
|
|
8341
|
-
namespace $404 {
|
|
8342
|
-
namespace Content {
|
|
8343
|
-
interface ApplicationJson {
|
|
8344
|
-
[k: string]: unknown;
|
|
8345
|
-
}
|
|
8346
|
-
}
|
|
8347
|
-
}
|
|
8348
|
-
namespace $429 {
|
|
8349
|
-
namespace Content {
|
|
8350
|
-
interface ApplicationJson {
|
|
8351
|
-
[k: string]: unknown;
|
|
8352
|
-
}
|
|
8353
|
-
}
|
|
8354
|
-
}
|
|
8355
|
-
namespace Default {
|
|
8356
|
-
namespace Content {
|
|
8357
|
-
interface ApplicationJson {
|
|
8358
|
-
[k: string]: unknown;
|
|
8359
|
-
}
|
|
8360
|
-
}
|
|
8361
|
-
}
|
|
8362
|
-
}
|
|
8363
|
-
}
|
|
8364
|
-
}
|
|
8365
8357
|
namespace V2ProjectBackupsProjectBackupIdDescription {
|
|
8366
8358
|
namespace Patch {
|
|
8367
8359
|
namespace Parameters {
|
|
@@ -28684,5 +28676,122 @@ export declare namespace MittwaldAPIV2 {
|
|
|
28684
28676
|
}
|
|
28685
28677
|
}
|
|
28686
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
|
+
}
|
|
28687
28796
|
}
|
|
28688
28797
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.289.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.290.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.290.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.290.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": "4be533450f7479a6dda2b9ad02a1ef235bb9fa47"
|
|
84
84
|
}
|