@mittwald/api-client 0.0.0-development-e87cbeb-20251001 → 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.
@@ -218,6 +218,10 @@ export declare namespace MittwaldAPIV2 {
218
218
  type RequestData = InferredRequestData<typeof descriptors.containerListServices>;
219
219
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListServices, TStatus>;
220
220
  }
221
+ namespace ContainerListStackVolumes {
222
+ type RequestData = InferredRequestData<typeof descriptors.containerListStackVolumes>;
223
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListStackVolumes, TStatus>;
224
+ }
221
225
  namespace ContainerListStacks {
222
226
  type RequestData = InferredRequestData<typeof descriptors.containerListStacks>;
223
227
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListStacks, TStatus>;
@@ -1050,6 +1054,10 @@ export declare namespace MittwaldAPIV2 {
1050
1054
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrCreateLeadFyndrAccessRequest>;
1051
1055
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrCreateLeadFyndrAccessRequest, TStatus>;
1052
1056
  }
1057
+ namespace LeadfyndrCreateLeadsExport {
1058
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrCreateLeadsExport>;
1059
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrCreateLeadsExport, TStatus>;
1060
+ }
1053
1061
  namespace LeadfyndrGetCities {
1054
1062
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetCities>;
1055
1063
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetCities, TStatus>;
@@ -1066,6 +1074,10 @@ export declare namespace MittwaldAPIV2 {
1066
1074
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetLead>;
1067
1075
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetLead, TStatus>;
1068
1076
  }
1077
+ namespace LeadfyndrGetLeadsExportHistory {
1078
+ type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetLeadsExportHistory>;
1079
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetLeadsExportHistory, TStatus>;
1080
+ }
1069
1081
  namespace LeadfyndrGetUnlockedLead {
1070
1082
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetUnlockedLead>;
1071
1083
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetUnlockedLead, TStatus>;
@@ -1730,13 +1742,9 @@ export declare namespace MittwaldAPIV2 {
1730
1742
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1731
1743
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1732
1744
  }
1733
- namespace LeadfyndrGetLeadsExportHistory {
1734
- type RequestData = InferredRequestData<typeof descriptors.leadfyndrGetLeadsExportHistory>;
1735
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrGetLeadsExportHistory, TStatus>;
1736
- }
1737
- namespace LeadfyndrCreateLeadsExport {
1738
- type RequestData = InferredRequestData<typeof descriptors.leadfyndrCreateLeadsExport>;
1739
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrCreateLeadsExport, TStatus>;
1745
+ namespace DatabaseCopyMysqlDatabase {
1746
+ type RequestData = InferredRequestData<typeof descriptors.databaseCopyMysqlDatabase>;
1747
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseCopyMysqlDatabase, TStatus>;
1740
1748
  }
1741
1749
  }
1742
1750
  namespace Components {
@@ -1804,6 +1812,7 @@ export declare namespace MittwaldAPIV2 {
1804
1812
  appVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
1805
1813
  createdAt: string;
1806
1814
  customDocumentRoot?: string;
1815
+ deletionRequested?: boolean;
1807
1816
  description: string;
1808
1817
  disabled: boolean;
1809
1818
  id: string;
@@ -2027,9 +2036,20 @@ export declare namespace MittwaldAPIV2 {
2027
2036
  sha256Checksum?: string;
2028
2037
  withPassword: boolean;
2029
2038
  }
2039
+ interface BackupProjectBackupPath {
2040
+ absolutePath: string;
2041
+ isDirectory?: boolean;
2042
+ isExecutable?: boolean;
2043
+ isFile?: boolean;
2044
+ isSymlink?: boolean;
2045
+ items?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[];
2046
+ name: string;
2047
+ size: number;
2048
+ target?: string;
2049
+ }
2030
2050
  interface BackupProjectBackupRestorePathRequest {
2031
2051
  /**
2032
- * 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 must be a directory
2052
+ * 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.
2033
2053
  */
2034
2054
  clearTargetPath?: boolean;
2035
2055
  sourcePath: string;
@@ -2111,6 +2131,10 @@ export declare namespace MittwaldAPIV2 {
2111
2131
  *
2112
2132
  */
2113
2133
  descriptionChangeType?: "FEATURE_SET_MODIFIED" | "FEATURE_SET_UNCHANGED";
2134
+ /**
2135
+ * stop extension variant from being booked
2136
+ */
2137
+ isBookingStopped?: boolean;
2114
2138
  /**
2115
2139
  * Key that needs to be unique in Variant.
2116
2140
  */
@@ -2458,6 +2482,7 @@ export declare namespace MittwaldAPIV2 {
2458
2482
  * Indicates whether the User is allowed to cancel the Termination.
2459
2483
  */
2460
2484
  cancellationForbidden?: boolean;
2485
+ explanation?: string;
2461
2486
  reason?: string;
2462
2487
  scheduledAtDate: string;
2463
2488
  scheduledByUserId?: string;
@@ -2747,7 +2772,7 @@ export declare namespace MittwaldAPIV2 {
2747
2772
  description: string;
2748
2773
  destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
2749
2774
  email?: string;
2750
- failedExecutionAlertThreshold?: number;
2775
+ failedExecutionAlertThreshold: number;
2751
2776
  id: string;
2752
2777
  interval: string;
2753
2778
  latestExecution?: MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution;
@@ -3333,7 +3358,7 @@ export declare namespace MittwaldAPIV2 {
3333
3358
  domain: string;
3334
3359
  id: string;
3335
3360
  };
3336
- chargeability?: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
3361
+ chargeability: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
3337
3362
  consentedScopes: string[];
3338
3363
  contributorId: string;
3339
3364
  contributorName: string;
@@ -3353,6 +3378,7 @@ export declare namespace MittwaldAPIV2 {
3353
3378
  interface MarketplaceExtensionInstanceChargeability {
3354
3379
  isChargeable: boolean;
3355
3380
  reasons: {
3381
+ isNonChargeableCustomer: boolean;
3356
3382
  isOwnExtension: boolean;
3357
3383
  };
3358
3384
  }
@@ -3834,7 +3860,7 @@ export declare namespace MittwaldAPIV2 {
3834
3860
  amountPaid: number;
3835
3861
  cancellation?: MittwaldAPIV2.Components.Schemas.InvoiceCancellation;
3836
3862
  /**
3837
- * The ID of the invoice that this invoice cancels.
3863
+ * The ID of the Invoice that this invoice cancels.
3838
3864
  */
3839
3865
  cancellationOf?: string;
3840
3866
  currency: string;
@@ -3851,6 +3877,10 @@ export declare namespace MittwaldAPIV2 {
3851
3877
  paymentSettings?: MittwaldAPIV2.Components.Schemas.InvoicePaymentSettings;
3852
3878
  pdfId: string;
3853
3879
  recipient: MittwaldAPIV2.Components.Schemas.InvoiceRecipient;
3880
+ /**
3881
+ * The ID of the Invoice that is a Reissue of this one.
3882
+ */
3883
+ reissuedBy?: string;
3854
3884
  status: "NEW" | "CONFIRMED" | "DENIED" | "PAID" | "PARTIALLY_PAID" | "OVERPAID";
3855
3885
  totalGross: number;
3856
3886
  totalNet: number;
@@ -3980,6 +4010,24 @@ export declare namespace MittwaldAPIV2 {
3980
4010
  used: number;
3981
4011
  };
3982
4012
  }
4013
+ interface LeadfyndrLeadsExport {
4014
+ customerId: string;
4015
+ exportId: string;
4016
+ exportedAt: string;
4017
+ exportedBy?: MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExportExporter;
4018
+ /**
4019
+ * The number of leads included in the export.
4020
+ */
4021
+ leadCount: number;
4022
+ }
4023
+ interface LeadfyndrLeadsExportExporter {
4024
+ avatarRefId?: string;
4025
+ person?: {
4026
+ firstName: string;
4027
+ lastName: string;
4028
+ };
4029
+ userId: string;
4030
+ }
3983
4031
  interface LeadfyndrLighthouse {
3984
4032
  accessibility?: number;
3985
4033
  bestPractice?: number;
@@ -4899,6 +4947,7 @@ export declare namespace MittwaldAPIV2 {
4899
4947
  clusterId?: string;
4900
4948
  createdAt: string;
4901
4949
  customerId: string;
4950
+ deletionRequested?: boolean;
4902
4951
  description: string;
4903
4952
  directories: {
4904
4953
  [k: string]: string;
@@ -5415,35 +5464,6 @@ export declare namespace MittwaldAPIV2 {
5415
5464
  }
5416
5465
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
5417
5466
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
5418
- interface BackupProjectBackupPath {
5419
- absolutePath: string;
5420
- isDirectory?: boolean;
5421
- isExecutable?: boolean;
5422
- isFile?: boolean;
5423
- isSymlink?: boolean;
5424
- items?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[];
5425
- name: string;
5426
- size: number;
5427
- target?: string;
5428
- }
5429
- interface LeadfyndrLeadsExport {
5430
- customerId: string;
5431
- exportId: string;
5432
- exportedAt: string;
5433
- exportedBy?: MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExportExporter;
5434
- /**
5435
- * The number of leads included in the export.
5436
- */
5437
- leadCount: number;
5438
- }
5439
- interface LeadfyndrLeadsExportExporter {
5440
- avatarRefId?: string;
5441
- person?: {
5442
- firstName: string;
5443
- lastName: string;
5444
- };
5445
- userId: string;
5446
- }
5447
5467
  interface CommonsAddress {
5448
5468
  street: string;
5449
5469
  houseNumber: string;
@@ -8321,6 +8341,65 @@ export declare namespace MittwaldAPIV2 {
8321
8341
  }
8322
8342
  }
8323
8343
  }
8344
+ namespace V2StacksStackIdVolumes {
8345
+ namespace Get {
8346
+ namespace Parameters {
8347
+ type Path = {
8348
+ stackId: string;
8349
+ };
8350
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8351
+ type Query = {
8352
+ searchTerm?: string;
8353
+ sortOrder?: MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder;
8354
+ limit?: number;
8355
+ skip?: number;
8356
+ page?: number;
8357
+ };
8358
+ }
8359
+ namespace Responses {
8360
+ namespace $200 {
8361
+ namespace Content {
8362
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[];
8363
+ }
8364
+ }
8365
+ namespace $400 {
8366
+ namespace Content {
8367
+ interface ApplicationJson {
8368
+ [k: string]: unknown;
8369
+ }
8370
+ }
8371
+ }
8372
+ namespace $403 {
8373
+ namespace Content {
8374
+ interface ApplicationJson {
8375
+ [k: string]: unknown;
8376
+ }
8377
+ }
8378
+ }
8379
+ namespace $429 {
8380
+ namespace Content {
8381
+ interface ApplicationJson {
8382
+ [k: string]: unknown;
8383
+ }
8384
+ }
8385
+ }
8386
+ namespace $500 {
8387
+ namespace Content {
8388
+ interface ApplicationJson {
8389
+ [k: string]: unknown;
8390
+ }
8391
+ }
8392
+ }
8393
+ namespace Default {
8394
+ namespace Content {
8395
+ interface ApplicationJson {
8396
+ [k: string]: unknown;
8397
+ }
8398
+ }
8399
+ }
8400
+ }
8401
+ }
8402
+ }
8324
8403
  namespace V2ProjectsProjectIdStacks {
8325
8404
  namespace Get {
8326
8405
  namespace Parameters {
@@ -8949,6 +9028,7 @@ export declare namespace MittwaldAPIV2 {
8949
9028
  interface ApplicationJson {
8950
9029
  contractId?: string;
8951
9030
  contractItemId?: string;
9031
+ explanation?: string;
8952
9032
  reason?: string;
8953
9033
  terminationTargetDate?: string;
8954
9034
  }
@@ -9092,6 +9172,7 @@ export declare namespace MittwaldAPIV2 {
9092
9172
  contractId: string;
9093
9173
  };
9094
9174
  interface RequestBody {
9175
+ explanation?: string;
9095
9176
  /**
9096
9177
  * A reason for the termination can be given as plain text.
9097
9178
  */
@@ -9109,6 +9190,7 @@ export declare namespace MittwaldAPIV2 {
9109
9190
  namespace Content {
9110
9191
  interface ApplicationJson {
9111
9192
  contractId?: string;
9193
+ explanation?: string;
9112
9194
  itemsScheduledForTermination?: string[];
9113
9195
  reason?: string;
9114
9196
  terminationTargetDate?: string;
@@ -12540,6 +12622,7 @@ export declare namespace MittwaldAPIV2 {
12540
12622
  type Query = {
12541
12623
  limit?: number;
12542
12624
  skip?: number;
12625
+ page?: number;
12543
12626
  };
12544
12627
  }
12545
12628
  namespace Responses {
@@ -12587,6 +12670,7 @@ export declare namespace MittwaldAPIV2 {
12587
12670
  type Query = {
12588
12671
  limit?: number;
12589
12672
  skip?: number;
12673
+ page?: number;
12590
12674
  hasExpiry?: boolean;
12591
12675
  role?: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
12592
12676
  };
@@ -18866,6 +18950,86 @@ export declare namespace MittwaldAPIV2 {
18866
18950
  }
18867
18951
  }
18868
18952
  }
18953
+ namespace V2CustomersCustomerIdUnlockedLeadsExport {
18954
+ namespace Post {
18955
+ namespace Parameters {
18956
+ type Path = {
18957
+ customerId: string;
18958
+ };
18959
+ interface RequestBody {
18960
+ /**
18961
+ * Whether to export all leads or only not already exported leads.
18962
+ */
18963
+ exportAllLeads: boolean;
18964
+ /**
18965
+ * The fields to include in the export.
18966
+ */
18967
+ fieldKeys: ("domain" | "potential" | "performance" | "generalLook" | "companyName" | "emails" | "phoneNumbers" | "address" | "employeeCount" | "revenue" | "a-record" | "nameserver" | "mailserver" | "techStack")[];
18968
+ }
18969
+ type Header = {};
18970
+ type Query = {};
18971
+ }
18972
+ namespace Responses {
18973
+ namespace $200 {
18974
+ namespace Content {
18975
+ interface ApplicationJson {
18976
+ /**
18977
+ * The base64 encoded csv content of the export.
18978
+ */
18979
+ contentBase64: string;
18980
+ exportId: string;
18981
+ }
18982
+ /**
18983
+ * The csv content of the export.
18984
+ */
18985
+ type TextCsv = string;
18986
+ }
18987
+ }
18988
+ namespace $400 {
18989
+ namespace Content {
18990
+ interface ApplicationJson {
18991
+ [k: string]: unknown;
18992
+ }
18993
+ }
18994
+ }
18995
+ namespace $403 {
18996
+ namespace Content {
18997
+ interface ApplicationJson {
18998
+ [k: string]: unknown;
18999
+ }
19000
+ }
19001
+ }
19002
+ namespace $404 {
19003
+ namespace Content {
19004
+ interface ApplicationJson {
19005
+ [k: string]: unknown;
19006
+ }
19007
+ }
19008
+ }
19009
+ namespace $409 {
19010
+ namespace Content {
19011
+ interface ApplicationJson {
19012
+ [k: string]: unknown;
19013
+ }
19014
+ }
19015
+ }
19016
+ namespace $429 {
19017
+ namespace Content {
19018
+ interface ApplicationJson {
19019
+ [k: string]: unknown;
19020
+ }
19021
+ }
19022
+ }
19023
+ namespace Default {
19024
+ namespace Content {
19025
+ interface ApplicationJson {
19026
+ [k: string]: unknown;
19027
+ }
19028
+ }
19029
+ }
19030
+ }
19031
+ }
19032
+ }
18869
19033
  namespace V2Cities {
18870
19034
  namespace Get {
18871
19035
  namespace Parameters {
@@ -19081,6 +19245,65 @@ export declare namespace MittwaldAPIV2 {
19081
19245
  }
19082
19246
  }
19083
19247
  }
19248
+ namespace V2CustomersCustomerIdUnlockedLeadsExports {
19249
+ namespace Get {
19250
+ namespace Parameters {
19251
+ type Path = {
19252
+ customerId: string;
19253
+ };
19254
+ type Header = {};
19255
+ type Query = {
19256
+ limit?: number;
19257
+ skip?: number;
19258
+ page?: number;
19259
+ sort?: "exportedAt";
19260
+ order?: "asc" | "desc";
19261
+ };
19262
+ }
19263
+ namespace Responses {
19264
+ namespace $200 {
19265
+ namespace Content {
19266
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExport[];
19267
+ }
19268
+ }
19269
+ namespace $400 {
19270
+ namespace Content {
19271
+ interface ApplicationJson {
19272
+ [k: string]: unknown;
19273
+ }
19274
+ }
19275
+ }
19276
+ namespace $403 {
19277
+ namespace Content {
19278
+ interface ApplicationJson {
19279
+ [k: string]: unknown;
19280
+ }
19281
+ }
19282
+ }
19283
+ namespace $404 {
19284
+ namespace Content {
19285
+ interface ApplicationJson {
19286
+ [k: string]: unknown;
19287
+ }
19288
+ }
19289
+ }
19290
+ namespace $429 {
19291
+ namespace Content {
19292
+ interface ApplicationJson {
19293
+ [k: string]: unknown;
19294
+ }
19295
+ }
19296
+ }
19297
+ namespace Default {
19298
+ namespace Content {
19299
+ interface ApplicationJson {
19300
+ [k: string]: unknown;
19301
+ }
19302
+ }
19303
+ }
19304
+ }
19305
+ }
19306
+ }
19084
19307
  namespace V2CustomersCustomerIdUnlockedLeadsLeadId {
19085
19308
  namespace Get {
19086
19309
  namespace Parameters {
@@ -21161,12 +21384,12 @@ export declare namespace MittwaldAPIV2 {
21161
21384
  type Path = {};
21162
21385
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
21163
21386
  type Query = {
21164
- limit?: number;
21165
- skip?: number;
21166
- page?: number;
21167
21387
  includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
21168
21388
  excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
21169
21389
  templateNames?: string[];
21390
+ limit?: number;
21391
+ skip?: number;
21392
+ page?: number;
21170
21393
  };
21171
21394
  }
21172
21395
  namespace Responses {
@@ -23200,6 +23423,7 @@ export declare namespace MittwaldAPIV2 {
23200
23423
  type Query = {
23201
23424
  limit?: number;
23202
23425
  skip?: number;
23426
+ page?: number;
23203
23427
  };
23204
23428
  }
23205
23429
  namespace Responses {
@@ -23247,6 +23471,7 @@ export declare namespace MittwaldAPIV2 {
23247
23471
  type Query = {
23248
23472
  limit?: number;
23249
23473
  skip?: number;
23474
+ page?: number;
23250
23475
  hasExpiry?: boolean;
23251
23476
  isInherited?: boolean;
23252
23477
  role?: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
@@ -27364,98 +27589,26 @@ export declare namespace MittwaldAPIV2 {
27364
27589
  }
27365
27590
  }
27366
27591
  }
27367
- namespace V2CustomersCustomerIdUnlockedLeadsExports {
27368
- namespace Get {
27369
- namespace Parameters {
27370
- type Path = {
27371
- customerId: string;
27372
- };
27373
- type Header = {};
27374
- type Query = {
27375
- limit?: number;
27376
- skip?: number;
27377
- page?: number;
27378
- sort?: "exportedAt";
27379
- order?: "asc" | "desc";
27380
- };
27381
- }
27382
- namespace Responses {
27383
- namespace $200 {
27384
- namespace Content {
27385
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.LeadfyndrLeadsExport[];
27386
- }
27387
- }
27388
- namespace $400 {
27389
- namespace Content {
27390
- interface ApplicationJson {
27391
- [k: string]: unknown;
27392
- }
27393
- }
27394
- }
27395
- namespace $403 {
27396
- namespace Content {
27397
- interface ApplicationJson {
27398
- [k: string]: unknown;
27399
- }
27400
- }
27401
- }
27402
- namespace $404 {
27403
- namespace Content {
27404
- interface ApplicationJson {
27405
- [k: string]: unknown;
27406
- }
27407
- }
27408
- }
27409
- namespace $429 {
27410
- namespace Content {
27411
- interface ApplicationJson {
27412
- [k: string]: unknown;
27413
- }
27414
- }
27415
- }
27416
- namespace Default {
27417
- namespace Content {
27418
- interface ApplicationJson {
27419
- [k: string]: unknown;
27420
- }
27421
- }
27422
- }
27423
- }
27424
- }
27425
- }
27426
- namespace V2CustomersCustomerIdUnlockedLeadsExport {
27592
+ namespace V2MysqlDatabasesMysqlDatabaseIdActionsCopy {
27427
27593
  namespace Post {
27428
27594
  namespace Parameters {
27429
27595
  type Path = {
27430
- customerId: string;
27596
+ mysqlDatabaseId: string;
27431
27597
  };
27432
27598
  interface RequestBody {
27433
- /**
27434
- * Whether to export all leads or only not already exported leads.
27435
- */
27436
- exportAllLeads: boolean;
27437
- /**
27438
- * The fields to include in the export.
27439
- */
27440
- fieldKeys: ("domain" | "potential" | "performance" | "generalLook" | "companyName" | "emails" | "phoneNumbers" | "address" | "employeeCount" | "revenue" | "a-record" | "nameserver" | "mailserver" | "techStack")[];
27599
+ description: string;
27600
+ user: MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
27441
27601
  }
27442
- type Header = {};
27602
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
27443
27603
  type Query = {};
27444
27604
  }
27445
27605
  namespace Responses {
27446
- namespace $200 {
27606
+ namespace $201 {
27447
27607
  namespace Content {
27448
27608
  interface ApplicationJson {
27449
- /**
27450
- * The base64 encoded csv content of the export.
27451
- */
27452
- contentBase64: string;
27453
- exportId: string;
27609
+ id: string;
27610
+ userId: string;
27454
27611
  }
27455
- /**
27456
- * The csv content of the export.
27457
- */
27458
- type TextCsv = string;
27459
27612
  }
27460
27613
  }
27461
27614
  namespace $400 {
@@ -27465,13 +27618,6 @@ export declare namespace MittwaldAPIV2 {
27465
27618
  }
27466
27619
  }
27467
27620
  }
27468
- namespace $403 {
27469
- namespace Content {
27470
- interface ApplicationJson {
27471
- [k: string]: unknown;
27472
- }
27473
- }
27474
- }
27475
27621
  namespace $404 {
27476
27622
  namespace Content {
27477
27623
  interface ApplicationJson {
@@ -27479,13 +27625,6 @@ export declare namespace MittwaldAPIV2 {
27479
27625
  }
27480
27626
  }
27481
27627
  }
27482
- namespace $409 {
27483
- namespace Content {
27484
- interface ApplicationJson {
27485
- [k: string]: unknown;
27486
- }
27487
- }
27488
- }
27489
27628
  namespace $429 {
27490
27629
  namespace Content {
27491
27630
  interface ApplicationJson {
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '0.0.0-development-ccafe69-20250930';
1
+ export declare const MittwaldAPIClientVersion = '4.239.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-e87cbeb-20251001",
3
+ "version": "0.0.0-development-e648af3-20251016",
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-e87cbeb-20251001",
49
+ "@mittwald/api-client-commons": "^0.0.0-development-e648af3-20251016",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^0.0.0-development-e87cbeb-20251001",
53
+ "@mittwald/api-code-generator": "^0.0.0-development-e648af3-20251016",
54
54
  "@mittwald/react-use-promise": "^2.6.0",
55
55
  "@types/node": "^22.10.1",
56
56
  "@types/react": "^18.3.14",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "01b01e9cefc0ae0b5b7dabd7261dd7acd0b33d44"
83
+ "gitHead": "62adfc129f6bc6dd5bcb1deac3bd341d82116056"
84
84
  }