@mittwald/api-client 4.291.0 → 4.292.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +2 -2
- package/dist/esm/generated/v2/client.js +4 -4
- package/dist/esm/generated/v2/descriptors.js +18 -18
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +11 -10
- package/dist/types/generated/v2/client.d.ts +79 -77
- package/dist/types/generated/v2/descriptors.d.ts +6 -6
- package/dist/types/generated/v2/types.d.ts +222 -221
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -64,10 +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
|
-
/** List paths for a ProjectBackup. */
|
|
68
|
-
getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource,
|
|
69
67
|
/** List database dump's for a ProjectBackup. */
|
|
70
68
|
getProjectBackupDatabaseDumpsV2Experimental: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, baseClient.backup.getProjectBackupDatabaseDumpsV2Experimental).getApiResource,
|
|
69
|
+
/** List paths for a ProjectBackup. */
|
|
70
|
+
getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource,
|
|
71
71
|
});
|
|
72
72
|
const buildContainerApi = (baseClient) => ({
|
|
73
73
|
/** List Registries belonging to a Project. */
|
|
@@ -115,14 +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
|
-
/** List paths for a ProjectBackup. */
|
|
119
|
-
getProjectBackupDirectories: this.requestFunctionFactory(descriptors.backupGetProjectBackupDirectories),
|
|
120
|
-
/** Change the description of a ProjectBackup. */
|
|
121
|
-
updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
|
|
122
118
|
/** List database dump's for a ProjectBackup. */
|
|
123
119
|
getProjectBackupDatabaseDumpsV2Experimental: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental),
|
|
120
|
+
/** List paths for a ProjectBackup. */
|
|
121
|
+
getProjectBackupDirectories: this.requestFunctionFactory(descriptors.backupGetProjectBackupDirectories),
|
|
124
122
|
/** Restore a ProjectBackup. */
|
|
125
123
|
requestProjectBackupRestoreV2Experimental: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestoreV2Experimental),
|
|
124
|
+
/** Change the description of a ProjectBackup. */
|
|
125
|
+
updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
|
|
126
126
|
};
|
|
127
127
|
/** The container API allows you to manage your stacks, containers, volumes and registries. */
|
|
128
128
|
container = {
|
|
@@ -298,12 +298,24 @@ export const backupDeleteProjectBackup = {
|
|
|
298
298
|
method: "DELETE",
|
|
299
299
|
operationId: "backup-delete-project-backup",
|
|
300
300
|
};
|
|
301
|
+
/** List database dump's for a ProjectBackup. */
|
|
302
|
+
export const backupGetProjectBackupDatabaseDumpsV2Experimental = {
|
|
303
|
+
path: "/v2/project-backups/{projectBackupId}/database-dumps",
|
|
304
|
+
method: "GET",
|
|
305
|
+
operationId: "backup-get-project-backup-database-dumps-v2-experimental",
|
|
306
|
+
};
|
|
301
307
|
/** List paths for a ProjectBackup. */
|
|
302
308
|
export const backupGetProjectBackupDirectories = {
|
|
303
309
|
path: "/v2/project-backups/{projectBackupId}/path",
|
|
304
310
|
method: "GET",
|
|
305
311
|
operationId: "backup-get-project-backup-directories",
|
|
306
312
|
};
|
|
313
|
+
/** Restore a ProjectBackup. */
|
|
314
|
+
export const backupRequestProjectBackupRestoreV2Experimental = {
|
|
315
|
+
path: "/v2/project-backups/{projectBackupId}/restore",
|
|
316
|
+
method: "POST",
|
|
317
|
+
operationId: "backup-request-project-backup-restore-v2-experimental",
|
|
318
|
+
};
|
|
307
319
|
/** Change the description of a ProjectBackup. */
|
|
308
320
|
export const backupUpdateProjectBackupDescription = {
|
|
309
321
|
path: "/v2/project-backups/{projectBackupId}/description",
|
|
@@ -790,6 +802,12 @@ export const cronjobGetExecution = {
|
|
|
790
802
|
method: "GET",
|
|
791
803
|
operationId: "cronjob-get-execution",
|
|
792
804
|
};
|
|
805
|
+
/** Update a Cronjob's app installation id. */
|
|
806
|
+
export const cronjobReplaceCronjobAppInstallationId = {
|
|
807
|
+
path: "/v2/cronjobs/{cronjobId}/app-installation-id",
|
|
808
|
+
method: "PUT",
|
|
809
|
+
operationId: "cronjob-replace-cronjob-app-installation-id",
|
|
810
|
+
};
|
|
793
811
|
/** Accept a CustomerInvite. */
|
|
794
812
|
export const customerAcceptCustomerInvite = {
|
|
795
813
|
path: "/v2/customer-invites/{customerInviteId}/actions/accept",
|
|
@@ -2674,21 +2692,3 @@ export const verificationVerifyCompany = {
|
|
|
2674
2692
|
method: "POST",
|
|
2675
2693
|
operationId: "verification-verify-company",
|
|
2676
2694
|
};
|
|
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.291.0';
|
|
@@ -444,6 +444,16 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
444
444
|
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathDeprecated | undefined;
|
|
445
445
|
status: string;
|
|
446
446
|
}>;
|
|
447
|
+
/** List database dump's for a ProjectBackup. */
|
|
448
|
+
getProjectBackupDatabaseDumpsV2Experimental: (conf: {
|
|
449
|
+
projectBackupId: string;
|
|
450
|
+
headers?: {
|
|
451
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
452
|
+
"x-access-token"?: string | undefined;
|
|
453
|
+
} | undefined;
|
|
454
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
455
|
+
databases: string[];
|
|
456
|
+
}>;
|
|
447
457
|
/** List paths for a ProjectBackup. */
|
|
448
458
|
getProjectBackupDirectories: (conf: {
|
|
449
459
|
projectBackupId: string;
|
|
@@ -466,16 +476,6 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
466
476
|
size: number;
|
|
467
477
|
target?: string | undefined;
|
|
468
478
|
}>;
|
|
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
|
-
}>;
|
|
479
479
|
};
|
|
480
480
|
declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
481
481
|
/** List Registries belonging to a Project. */
|
|
@@ -1754,6 +1754,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1754
1754
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
1755
1755
|
isBanned?: boolean | undefined;
|
|
1756
1756
|
isInDefaultOfPayment?: boolean | undefined;
|
|
1757
|
+
isMailAddressInvalid?: boolean | undefined;
|
|
1757
1758
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
1758
1759
|
memberCount: number;
|
|
1759
1760
|
name: string;
|
|
@@ -3080,6 +3080,66 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3080
3080
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3081
3081
|
[x: string]: unknown;
|
|
3082
3082
|
}, 429, "application/json">>>;
|
|
3083
|
+
/** List database dump's for a ProjectBackup. */
|
|
3084
|
+
getProjectBackupDatabaseDumpsV2Experimental: (request: {
|
|
3085
|
+
projectBackupId: string;
|
|
3086
|
+
headers?: {
|
|
3087
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3088
|
+
"x-access-token"?: string | undefined;
|
|
3089
|
+
} | undefined;
|
|
3090
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3091
|
+
headers?: Partial<{
|
|
3092
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3093
|
+
}>;
|
|
3094
|
+
} & {
|
|
3095
|
+
pathParameters: {
|
|
3096
|
+
projectBackupId: string;
|
|
3097
|
+
};
|
|
3098
|
+
} & {
|
|
3099
|
+
headers: {
|
|
3100
|
+
"x-access-token"?: string | undefined;
|
|
3101
|
+
} & Partial<{
|
|
3102
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3103
|
+
}>;
|
|
3104
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
3105
|
+
databases: string[];
|
|
3106
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3107
|
+
[x: string]: unknown;
|
|
3108
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3109
|
+
[x: string]: unknown;
|
|
3110
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3111
|
+
[x: string]: unknown;
|
|
3112
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3113
|
+
[x: string]: unknown;
|
|
3114
|
+
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3115
|
+
[x: string]: unknown;
|
|
3116
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3117
|
+
headers?: Partial<{
|
|
3118
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3119
|
+
}>;
|
|
3120
|
+
} & {
|
|
3121
|
+
pathParameters: {
|
|
3122
|
+
projectBackupId: string;
|
|
3123
|
+
};
|
|
3124
|
+
} & {
|
|
3125
|
+
headers: {
|
|
3126
|
+
"x-access-token"?: string | undefined;
|
|
3127
|
+
} & Partial<{
|
|
3128
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3129
|
+
}>;
|
|
3130
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
3131
|
+
databases: string[];
|
|
3132
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3133
|
+
[x: string]: unknown;
|
|
3134
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3135
|
+
[x: string]: unknown;
|
|
3136
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3137
|
+
[x: string]: unknown;
|
|
3138
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3139
|
+
[x: string]: unknown;
|
|
3140
|
+
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3141
|
+
[x: string]: unknown;
|
|
3142
|
+
}, 503, "application/json">>>;
|
|
3083
3143
|
/** List paths for a ProjectBackup. */
|
|
3084
3144
|
getProjectBackupDirectories: (request: {
|
|
3085
3145
|
projectBackupId: string;
|
|
@@ -3172,11 +3232,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3172
3232
|
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3173
3233
|
[x: string]: unknown;
|
|
3174
3234
|
}, 503, "application/json">>>;
|
|
3175
|
-
/**
|
|
3176
|
-
|
|
3235
|
+
/** Restore a ProjectBackup. */
|
|
3236
|
+
requestProjectBackupRestoreV2Experimental: (request: {
|
|
3177
3237
|
projectBackupId: string;
|
|
3178
3238
|
data?: {
|
|
3179
|
-
|
|
3239
|
+
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3240
|
+
pathRestore?: {
|
|
3241
|
+
sourcePaths: string[];
|
|
3242
|
+
clearTargetPath?: boolean | undefined;
|
|
3243
|
+
targetRestorePath?: string | undefined;
|
|
3244
|
+
} | undefined;
|
|
3180
3245
|
} | undefined;
|
|
3181
3246
|
headers?: {
|
|
3182
3247
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -3184,7 +3249,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3184
3249
|
} | undefined;
|
|
3185
3250
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3186
3251
|
data: {
|
|
3187
|
-
|
|
3252
|
+
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3253
|
+
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3188
3254
|
};
|
|
3189
3255
|
} & {
|
|
3190
3256
|
pathParameters: {
|
|
@@ -3210,7 +3276,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3210
3276
|
[x: string]: unknown;
|
|
3211
3277
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3212
3278
|
data: {
|
|
3213
|
-
|
|
3279
|
+
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3280
|
+
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3214
3281
|
};
|
|
3215
3282
|
} & {
|
|
3216
3283
|
pathParameters: {
|
|
@@ -3235,76 +3302,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3235
3302
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3236
3303
|
[x: string]: unknown;
|
|
3237
3304
|
}, 429, "application/json">>>;
|
|
3238
|
-
/**
|
|
3239
|
-
|
|
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: {
|
|
3305
|
+
/** Change the description of a ProjectBackup. */
|
|
3306
|
+
updateProjectBackupDescription: (request: {
|
|
3300
3307
|
projectBackupId: string;
|
|
3301
3308
|
data?: {
|
|
3302
|
-
|
|
3303
|
-
pathRestore?: {
|
|
3304
|
-
sourcePaths: string[];
|
|
3305
|
-
clearTargetPath?: boolean | undefined;
|
|
3306
|
-
targetRestorePath?: string | undefined;
|
|
3307
|
-
} | undefined;
|
|
3309
|
+
description?: string | undefined;
|
|
3308
3310
|
} | undefined;
|
|
3309
3311
|
headers?: {
|
|
3310
3312
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -3312,8 +3314,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3312
3314
|
} | undefined;
|
|
3313
3315
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3314
3316
|
data: {
|
|
3315
|
-
|
|
3316
|
-
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3317
|
+
description?: string | undefined;
|
|
3317
3318
|
};
|
|
3318
3319
|
} & {
|
|
3319
3320
|
pathParameters: {
|
|
@@ -3339,8 +3340,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3339
3340
|
[x: string]: unknown;
|
|
3340
3341
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3341
3342
|
data: {
|
|
3342
|
-
|
|
3343
|
-
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3343
|
+
description?: string | undefined;
|
|
3344
3344
|
};
|
|
3345
3345
|
} & {
|
|
3346
3346
|
pathParameters: {
|
|
@@ -14239,6 +14239,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14239
14239
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
14240
14240
|
isBanned?: boolean | undefined;
|
|
14241
14241
|
isInDefaultOfPayment?: boolean | undefined;
|
|
14242
|
+
isMailAddressInvalid?: boolean | undefined;
|
|
14242
14243
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
14243
14244
|
memberCount: number;
|
|
14244
14245
|
name: string;
|
|
@@ -14283,6 +14284,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14283
14284
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
14284
14285
|
isBanned?: boolean | undefined;
|
|
14285
14286
|
isInDefaultOfPayment?: boolean | undefined;
|
|
14287
|
+
isMailAddressInvalid?: boolean | undefined;
|
|
14286
14288
|
levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
|
|
14287
14289
|
memberCount: number;
|
|
14288
14290
|
name: string;
|
|
@@ -103,8 +103,12 @@ 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
|
+
/** List database dump's for a ProjectBackup. */
|
|
107
|
+
export declare const backupGetProjectBackupDatabaseDumpsV2Experimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
106
108
|
/** List paths for a ProjectBackup. */
|
|
107
109
|
export declare const backupGetProjectBackupDirectories: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
110
|
+
/** Restore a ProjectBackup. */
|
|
111
|
+
export declare const backupRequestProjectBackupRestoreV2Experimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
108
112
|
/** Change the description of a ProjectBackup. */
|
|
109
113
|
export declare const backupUpdateProjectBackupDescription: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDescription.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
110
114
|
/** List Registries belonging to a Project. */
|
|
@@ -267,6 +271,8 @@ export declare const cronjobUpdateCronjob: OpenAPIOperation<RequestType<Simplify
|
|
|
267
271
|
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">>;
|
|
268
272
|
/** Get a CronjobExecution. */
|
|
269
273
|
export declare const cronjobGetExecution: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdExecutionsExecutionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
274
|
+
/** Update a Cronjob's app installation id. */
|
|
275
|
+
export declare const cronjobReplaceCronjobAppInstallationId: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CronjobsCronjobIdAppInstallationId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
270
276
|
/** Accept a CustomerInvite. */
|
|
271
277
|
export declare const customerAcceptCustomerInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomerInvitesCustomerInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
272
278
|
/** List Invites belonging to a Customer. */
|
|
@@ -895,9 +901,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
895
901
|
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">>;
|
|
896
902
|
/** Check if a company exists. */
|
|
897
903
|
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">>;
|
|
@@ -202,10 +202,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
202
202
|
type RequestData = InferredRequestData<typeof descriptors.backupDeleteProjectBackup>;
|
|
203
203
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupDeleteProjectBackup, TStatus>;
|
|
204
204
|
}
|
|
205
|
+
namespace BackupGetProjectBackupDatabaseDumpsV2Experimental {
|
|
206
|
+
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental>;
|
|
207
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, TStatus>;
|
|
208
|
+
}
|
|
205
209
|
namespace BackupGetProjectBackupDirectories {
|
|
206
210
|
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDirectories>;
|
|
207
211
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDirectories, TStatus>;
|
|
208
212
|
}
|
|
213
|
+
namespace BackupRequestProjectBackupRestoreV2Experimental {
|
|
214
|
+
type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental>;
|
|
215
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental, TStatus>;
|
|
216
|
+
}
|
|
209
217
|
namespace BackupUpdateProjectBackupDescription {
|
|
210
218
|
type RequestData = InferredRequestData<typeof descriptors.backupUpdateProjectBackupDescription>;
|
|
211
219
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupUpdateProjectBackupDescription, TStatus>;
|
|
@@ -530,6 +538,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
530
538
|
type RequestData = InferredRequestData<typeof descriptors.cronjobGetExecution>;
|
|
531
539
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobGetExecution, TStatus>;
|
|
532
540
|
}
|
|
541
|
+
namespace CronjobReplaceCronjobAppInstallationId {
|
|
542
|
+
type RequestData = InferredRequestData<typeof descriptors.cronjobReplaceCronjobAppInstallationId>;
|
|
543
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.cronjobReplaceCronjobAppInstallationId, TStatus>;
|
|
544
|
+
}
|
|
533
545
|
namespace CustomerAcceptCustomerInvite {
|
|
534
546
|
type RequestData = InferredRequestData<typeof descriptors.customerAcceptCustomerInvite>;
|
|
535
547
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.customerAcceptCustomerInvite, TStatus>;
|
|
@@ -1786,18 +1798,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1786
1798
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1787
1799
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1788
1800
|
}
|
|
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
|
-
}
|
|
1801
1801
|
}
|
|
1802
1802
|
namespace Components {
|
|
1803
1803
|
namespace Schemas {
|
|
@@ -2171,6 +2171,38 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2171
2171
|
size: number;
|
|
2172
2172
|
target?: string;
|
|
2173
2173
|
}
|
|
2174
|
+
interface BackupProjectBackupRestoreDatabaseRequest {
|
|
2175
|
+
/**
|
|
2176
|
+
* Database backup dump from the backup to restore from.
|
|
2177
|
+
*/
|
|
2178
|
+
databaseBackupDump: string;
|
|
2179
|
+
/**
|
|
2180
|
+
* ID of the target database to restore to.
|
|
2181
|
+
*/
|
|
2182
|
+
targetDatabaseId: string;
|
|
2183
|
+
}
|
|
2184
|
+
interface BackupProjectBackupRestoreDatabase {
|
|
2185
|
+
databaseBackupDump: string;
|
|
2186
|
+
targetDatabaseId: string;
|
|
2187
|
+
}
|
|
2188
|
+
interface BackupProjectBackupRestorePathDeprecated {
|
|
2189
|
+
clearTargetPath: boolean;
|
|
2190
|
+
determinedTargetPath: string;
|
|
2191
|
+
phase: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePhase;
|
|
2192
|
+
sourcePath: string;
|
|
2193
|
+
targetPath?: string;
|
|
2194
|
+
}
|
|
2195
|
+
interface BackupProjectBackupRestorePathRequestDeprecated {
|
|
2196
|
+
/**
|
|
2197
|
+
* 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.
|
|
2198
|
+
*/
|
|
2199
|
+
clearTargetPath?: boolean;
|
|
2200
|
+
sourcePath: string;
|
|
2201
|
+
/**
|
|
2202
|
+
* 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.
|
|
2203
|
+
*/
|
|
2204
|
+
targetPath?: string;
|
|
2205
|
+
}
|
|
2174
2206
|
interface BackupProjectBackupRestorePathRequest {
|
|
2175
2207
|
/**
|
|
2176
2208
|
* 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.
|
|
@@ -2188,6 +2220,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2188
2220
|
sourcePaths: string[];
|
|
2189
2221
|
targetRestorePath?: string;
|
|
2190
2222
|
}
|
|
2223
|
+
type BackupProjectBackupRestorePhase = "running" | "completed";
|
|
2224
|
+
interface BackupProjectBackupRestoreRequest {
|
|
2225
|
+
databaseRestores?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[];
|
|
2226
|
+
pathRestore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest;
|
|
2227
|
+
}
|
|
2228
|
+
interface BackupProjectBackupRestore {
|
|
2229
|
+
databaseRestores?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabase[];
|
|
2230
|
+
pathRestore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath;
|
|
2231
|
+
phase: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePhase;
|
|
2232
|
+
}
|
|
2191
2233
|
interface BackupProjectBackupSchedule {
|
|
2192
2234
|
createdAt?: string;
|
|
2193
2235
|
/**
|
|
@@ -3040,6 +3082,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3040
3082
|
isAllowedToPlaceOrders?: boolean;
|
|
3041
3083
|
isBanned?: boolean;
|
|
3042
3084
|
isInDefaultOfPayment?: boolean;
|
|
3085
|
+
isMailAddressInvalid?: boolean;
|
|
3043
3086
|
levelOfUndeliverableDunningNotice?: "first" | "second";
|
|
3044
3087
|
memberCount: number;
|
|
3045
3088
|
name: string;
|
|
@@ -5643,48 +5686,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5643
5686
|
}
|
|
5644
5687
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5645
5688
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5646
|
-
interface BackupProjectBackupRestoreDatabase {
|
|
5647
|
-
databaseBackupDump: string;
|
|
5648
|
-
targetDatabaseId: string;
|
|
5649
|
-
}
|
|
5650
|
-
interface BackupProjectBackupRestore {
|
|
5651
|
-
databaseRestores?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabase[];
|
|
5652
|
-
pathRestore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath;
|
|
5653
|
-
phase: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePhase;
|
|
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
|
-
}
|
|
5688
5689
|
interface CommonsAddress {
|
|
5689
5690
|
street: string;
|
|
5690
5691
|
houseNumber: string;
|
|
@@ -8292,6 +8293,68 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8292
8293
|
}
|
|
8293
8294
|
}
|
|
8294
8295
|
}
|
|
8296
|
+
namespace V2ProjectBackupsProjectBackupIdDatabaseDumps {
|
|
8297
|
+
namespace Get {
|
|
8298
|
+
namespace Parameters {
|
|
8299
|
+
type Path = {
|
|
8300
|
+
projectBackupId: string;
|
|
8301
|
+
};
|
|
8302
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8303
|
+
type Query = {};
|
|
8304
|
+
}
|
|
8305
|
+
namespace Responses {
|
|
8306
|
+
namespace $200 {
|
|
8307
|
+
namespace Content {
|
|
8308
|
+
interface ApplicationJson {
|
|
8309
|
+
databases: string[];
|
|
8310
|
+
}
|
|
8311
|
+
}
|
|
8312
|
+
}
|
|
8313
|
+
namespace $403 {
|
|
8314
|
+
namespace Content {
|
|
8315
|
+
interface ApplicationJson {
|
|
8316
|
+
[k: string]: unknown;
|
|
8317
|
+
}
|
|
8318
|
+
}
|
|
8319
|
+
}
|
|
8320
|
+
namespace $404 {
|
|
8321
|
+
namespace Content {
|
|
8322
|
+
interface ApplicationJson {
|
|
8323
|
+
[k: string]: unknown;
|
|
8324
|
+
}
|
|
8325
|
+
}
|
|
8326
|
+
}
|
|
8327
|
+
namespace $429 {
|
|
8328
|
+
namespace Content {
|
|
8329
|
+
interface ApplicationJson {
|
|
8330
|
+
[k: string]: unknown;
|
|
8331
|
+
}
|
|
8332
|
+
}
|
|
8333
|
+
}
|
|
8334
|
+
namespace $502 {
|
|
8335
|
+
namespace Content {
|
|
8336
|
+
interface ApplicationJson {
|
|
8337
|
+
[k: string]: unknown;
|
|
8338
|
+
}
|
|
8339
|
+
}
|
|
8340
|
+
}
|
|
8341
|
+
namespace $503 {
|
|
8342
|
+
namespace Content {
|
|
8343
|
+
interface ApplicationJson {
|
|
8344
|
+
[k: string]: unknown;
|
|
8345
|
+
}
|
|
8346
|
+
}
|
|
8347
|
+
}
|
|
8348
|
+
namespace Default {
|
|
8349
|
+
namespace Content {
|
|
8350
|
+
interface ApplicationJson {
|
|
8351
|
+
[k: string]: unknown;
|
|
8352
|
+
}
|
|
8353
|
+
}
|
|
8354
|
+
}
|
|
8355
|
+
}
|
|
8356
|
+
}
|
|
8357
|
+
}
|
|
8295
8358
|
namespace V2ProjectBackupsProjectBackupIdPath {
|
|
8296
8359
|
namespace Get {
|
|
8297
8360
|
namespace Parameters {
|
|
@@ -8354,6 +8417,61 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8354
8417
|
}
|
|
8355
8418
|
}
|
|
8356
8419
|
}
|
|
8420
|
+
namespace V2ProjectBackupsProjectBackupIdRestorePath { }
|
|
8421
|
+
namespace V2ProjectBackupsProjectBackupIdRestore {
|
|
8422
|
+
namespace Post {
|
|
8423
|
+
namespace Parameters {
|
|
8424
|
+
type Path = {
|
|
8425
|
+
projectBackupId: string;
|
|
8426
|
+
};
|
|
8427
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreRequest;
|
|
8428
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8429
|
+
type Query = {};
|
|
8430
|
+
}
|
|
8431
|
+
namespace Responses {
|
|
8432
|
+
namespace $204 {
|
|
8433
|
+
namespace Content {
|
|
8434
|
+
type Empty = unknown;
|
|
8435
|
+
}
|
|
8436
|
+
}
|
|
8437
|
+
namespace $400 {
|
|
8438
|
+
namespace Content {
|
|
8439
|
+
interface ApplicationJson {
|
|
8440
|
+
[k: string]: unknown;
|
|
8441
|
+
}
|
|
8442
|
+
}
|
|
8443
|
+
}
|
|
8444
|
+
namespace $403 {
|
|
8445
|
+
namespace Content {
|
|
8446
|
+
interface ApplicationJson {
|
|
8447
|
+
[k: string]: unknown;
|
|
8448
|
+
}
|
|
8449
|
+
}
|
|
8450
|
+
}
|
|
8451
|
+
namespace $404 {
|
|
8452
|
+
namespace Content {
|
|
8453
|
+
interface ApplicationJson {
|
|
8454
|
+
[k: string]: unknown;
|
|
8455
|
+
}
|
|
8456
|
+
}
|
|
8457
|
+
}
|
|
8458
|
+
namespace $429 {
|
|
8459
|
+
namespace Content {
|
|
8460
|
+
interface ApplicationJson {
|
|
8461
|
+
[k: string]: unknown;
|
|
8462
|
+
}
|
|
8463
|
+
}
|
|
8464
|
+
}
|
|
8465
|
+
namespace Default {
|
|
8466
|
+
namespace Content {
|
|
8467
|
+
interface ApplicationJson {
|
|
8468
|
+
[k: string]: unknown;
|
|
8469
|
+
}
|
|
8470
|
+
}
|
|
8471
|
+
}
|
|
8472
|
+
}
|
|
8473
|
+
}
|
|
8474
|
+
}
|
|
8357
8475
|
namespace V2ProjectBackupsProjectBackupIdDescription {
|
|
8358
8476
|
namespace Patch {
|
|
8359
8477
|
namespace Parameters {
|
|
@@ -12725,6 +12843,56 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12725
12843
|
}
|
|
12726
12844
|
}
|
|
12727
12845
|
}
|
|
12846
|
+
namespace V2CronjobsCronjobIdAppInstallationId {
|
|
12847
|
+
namespace Put {
|
|
12848
|
+
namespace Parameters {
|
|
12849
|
+
type Path = {
|
|
12850
|
+
cronjobId: string;
|
|
12851
|
+
};
|
|
12852
|
+
interface RequestBody {
|
|
12853
|
+
appInstallationId: string;
|
|
12854
|
+
}
|
|
12855
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
12856
|
+
type Query = {};
|
|
12857
|
+
}
|
|
12858
|
+
namespace Responses {
|
|
12859
|
+
namespace $204 {
|
|
12860
|
+
namespace Content {
|
|
12861
|
+
type Empty = unknown;
|
|
12862
|
+
}
|
|
12863
|
+
}
|
|
12864
|
+
namespace $400 {
|
|
12865
|
+
namespace Content {
|
|
12866
|
+
interface ApplicationJson {
|
|
12867
|
+
[k: string]: unknown;
|
|
12868
|
+
}
|
|
12869
|
+
}
|
|
12870
|
+
}
|
|
12871
|
+
namespace $412 {
|
|
12872
|
+
namespace Content {
|
|
12873
|
+
interface ApplicationJson {
|
|
12874
|
+
[k: string]: unknown;
|
|
12875
|
+
}
|
|
12876
|
+
}
|
|
12877
|
+
}
|
|
12878
|
+
namespace $429 {
|
|
12879
|
+
namespace Content {
|
|
12880
|
+
interface ApplicationJson {
|
|
12881
|
+
[k: string]: unknown;
|
|
12882
|
+
}
|
|
12883
|
+
}
|
|
12884
|
+
}
|
|
12885
|
+
namespace Default {
|
|
12886
|
+
namespace Content {
|
|
12887
|
+
interface ApplicationJson {
|
|
12888
|
+
[k: string]: unknown;
|
|
12889
|
+
}
|
|
12890
|
+
}
|
|
12891
|
+
}
|
|
12892
|
+
}
|
|
12893
|
+
}
|
|
12894
|
+
}
|
|
12895
|
+
namespace V2CronjobsCronjobIdAppId { }
|
|
12728
12896
|
namespace V2CustomerInvitesCustomerInviteIdActionsAccept {
|
|
12729
12897
|
namespace Post {
|
|
12730
12898
|
namespace Parameters {
|
|
@@ -28626,172 +28794,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
28626
28794
|
}
|
|
28627
28795
|
}
|
|
28628
28796
|
}
|
|
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
|
-
}
|
|
28796
28797
|
}
|
|
28797
28798
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.291.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.292.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.292.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.292.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": "8fff5e71bb4f6472efe2d11dce2c7e81ca860458"
|
|
84
84
|
}
|