@mittwald/api-client 0.0.0-development-ccafe69-20250930 → 0.0.0-development-e648af3-20251016

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.
@@ -116,6 +116,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
116
116
  appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
117
117
  createdAt: string;
118
118
  customDocumentRoot?: string | undefined;
119
+ deletionRequested?: boolean | undefined;
119
120
  description: string;
120
121
  disabled: boolean;
121
122
  id: string;
@@ -155,6 +156,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
155
156
  appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
156
157
  createdAt: string;
157
158
  customDocumentRoot?: string | undefined;
159
+ deletionRequested?: boolean | undefined;
158
160
  description: string;
159
161
  disabled: boolean;
160
162
  id: string;
@@ -2260,7 +2262,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2260
2262
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
2261
2263
  [x: string]: unknown;
2262
2264
  }, 429, "application/json">>>;
2263
- /** Get table of contents for a Project Backup. */
2265
+ /** Get table of contents for a ProjectBackup. */
2264
2266
  getProjectBackupDirectories: (request: {
2265
2267
  projectBackupId: string;
2266
2268
  headers?: {
@@ -2297,7 +2299,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2297
2299
  isExecutable?: boolean | undefined;
2298
2300
  isFile?: boolean | undefined;
2299
2301
  isSymlink?: boolean | undefined;
2300
- items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupDirectory[] | undefined;
2302
+ items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[] | undefined;
2301
2303
  name: string;
2302
2304
  size: number;
2303
2305
  target?: string | undefined;
@@ -2337,7 +2339,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2337
2339
  isExecutable?: boolean | undefined;
2338
2340
  isFile?: boolean | undefined;
2339
2341
  isSymlink?: boolean | undefined;
2340
- items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupDirectory[] | undefined;
2342
+ items?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[] | undefined;
2341
2343
  name: string;
2342
2344
  size: number;
2343
2345
  target?: string | undefined;
@@ -2355,11 +2357,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2355
2357
  /** Restore a ProjectBackup's path. */
2356
2358
  requestProjectBackupRestorePath: (request: {
2357
2359
  data: {
2358
- clearTargetPath: boolean;
2359
- determinedSourcePath: string;
2360
- phase: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupRestorePathPhase;
2361
2360
  sourcePath: string;
2362
- determinedTargetPath?: string | undefined;
2361
+ clearTargetPath?: boolean | undefined;
2363
2362
  targetPath?: string | undefined;
2364
2363
  };
2365
2364
  projectBackupId: string;
@@ -2369,10 +2368,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2369
2368
  } | undefined;
2370
2369
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
2371
2370
  data: {
2372
- clearTargetPath: boolean;
2373
- determinedSourcePath: string;
2374
- determinedTargetPath?: string | undefined;
2375
- phase: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupRestorePathPhase;
2371
+ clearTargetPath?: boolean | undefined;
2376
2372
  sourcePath: string;
2377
2373
  targetPath?: string | undefined;
2378
2374
  };
@@ -2400,10 +2396,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2400
2396
  [x: string]: unknown;
2401
2397
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2402
2398
  data: {
2403
- clearTargetPath: boolean;
2404
- determinedSourcePath: string;
2405
- determinedTargetPath?: string | undefined;
2406
- phase: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupRestorePathPhase;
2399
+ clearTargetPath?: boolean | undefined;
2407
2400
  sourcePath: string;
2408
2401
  targetPath?: string | undefined;
2409
2402
  };
@@ -3668,6 +3661,86 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3668
3661
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3669
3662
  [x: string]: unknown;
3670
3663
  }, 500, "application/json">>>;
3664
+ /** List Volumes belonging to a Stack. */
3665
+ listStackVolumes: (request: {
3666
+ stackId: string;
3667
+ headers?: {
3668
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3669
+ "x-access-token"?: string | undefined;
3670
+ } | undefined;
3671
+ queryParameters?: {
3672
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3673
+ searchTerm?: string | undefined;
3674
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
3675
+ limit?: number | undefined;
3676
+ skip?: number | undefined;
3677
+ page?: number | undefined;
3678
+ } | undefined;
3679
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3680
+ headers?: Partial<{
3681
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3682
+ }>;
3683
+ } & {
3684
+ pathParameters: {
3685
+ stackId: string;
3686
+ };
3687
+ } & {
3688
+ queryParameters: {
3689
+ searchTerm?: string | undefined;
3690
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
3691
+ limit?: number | undefined;
3692
+ skip?: number | undefined;
3693
+ page?: number | undefined;
3694
+ } & Partial<{
3695
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3696
+ }>;
3697
+ } & {
3698
+ headers: {
3699
+ "x-access-token"?: string | undefined;
3700
+ } & Partial<{
3701
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3702
+ }>;
3703
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3704
+ [x: string]: unknown;
3705
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3706
+ [x: string]: unknown;
3707
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3708
+ [x: string]: unknown;
3709
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3710
+ [x: string]: unknown;
3711
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3712
+ headers?: Partial<{
3713
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3714
+ }>;
3715
+ } & {
3716
+ pathParameters: {
3717
+ stackId: string;
3718
+ };
3719
+ } & {
3720
+ queryParameters: {
3721
+ searchTerm?: string | undefined;
3722
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
3723
+ limit?: number | undefined;
3724
+ skip?: number | undefined;
3725
+ page?: number | undefined;
3726
+ } & Partial<{
3727
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3728
+ }>;
3729
+ } & {
3730
+ headers: {
3731
+ "x-access-token"?: string | undefined;
3732
+ } & Partial<{
3733
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3734
+ }>;
3735
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
3736
+ [x: string]: unknown;
3737
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3738
+ [x: string]: unknown;
3739
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3740
+ [x: string]: unknown;
3741
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
3742
+ [x: string]: unknown;
3743
+ }, 500, "application/json">>>;
3671
3744
  /** List Stacks belonging to a Project. */
3672
3745
  listStacks: (request: {
3673
3746
  projectId: string;
@@ -4326,6 +4399,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4326
4399
  }, import("@mittwald/api-client-commons").Response<{
4327
4400
  contractId?: string | undefined;
4328
4401
  contractItemId?: string | undefined;
4402
+ explanation?: string | undefined;
4329
4403
  reason?: string | undefined;
4330
4404
  terminationTargetDate?: string | undefined;
4331
4405
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -4357,6 +4431,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4357
4431
  }, import("@mittwald/api-client-commons").Response<{
4358
4432
  contractId?: string | undefined;
4359
4433
  contractItemId?: string | undefined;
4434
+ explanation?: string | undefined;
4360
4435
  reason?: string | undefined;
4361
4436
  terminationTargetDate?: string | undefined;
4362
4437
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -4488,6 +4563,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4488
4563
  terminateContract: (request: {
4489
4564
  contractId: string;
4490
4565
  data?: {
4566
+ explanation?: string | undefined;
4491
4567
  reason?: string | undefined;
4492
4568
  terminationTargetDate?: string | undefined;
4493
4569
  } | undefined;
@@ -4497,6 +4573,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4497
4573
  } | undefined;
4498
4574
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4499
4575
  data: {
4576
+ explanation?: string | undefined;
4500
4577
  reason?: string | undefined;
4501
4578
  terminationTargetDate?: string | undefined;
4502
4579
  };
@@ -4516,6 +4593,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4516
4593
  }>;
4517
4594
  }, import("@mittwald/api-client-commons").Response<{
4518
4595
  contractId?: string | undefined;
4596
+ explanation?: string | undefined;
4519
4597
  itemsScheduledForTermination?: string[] | undefined;
4520
4598
  reason?: string | undefined;
4521
4599
  terminationTargetDate?: string | undefined;
@@ -4527,6 +4605,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4527
4605
  [x: string]: unknown;
4528
4606
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4529
4607
  data: {
4608
+ explanation?: string | undefined;
4530
4609
  reason?: string | undefined;
4531
4610
  terminationTargetDate?: string | undefined;
4532
4611
  };
@@ -4546,6 +4625,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4546
4625
  }>;
4547
4626
  }, import("@mittwald/api-client-commons").Response<{
4548
4627
  contractId?: string | undefined;
4628
+ explanation?: string | undefined;
4549
4629
  itemsScheduledForTermination?: string[] | undefined;
4550
4630
  reason?: string | undefined;
4551
4631
  terminationTargetDate?: string | undefined;
@@ -5352,6 +5432,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5352
5432
  paymentSettings?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoicePaymentSettings | undefined;
5353
5433
  pdfId: string;
5354
5434
  recipient: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceRecipient;
5435
+ reissuedBy?: string | undefined;
5355
5436
  status: "NEW" | "CONFIRMED" | "DENIED" | "PAID" | "PARTIALLY_PAID" | "OVERPAID";
5356
5437
  totalGross: number;
5357
5438
  totalNet: number;
@@ -5394,6 +5475,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5394
5475
  paymentSettings?: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoicePaymentSettings | undefined;
5395
5476
  pdfId: string;
5396
5477
  recipient: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceRecipient;
5478
+ reissuedBy?: string | undefined;
5397
5479
  status: "NEW" | "CONFIRMED" | "DENIED" | "PAID" | "PARTIALLY_PAID" | "OVERPAID";
5398
5480
  totalGross: number;
5399
5481
  totalNet: number;
@@ -5752,12 +5834,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5752
5834
  } | undefined;
5753
5835
  queryParameters?: {
5754
5836
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5755
- limit?: number | undefined;
5756
- skip?: number | undefined;
5757
- page?: number | undefined;
5758
5837
  includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5759
5838
  excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5760
5839
  templateNames?: string[] | undefined;
5840
+ limit?: number | undefined;
5841
+ skip?: number | undefined;
5842
+ page?: number | undefined;
5761
5843
  } | undefined;
5762
5844
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5763
5845
  headers?: Partial<{
@@ -5765,12 +5847,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5765
5847
  }>;
5766
5848
  } & {
5767
5849
  queryParameters: {
5768
- limit?: number | undefined;
5769
- skip?: number | undefined;
5770
- page?: number | undefined;
5771
5850
  includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5772
5851
  excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5773
5852
  templateNames?: string[] | undefined;
5853
+ limit?: number | undefined;
5854
+ skip?: number | undefined;
5855
+ page?: number | undefined;
5774
5856
  } & Partial<{
5775
5857
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5776
5858
  }>;
@@ -5788,12 +5870,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5788
5870
  }>;
5789
5871
  } & {
5790
5872
  queryParameters: {
5791
- limit?: number | undefined;
5792
- skip?: number | undefined;
5793
- page?: number | undefined;
5794
5873
  includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5795
5874
  excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5796
5875
  templateNames?: string[] | undefined;
5876
+ limit?: number | undefined;
5877
+ skip?: number | undefined;
5878
+ page?: number | undefined;
5797
5879
  } & Partial<{
5798
5880
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5799
5881
  }>;
@@ -8107,7 +8189,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8107
8189
  domain: string;
8108
8190
  id: string;
8109
8191
  };
8110
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8192
+ chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
8111
8193
  consentedScopes: string[];
8112
8194
  contributorId: string;
8113
8195
  contributorName: string;
@@ -8147,7 +8229,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
8147
8229
  domain: string;
8148
8230
  id: string;
8149
8231
  };
8150
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
8232
+ chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
8151
8233
  consentedScopes: string[];
8152
8234
  contributorId: string;
8153
8235
  contributorName: string;
@@ -9136,7 +9218,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9136
9218
  domain: string;
9137
9219
  id: string;
9138
9220
  };
9139
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
9221
+ chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
9140
9222
  consentedScopes: string[];
9141
9223
  contributorId: string;
9142
9224
  contributorName: string;
@@ -9177,7 +9259,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9177
9259
  domain: string;
9178
9260
  id: string;
9179
9261
  };
9180
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
9262
+ chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
9181
9263
  consentedScopes: string[];
9182
9264
  contributorId: string;
9183
9265
  contributorName: string;
@@ -9227,7 +9309,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9227
9309
  domain: string;
9228
9310
  id: string;
9229
9311
  };
9230
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
9312
+ chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
9231
9313
  consentedScopes: string[];
9232
9314
  contributorId: string;
9233
9315
  contributorName: string;
@@ -9268,7 +9350,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
9268
9350
  domain: string;
9269
9351
  id: string;
9270
9352
  };
9271
- chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
9353
+ chargeability: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
9272
9354
  consentedScopes: string[];
9273
9355
  contributorId: string;
9274
9356
  contributorName: string;
@@ -11706,7 +11788,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11706
11788
  description: string;
11707
11789
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
11708
11790
  email?: string | undefined;
11709
- failedExecutionAlertThreshold?: number | undefined;
11791
+ failedExecutionAlertThreshold: number;
11710
11792
  id: string;
11711
11793
  interval: string;
11712
11794
  latestExecution?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution | undefined;
@@ -11740,7 +11822,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
11740
11822
  description: string;
11741
11823
  destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
11742
11824
  email?: string | undefined;
11743
- failedExecutionAlertThreshold?: number | undefined;
11825
+ failedExecutionAlertThreshold: number;
11744
11826
  id: string;
11745
11827
  interval: string;
11746
11828
  latestExecution?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution | undefined;
@@ -13254,6 +13336,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13254
13336
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
13255
13337
  limit?: number | undefined;
13256
13338
  skip?: number | undefined;
13339
+ page?: number | undefined;
13257
13340
  } | undefined;
13258
13341
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
13259
13342
  headers?: Partial<{
@@ -13263,6 +13346,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13263
13346
  queryParameters: {
13264
13347
  limit?: number | undefined;
13265
13348
  skip?: number | undefined;
13349
+ page?: number | undefined;
13266
13350
  } & Partial<{
13267
13351
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
13268
13352
  }>;
@@ -13286,6 +13370,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13286
13370
  queryParameters: {
13287
13371
  limit?: number | undefined;
13288
13372
  skip?: number | undefined;
13373
+ page?: number | undefined;
13289
13374
  } & Partial<{
13290
13375
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
13291
13376
  }>;
@@ -13312,6 +13397,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13312
13397
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
13313
13398
  limit?: number | undefined;
13314
13399
  skip?: number | undefined;
13400
+ page?: number | undefined;
13315
13401
  hasExpiry?: boolean | undefined;
13316
13402
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
13317
13403
  } | undefined;
@@ -13323,6 +13409,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13323
13409
  queryParameters: {
13324
13410
  limit?: number | undefined;
13325
13411
  skip?: number | undefined;
13412
+ page?: number | undefined;
13326
13413
  hasExpiry?: boolean | undefined;
13327
13414
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
13328
13415
  } & Partial<{
@@ -13348,6 +13435,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13348
13435
  queryParameters: {
13349
13436
  limit?: number | undefined;
13350
13437
  skip?: number | undefined;
13438
+ page?: number | undefined;
13351
13439
  hasExpiry?: boolean | undefined;
13352
13440
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
13353
13441
  } & Partial<{
@@ -15070,6 +15158,79 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
15070
15158
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
15071
15159
  [x: string]: unknown;
15072
15160
  }, 429, "application/json">>>;
15161
+ /** Copy a MySQLDatabase with a MySQLUser. */
15162
+ copyMysqlDatabase: (request: {
15163
+ data: {
15164
+ description: string;
15165
+ user: {
15166
+ accessLevel: "full" | "readonly";
15167
+ password: string;
15168
+ accessIpMask?: string | undefined;
15169
+ externalAccess?: boolean | undefined;
15170
+ };
15171
+ };
15172
+ mysqlDatabaseId: string;
15173
+ headers?: {
15174
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
15175
+ "x-access-token"?: string | undefined;
15176
+ } | undefined;
15177
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
15178
+ data: {
15179
+ description: string;
15180
+ user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
15181
+ };
15182
+ } & {
15183
+ pathParameters: {
15184
+ mysqlDatabaseId: string;
15185
+ };
15186
+ } & {
15187
+ headers?: Partial<{
15188
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
15189
+ }>;
15190
+ } & {
15191
+ headers: {
15192
+ "x-access-token"?: string | undefined;
15193
+ } & Partial<{
15194
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
15195
+ }>;
15196
+ }, import("@mittwald/api-client-commons").Response<{
15197
+ id: string;
15198
+ userId: string;
15199
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
15200
+ [x: string]: unknown;
15201
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
15202
+ [x: string]: unknown;
15203
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
15204
+ [x: string]: unknown;
15205
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
15206
+ data: {
15207
+ description: string;
15208
+ user: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
15209
+ };
15210
+ } & {
15211
+ pathParameters: {
15212
+ mysqlDatabaseId: string;
15213
+ };
15214
+ } & {
15215
+ headers?: Partial<{
15216
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
15217
+ }>;
15218
+ } & {
15219
+ headers: {
15220
+ "x-access-token"?: string | undefined;
15221
+ } & Partial<{
15222
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
15223
+ }>;
15224
+ }, import("@mittwald/api-client-commons").Response<{
15225
+ id: string;
15226
+ userId: string;
15227
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
15228
+ [x: string]: unknown;
15229
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
15230
+ [x: string]: unknown;
15231
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
15232
+ [x: string]: unknown;
15233
+ }, 429, "application/json">>>;
15073
15234
  };
15074
15235
  /** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
15075
15236
  readonly domain: {
@@ -23382,6 +23543,69 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23382
23543
  }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23383
23544
  [x: string]: unknown;
23384
23545
  }, 429, "application/json">>>;
23546
+ /** Create an export of unlocked leads for the given customerId. */
23547
+ leadfyndrCreateLeadsExport: (request: {
23548
+ data: {
23549
+ exportAllLeads: boolean;
23550
+ fieldKeys: ("domain" | "potential" | "performance" | "generalLook" | "companyName" | "emails" | "phoneNumbers" | "address" | "employeeCount" | "revenue" | "a-record" | "nameserver" | "mailserver" | "techStack")[];
23551
+ };
23552
+ customerId: string;
23553
+ headers?: {
23554
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23555
+ } | undefined;
23556
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23557
+ data: {
23558
+ exportAllLeads: boolean;
23559
+ fieldKeys: ("domain" | "potential" | "performance" | "generalLook" | "companyName" | "emails" | "phoneNumbers" | "address" | "employeeCount" | "revenue" | "a-record" | "nameserver" | "mailserver" | "techStack")[];
23560
+ };
23561
+ } & {
23562
+ pathParameters: {
23563
+ customerId: string;
23564
+ };
23565
+ } & {
23566
+ headers?: Partial<{
23567
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23568
+ }>;
23569
+ }, import("@mittwald/api-client-commons").Response<{
23570
+ contentBase64: string;
23571
+ exportId: string;
23572
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<string, 200, "text/csv"> | import("@mittwald/api-client-commons").Response<{
23573
+ [x: string]: unknown;
23574
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23575
+ [x: string]: unknown;
23576
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23577
+ [x: string]: unknown;
23578
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23579
+ [x: string]: unknown;
23580
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23581
+ [x: string]: unknown;
23582
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23583
+ data: {
23584
+ exportAllLeads: boolean;
23585
+ fieldKeys: ("domain" | "potential" | "performance" | "generalLook" | "companyName" | "emails" | "phoneNumbers" | "address" | "employeeCount" | "revenue" | "a-record" | "nameserver" | "mailserver" | "techStack")[];
23586
+ };
23587
+ } & {
23588
+ pathParameters: {
23589
+ customerId: string;
23590
+ };
23591
+ } & {
23592
+ headers?: Partial<{
23593
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23594
+ }>;
23595
+ }, import("@mittwald/api-client-commons").Response<{
23596
+ contentBase64: string;
23597
+ exportId: string;
23598
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<string, 200, "text/csv"> | import("@mittwald/api-client-commons").Response<{
23599
+ [x: string]: unknown;
23600
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23601
+ [x: string]: unknown;
23602
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23603
+ [x: string]: unknown;
23604
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23605
+ [x: string]: unknown;
23606
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
23607
+ [x: string]: unknown;
23608
+ }, 429, "application/json">>>;
23385
23609
  /** Get cities in DACH. */
23386
23610
  leadfyndrGetCities: (request: {
23387
23611
  queryParameters: {
@@ -23614,6 +23838,73 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23614
23838
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23615
23839
  [x: string]: unknown;
23616
23840
  }, 429, "application/json">>>;
23841
+ /** Get unlocked leads export history for the given customerId. */
23842
+ leadfyndrGetLeadsExportHistory: (request: {
23843
+ customerId: string;
23844
+ headers?: {
23845
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23846
+ } | undefined;
23847
+ queryParameters?: {
23848
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
23849
+ limit?: number | undefined;
23850
+ skip?: number | undefined;
23851
+ page?: number | undefined;
23852
+ sort?: "exportedAt" | undefined;
23853
+ order?: "asc" | "desc" | undefined;
23854
+ } | undefined;
23855
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
23856
+ headers?: Partial<{
23857
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23858
+ }>;
23859
+ } & {
23860
+ pathParameters: {
23861
+ customerId: string;
23862
+ };
23863
+ } & {
23864
+ queryParameters: {
23865
+ limit?: number | undefined;
23866
+ skip?: number | undefined;
23867
+ page?: number | undefined;
23868
+ sort?: "exportedAt" | undefined;
23869
+ order?: "asc" | "desc" | undefined;
23870
+ } & Partial<{
23871
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23872
+ }>;
23873
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExport[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23874
+ [x: string]: unknown;
23875
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23876
+ [x: string]: unknown;
23877
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23878
+ [x: string]: unknown;
23879
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23880
+ [x: string]: unknown;
23881
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
23882
+ headers?: Partial<{
23883
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23884
+ }>;
23885
+ } & {
23886
+ pathParameters: {
23887
+ customerId: string;
23888
+ };
23889
+ } & {
23890
+ queryParameters: {
23891
+ limit?: number | undefined;
23892
+ skip?: number | undefined;
23893
+ page?: number | undefined;
23894
+ sort?: "exportedAt" | undefined;
23895
+ order?: "asc" | "desc" | undefined;
23896
+ } & Partial<{
23897
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23898
+ }>;
23899
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExport[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
23900
+ [x: string]: unknown;
23901
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
23902
+ [x: string]: unknown;
23903
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
23904
+ [x: string]: unknown;
23905
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23906
+ [x: string]: unknown;
23907
+ }, 429, "application/json">>>;
23617
23908
  /** Get a detail of a unlocked lead. Organisation can unlock leads. */
23618
23909
  leadfyndrGetUnlockedLead: (request: {
23619
23910
  leadId: string;
@@ -25394,6 +25685,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25394
25685
  clusterId?: string | undefined;
25395
25686
  createdAt: string;
25396
25687
  customerId: string;
25688
+ deletionRequested?: boolean | undefined;
25397
25689
  description: string;
25398
25690
  directories: {
25399
25691
  [k: string]: string;
@@ -25443,6 +25735,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25443
25735
  clusterId?: string | undefined;
25444
25736
  createdAt: string;
25445
25737
  customerId: string;
25738
+ deletionRequested?: boolean | undefined;
25446
25739
  description: string;
25447
25740
  directories: {
25448
25741
  [k: string]: string;
@@ -26088,6 +26381,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26088
26381
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
26089
26382
  limit?: number | undefined;
26090
26383
  skip?: number | undefined;
26384
+ page?: number | undefined;
26091
26385
  } | undefined;
26092
26386
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
26093
26387
  headers?: Partial<{
@@ -26097,6 +26391,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26097
26391
  queryParameters: {
26098
26392
  limit?: number | undefined;
26099
26393
  skip?: number | undefined;
26394
+ page?: number | undefined;
26100
26395
  } & Partial<{
26101
26396
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26102
26397
  }>;
@@ -26120,6 +26415,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26120
26415
  queryParameters: {
26121
26416
  limit?: number | undefined;
26122
26417
  skip?: number | undefined;
26418
+ page?: number | undefined;
26123
26419
  } & Partial<{
26124
26420
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
26125
26421
  }>;
@@ -26146,6 +26442,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26146
26442
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
26147
26443
  limit?: number | undefined;
26148
26444
  skip?: number | undefined;
26445
+ page?: number | undefined;
26149
26446
  hasExpiry?: boolean | undefined;
26150
26447
  isInherited?: boolean | undefined;
26151
26448
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
@@ -26158,6 +26455,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26158
26455
  queryParameters: {
26159
26456
  limit?: number | undefined;
26160
26457
  skip?: number | undefined;
26458
+ page?: number | undefined;
26161
26459
  hasExpiry?: boolean | undefined;
26162
26460
  isInherited?: boolean | undefined;
26163
26461
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
@@ -26184,6 +26482,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
26184
26482
  queryParameters: {
26185
26483
  limit?: number | undefined;
26186
26484
  skip?: number | undefined;
26485
+ page?: number | undefined;
26187
26486
  hasExpiry?: boolean | undefined;
26188
26487
  isInherited?: boolean | undefined;
26189
26488
  role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;