@mittwald/api-client 0.0.0-development-537dd9e-20260105 → 0.0.0-development-32b0259-20260106

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.
@@ -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 database dump's for a ProjectBackup. */
68
- getProjectBackupDatabaseDumps: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumps, baseClient.backup.getProjectBackupDatabaseDumps).getApiResource,
69
67
  /** List paths for a ProjectBackup. */
70
68
  getProjectBackupDirectories: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDirectories, baseClient.backup.getProjectBackupDirectories).getApiResource,
69
+ /** List database dump's for a ProjectBackup. */
70
+ getProjectBackupDatabaseDumps: new ApiCallAsyncResourceFactory(descriptors.backupGetProjectBackupDatabaseDumps, baseClient.backup.getProjectBackupDatabaseDumps).getApiResource,
71
71
  });
72
72
  const buildContainerApi = (baseClient) => ({
73
73
  /** List Registries belonging to a Project. */
@@ -443,6 +443,10 @@ const buildSshsftpUserApi = (baseClient) => ({
443
443
  /** Get an SSHUser. */
444
444
  sshUserGetSshUser: new ApiCallAsyncResourceFactory(descriptors.sshUserGetSshUser, baseClient.sshsftpUser.sshUserGetSshUser).getApiResource,
445
445
  });
446
+ const buildMiscApi = (baseClient) => ({
447
+ /** List valid time zones. */
448
+ ellaneousListTimeZones: new ApiCallAsyncResourceFactory(descriptors.miscellaneousListTimeZones, baseClient.misc.ellaneousListTimeZones).getApiResource,
449
+ });
446
450
  export class MittwaldAPIV2ClientReact {
447
451
  /** The AI hosting provides access to multiple large language and embedding models – GDPR compliant and hosted in Germany. */
448
452
  aiHosting;
@@ -486,6 +490,8 @@ export class MittwaldAPIV2ClientReact {
486
490
  projectFileSystem;
487
491
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
488
492
  sshsftpUser;
493
+ /** API endpoints that are not related to any specific API domain */
494
+ misc;
489
495
  constructor(baseClient) {
490
496
  this.aiHosting = buildAiHostingApi(baseClient);
491
497
  this.app = buildAppApi(baseClient);
@@ -508,6 +514,7 @@ export class MittwaldAPIV2ClientReact {
508
514
  this.project = buildProjectApi(baseClient);
509
515
  this.projectFileSystem = buildProjectFileSystemApi(baseClient);
510
516
  this.sshsftpUser = buildSshsftpUserApi(baseClient);
517
+ this.misc = buildMiscApi(baseClient);
511
518
  }
512
519
  static fromBaseClient(baseClient) {
513
520
  return new MittwaldAPIV2ClientReact(baseClient);
@@ -115,14 +115,16 @@ 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 database dump's for a ProjectBackup. */
119
- getProjectBackupDatabaseDumps: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumps),
120
118
  /** List paths for a ProjectBackup. */
121
119
  getProjectBackupDirectories: this.requestFunctionFactory(descriptors.backupGetProjectBackupDirectories),
122
- /** Restore a ProjectBackup. */
123
- requestProjectBackupRestore: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestore),
120
+ /** Restore a ProjectBackup's path. */
121
+ requestProjectBackupRestorePath: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestorePath),
124
122
  /** Change the description of a ProjectBackup. */
125
123
  updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
124
+ /** List database dump's for a ProjectBackup. */
125
+ getProjectBackupDatabaseDumps: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumps),
126
+ /** Restore a ProjectBackup. */
127
+ requestProjectBackupRestore: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestore),
126
128
  };
127
129
  /** The container API allows you to manage your stacks, containers, volumes and registries. */
128
130
  container = {
@@ -976,6 +978,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
976
978
  verificationVerifyAddress: this.requestFunctionFactory(descriptors.verificationVerifyAddress),
977
979
  /** Check if a company exists. */
978
980
  verificationVerifyCompany: this.requestFunctionFactory(descriptors.verificationVerifyCompany),
981
+ /** List valid time zones. */
982
+ ellaneousListTimeZones: this.requestFunctionFactory(descriptors.miscellaneousListTimeZones),
979
983
  };
980
984
  }
981
985
  export default MittwaldAPIV2Client;
@@ -298,23 +298,17 @@ 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 backupGetProjectBackupDatabaseDumps = {
303
- path: "/v2/project-backups/{projectBackupId}/database-dumps",
304
- method: "GET",
305
- operationId: "backup-get-project-backup-database-dumps",
306
- };
307
301
  /** List paths for a ProjectBackup. */
308
302
  export const backupGetProjectBackupDirectories = {
309
303
  path: "/v2/project-backups/{projectBackupId}/path",
310
304
  method: "GET",
311
305
  operationId: "backup-get-project-backup-directories",
312
306
  };
313
- /** Restore a ProjectBackup. */
314
- export const backupRequestProjectBackupRestore = {
315
- path: "/v2/project-backups/{projectBackupId}/restore",
307
+ /** Restore a ProjectBackup's path. */
308
+ export const backupRequestProjectBackupRestorePath = {
309
+ path: "/v2/project-backups/{projectBackupId}/restore-path",
316
310
  method: "POST",
317
- operationId: "backup-request-project-backup-restore",
311
+ operationId: "backup-request-project-backup-restore-path",
318
312
  };
319
313
  /** Change the description of a ProjectBackup. */
320
314
  export const backupUpdateProjectBackupDescription = {
@@ -2734,3 +2728,21 @@ export const verificationVerifyCompany = {
2734
2728
  method: "POST",
2735
2729
  operationId: "verification-verify-company",
2736
2730
  };
2731
+ /** List valid time zones. */
2732
+ export const miscellaneousListTimeZones = {
2733
+ path: "/v2/time-zones",
2734
+ method: "GET",
2735
+ operationId: "miscellaneous-list-time-zones",
2736
+ };
2737
+ /** List database dump's for a ProjectBackup. */
2738
+ export const backupGetProjectBackupDatabaseDumps = {
2739
+ path: "/v2/project-backups/{projectBackupId}/database-dumps",
2740
+ method: "GET",
2741
+ operationId: "backup-get-project-backup-database-dumps",
2742
+ };
2743
+ /** Restore a ProjectBackup. */
2744
+ export const backupRequestProjectBackupRestore = {
2745
+ path: "/v2/project-backups/{projectBackupId}/restore",
2746
+ method: "POST",
2747
+ operationId: "backup-request-project-backup-restore",
2748
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.278.0';
1
+ export const MittwaldAPIClientVersion = '0.0.0-development-1011833-20260105';
@@ -444,16 +444,6 @@ 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
- getProjectBackupDatabaseDumps: (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
- }>;
457
447
  /** List paths for a ProjectBackup. */
458
448
  getProjectBackupDirectories: (conf: {
459
449
  projectBackupId: string;
@@ -476,6 +466,16 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
476
466
  size: number;
477
467
  target?: string | undefined;
478
468
  }>;
469
+ /** List database dump's for a ProjectBackup. */
470
+ getProjectBackupDatabaseDumps: (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. */
@@ -1576,6 +1576,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1576
1576
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1577
1577
  active: boolean;
1578
1578
  appId: string;
1579
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
1579
1580
  createdAt: string;
1580
1581
  description: string;
1581
1582
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
@@ -1587,6 +1588,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1587
1588
  nextExecutionTime?: string | undefined;
1588
1589
  projectId?: string | undefined;
1589
1590
  shortId: string;
1591
+ timeZone?: string | undefined;
1590
1592
  timeout: number;
1591
1593
  updatedAt: string;
1592
1594
  }>;
@@ -1618,11 +1620,13 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1618
1620
  end?: string | undefined;
1619
1621
  executionEnd?: string | undefined;
1620
1622
  executionStart?: string | undefined;
1623
+ exitCode?: number | undefined;
1621
1624
  id: string;
1622
1625
  logPath?: string | undefined;
1623
1626
  start?: string | undefined;
1624
1627
  status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
1625
1628
  successful: boolean;
1629
+ summary?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobStatusSummary | undefined;
1626
1630
  triggeredBy?: {
1627
1631
  id?: string;
1628
1632
  } | undefined;
@@ -1731,6 +1735,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1731
1735
  isAllowedToPlaceOrders?: boolean | undefined;
1732
1736
  isBanned?: boolean | undefined;
1733
1737
  isInDefaultOfPayment?: boolean | undefined;
1738
+ isMailAddressInvalid?: boolean | undefined;
1734
1739
  levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
1735
1740
  memberCount: number;
1736
1741
  name: string;
@@ -3446,6 +3451,15 @@ declare const buildSshsftpUserApi: (baseClient: MittwaldAPIV2Client) => {
3446
3451
  userName: string;
3447
3452
  }>;
3448
3453
  };
3454
+ declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
3455
+ /** List valid time zones. */
3456
+ ellaneousListTimeZones: (conf?: {
3457
+ headers?: {
3458
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3459
+ "x-access-token"?: string | undefined;
3460
+ } | undefined;
3461
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<string[]>;
3462
+ };
3449
3463
  export declare class MittwaldAPIV2ClientReact {
3450
3464
  /** The AI hosting provides access to multiple large language and embedding models – GDPR compliant and hosted in Germany. */
3451
3465
  readonly aiHosting: ReturnType<typeof buildAiHostingApi>;
@@ -3489,6 +3503,8 @@ export declare class MittwaldAPIV2ClientReact {
3489
3503
  readonly projectFileSystem: ReturnType<typeof buildProjectFileSystemApi>;
3490
3504
  /** The SSH/SFTP User API allows you to manage your SSH/SFTP users within a project. */
3491
3505
  readonly sshsftpUser: ReturnType<typeof buildSshsftpUserApi>;
3506
+ /** API endpoints that are not related to any specific API domain */
3507
+ readonly misc: ReturnType<typeof buildMiscApi>;
3492
3508
  private constructor();
3493
3509
  static fromBaseClient(baseClient: MittwaldAPIV2Client): MittwaldAPIV2ClientReact;
3494
3510
  }
@@ -3080,13 +3080,17 @@ 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
- getProjectBackupDatabaseDumps: (request: {
3083
+ /** List paths for a ProjectBackup. */
3084
+ getProjectBackupDirectories: (request: {
3085
3085
  projectBackupId: string;
3086
3086
  headers?: {
3087
3087
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3088
3088
  "x-access-token"?: string | undefined;
3089
3089
  } | undefined;
3090
+ queryParameters?: {
3091
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3092
+ directory?: string | undefined;
3093
+ } | undefined;
3090
3094
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3091
3095
  headers?: Partial<{
3092
3096
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -3095,6 +3099,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3095
3099
  pathParameters: {
3096
3100
  projectBackupId: string;
3097
3101
  };
3102
+ } & {
3103
+ queryParameters: {
3104
+ directory?: string | undefined;
3105
+ } & Partial<{
3106
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3107
+ }>;
3098
3108
  } & {
3099
3109
  headers: {
3100
3110
  "x-access-token"?: string | undefined;
@@ -3102,7 +3112,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3102
3112
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3103
3113
  }>;
3104
3114
  }, import("@mittwald/api-client-commons").Response<{
3105
- databases: string[];
3115
+ absolutePath: string;
3116
+ isDirectory?: boolean | undefined;
3117
+ isExecutable?: boolean | undefined;
3118
+ isFile?: boolean | undefined;
3119
+ isSymlink?: boolean | undefined;
3120
+ items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[] | undefined;
3121
+ name: string;
3122
+ size: number;
3123
+ target?: string | undefined;
3106
3124
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3107
3125
  [x: string]: unknown;
3108
3126
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -3121,6 +3139,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3121
3139
  pathParameters: {
3122
3140
  projectBackupId: string;
3123
3141
  };
3142
+ } & {
3143
+ queryParameters: {
3144
+ directory?: string | undefined;
3145
+ } & Partial<{
3146
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3147
+ }>;
3124
3148
  } & {
3125
3149
  headers: {
3126
3150
  "x-access-token"?: string | undefined;
@@ -3128,7 +3152,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3128
3152
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3129
3153
  }>;
3130
3154
  }, import("@mittwald/api-client-commons").Response<{
3131
- databases: string[];
3155
+ absolutePath: string;
3156
+ isDirectory?: boolean | undefined;
3157
+ isExecutable?: boolean | undefined;
3158
+ isFile?: boolean | undefined;
3159
+ isSymlink?: boolean | undefined;
3160
+ items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[] | undefined;
3161
+ name: string;
3162
+ size: number;
3163
+ target?: string | undefined;
3132
3164
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3133
3165
  [x: string]: unknown;
3134
3166
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -3140,29 +3172,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3140
3172
  }, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
3141
3173
  [x: string]: unknown;
3142
3174
  }, 503, "application/json">>>;
3143
- /** List paths for a ProjectBackup. */
3144
- getProjectBackupDirectories: (request: {
3175
+ /** Restore a ProjectBackup's path. */
3176
+ requestProjectBackupRestorePath: (request: {
3177
+ data: {
3178
+ sourcePath: string;
3179
+ clearTargetPath?: boolean | undefined;
3180
+ targetPath?: string | undefined;
3181
+ };
3145
3182
  projectBackupId: string;
3146
3183
  headers?: {
3147
3184
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3148
3185
  "x-access-token"?: string | undefined;
3149
3186
  } | undefined;
3150
- queryParameters?: {
3151
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3152
- directory?: string | undefined;
3153
- } | undefined;
3154
3187
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3155
- headers?: Partial<{
3156
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3157
- }>;
3188
+ data: {
3189
+ clearTargetPath?: boolean | undefined;
3190
+ sourcePath: string;
3191
+ targetPath?: string | undefined;
3192
+ };
3158
3193
  } & {
3159
3194
  pathParameters: {
3160
3195
  projectBackupId: string;
3161
3196
  };
3162
3197
  } & {
3163
- queryParameters: {
3164
- directory?: string | undefined;
3165
- } & Partial<{
3198
+ headers?: Partial<{
3166
3199
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3167
3200
  }>;
3168
3201
  } & {
@@ -3171,38 +3204,26 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3171
3204
  } & Partial<{
3172
3205
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3173
3206
  }>;
3174
- }, import("@mittwald/api-client-commons").Response<{
3175
- absolutePath: string;
3176
- isDirectory?: boolean | undefined;
3177
- isExecutable?: boolean | undefined;
3178
- isFile?: boolean | undefined;
3179
- isSymlink?: boolean | undefined;
3180
- items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[] | undefined;
3181
- name: string;
3182
- size: number;
3183
- target?: string | undefined;
3184
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3207
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3208
+ [x: string]: unknown;
3209
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3185
3210
  [x: string]: unknown;
3186
3211
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3187
3212
  [x: string]: unknown;
3188
3213
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3189
3214
  [x: string]: unknown;
3190
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3191
- [x: string]: unknown;
3192
- }, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
3193
- [x: string]: unknown;
3194
- }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3195
- headers?: Partial<{
3196
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3197
- }>;
3215
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3216
+ data: {
3217
+ clearTargetPath?: boolean | undefined;
3218
+ sourcePath: string;
3219
+ targetPath?: string | undefined;
3220
+ };
3198
3221
  } & {
3199
3222
  pathParameters: {
3200
3223
  projectBackupId: string;
3201
3224
  };
3202
3225
  } & {
3203
- queryParameters: {
3204
- directory?: string | undefined;
3205
- } & Partial<{
3226
+ headers?: Partial<{
3206
3227
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3207
3228
  }>;
3208
3229
  } & {
@@ -3211,37 +3232,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3211
3232
  } & Partial<{
3212
3233
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3213
3234
  }>;
3214
- }, import("@mittwald/api-client-commons").Response<{
3215
- absolutePath: string;
3216
- isDirectory?: boolean | undefined;
3217
- isExecutable?: boolean | undefined;
3218
- isFile?: boolean | undefined;
3219
- isSymlink?: boolean | undefined;
3220
- items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[] | undefined;
3221
- name: string;
3222
- size: number;
3223
- target?: string | undefined;
3224
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3235
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3236
+ [x: string]: unknown;
3237
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3225
3238
  [x: string]: unknown;
3226
3239
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3227
3240
  [x: string]: unknown;
3228
3241
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3229
3242
  [x: string]: unknown;
3230
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3231
- [x: string]: unknown;
3232
- }, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
3233
- [x: string]: unknown;
3234
- }, 503, "application/json">>>;
3235
- /** Restore a ProjectBackup. */
3236
- requestProjectBackupRestore: (request: {
3243
+ }, 429, "application/json">>>;
3244
+ /** Change the description of a ProjectBackup. */
3245
+ updateProjectBackupDescription: (request: {
3237
3246
  projectBackupId: string;
3238
3247
  data?: {
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;
3248
+ description?: string | undefined;
3245
3249
  } | undefined;
3246
3250
  headers?: {
3247
3251
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -3249,8 +3253,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3249
3253
  } | undefined;
3250
3254
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3251
3255
  data: {
3252
- databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3253
- pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
3256
+ description?: string | undefined;
3254
3257
  };
3255
3258
  } & {
3256
3259
  pathParameters: {
@@ -3276,8 +3279,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3276
3279
  [x: string]: unknown;
3277
3280
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3278
3281
  data: {
3279
- databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3280
- pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
3282
+ description?: string | undefined;
3281
3283
  };
3282
3284
  } & {
3283
3285
  pathParameters: {
@@ -3302,11 +3304,76 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3302
3304
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3303
3305
  [x: string]: unknown;
3304
3306
  }, 429, "application/json">>>;
3305
- /** Change the description of a ProjectBackup. */
3306
- updateProjectBackupDescription: (request: {
3307
+ /** List database dump's for a ProjectBackup. */
3308
+ getProjectBackupDatabaseDumps: (request: {
3309
+ projectBackupId: string;
3310
+ headers?: {
3311
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3312
+ "x-access-token"?: string | undefined;
3313
+ } | undefined;
3314
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3315
+ headers?: Partial<{
3316
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3317
+ }>;
3318
+ } & {
3319
+ pathParameters: {
3320
+ projectBackupId: string;
3321
+ };
3322
+ } & {
3323
+ headers: {
3324
+ "x-access-token"?: string | undefined;
3325
+ } & Partial<{
3326
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3327
+ }>;
3328
+ }, import("@mittwald/api-client-commons").Response<{
3329
+ databases: string[];
3330
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3331
+ [x: string]: unknown;
3332
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3333
+ [x: string]: unknown;
3334
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3335
+ [x: string]: unknown;
3336
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3337
+ [x: string]: unknown;
3338
+ }, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
3339
+ [x: string]: unknown;
3340
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3341
+ headers?: Partial<{
3342
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3343
+ }>;
3344
+ } & {
3345
+ pathParameters: {
3346
+ projectBackupId: string;
3347
+ };
3348
+ } & {
3349
+ headers: {
3350
+ "x-access-token"?: string | undefined;
3351
+ } & Partial<{
3352
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3353
+ }>;
3354
+ }, import("@mittwald/api-client-commons").Response<{
3355
+ databases: string[];
3356
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3357
+ [x: string]: unknown;
3358
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3359
+ [x: string]: unknown;
3360
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3361
+ [x: string]: unknown;
3362
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3363
+ [x: string]: unknown;
3364
+ }, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
3365
+ [x: string]: unknown;
3366
+ }, 503, "application/json">>>;
3367
+ /** Restore a ProjectBackup. */
3368
+ requestProjectBackupRestore: (request: {
3307
3369
  projectBackupId: string;
3308
3370
  data?: {
3309
- description?: string | undefined;
3371
+ databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3372
+ pathRestore?: {
3373
+ sourcePaths: string[];
3374
+ clearTargetPath?: boolean | undefined;
3375
+ targetRestorePath?: string | undefined;
3376
+ } | undefined;
3310
3377
  } | undefined;
3311
3378
  headers?: {
3312
3379
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -3314,7 +3381,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3314
3381
  } | undefined;
3315
3382
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3316
3383
  data: {
3317
- description?: string | undefined;
3384
+ databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3385
+ pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
3318
3386
  };
3319
3387
  } & {
3320
3388
  pathParameters: {
@@ -3340,7 +3408,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3340
3408
  [x: string]: unknown;
3341
3409
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3342
3410
  data: {
3343
- description?: string | undefined;
3411
+ databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3412
+ pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
3344
3413
  };
3345
3414
  } & {
3346
3415
  pathParameters: {
@@ -12670,8 +12739,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12670
12739
  };
12671
12740
  interval: string;
12672
12741
  timeout: number;
12742
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12673
12743
  email?: string | undefined;
12674
12744
  failedExecutionAlertThreshold?: number | undefined;
12745
+ timeZone?: string | undefined;
12675
12746
  };
12676
12747
  projectId: string;
12677
12748
  headers?: {
@@ -12682,11 +12753,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12682
12753
  data: {
12683
12754
  active: boolean;
12684
12755
  appId: string;
12756
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12685
12757
  description: string;
12686
12758
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
12687
12759
  email?: string | undefined;
12688
12760
  failedExecutionAlertThreshold?: number | undefined;
12689
12761
  interval: string;
12762
+ timeZone?: string | undefined;
12690
12763
  timeout: number;
12691
12764
  };
12692
12765
  } & {
@@ -12715,11 +12788,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12715
12788
  data: {
12716
12789
  active: boolean;
12717
12790
  appId: string;
12791
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12718
12792
  description: string;
12719
12793
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
12720
12794
  email?: string | undefined;
12721
12795
  failedExecutionAlertThreshold?: number | undefined;
12722
12796
  interval: string;
12797
+ timeZone?: string | undefined;
12723
12798
  timeout: number;
12724
12799
  };
12725
12800
  } & {
@@ -12898,6 +12973,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12898
12973
  }, import("@mittwald/api-client-commons").Response<{
12899
12974
  active: boolean;
12900
12975
  appId: string;
12976
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12901
12977
  createdAt: string;
12902
12978
  description: string;
12903
12979
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
@@ -12909,6 +12985,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12909
12985
  nextExecutionTime?: string | undefined;
12910
12986
  projectId?: string | undefined;
12911
12987
  shortId: string;
12988
+ timeZone?: string | undefined;
12912
12989
  timeout: number;
12913
12990
  updatedAt: string;
12914
12991
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -12932,6 +13009,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12932
13009
  }, import("@mittwald/api-client-commons").Response<{
12933
13010
  active: boolean;
12934
13011
  appId: string;
13012
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
12935
13013
  createdAt: string;
12936
13014
  description: string;
12937
13015
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
@@ -12943,6 +13021,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
12943
13021
  nextExecutionTime?: string | undefined;
12944
13022
  projectId?: string | undefined;
12945
13023
  shortId: string;
13024
+ timeZone?: string | undefined;
12946
13025
  timeout: number;
12947
13026
  updatedAt: string;
12948
13027
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -13003,6 +13082,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13003
13082
  cronjobId: string;
13004
13083
  data?: {
13005
13084
  active?: boolean | undefined;
13085
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13006
13086
  description?: string | undefined;
13007
13087
  destination?: {
13008
13088
  interpreter: string;
@@ -13014,6 +13094,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13014
13094
  email?: string | undefined;
13015
13095
  failedExecutionAlertThreshold?: number | undefined;
13016
13096
  interval?: string | undefined;
13097
+ timeZone?: string | undefined;
13017
13098
  timeout?: number | undefined;
13018
13099
  } | undefined;
13019
13100
  headers?: {
@@ -13023,11 +13104,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13023
13104
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
13024
13105
  data: {
13025
13106
  active?: boolean | undefined;
13107
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13026
13108
  description?: string | undefined;
13027
13109
  destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand) | undefined;
13028
13110
  email?: string | undefined;
13029
13111
  failedExecutionAlertThreshold?: number | undefined;
13030
13112
  interval?: string | undefined;
13113
+ timeZone?: string | undefined;
13031
13114
  timeout?: number | undefined;
13032
13115
  };
13033
13116
  } & {
@@ -13055,11 +13138,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13055
13138
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
13056
13139
  data: {
13057
13140
  active?: boolean | undefined;
13141
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13058
13142
  description?: string | undefined;
13059
13143
  destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand) | undefined;
13060
13144
  email?: string | undefined;
13061
13145
  failedExecutionAlertThreshold?: number | undefined;
13062
13146
  interval?: string | undefined;
13147
+ timeZone?: string | undefined;
13063
13148
  timeout?: number | undefined;
13064
13149
  };
13065
13150
  } & {
@@ -13184,11 +13269,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13184
13269
  end?: string | undefined;
13185
13270
  executionEnd?: string | undefined;
13186
13271
  executionStart?: string | undefined;
13272
+ exitCode?: number | undefined;
13187
13273
  id: string;
13188
13274
  logPath?: string | undefined;
13189
13275
  start?: string | undefined;
13190
13276
  status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
13191
13277
  successful: boolean;
13278
+ summary?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobStatusSummary | undefined;
13192
13279
  triggeredBy?: {
13193
13280
  id?: string;
13194
13281
  } | undefined;
@@ -13220,11 +13307,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13220
13307
  end?: string | undefined;
13221
13308
  executionEnd?: string | undefined;
13222
13309
  executionStart?: string | undefined;
13310
+ exitCode?: number | undefined;
13223
13311
  id: string;
13224
13312
  logPath?: string | undefined;
13225
13313
  start?: string | undefined;
13226
13314
  status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
13227
13315
  successful: boolean;
13316
+ summary?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobStatusSummary | undefined;
13228
13317
  triggeredBy?: {
13229
13318
  id?: string;
13230
13319
  } | undefined;
@@ -14194,6 +14283,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14194
14283
  isAllowedToPlaceOrders?: boolean | undefined;
14195
14284
  isBanned?: boolean | undefined;
14196
14285
  isInDefaultOfPayment?: boolean | undefined;
14286
+ isMailAddressInvalid?: boolean | undefined;
14197
14287
  levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
14198
14288
  memberCount: number;
14199
14289
  name: string;
@@ -14238,6 +14328,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14238
14328
  isAllowedToPlaceOrders?: boolean | undefined;
14239
14329
  isBanned?: boolean | undefined;
14240
14330
  isInDefaultOfPayment?: boolean | undefined;
14331
+ isMailAddressInvalid?: boolean | undefined;
14241
14332
  levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
14242
14333
  memberCount: number;
14243
14334
  name: string;
@@ -29579,6 +29670,37 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
29579
29670
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
29580
29671
  [x: string]: unknown;
29581
29672
  }, 429, "application/json">>>;
29673
+ /** List valid time zones. */
29674
+ ellaneousListTimeZones: (request?: {
29675
+ headers?: {
29676
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29677
+ "x-access-token"?: string | undefined;
29678
+ } | undefined;
29679
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
29680
+ headers?: Partial<{
29681
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29682
+ }>;
29683
+ } & {
29684
+ headers: {
29685
+ "x-access-token"?: string | undefined;
29686
+ } & Partial<{
29687
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29688
+ }>;
29689
+ }, import("@mittwald/api-client-commons").Response<string[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
29690
+ [x: string]: unknown;
29691
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
29692
+ headers?: Partial<{
29693
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29694
+ }>;
29695
+ } & {
29696
+ headers: {
29697
+ "x-access-token"?: string | undefined;
29698
+ } & Partial<{
29699
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29700
+ }>;
29701
+ }, import("@mittwald/api-client-commons").Response<string[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
29702
+ [x: string]: unknown;
29703
+ }, 429, "application/json">>>;
29582
29704
  };
29583
29705
  }
29584
29706
  export default MittwaldAPIV2Client;
@@ -103,12 +103,10 @@ 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 backupGetProjectBackupDatabaseDumps: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
108
106
  /** List paths for a ProjectBackup. */
109
107
  export declare const backupGetProjectBackupDirectories: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
110
- /** Restore a ProjectBackup. */
111
- export declare const backupRequestProjectBackupRestore: 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
+ /** Restore a ProjectBackup's path. */
109
+ export declare const backupRequestProjectBackupRestorePath: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestorePath.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
112
110
  /** Change the description of a ProjectBackup. */
113
111
  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">>;
114
112
  /** List Registries belonging to a Project. */
@@ -915,3 +913,9 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
915
913
  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">>;
916
914
  /** Check if a company exists. */
917
915
  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">>;
916
+ /** List valid time zones. */
917
+ export declare const miscellaneousListTimeZones: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2TimeZones.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
918
+ /** List database dump's for a ProjectBackup. */
919
+ export declare const backupGetProjectBackupDatabaseDumps: 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">>;
920
+ /** Restore a ProjectBackup. */
921
+ export declare const backupRequestProjectBackupRestore: 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,17 +202,13 @@ 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 BackupGetProjectBackupDatabaseDumps {
206
- type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDatabaseDumps>;
207
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDatabaseDumps, TStatus>;
208
- }
209
205
  namespace BackupGetProjectBackupDirectories {
210
206
  type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDirectories>;
211
207
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDirectories, TStatus>;
212
208
  }
213
- namespace BackupRequestProjectBackupRestore {
214
- type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestore>;
215
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestore, TStatus>;
209
+ namespace BackupRequestProjectBackupRestorePath {
210
+ type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestorePath>;
211
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestorePath, TStatus>;
216
212
  }
217
213
  namespace BackupUpdateProjectBackupDescription {
218
214
  type RequestData = InferredRequestData<typeof descriptors.backupUpdateProjectBackupDescription>;
@@ -1826,6 +1822,18 @@ export declare namespace MittwaldAPIV2 {
1826
1822
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1827
1823
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1828
1824
  }
1825
+ namespace MiscellaneousListTimeZones {
1826
+ type RequestData = InferredRequestData<typeof descriptors.miscellaneousListTimeZones>;
1827
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.miscellaneousListTimeZones, TStatus>;
1828
+ }
1829
+ namespace BackupGetProjectBackupDatabaseDumps {
1830
+ type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDatabaseDumps>;
1831
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDatabaseDumps, TStatus>;
1832
+ }
1833
+ namespace BackupRequestProjectBackupRestore {
1834
+ type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestore>;
1835
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestore, TStatus>;
1836
+ }
1829
1837
  }
1830
1838
  namespace Components {
1831
1839
  namespace Schemas {
@@ -2199,38 +2207,6 @@ export declare namespace MittwaldAPIV2 {
2199
2207
  size: number;
2200
2208
  target?: string;
2201
2209
  }
2202
- interface BackupProjectBackupRestoreDatabaseRequest {
2203
- /**
2204
- * Database backup dump from the backup to restore from.
2205
- */
2206
- databaseBackupDump: string;
2207
- /**
2208
- * ID of the target database to restore to.
2209
- */
2210
- targetDatabaseId: string;
2211
- }
2212
- interface BackupProjectBackupRestoreDatabase {
2213
- databaseBackupDump: string;
2214
- targetDatabaseId: string;
2215
- }
2216
- interface BackupProjectBackupRestorePathDeprecated {
2217
- clearTargetPath: boolean;
2218
- determinedTargetPath: string;
2219
- phase: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePhase;
2220
- sourcePath: string;
2221
- targetPath?: string;
2222
- }
2223
- interface BackupProjectBackupRestorePathRequestDeprecated {
2224
- /**
2225
- * 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.
2226
- */
2227
- clearTargetPath?: boolean;
2228
- sourcePath: string;
2229
- /**
2230
- * 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.
2231
- */
2232
- targetPath?: string;
2233
- }
2234
2210
  interface BackupProjectBackupRestorePathRequest {
2235
2211
  /**
2236
2212
  * 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.
@@ -2248,16 +2224,6 @@ export declare namespace MittwaldAPIV2 {
2248
2224
  sourcePaths: string[];
2249
2225
  targetRestorePath?: string;
2250
2226
  }
2251
- type BackupProjectBackupRestorePhase = "running" | "completed";
2252
- interface BackupProjectBackupRestoreRequest {
2253
- databaseRestores?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[];
2254
- pathRestore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest;
2255
- }
2256
- interface BackupProjectBackupRestore {
2257
- databaseRestores?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabase[];
2258
- pathRestore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath;
2259
- phase: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePhase;
2260
- }
2261
2227
  interface BackupProjectBackupSchedule {
2262
2228
  createdAt?: string;
2263
2229
  /**
@@ -3003,6 +2969,7 @@ export declare namespace MittwaldAPIV2 {
3003
2969
  interface CronjobCronjob {
3004
2970
  active: boolean;
3005
2971
  appId: string;
2972
+ concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
3006
2973
  createdAt: string;
3007
2974
  description: string;
3008
2975
  destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
@@ -3014,6 +2981,7 @@ export declare namespace MittwaldAPIV2 {
3014
2981
  nextExecutionTime?: string;
3015
2982
  projectId?: string;
3016
2983
  shortId: string;
2984
+ timeZone?: string;
3017
2985
  timeout: number;
3018
2986
  updatedAt: string;
3019
2987
  }
@@ -3032,11 +3000,13 @@ export declare namespace MittwaldAPIV2 {
3032
3000
  * @deprecated
3033
3001
  */
3034
3002
  executionStart?: string;
3003
+ exitCode?: number;
3035
3004
  id: string;
3036
3005
  logPath?: string;
3037
3006
  start?: string;
3038
3007
  status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
3039
3008
  successful: boolean;
3009
+ summary?: MittwaldAPIV2.Components.Schemas.CronjobStatusSummary;
3040
3010
  triggeredBy?: {
3041
3011
  id?: string;
3042
3012
  };
@@ -3048,11 +3018,13 @@ export declare namespace MittwaldAPIV2 {
3048
3018
  interface CronjobCronjobRequest {
3049
3019
  active: boolean;
3050
3020
  appId: string;
3021
+ concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
3051
3022
  description: string;
3052
3023
  destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3053
3024
  email?: string;
3054
3025
  failedExecutionAlertThreshold?: number;
3055
3026
  interval: string;
3027
+ timeZone?: string;
3056
3028
  timeout: number;
3057
3029
  }
3058
3030
  interface CronjobCronjobUrl {
@@ -3094,6 +3066,7 @@ export declare namespace MittwaldAPIV2 {
3094
3066
  isAllowedToPlaceOrders?: boolean;
3095
3067
  isBanned?: boolean;
3096
3068
  isInDefaultOfPayment?: boolean;
3069
+ isMailAddressInvalid?: boolean;
3097
3070
  levelOfUndeliverableDunningNotice?: "first" | "second";
3098
3071
  memberCount: number;
3099
3072
  name: string;
@@ -5749,6 +5722,50 @@ export declare namespace MittwaldAPIV2 {
5749
5722
  }
5750
5723
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
5751
5724
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
5725
+ type CronjobConcurrencyPolicy = "allow" | "forbid" | "replace";
5726
+ type CronjobStatusSummary = "unspecified" | "active" | "complete" | "suspended" | "failed" | "orphaned" | "timeout" | "error";
5727
+ interface BackupProjectBackupRestore {
5728
+ databaseRestores?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabase[];
5729
+ pathRestore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath;
5730
+ phase: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePhase;
5731
+ }
5732
+ interface BackupProjectBackupRestoreDatabase {
5733
+ databaseBackupDump: string;
5734
+ targetDatabaseId: string;
5735
+ }
5736
+ interface BackupProjectBackupRestoreDatabaseRequest {
5737
+ /**
5738
+ * Database backup dump from the backup to restore from.
5739
+ */
5740
+ databaseBackupDump: string;
5741
+ /**
5742
+ * ID of the target database to restore to.
5743
+ */
5744
+ targetDatabaseId: string;
5745
+ }
5746
+ interface BackupProjectBackupRestorePathDeprecated {
5747
+ clearTargetPath: boolean;
5748
+ determinedTargetPath: string;
5749
+ phase: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePhase;
5750
+ sourcePath: string;
5751
+ targetPath?: string;
5752
+ }
5753
+ interface BackupProjectBackupRestorePathRequestDeprecated {
5754
+ /**
5755
+ * 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.
5756
+ */
5757
+ clearTargetPath?: boolean;
5758
+ sourcePath: string;
5759
+ /**
5760
+ * 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.
5761
+ */
5762
+ targetPath?: string;
5763
+ }
5764
+ type BackupProjectBackupRestorePhase = "running" | "completed";
5765
+ interface BackupProjectBackupRestoreRequest {
5766
+ databaseRestores?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[];
5767
+ pathRestore?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest;
5768
+ }
5752
5769
  interface CommonsAddress {
5753
5770
  street: string;
5754
5771
  houseNumber: string;
@@ -5871,7 +5888,7 @@ export declare namespace MittwaldAPIV2 {
5871
5888
  }
5872
5889
  }
5873
5890
  namespace SslValidationError {
5874
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.SslCertificateError;
5891
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors | MittwaldAPIV2.Components.Schemas.SslCertificateError;
5875
5892
  }
5876
5893
  namespace SignupInternalServerError {
5877
5894
  type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
@@ -8343,68 +8360,6 @@ export declare namespace MittwaldAPIV2 {
8343
8360
  }
8344
8361
  }
8345
8362
  }
8346
- namespace V2ProjectBackupsProjectBackupIdDatabaseDumps {
8347
- namespace Get {
8348
- namespace Parameters {
8349
- type Path = {
8350
- projectBackupId: string;
8351
- };
8352
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8353
- type Query = {};
8354
- }
8355
- namespace Responses {
8356
- namespace $200 {
8357
- namespace Content {
8358
- interface ApplicationJson {
8359
- databases: string[];
8360
- }
8361
- }
8362
- }
8363
- namespace $403 {
8364
- namespace Content {
8365
- interface ApplicationJson {
8366
- [k: string]: unknown;
8367
- }
8368
- }
8369
- }
8370
- namespace $404 {
8371
- namespace Content {
8372
- interface ApplicationJson {
8373
- [k: string]: unknown;
8374
- }
8375
- }
8376
- }
8377
- namespace $429 {
8378
- namespace Content {
8379
- interface ApplicationJson {
8380
- [k: string]: unknown;
8381
- }
8382
- }
8383
- }
8384
- namespace $502 {
8385
- namespace Content {
8386
- interface ApplicationJson {
8387
- [k: string]: unknown;
8388
- }
8389
- }
8390
- }
8391
- namespace $503 {
8392
- namespace Content {
8393
- interface ApplicationJson {
8394
- [k: string]: unknown;
8395
- }
8396
- }
8397
- }
8398
- namespace Default {
8399
- namespace Content {
8400
- interface ApplicationJson {
8401
- [k: string]: unknown;
8402
- }
8403
- }
8404
- }
8405
- }
8406
- }
8407
- }
8408
8363
  namespace V2ProjectBackupsProjectBackupIdPath {
8409
8364
  namespace Get {
8410
8365
  namespace Parameters {
@@ -8467,14 +8422,13 @@ export declare namespace MittwaldAPIV2 {
8467
8422
  }
8468
8423
  }
8469
8424
  }
8470
- namespace V2ProjectBackupsProjectBackupIdRestorePath { }
8471
- namespace V2ProjectBackupsProjectBackupIdRestore {
8425
+ namespace V2ProjectBackupsProjectBackupIdRestorePath {
8472
8426
  namespace Post {
8473
8427
  namespace Parameters {
8474
8428
  type Path = {
8475
8429
  projectBackupId: string;
8476
8430
  };
8477
- type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreRequest;
8431
+ type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequestDeprecated;
8478
8432
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8479
8433
  type Query = {};
8480
8434
  }
@@ -12764,11 +12718,13 @@ export declare namespace MittwaldAPIV2 {
12764
12718
  };
12765
12719
  interface RequestBody {
12766
12720
  active?: boolean;
12721
+ concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
12767
12722
  description?: string;
12768
12723
  destination?: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
12769
12724
  email?: string;
12770
12725
  failedExecutionAlertThreshold?: number;
12771
12726
  interval?: string;
12727
+ timeZone?: string;
12772
12728
  timeout?: number;
12773
12729
  }
12774
12730
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
@@ -29160,5 +29116,151 @@ export declare namespace MittwaldAPIV2 {
29160
29116
  }
29161
29117
  }
29162
29118
  }
29119
+ namespace V2TimeZones {
29120
+ namespace Get {
29121
+ namespace Parameters {
29122
+ type Path = {};
29123
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
29124
+ type Query = {};
29125
+ }
29126
+ namespace Responses {
29127
+ namespace $200 {
29128
+ namespace Content {
29129
+ type ApplicationJson = string[];
29130
+ }
29131
+ }
29132
+ namespace $429 {
29133
+ namespace Content {
29134
+ interface ApplicationJson {
29135
+ [k: string]: unknown;
29136
+ }
29137
+ }
29138
+ }
29139
+ namespace Default {
29140
+ namespace Content {
29141
+ interface ApplicationJson {
29142
+ [k: string]: unknown;
29143
+ }
29144
+ }
29145
+ }
29146
+ }
29147
+ }
29148
+ }
29149
+ namespace V2ProjectBackupsProjectBackupIdDatabaseDumps {
29150
+ namespace Get {
29151
+ namespace Parameters {
29152
+ type Path = {
29153
+ projectBackupId: string;
29154
+ };
29155
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
29156
+ type Query = {};
29157
+ }
29158
+ namespace Responses {
29159
+ namespace $200 {
29160
+ namespace Content {
29161
+ interface ApplicationJson {
29162
+ databases: string[];
29163
+ }
29164
+ }
29165
+ }
29166
+ namespace $403 {
29167
+ namespace Content {
29168
+ interface ApplicationJson {
29169
+ [k: string]: unknown;
29170
+ }
29171
+ }
29172
+ }
29173
+ namespace $404 {
29174
+ namespace Content {
29175
+ interface ApplicationJson {
29176
+ [k: string]: unknown;
29177
+ }
29178
+ }
29179
+ }
29180
+ namespace $429 {
29181
+ namespace Content {
29182
+ interface ApplicationJson {
29183
+ [k: string]: unknown;
29184
+ }
29185
+ }
29186
+ }
29187
+ namespace $502 {
29188
+ namespace Content {
29189
+ interface ApplicationJson {
29190
+ [k: string]: unknown;
29191
+ }
29192
+ }
29193
+ }
29194
+ namespace $503 {
29195
+ namespace Content {
29196
+ interface ApplicationJson {
29197
+ [k: string]: unknown;
29198
+ }
29199
+ }
29200
+ }
29201
+ namespace Default {
29202
+ namespace Content {
29203
+ interface ApplicationJson {
29204
+ [k: string]: unknown;
29205
+ }
29206
+ }
29207
+ }
29208
+ }
29209
+ }
29210
+ }
29211
+ namespace V2ProjectBackupsProjectBackupIdRestore {
29212
+ namespace Post {
29213
+ namespace Parameters {
29214
+ type Path = {
29215
+ projectBackupId: string;
29216
+ };
29217
+ type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreRequest;
29218
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
29219
+ type Query = {};
29220
+ }
29221
+ namespace Responses {
29222
+ namespace $204 {
29223
+ namespace Content {
29224
+ type Empty = unknown;
29225
+ }
29226
+ }
29227
+ namespace $400 {
29228
+ namespace Content {
29229
+ interface ApplicationJson {
29230
+ [k: string]: unknown;
29231
+ }
29232
+ }
29233
+ }
29234
+ namespace $403 {
29235
+ namespace Content {
29236
+ interface ApplicationJson {
29237
+ [k: string]: unknown;
29238
+ }
29239
+ }
29240
+ }
29241
+ namespace $404 {
29242
+ namespace Content {
29243
+ interface ApplicationJson {
29244
+ [k: string]: unknown;
29245
+ }
29246
+ }
29247
+ }
29248
+ namespace $429 {
29249
+ namespace Content {
29250
+ interface ApplicationJson {
29251
+ [k: string]: unknown;
29252
+ }
29253
+ }
29254
+ }
29255
+ namespace Default {
29256
+ namespace Content {
29257
+ interface ApplicationJson {
29258
+ [k: string]: unknown;
29259
+ }
29260
+ }
29261
+ }
29262
+ }
29263
+ }
29264
+ }
29163
29265
  }
29164
29266
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.278.0';
1
+ export declare const MittwaldAPIClientVersion = '0.0.0-development-1011833-20260105';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-537dd9e-20260105",
3
+ "version": "0.0.0-development-32b0259-20260106",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -46,11 +46,11 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^0.0.0-development-537dd9e-20260105",
49
+ "@mittwald/api-client-commons": "^0.0.0-development-32b0259-20260106",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^0.0.0-development-537dd9e-20260105",
53
+ "@mittwald/api-code-generator": "^0.0.0-development-32b0259-20260106",
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": "68eeb4e32588fb743211a128a5ae187cc596d7ae"
83
+ "gitHead": "c30ba8cfa79b1dba6e41d423982fc0e09cfe7dc2"
84
84
  }