@mittwald/api-client 4.356.1 → 4.358.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 +0 -2
- package/dist/esm/generated/v2/client.js +0 -4
- package/dist/esm/generated/v2/descriptors.js +0 -12
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +1 -10
- package/dist/types/generated/v2/client.d.ts +6 -130
- package/dist/types/generated/v2/descriptors.d.ts +0 -4
- package/dist/types/generated/v2/types.d.ts +2 -124
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -68,8 +68,6 @@ const buildBackupApi = (baseClient) => ({
|
|
|
68
68
|
getProjectBackupSchedule: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupSchedule, baseClient.backup.getProjectBackupSchedule).getApiResource,
|
|
69
69
|
/** Get a ProjectBackup. */
|
|
70
70
|
getProjectBackup: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackup, baseClient.backup.getProjectBackup).getApiResource,
|
|
71
|
-
/** List database dump's for a ProjectBackup. */
|
|
72
|
-
getProjectBackupDatabaseDumpsV2Experimental: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, baseClient.backup.getProjectBackupDatabaseDumpsV2Experimental).getApiResource,
|
|
73
71
|
/** List paths for a ProjectBackup. */
|
|
74
72
|
getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource,
|
|
75
73
|
});
|
|
@@ -119,14 +119,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
119
119
|
getProjectBackup: this.requestFunctionFactory(descriptors.backupGetProjectBackup),
|
|
120
120
|
/** Delete a ProjectBackup. */
|
|
121
121
|
deleteProjectBackup: this.requestFunctionFactory(descriptors.backupDeleteProjectBackup),
|
|
122
|
-
/** List database dump's for a ProjectBackup. */
|
|
123
|
-
getProjectBackupDatabaseDumpsV2Experimental: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental),
|
|
124
122
|
/** List paths for a ProjectBackup. */
|
|
125
123
|
getProjectBackupDirectories: this.requestFunctionFactory(descriptors.backupGetProjectBackupDirectories),
|
|
126
124
|
/** Update a Backup's expiration time. */
|
|
127
125
|
replaceProjectBackupExpirationTime: this.requestFunctionFactory(descriptors.backupReplaceProjectBackupExpirationTime),
|
|
128
|
-
/** Restore a ProjectBackup. */
|
|
129
|
-
requestProjectBackupRestoreV2Experimental: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestoreV2Experimental),
|
|
130
126
|
/** Change the description of a ProjectBackup. */
|
|
131
127
|
updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
|
|
132
128
|
};
|
|
@@ -310,12 +310,6 @@ export const backupDeleteProjectBackup = {
|
|
|
310
310
|
method: "DELETE",
|
|
311
311
|
operationId: "backup-delete-project-backup",
|
|
312
312
|
};
|
|
313
|
-
/** List database dump's for a ProjectBackup. */
|
|
314
|
-
export const backupGetProjectBackupDatabaseDumpsV2Experimental = {
|
|
315
|
-
path: "/v2/project-backups/{projectBackupId}/database-dumps",
|
|
316
|
-
method: "GET",
|
|
317
|
-
operationId: "backup-get-project-backup-database-dumps-v2-experimental",
|
|
318
|
-
};
|
|
319
313
|
/** List paths for a ProjectBackup. */
|
|
320
314
|
export const backupGetProjectBackupDirectories = {
|
|
321
315
|
path: "/v2/project-backups/{projectBackupId}/path",
|
|
@@ -328,12 +322,6 @@ export const backupReplaceProjectBackupExpirationTime = {
|
|
|
328
322
|
method: "PUT",
|
|
329
323
|
operationId: "backup-replace-project-backup-expiration-time",
|
|
330
324
|
};
|
|
331
|
-
/** Restore a ProjectBackup. */
|
|
332
|
-
export const backupRequestProjectBackupRestoreV2Experimental = {
|
|
333
|
-
path: "/v2/project-backups/{projectBackupId}/restore",
|
|
334
|
-
method: "POST",
|
|
335
|
-
operationId: "backup-request-project-backup-restore-v2-experimental",
|
|
336
|
-
};
|
|
337
325
|
/** Change the description of a ProjectBackup. */
|
|
338
326
|
export const backupUpdateProjectBackupDescription = {
|
|
339
327
|
path: "/v2/project-backups/{projectBackupId}/description",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.357.0';
|
|
@@ -427,6 +427,7 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
427
427
|
withExportsOnly?: boolean | undefined;
|
|
428
428
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
429
429
|
runningRestoresOnly?: boolean | undefined;
|
|
430
|
+
runningBackupsOnly?: boolean | undefined;
|
|
430
431
|
limit?: number | undefined;
|
|
431
432
|
skip?: number | undefined;
|
|
432
433
|
page?: number | undefined;
|
|
@@ -470,16 +471,6 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
470
471
|
restorePath?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathDeprecated | undefined;
|
|
471
472
|
status: string;
|
|
472
473
|
}>;
|
|
473
|
-
/** List database dump's for a ProjectBackup. */
|
|
474
|
-
getProjectBackupDatabaseDumpsV2Experimental: (conf: {
|
|
475
|
-
projectBackupId: string;
|
|
476
|
-
headers?: {
|
|
477
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
478
|
-
"x-access-token"?: string | undefined;
|
|
479
|
-
} | undefined;
|
|
480
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
481
|
-
databases: string[];
|
|
482
|
-
}>;
|
|
483
474
|
/** List paths for a ProjectBackup. */
|
|
484
475
|
getProjectBackupDirectories: (conf: {
|
|
485
476
|
projectBackupId: string;
|
|
@@ -2742,6 +2742,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2742
2742
|
withExportsOnly?: boolean | undefined;
|
|
2743
2743
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
2744
2744
|
runningRestoresOnly?: boolean | undefined;
|
|
2745
|
+
runningBackupsOnly?: boolean | undefined;
|
|
2745
2746
|
limit?: number | undefined;
|
|
2746
2747
|
skip?: number | undefined;
|
|
2747
2748
|
page?: number | undefined;
|
|
@@ -2760,6 +2761,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2760
2761
|
withExportsOnly?: boolean | undefined;
|
|
2761
2762
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
2762
2763
|
runningRestoresOnly?: boolean | undefined;
|
|
2764
|
+
runningBackupsOnly?: boolean | undefined;
|
|
2763
2765
|
limit?: number | undefined;
|
|
2764
2766
|
skip?: number | undefined;
|
|
2765
2767
|
page?: number | undefined;
|
|
@@ -2788,6 +2790,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2788
2790
|
withExportsOnly?: boolean | undefined;
|
|
2789
2791
|
sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
|
|
2790
2792
|
runningRestoresOnly?: boolean | undefined;
|
|
2793
|
+
runningBackupsOnly?: boolean | undefined;
|
|
2791
2794
|
limit?: number | undefined;
|
|
2792
2795
|
skip?: number | undefined;
|
|
2793
2796
|
page?: number | undefined;
|
|
@@ -3196,66 +3199,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3196
3199
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3197
3200
|
[x: string]: unknown;
|
|
3198
3201
|
}, 429, "application/json">>>;
|
|
3199
|
-
/** List database dump's for a ProjectBackup. */
|
|
3200
|
-
getProjectBackupDatabaseDumpsV2Experimental: (request: {
|
|
3201
|
-
projectBackupId: string;
|
|
3202
|
-
headers?: {
|
|
3203
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3204
|
-
"x-access-token"?: string | undefined;
|
|
3205
|
-
} | undefined;
|
|
3206
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3207
|
-
headers?: Partial<{
|
|
3208
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3209
|
-
}>;
|
|
3210
|
-
} & {
|
|
3211
|
-
pathParameters: {
|
|
3212
|
-
projectBackupId: string;
|
|
3213
|
-
};
|
|
3214
|
-
} & {
|
|
3215
|
-
headers: {
|
|
3216
|
-
"x-access-token"?: string | undefined;
|
|
3217
|
-
} & Partial<{
|
|
3218
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3219
|
-
}>;
|
|
3220
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
3221
|
-
databases: string[];
|
|
3222
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3223
|
-
[x: string]: unknown;
|
|
3224
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3225
|
-
[x: string]: unknown;
|
|
3226
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3227
|
-
[x: string]: unknown;
|
|
3228
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3229
|
-
[x: string]: unknown;
|
|
3230
|
-
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3231
|
-
[x: string]: unknown;
|
|
3232
|
-
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3233
|
-
headers?: Partial<{
|
|
3234
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3235
|
-
}>;
|
|
3236
|
-
} & {
|
|
3237
|
-
pathParameters: {
|
|
3238
|
-
projectBackupId: string;
|
|
3239
|
-
};
|
|
3240
|
-
} & {
|
|
3241
|
-
headers: {
|
|
3242
|
-
"x-access-token"?: string | undefined;
|
|
3243
|
-
} & Partial<{
|
|
3244
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3245
|
-
}>;
|
|
3246
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
3247
|
-
databases: string[];
|
|
3248
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3249
|
-
[x: string]: unknown;
|
|
3250
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3251
|
-
[x: string]: unknown;
|
|
3252
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3253
|
-
[x: string]: unknown;
|
|
3254
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3255
|
-
[x: string]: unknown;
|
|
3256
|
-
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3257
|
-
[x: string]: unknown;
|
|
3258
|
-
}, 503, "application/json">>>;
|
|
3259
3202
|
/** List paths for a ProjectBackup. */
|
|
3260
3203
|
getProjectBackupDirectories: (request: {
|
|
3261
3204
|
projectBackupId: string;
|
|
@@ -3411,76 +3354,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3411
3354
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3412
3355
|
[x: string]: unknown;
|
|
3413
3356
|
}, 429, "application/json">>>;
|
|
3414
|
-
/** Restore a ProjectBackup. */
|
|
3415
|
-
requestProjectBackupRestoreV2Experimental: (request: {
|
|
3416
|
-
projectBackupId: string;
|
|
3417
|
-
data?: {
|
|
3418
|
-
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3419
|
-
pathRestore?: {
|
|
3420
|
-
sourcePaths: string[];
|
|
3421
|
-
clearTargetPath?: boolean | undefined;
|
|
3422
|
-
targetRestorePath?: string | undefined;
|
|
3423
|
-
} | undefined;
|
|
3424
|
-
} | undefined;
|
|
3425
|
-
headers?: {
|
|
3426
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3427
|
-
"x-access-token"?: string | undefined;
|
|
3428
|
-
} | undefined;
|
|
3429
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3430
|
-
data: {
|
|
3431
|
-
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3432
|
-
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3433
|
-
};
|
|
3434
|
-
} & {
|
|
3435
|
-
pathParameters: {
|
|
3436
|
-
projectBackupId: string;
|
|
3437
|
-
};
|
|
3438
|
-
} & {
|
|
3439
|
-
headers?: Partial<{
|
|
3440
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3441
|
-
}>;
|
|
3442
|
-
} & {
|
|
3443
|
-
headers: {
|
|
3444
|
-
"x-access-token"?: string | undefined;
|
|
3445
|
-
} & Partial<{
|
|
3446
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3447
|
-
}>;
|
|
3448
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
3449
|
-
[x: string]: unknown;
|
|
3450
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3451
|
-
[x: string]: unknown;
|
|
3452
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3453
|
-
[x: string]: unknown;
|
|
3454
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3455
|
-
[x: string]: unknown;
|
|
3456
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3457
|
-
data: {
|
|
3458
|
-
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3459
|
-
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3460
|
-
};
|
|
3461
|
-
} & {
|
|
3462
|
-
pathParameters: {
|
|
3463
|
-
projectBackupId: string;
|
|
3464
|
-
};
|
|
3465
|
-
} & {
|
|
3466
|
-
headers?: Partial<{
|
|
3467
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3468
|
-
}>;
|
|
3469
|
-
} & {
|
|
3470
|
-
headers: {
|
|
3471
|
-
"x-access-token"?: string | undefined;
|
|
3472
|
-
} & Partial<{
|
|
3473
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3474
|
-
}>;
|
|
3475
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
3476
|
-
[x: string]: unknown;
|
|
3477
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3478
|
-
[x: string]: unknown;
|
|
3479
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3480
|
-
[x: string]: unknown;
|
|
3481
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3482
|
-
[x: string]: unknown;
|
|
3483
|
-
}, 429, "application/json">>>;
|
|
3484
3357
|
/** Change the description of a ProjectBackup. */
|
|
3485
3358
|
updateProjectBackupDescription: (request: {
|
|
3486
3359
|
projectBackupId: string;
|
|
@@ -12318,6 +12191,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12318
12191
|
data?: {
|
|
12319
12192
|
categoryId?: string | undefined;
|
|
12320
12193
|
mainUserId?: string | undefined;
|
|
12194
|
+
messageContent?: string | undefined;
|
|
12321
12195
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
12322
12196
|
relatedTo?: {
|
|
12323
12197
|
aggregate: "user";
|
|
@@ -12374,6 +12248,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12374
12248
|
data: {
|
|
12375
12249
|
categoryId?: string | undefined;
|
|
12376
12250
|
mainUserId?: string | undefined;
|
|
12251
|
+
messageContent?: string | undefined;
|
|
12377
12252
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
12378
12253
|
relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference | undefined;
|
|
12379
12254
|
sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference | undefined;
|
|
@@ -12393,6 +12268,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12393
12268
|
data: {
|
|
12394
12269
|
categoryId?: string | undefined;
|
|
12395
12270
|
mainUserId?: string | undefined;
|
|
12271
|
+
messageContent?: string | undefined;
|
|
12396
12272
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
12397
12273
|
relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference | undefined;
|
|
12398
12274
|
sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference | undefined;
|
|
@@ -107,14 +107,10 @@ export declare const backupUpdateProjectBackupSchedule: OpenAPIOperation<Request
|
|
|
107
107
|
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">>;
|
|
108
108
|
/** Delete a ProjectBackup. */
|
|
109
109
|
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">>;
|
|
110
|
-
/** List database dump's for a ProjectBackup. */
|
|
111
|
-
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">>;
|
|
112
110
|
/** List paths for a ProjectBackup. */
|
|
113
111
|
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">>;
|
|
114
112
|
/** Update a Backup's expiration time. */
|
|
115
113
|
export declare const backupReplaceProjectBackupExpirationTime: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
116
|
-
/** Restore a ProjectBackup. */
|
|
117
|
-
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">>;
|
|
118
114
|
/** Change the description of a ProjectBackup. */
|
|
119
115
|
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">>;
|
|
120
116
|
/** Call pull-image webhook */
|
|
@@ -210,10 +210,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
210
210
|
type RequestData = InferredRequestData<typeof descriptors.backupDeleteProjectBackup>;
|
|
211
211
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupDeleteProjectBackup, TStatus>;
|
|
212
212
|
}
|
|
213
|
-
namespace BackupGetProjectBackupDatabaseDumpsV2Experimental {
|
|
214
|
-
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental>;
|
|
215
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental, TStatus>;
|
|
216
|
-
}
|
|
217
213
|
namespace BackupGetProjectBackupDirectories {
|
|
218
214
|
type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDirectories>;
|
|
219
215
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDirectories, TStatus>;
|
|
@@ -222,10 +218,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
222
218
|
type RequestData = InferredRequestData<typeof descriptors.backupReplaceProjectBackupExpirationTime>;
|
|
223
219
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupReplaceProjectBackupExpirationTime, TStatus>;
|
|
224
220
|
}
|
|
225
|
-
namespace BackupRequestProjectBackupRestoreV2Experimental {
|
|
226
|
-
type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental>;
|
|
227
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental, TStatus>;
|
|
228
|
-
}
|
|
229
221
|
namespace BackupUpdateProjectBackupDescription {
|
|
230
222
|
type RequestData = InferredRequestData<typeof descriptors.backupUpdateProjectBackupDescription>;
|
|
231
223
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupUpdateProjectBackupDescription, TStatus>;
|
|
@@ -8538,6 +8530,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8538
8530
|
withExportsOnly?: boolean;
|
|
8539
8531
|
sortOrder?: MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder;
|
|
8540
8532
|
runningRestoresOnly?: boolean;
|
|
8533
|
+
runningBackupsOnly?: boolean;
|
|
8541
8534
|
limit?: number;
|
|
8542
8535
|
skip?: number;
|
|
8543
8536
|
page?: number;
|
|
@@ -8865,68 +8858,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8865
8858
|
}
|
|
8866
8859
|
}
|
|
8867
8860
|
}
|
|
8868
|
-
namespace V2ProjectBackupsProjectBackupIdDatabaseDumps {
|
|
8869
|
-
namespace Get {
|
|
8870
|
-
namespace Parameters {
|
|
8871
|
-
type Path = {
|
|
8872
|
-
projectBackupId: string;
|
|
8873
|
-
};
|
|
8874
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8875
|
-
type Query = {};
|
|
8876
|
-
}
|
|
8877
|
-
namespace Responses {
|
|
8878
|
-
namespace $200 {
|
|
8879
|
-
namespace Content {
|
|
8880
|
-
interface ApplicationJson {
|
|
8881
|
-
databases: string[];
|
|
8882
|
-
}
|
|
8883
|
-
}
|
|
8884
|
-
}
|
|
8885
|
-
namespace $403 {
|
|
8886
|
-
namespace Content {
|
|
8887
|
-
interface ApplicationJson {
|
|
8888
|
-
[k: string]: unknown;
|
|
8889
|
-
}
|
|
8890
|
-
}
|
|
8891
|
-
}
|
|
8892
|
-
namespace $404 {
|
|
8893
|
-
namespace Content {
|
|
8894
|
-
interface ApplicationJson {
|
|
8895
|
-
[k: string]: unknown;
|
|
8896
|
-
}
|
|
8897
|
-
}
|
|
8898
|
-
}
|
|
8899
|
-
namespace $429 {
|
|
8900
|
-
namespace Content {
|
|
8901
|
-
interface ApplicationJson {
|
|
8902
|
-
[k: string]: unknown;
|
|
8903
|
-
}
|
|
8904
|
-
}
|
|
8905
|
-
}
|
|
8906
|
-
namespace $502 {
|
|
8907
|
-
namespace Content {
|
|
8908
|
-
interface ApplicationJson {
|
|
8909
|
-
[k: string]: unknown;
|
|
8910
|
-
}
|
|
8911
|
-
}
|
|
8912
|
-
}
|
|
8913
|
-
namespace $503 {
|
|
8914
|
-
namespace Content {
|
|
8915
|
-
interface ApplicationJson {
|
|
8916
|
-
[k: string]: unknown;
|
|
8917
|
-
}
|
|
8918
|
-
}
|
|
8919
|
-
}
|
|
8920
|
-
namespace Default {
|
|
8921
|
-
namespace Content {
|
|
8922
|
-
interface ApplicationJson {
|
|
8923
|
-
[k: string]: unknown;
|
|
8924
|
-
}
|
|
8925
|
-
}
|
|
8926
|
-
}
|
|
8927
|
-
}
|
|
8928
|
-
}
|
|
8929
|
-
}
|
|
8930
8861
|
namespace V2ProjectBackupsProjectBackupIdPath {
|
|
8931
8862
|
namespace Get {
|
|
8932
8863
|
namespace Parameters {
|
|
@@ -9049,60 +8980,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
9049
8980
|
}
|
|
9050
8981
|
}
|
|
9051
8982
|
namespace V2ProjectBackupsProjectBackupIdRestorePath { }
|
|
9052
|
-
namespace V2ProjectBackupsProjectBackupIdRestore {
|
|
9053
|
-
namespace Post {
|
|
9054
|
-
namespace Parameters {
|
|
9055
|
-
type Path = {
|
|
9056
|
-
projectBackupId: string;
|
|
9057
|
-
};
|
|
9058
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreRequest;
|
|
9059
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9060
|
-
type Query = {};
|
|
9061
|
-
}
|
|
9062
|
-
namespace Responses {
|
|
9063
|
-
namespace $204 {
|
|
9064
|
-
namespace Content {
|
|
9065
|
-
type Empty = unknown;
|
|
9066
|
-
}
|
|
9067
|
-
}
|
|
9068
|
-
namespace $400 {
|
|
9069
|
-
namespace Content {
|
|
9070
|
-
interface ApplicationJson {
|
|
9071
|
-
[k: string]: unknown;
|
|
9072
|
-
}
|
|
9073
|
-
}
|
|
9074
|
-
}
|
|
9075
|
-
namespace $403 {
|
|
9076
|
-
namespace Content {
|
|
9077
|
-
interface ApplicationJson {
|
|
9078
|
-
[k: string]: unknown;
|
|
9079
|
-
}
|
|
9080
|
-
}
|
|
9081
|
-
}
|
|
9082
|
-
namespace $404 {
|
|
9083
|
-
namespace Content {
|
|
9084
|
-
interface ApplicationJson {
|
|
9085
|
-
[k: string]: unknown;
|
|
9086
|
-
}
|
|
9087
|
-
}
|
|
9088
|
-
}
|
|
9089
|
-
namespace $429 {
|
|
9090
|
-
namespace Content {
|
|
9091
|
-
interface ApplicationJson {
|
|
9092
|
-
[k: string]: unknown;
|
|
9093
|
-
}
|
|
9094
|
-
}
|
|
9095
|
-
}
|
|
9096
|
-
namespace Default {
|
|
9097
|
-
namespace Content {
|
|
9098
|
-
interface ApplicationJson {
|
|
9099
|
-
[k: string]: unknown;
|
|
9100
|
-
}
|
|
9101
|
-
}
|
|
9102
|
-
}
|
|
9103
|
-
}
|
|
9104
|
-
}
|
|
9105
|
-
}
|
|
9106
8983
|
namespace V2ProjectBackupsProjectBackupIdDescription {
|
|
9107
8984
|
namespace Patch {
|
|
9108
8985
|
namespace Parameters {
|
|
@@ -12593,6 +12470,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12593
12470
|
interface RequestBody {
|
|
12594
12471
|
categoryId?: string;
|
|
12595
12472
|
mainUserId?: string;
|
|
12473
|
+
messageContent?: string;
|
|
12596
12474
|
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
12597
12475
|
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
12598
12476
|
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.357.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.358.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.358.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.358.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": "7b8741295bdbe9278c5fddcdf190ec7b427df9ad"
|
|
84
84
|
}
|