@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.
- package/dist/esm/generated/v2/client-react.js +5 -1
- package/dist/esm/generated/v2/client.js +9 -1
- package/dist/esm/generated/v2/descriptors.js +26 -2
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +47 -9
- package/dist/types/generated/v2/client.d.ts +331 -32
- package/dist/types/generated/v2/descriptors.d.ts +10 -2
- package/dist/types/generated/v2/types.d.ts +327 -27
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -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,6 +1742,10 @@ 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
|
}
|
|
1745
|
+
namespace DatabaseCopyMysqlDatabase {
|
|
1746
|
+
type RequestData = InferredRequestData<typeof descriptors.databaseCopyMysqlDatabase>;
|
|
1747
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.databaseCopyMysqlDatabase, TStatus>;
|
|
1748
|
+
}
|
|
1733
1749
|
}
|
|
1734
1750
|
namespace Components {
|
|
1735
1751
|
namespace Schemas {
|
|
@@ -1796,6 +1812,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1796
1812
|
appVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
1797
1813
|
createdAt: string;
|
|
1798
1814
|
customDocumentRoot?: string;
|
|
1815
|
+
deletionRequested?: boolean;
|
|
1799
1816
|
description: string;
|
|
1800
1817
|
disabled: boolean;
|
|
1801
1818
|
id: string;
|
|
@@ -1984,7 +2001,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1984
2001
|
current?: string;
|
|
1985
2002
|
desired: string;
|
|
1986
2003
|
}
|
|
1987
|
-
type BackupRestorePathPhase = "running" | "completed"
|
|
2004
|
+
type BackupRestorePathPhase = "running" | "completed";
|
|
1988
2005
|
type BackupBackupSortOrder = "oldestFirst" | "newestFirst";
|
|
1989
2006
|
interface BackupBackupTemplate {
|
|
1990
2007
|
expirationTime: string;
|
|
@@ -2011,43 +2028,39 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2011
2028
|
restorePath?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePath;
|
|
2012
2029
|
status: string;
|
|
2013
2030
|
}
|
|
2014
|
-
interface
|
|
2031
|
+
interface BackupProjectBackupExport {
|
|
2032
|
+
downloadURL?: string;
|
|
2033
|
+
expiresAt?: string;
|
|
2034
|
+
format: string;
|
|
2035
|
+
phase?: "Pending" | "Exporting" | "Failed" | "Completed" | "Expired";
|
|
2036
|
+
sha256Checksum?: string;
|
|
2037
|
+
withPassword: boolean;
|
|
2038
|
+
}
|
|
2039
|
+
interface BackupProjectBackupPath {
|
|
2015
2040
|
absolutePath: string;
|
|
2016
2041
|
isDirectory?: boolean;
|
|
2017
2042
|
isExecutable?: boolean;
|
|
2018
2043
|
isFile?: boolean;
|
|
2019
2044
|
isSymlink?: boolean;
|
|
2020
|
-
items?: MittwaldAPIV2.Components.Schemas.
|
|
2045
|
+
items?: MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath[];
|
|
2021
2046
|
name: string;
|
|
2022
2047
|
size: number;
|
|
2023
2048
|
target?: string;
|
|
2024
2049
|
}
|
|
2025
|
-
interface BackupProjectBackupExport {
|
|
2026
|
-
downloadURL?: string;
|
|
2027
|
-
expiresAt?: string;
|
|
2028
|
-
format: string;
|
|
2029
|
-
phase?: "Pending" | "Exporting" | "Failed" | "Completed" | "Expired";
|
|
2030
|
-
sha256Checksum?: string;
|
|
2031
|
-
withPassword: boolean;
|
|
2032
|
-
}
|
|
2033
2050
|
interface BackupProjectBackupRestorePathRequest {
|
|
2034
2051
|
/**
|
|
2035
|
-
* 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.
|
|
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.
|
|
2036
2053
|
*/
|
|
2037
2054
|
clearTargetPath?: boolean;
|
|
2038
|
-
/**
|
|
2039
|
-
* Source path within the backup to restore from.
|
|
2040
|
-
*/
|
|
2041
2055
|
sourcePath: string;
|
|
2042
2056
|
/**
|
|
2043
2057
|
* 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.
|
|
2044
2058
|
*/
|
|
2045
|
-
|
|
2059
|
+
targetPath?: string;
|
|
2046
2060
|
}
|
|
2047
2061
|
interface BackupProjectBackupRestorePath {
|
|
2048
2062
|
clearTargetPath: boolean;
|
|
2049
|
-
|
|
2050
|
-
determinedTargetPath?: string;
|
|
2063
|
+
determinedTargetPath: string;
|
|
2051
2064
|
phase: MittwaldAPIV2.Components.Schemas.BackupRestorePathPhase;
|
|
2052
2065
|
sourcePath: string;
|
|
2053
2066
|
targetPath?: string;
|
|
@@ -2118,6 +2131,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2118
2131
|
*
|
|
2119
2132
|
*/
|
|
2120
2133
|
descriptionChangeType?: "FEATURE_SET_MODIFIED" | "FEATURE_SET_UNCHANGED";
|
|
2134
|
+
/**
|
|
2135
|
+
* stop extension variant from being booked
|
|
2136
|
+
*/
|
|
2137
|
+
isBookingStopped?: boolean;
|
|
2121
2138
|
/**
|
|
2122
2139
|
* Key that needs to be unique in Variant.
|
|
2123
2140
|
*/
|
|
@@ -2465,6 +2482,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2465
2482
|
* Indicates whether the User is allowed to cancel the Termination.
|
|
2466
2483
|
*/
|
|
2467
2484
|
cancellationForbidden?: boolean;
|
|
2485
|
+
explanation?: string;
|
|
2468
2486
|
reason?: string;
|
|
2469
2487
|
scheduledAtDate: string;
|
|
2470
2488
|
scheduledByUserId?: string;
|
|
@@ -2754,7 +2772,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2754
2772
|
description: string;
|
|
2755
2773
|
destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
|
|
2756
2774
|
email?: string;
|
|
2757
|
-
failedExecutionAlertThreshold
|
|
2775
|
+
failedExecutionAlertThreshold: number;
|
|
2758
2776
|
id: string;
|
|
2759
2777
|
interval: string;
|
|
2760
2778
|
latestExecution?: MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution;
|
|
@@ -3340,7 +3358,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3340
3358
|
domain: string;
|
|
3341
3359
|
id: string;
|
|
3342
3360
|
};
|
|
3343
|
-
chargeability
|
|
3361
|
+
chargeability: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability;
|
|
3344
3362
|
consentedScopes: string[];
|
|
3345
3363
|
contributorId: string;
|
|
3346
3364
|
contributorName: string;
|
|
@@ -3360,6 +3378,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3360
3378
|
interface MarketplaceExtensionInstanceChargeability {
|
|
3361
3379
|
isChargeable: boolean;
|
|
3362
3380
|
reasons: {
|
|
3381
|
+
isNonChargeableCustomer: boolean;
|
|
3363
3382
|
isOwnExtension: boolean;
|
|
3364
3383
|
};
|
|
3365
3384
|
}
|
|
@@ -3841,7 +3860,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3841
3860
|
amountPaid: number;
|
|
3842
3861
|
cancellation?: MittwaldAPIV2.Components.Schemas.InvoiceCancellation;
|
|
3843
3862
|
/**
|
|
3844
|
-
* The ID of the
|
|
3863
|
+
* The ID of the Invoice that this invoice cancels.
|
|
3845
3864
|
*/
|
|
3846
3865
|
cancellationOf?: string;
|
|
3847
3866
|
currency: string;
|
|
@@ -3858,6 +3877,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3858
3877
|
paymentSettings?: MittwaldAPIV2.Components.Schemas.InvoicePaymentSettings;
|
|
3859
3878
|
pdfId: string;
|
|
3860
3879
|
recipient: MittwaldAPIV2.Components.Schemas.InvoiceRecipient;
|
|
3880
|
+
/**
|
|
3881
|
+
* The ID of the Invoice that is a Reissue of this one.
|
|
3882
|
+
*/
|
|
3883
|
+
reissuedBy?: string;
|
|
3861
3884
|
status: "NEW" | "CONFIRMED" | "DENIED" | "PAID" | "PARTIALLY_PAID" | "OVERPAID";
|
|
3862
3885
|
totalGross: number;
|
|
3863
3886
|
totalNet: number;
|
|
@@ -3987,6 +4010,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3987
4010
|
used: number;
|
|
3988
4011
|
};
|
|
3989
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
|
+
}
|
|
3990
4031
|
interface LeadfyndrLighthouse {
|
|
3991
4032
|
accessibility?: number;
|
|
3992
4033
|
bestPractice?: number;
|
|
@@ -4906,6 +4947,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4906
4947
|
clusterId?: string;
|
|
4907
4948
|
createdAt: string;
|
|
4908
4949
|
customerId: string;
|
|
4950
|
+
deletionRequested?: boolean;
|
|
4909
4951
|
description: string;
|
|
4910
4952
|
directories: {
|
|
4911
4953
|
[k: string]: string;
|
|
@@ -7226,7 +7268,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7226
7268
|
}
|
|
7227
7269
|
}
|
|
7228
7270
|
}
|
|
7229
|
-
namespace
|
|
7271
|
+
namespace V2ProjectBackupsProjectBackupIdPath {
|
|
7230
7272
|
namespace Get {
|
|
7231
7273
|
namespace Parameters {
|
|
7232
7274
|
type Path = {
|
|
@@ -7240,7 +7282,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7240
7282
|
namespace Responses {
|
|
7241
7283
|
namespace $200 {
|
|
7242
7284
|
namespace Content {
|
|
7243
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
7285
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.BackupProjectBackupPath;
|
|
7244
7286
|
}
|
|
7245
7287
|
}
|
|
7246
7288
|
namespace $403 {
|
|
@@ -7294,7 +7336,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7294
7336
|
type Path = {
|
|
7295
7337
|
projectBackupId: string;
|
|
7296
7338
|
};
|
|
7297
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.
|
|
7339
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest;
|
|
7298
7340
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
7299
7341
|
type Query = {};
|
|
7300
7342
|
}
|
|
@@ -8299,6 +8341,65 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8299
8341
|
}
|
|
8300
8342
|
}
|
|
8301
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
|
+
}
|
|
8302
8403
|
namespace V2ProjectsProjectIdStacks {
|
|
8303
8404
|
namespace Get {
|
|
8304
8405
|
namespace Parameters {
|
|
@@ -8927,6 +9028,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
8927
9028
|
interface ApplicationJson {
|
|
8928
9029
|
contractId?: string;
|
|
8929
9030
|
contractItemId?: string;
|
|
9031
|
+
explanation?: string;
|
|
8930
9032
|
reason?: string;
|
|
8931
9033
|
terminationTargetDate?: string;
|
|
8932
9034
|
}
|
|
@@ -9070,6 +9172,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
9070
9172
|
contractId: string;
|
|
9071
9173
|
};
|
|
9072
9174
|
interface RequestBody {
|
|
9175
|
+
explanation?: string;
|
|
9073
9176
|
/**
|
|
9074
9177
|
* A reason for the termination can be given as plain text.
|
|
9075
9178
|
*/
|
|
@@ -9087,6 +9190,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
9087
9190
|
namespace Content {
|
|
9088
9191
|
interface ApplicationJson {
|
|
9089
9192
|
contractId?: string;
|
|
9193
|
+
explanation?: string;
|
|
9090
9194
|
itemsScheduledForTermination?: string[];
|
|
9091
9195
|
reason?: string;
|
|
9092
9196
|
terminationTargetDate?: string;
|
|
@@ -12518,6 +12622,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12518
12622
|
type Query = {
|
|
12519
12623
|
limit?: number;
|
|
12520
12624
|
skip?: number;
|
|
12625
|
+
page?: number;
|
|
12521
12626
|
};
|
|
12522
12627
|
}
|
|
12523
12628
|
namespace Responses {
|
|
@@ -12565,6 +12670,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
12565
12670
|
type Query = {
|
|
12566
12671
|
limit?: number;
|
|
12567
12672
|
skip?: number;
|
|
12673
|
+
page?: number;
|
|
12568
12674
|
hasExpiry?: boolean;
|
|
12569
12675
|
role?: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
|
|
12570
12676
|
};
|
|
@@ -18844,6 +18950,86 @@ export declare namespace MittwaldAPIV2 {
|
|
|
18844
18950
|
}
|
|
18845
18951
|
}
|
|
18846
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
|
+
}
|
|
18847
19033
|
namespace V2Cities {
|
|
18848
19034
|
namespace Get {
|
|
18849
19035
|
namespace Parameters {
|
|
@@ -19059,6 +19245,65 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19059
19245
|
}
|
|
19060
19246
|
}
|
|
19061
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
|
+
}
|
|
19062
19307
|
namespace V2CustomersCustomerIdUnlockedLeadsLeadId {
|
|
19063
19308
|
namespace Get {
|
|
19064
19309
|
namespace Parameters {
|
|
@@ -21139,12 +21384,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21139
21384
|
type Path = {};
|
|
21140
21385
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21141
21386
|
type Query = {
|
|
21142
|
-
limit?: number;
|
|
21143
|
-
skip?: number;
|
|
21144
|
-
page?: number;
|
|
21145
21387
|
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
21146
21388
|
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
21147
21389
|
templateNames?: string[];
|
|
21390
|
+
limit?: number;
|
|
21391
|
+
skip?: number;
|
|
21392
|
+
page?: number;
|
|
21148
21393
|
};
|
|
21149
21394
|
}
|
|
21150
21395
|
namespace Responses {
|
|
@@ -23178,6 +23423,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23178
23423
|
type Query = {
|
|
23179
23424
|
limit?: number;
|
|
23180
23425
|
skip?: number;
|
|
23426
|
+
page?: number;
|
|
23181
23427
|
};
|
|
23182
23428
|
}
|
|
23183
23429
|
namespace Responses {
|
|
@@ -23225,6 +23471,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23225
23471
|
type Query = {
|
|
23226
23472
|
limit?: number;
|
|
23227
23473
|
skip?: number;
|
|
23474
|
+
page?: number;
|
|
23228
23475
|
hasExpiry?: boolean;
|
|
23229
23476
|
isInherited?: boolean;
|
|
23230
23477
|
role?: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
@@ -27342,5 +27589,58 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27342
27589
|
}
|
|
27343
27590
|
}
|
|
27344
27591
|
}
|
|
27592
|
+
namespace V2MysqlDatabasesMysqlDatabaseIdActionsCopy {
|
|
27593
|
+
namespace Post {
|
|
27594
|
+
namespace Parameters {
|
|
27595
|
+
type Path = {
|
|
27596
|
+
mysqlDatabaseId: string;
|
|
27597
|
+
};
|
|
27598
|
+
interface RequestBody {
|
|
27599
|
+
description: string;
|
|
27600
|
+
user: MittwaldAPIV2.Components.Schemas.DatabaseCreateMySqlUserWithDatabase;
|
|
27601
|
+
}
|
|
27602
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
27603
|
+
type Query = {};
|
|
27604
|
+
}
|
|
27605
|
+
namespace Responses {
|
|
27606
|
+
namespace $201 {
|
|
27607
|
+
namespace Content {
|
|
27608
|
+
interface ApplicationJson {
|
|
27609
|
+
id: string;
|
|
27610
|
+
userId: string;
|
|
27611
|
+
}
|
|
27612
|
+
}
|
|
27613
|
+
}
|
|
27614
|
+
namespace $400 {
|
|
27615
|
+
namespace Content {
|
|
27616
|
+
interface ApplicationJson {
|
|
27617
|
+
[k: string]: unknown;
|
|
27618
|
+
}
|
|
27619
|
+
}
|
|
27620
|
+
}
|
|
27621
|
+
namespace $404 {
|
|
27622
|
+
namespace Content {
|
|
27623
|
+
interface ApplicationJson {
|
|
27624
|
+
[k: string]: unknown;
|
|
27625
|
+
}
|
|
27626
|
+
}
|
|
27627
|
+
}
|
|
27628
|
+
namespace $429 {
|
|
27629
|
+
namespace Content {
|
|
27630
|
+
interface ApplicationJson {
|
|
27631
|
+
[k: string]: unknown;
|
|
27632
|
+
}
|
|
27633
|
+
}
|
|
27634
|
+
}
|
|
27635
|
+
namespace Default {
|
|
27636
|
+
namespace Content {
|
|
27637
|
+
interface ApplicationJson {
|
|
27638
|
+
[k: string]: unknown;
|
|
27639
|
+
}
|
|
27640
|
+
}
|
|
27641
|
+
}
|
|
27642
|
+
}
|
|
27643
|
+
}
|
|
27644
|
+
}
|
|
27345
27645
|
}
|
|
27346
27646
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
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-
|
|
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-
|
|
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-
|
|
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": "
|
|
83
|
+
"gitHead": "62adfc129f6bc6dd5bcb1deac3bd341d82116056"
|
|
84
84
|
}
|