@mittwald/api-client 4.325.0 → 4.327.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +9 -9
- package/dist/esm/generated/v2/client.js +11 -11
- package/dist/esm/generated/v2/descriptors.js +24 -24
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +35 -35
- package/dist/types/generated/v2/client.d.ts +376 -376
- package/dist/types/generated/v2/descriptors.d.ts +8 -8
- package/dist/types/generated/v2/types.d.ts +907 -907
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1194,22 +1194,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1194
1194
|
type RequestData = InferredRequestData<typeof descriptors.leadfyndrRemoveUnlockedLeadReservation>;
|
|
1195
1195
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrRemoveUnlockedLeadReservation, TStatus>;
|
|
1196
1196
|
}
|
|
1197
|
-
namespace LicenseGetLicense {
|
|
1198
|
-
type RequestData = InferredRequestData<typeof descriptors.licenseGetLicense>;
|
|
1199
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseGetLicense, TStatus>;
|
|
1200
|
-
}
|
|
1201
|
-
namespace LicenseListLicensesForProject {
|
|
1202
|
-
type RequestData = InferredRequestData<typeof descriptors.licenseListLicensesForProject>;
|
|
1203
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseListLicensesForProject, TStatus>;
|
|
1204
|
-
}
|
|
1205
|
-
namespace LicenseRotateLicenseKey {
|
|
1206
|
-
type RequestData = InferredRequestData<typeof descriptors.licenseRotateLicenseKey>;
|
|
1207
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseRotateLicenseKey, TStatus>;
|
|
1208
|
-
}
|
|
1209
|
-
namespace LicenseValidateLicenseKeyForProject {
|
|
1210
|
-
type RequestData = InferredRequestData<typeof descriptors.licenseValidateLicenseKeyForProject>;
|
|
1211
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseValidateLicenseKeyForProject, TStatus>;
|
|
1212
|
-
}
|
|
1213
1197
|
namespace MailListDeliveryBoxes {
|
|
1214
1198
|
type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
|
|
1215
1199
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListDeliveryBoxes, TStatus>;
|
|
@@ -1818,6 +1802,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1818
1802
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1819
1803
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1820
1804
|
}
|
|
1805
|
+
namespace LicenseGetLicense {
|
|
1806
|
+
type RequestData = InferredRequestData<typeof descriptors.licenseGetLicense>;
|
|
1807
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseGetLicense, TStatus>;
|
|
1808
|
+
}
|
|
1809
|
+
namespace LicenseListLicensesForProject {
|
|
1810
|
+
type RequestData = InferredRequestData<typeof descriptors.licenseListLicensesForProject>;
|
|
1811
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseListLicensesForProject, TStatus>;
|
|
1812
|
+
}
|
|
1813
|
+
namespace LicenseRotateLicenseKey {
|
|
1814
|
+
type RequestData = InferredRequestData<typeof descriptors.licenseRotateLicenseKey>;
|
|
1815
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseRotateLicenseKey, TStatus>;
|
|
1816
|
+
}
|
|
1817
|
+
namespace LicenseValidateLicenseKeyForProject {
|
|
1818
|
+
type RequestData = InferredRequestData<typeof descriptors.licenseValidateLicenseKeyForProject>;
|
|
1819
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseValidateLicenseKeyForProject, TStatus>;
|
|
1820
|
+
}
|
|
1821
1821
|
namespace ContainerSetStackUpdateSchedule {
|
|
1822
1822
|
type RequestData = InferredRequestData<typeof descriptors.containerSetStackUpdateSchedule>;
|
|
1823
1823
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerSetStackUpdateSchedule, TStatus>;
|
|
@@ -4592,37 +4592,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4592
4592
|
interface LeadfyndrUser {
|
|
4593
4593
|
userId: string;
|
|
4594
4594
|
}
|
|
4595
|
-
interface LicenseAppVersionMeta {
|
|
4596
|
-
description: string;
|
|
4597
|
-
}
|
|
4598
|
-
interface LicenseExternalKey {
|
|
4599
|
-
externalKey: string;
|
|
4600
|
-
}
|
|
4601
|
-
interface LicenseKey {
|
|
4602
|
-
key: string;
|
|
4603
|
-
}
|
|
4604
|
-
interface LicenseKeyResponse {
|
|
4605
|
-
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
4606
|
-
}
|
|
4607
|
-
type LicenseKind = "typo3-elts";
|
|
4608
|
-
interface LicenseLicense {
|
|
4609
|
-
description: string;
|
|
4610
|
-
expiryDate?: string;
|
|
4611
|
-
id: string;
|
|
4612
|
-
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
4613
|
-
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
4614
|
-
meta: MittwaldAPIV2.Components.Schemas.LicenseMeta;
|
|
4615
|
-
reference: MittwaldAPIV2.Components.Schemas.LicenseReference;
|
|
4616
|
-
volume?: number;
|
|
4617
|
-
}
|
|
4618
|
-
interface LicenseMeta {
|
|
4619
|
-
appVersion?: MittwaldAPIV2.Components.Schemas.LicenseAppVersionMeta;
|
|
4620
|
-
}
|
|
4621
|
-
interface LicenseReference {
|
|
4622
|
-
aggregate: "project";
|
|
4623
|
-
domain: "project";
|
|
4624
|
-
id: string;
|
|
4625
|
-
}
|
|
4626
4595
|
interface MailCreateMailAddress {
|
|
4627
4596
|
address: string;
|
|
4628
4597
|
forwardAddresses?: string[];
|
|
@@ -5164,29 +5133,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5164
5133
|
reservationLimit: number;
|
|
5165
5134
|
unlockLimit: number;
|
|
5166
5135
|
}
|
|
5167
|
-
type OrderLicenseOrderPreview = {
|
|
5168
|
-
/**
|
|
5169
|
-
* Describe for which typo3 instance the license will be used.
|
|
5170
|
-
*/
|
|
5171
|
-
description?: string;
|
|
5172
|
-
licenseType: "typo3";
|
|
5173
|
-
/**
|
|
5174
|
-
* The major version for which a license should be purchased.
|
|
5175
|
-
*/
|
|
5176
|
-
majorVersion: number;
|
|
5177
|
-
};
|
|
5178
|
-
type OrderLicenseOrder = {
|
|
5179
|
-
/**
|
|
5180
|
-
* Describe for which typo3 instance the license will be used.
|
|
5181
|
-
*/
|
|
5182
|
-
description: string;
|
|
5183
|
-
licenseType: "typo3";
|
|
5184
|
-
/**
|
|
5185
|
-
* The major version for which a license should be purchased.
|
|
5186
|
-
*/
|
|
5187
|
-
majorVersion: number;
|
|
5188
|
-
projectId: string;
|
|
5189
|
-
};
|
|
5190
5136
|
interface OrderMachineTypeSpec {
|
|
5191
5137
|
machineType?: string;
|
|
5192
5138
|
}
|
|
@@ -5236,9 +5182,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5236
5182
|
interface OrderLeadFyndrOrderPreviewResponse {
|
|
5237
5183
|
totalPrice: number;
|
|
5238
5184
|
}
|
|
5239
|
-
interface OrderLicenseOrderPreviewResponse {
|
|
5240
|
-
totalPrice: number;
|
|
5241
|
-
}
|
|
5242
5185
|
interface OrderDomainOrderPreviewResponse {
|
|
5243
5186
|
/**
|
|
5244
5187
|
* Contract duration in months.
|
|
@@ -6003,6 +5946,63 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6003
5946
|
}
|
|
6004
5947
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6005
5948
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5949
|
+
interface LicenseAppVersionMeta {
|
|
5950
|
+
description: string;
|
|
5951
|
+
}
|
|
5952
|
+
interface LicenseKey {
|
|
5953
|
+
key: string;
|
|
5954
|
+
}
|
|
5955
|
+
type LicenseKind = "typo3-elts";
|
|
5956
|
+
interface LicenseLicense {
|
|
5957
|
+
description: string;
|
|
5958
|
+
expiryDate?: string;
|
|
5959
|
+
id: string;
|
|
5960
|
+
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
5961
|
+
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
5962
|
+
meta: MittwaldAPIV2.Components.Schemas.LicenseMeta;
|
|
5963
|
+
reference: MittwaldAPIV2.Components.Schemas.LicenseReference;
|
|
5964
|
+
volume?: number;
|
|
5965
|
+
}
|
|
5966
|
+
interface LicenseReference {
|
|
5967
|
+
aggregate: "project";
|
|
5968
|
+
domain: "project";
|
|
5969
|
+
id: string;
|
|
5970
|
+
}
|
|
5971
|
+
interface LicenseMeta {
|
|
5972
|
+
appVersion?: MittwaldAPIV2.Components.Schemas.LicenseAppVersionMeta;
|
|
5973
|
+
}
|
|
5974
|
+
interface LicenseExternalKey {
|
|
5975
|
+
externalKey: string;
|
|
5976
|
+
}
|
|
5977
|
+
interface LicenseKeyResponse {
|
|
5978
|
+
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
5979
|
+
}
|
|
5980
|
+
type OrderLicenseOrder = {
|
|
5981
|
+
/**
|
|
5982
|
+
* Describe for which typo3 instance the license will be used.
|
|
5983
|
+
*/
|
|
5984
|
+
description: string;
|
|
5985
|
+
licenseType: "typo3";
|
|
5986
|
+
/**
|
|
5987
|
+
* The major version for which a license should be purchased.
|
|
5988
|
+
*/
|
|
5989
|
+
majorVersion: number;
|
|
5990
|
+
projectId: string;
|
|
5991
|
+
};
|
|
5992
|
+
type OrderLicenseOrderPreview = {
|
|
5993
|
+
/**
|
|
5994
|
+
* Describe for which typo3 instance the license will be used.
|
|
5995
|
+
*/
|
|
5996
|
+
description?: string;
|
|
5997
|
+
licenseType: "typo3";
|
|
5998
|
+
/**
|
|
5999
|
+
* The major version for which a license should be purchased.
|
|
6000
|
+
*/
|
|
6001
|
+
majorVersion: number;
|
|
6002
|
+
};
|
|
6003
|
+
interface OrderLicenseOrderPreviewResponse {
|
|
6004
|
+
totalPrice: number;
|
|
6005
|
+
}
|
|
6006
6006
|
interface CommonsAddress {
|
|
6007
6007
|
street: string;
|
|
6008
6008
|
houseNumber: string;
|
|
@@ -21673,19 +21673,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21673
21673
|
}
|
|
21674
21674
|
}
|
|
21675
21675
|
}
|
|
21676
|
-
namespace
|
|
21676
|
+
namespace V2ProjectsProjectIdDeliveryboxes { }
|
|
21677
|
+
namespace V2ProjectsProjectIdDeliveryBoxes {
|
|
21677
21678
|
namespace Get {
|
|
21678
21679
|
namespace Parameters {
|
|
21679
21680
|
type Path = {
|
|
21680
|
-
|
|
21681
|
+
projectId: string;
|
|
21681
21682
|
};
|
|
21682
21683
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21683
|
-
type Query = {
|
|
21684
|
+
type Query = {
|
|
21685
|
+
search?: string;
|
|
21686
|
+
limit?: number;
|
|
21687
|
+
skip?: number;
|
|
21688
|
+
page?: number;
|
|
21689
|
+
};
|
|
21684
21690
|
}
|
|
21685
21691
|
namespace Responses {
|
|
21686
21692
|
namespace $200 {
|
|
21687
21693
|
namespace Content {
|
|
21688
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
21694
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox[];
|
|
21689
21695
|
}
|
|
21690
21696
|
}
|
|
21691
21697
|
namespace $400 {
|
|
@@ -21702,6 +21708,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21702
21708
|
}
|
|
21703
21709
|
}
|
|
21704
21710
|
}
|
|
21711
|
+
namespace $404 {
|
|
21712
|
+
namespace Content {
|
|
21713
|
+
interface ApplicationJson {
|
|
21714
|
+
[k: string]: unknown;
|
|
21715
|
+
}
|
|
21716
|
+
}
|
|
21717
|
+
}
|
|
21705
21718
|
namespace $429 {
|
|
21706
21719
|
namespace Content {
|
|
21707
21720
|
interface ApplicationJson {
|
|
@@ -21716,6 +21729,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21716
21729
|
}
|
|
21717
21730
|
}
|
|
21718
21731
|
}
|
|
21732
|
+
namespace $503 {
|
|
21733
|
+
namespace Content {
|
|
21734
|
+
interface ApplicationJson {
|
|
21735
|
+
[k: string]: unknown;
|
|
21736
|
+
}
|
|
21737
|
+
}
|
|
21738
|
+
}
|
|
21719
21739
|
namespace Default {
|
|
21720
21740
|
namespace Content {
|
|
21721
21741
|
interface ApplicationJson {
|
|
@@ -21725,24 +21745,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21725
21745
|
}
|
|
21726
21746
|
}
|
|
21727
21747
|
}
|
|
21728
|
-
|
|
21729
|
-
namespace V2ProjectsProjectIdLicenses {
|
|
21730
|
-
namespace Get {
|
|
21748
|
+
namespace Post {
|
|
21731
21749
|
namespace Parameters {
|
|
21732
21750
|
type Path = {
|
|
21733
21751
|
projectId: string;
|
|
21734
21752
|
};
|
|
21753
|
+
interface RequestBody {
|
|
21754
|
+
description: string;
|
|
21755
|
+
password: string;
|
|
21756
|
+
}
|
|
21735
21757
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21736
|
-
type Query = {
|
|
21737
|
-
limit?: number;
|
|
21738
|
-
skip?: number;
|
|
21739
|
-
page?: number;
|
|
21740
|
-
};
|
|
21758
|
+
type Query = {};
|
|
21741
21759
|
}
|
|
21742
21760
|
namespace Responses {
|
|
21743
|
-
namespace $
|
|
21761
|
+
namespace $201 {
|
|
21744
21762
|
namespace Content {
|
|
21745
|
-
|
|
21763
|
+
interface ApplicationJson {
|
|
21764
|
+
id: string;
|
|
21765
|
+
}
|
|
21746
21766
|
}
|
|
21747
21767
|
}
|
|
21748
21768
|
namespace $400 {
|
|
@@ -21759,6 +21779,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21759
21779
|
}
|
|
21760
21780
|
}
|
|
21761
21781
|
}
|
|
21782
|
+
namespace $404 {
|
|
21783
|
+
namespace Content {
|
|
21784
|
+
interface ApplicationJson {
|
|
21785
|
+
[k: string]: unknown;
|
|
21786
|
+
}
|
|
21787
|
+
}
|
|
21788
|
+
}
|
|
21762
21789
|
namespace $429 {
|
|
21763
21790
|
namespace Content {
|
|
21764
21791
|
interface ApplicationJson {
|
|
@@ -21773,6 +21800,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21773
21800
|
}
|
|
21774
21801
|
}
|
|
21775
21802
|
}
|
|
21803
|
+
namespace $503 {
|
|
21804
|
+
namespace Content {
|
|
21805
|
+
interface ApplicationJson {
|
|
21806
|
+
[k: string]: unknown;
|
|
21807
|
+
}
|
|
21808
|
+
}
|
|
21809
|
+
}
|
|
21776
21810
|
namespace Default {
|
|
21777
21811
|
namespace Content {
|
|
21778
21812
|
interface ApplicationJson {
|
|
@@ -21783,25 +21817,31 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21783
21817
|
}
|
|
21784
21818
|
}
|
|
21785
21819
|
}
|
|
21786
|
-
namespace
|
|
21787
|
-
|
|
21820
|
+
namespace V2ProjectsProjectIdMailaddresses { }
|
|
21821
|
+
namespace V2ProjectsProjectIdMailAddresses {
|
|
21822
|
+
namespace Get {
|
|
21788
21823
|
namespace Parameters {
|
|
21789
21824
|
type Path = {
|
|
21790
|
-
|
|
21825
|
+
projectId: string;
|
|
21791
21826
|
};
|
|
21792
|
-
/**
|
|
21793
|
-
* Optional reference to a file containing the new key if it was not procured via mittwald.
|
|
21794
|
-
*/
|
|
21795
|
-
interface RequestBody {
|
|
21796
|
-
externalKey?: string;
|
|
21797
|
-
}
|
|
21798
21827
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21799
|
-
type Query = {
|
|
21828
|
+
type Query = {
|
|
21829
|
+
search?: string;
|
|
21830
|
+
forwardAddress?: boolean;
|
|
21831
|
+
catchAll?: boolean;
|
|
21832
|
+
autoResponder?: boolean;
|
|
21833
|
+
mailArchive?: boolean;
|
|
21834
|
+
limit?: number;
|
|
21835
|
+
skip?: number;
|
|
21836
|
+
page?: number;
|
|
21837
|
+
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
|
|
21838
|
+
order?: ("asc" | "desc")[];
|
|
21839
|
+
};
|
|
21800
21840
|
}
|
|
21801
21841
|
namespace Responses {
|
|
21802
21842
|
namespace $200 {
|
|
21803
21843
|
namespace Content {
|
|
21804
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
21844
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
|
|
21805
21845
|
}
|
|
21806
21846
|
}
|
|
21807
21847
|
namespace $400 {
|
|
@@ -21825,21 +21865,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21825
21865
|
}
|
|
21826
21866
|
}
|
|
21827
21867
|
}
|
|
21828
|
-
namespace $
|
|
21868
|
+
namespace $429 {
|
|
21829
21869
|
namespace Content {
|
|
21830
21870
|
interface ApplicationJson {
|
|
21831
21871
|
[k: string]: unknown;
|
|
21832
21872
|
}
|
|
21833
21873
|
}
|
|
21834
21874
|
}
|
|
21835
|
-
namespace $
|
|
21875
|
+
namespace $500 {
|
|
21836
21876
|
namespace Content {
|
|
21837
21877
|
interface ApplicationJson {
|
|
21838
21878
|
[k: string]: unknown;
|
|
21839
21879
|
}
|
|
21840
21880
|
}
|
|
21841
21881
|
}
|
|
21842
|
-
namespace $
|
|
21882
|
+
namespace $503 {
|
|
21843
21883
|
namespace Content {
|
|
21844
21884
|
interface ApplicationJson {
|
|
21845
21885
|
[k: string]: unknown;
|
|
@@ -21855,28 +21895,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21855
21895
|
}
|
|
21856
21896
|
}
|
|
21857
21897
|
}
|
|
21858
|
-
}
|
|
21859
|
-
namespace V2ProjectsProjectIdActionsValidateLicenseKey {
|
|
21860
21898
|
namespace Post {
|
|
21861
21899
|
namespace Parameters {
|
|
21862
21900
|
type Path = {
|
|
21863
21901
|
projectId: string;
|
|
21864
21902
|
};
|
|
21865
|
-
|
|
21866
|
-
* The License key to validate.
|
|
21867
|
-
*/
|
|
21868
|
-
interface RequestBody {
|
|
21869
|
-
key: string;
|
|
21870
|
-
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
21871
|
-
}
|
|
21903
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
|
|
21872
21904
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21873
21905
|
type Query = {};
|
|
21874
21906
|
}
|
|
21875
21907
|
namespace Responses {
|
|
21876
|
-
namespace $
|
|
21908
|
+
namespace $201 {
|
|
21877
21909
|
namespace Content {
|
|
21878
21910
|
interface ApplicationJson {
|
|
21879
|
-
|
|
21911
|
+
id: string;
|
|
21880
21912
|
}
|
|
21881
21913
|
}
|
|
21882
21914
|
}
|
|
@@ -21901,21 +21933,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21901
21933
|
}
|
|
21902
21934
|
}
|
|
21903
21935
|
}
|
|
21904
|
-
namespace $
|
|
21936
|
+
namespace $429 {
|
|
21905
21937
|
namespace Content {
|
|
21906
21938
|
interface ApplicationJson {
|
|
21907
21939
|
[k: string]: unknown;
|
|
21908
21940
|
}
|
|
21909
21941
|
}
|
|
21910
21942
|
}
|
|
21911
|
-
namespace $
|
|
21943
|
+
namespace $500 {
|
|
21912
21944
|
namespace Content {
|
|
21913
21945
|
interface ApplicationJson {
|
|
21914
21946
|
[k: string]: unknown;
|
|
21915
21947
|
}
|
|
21916
21948
|
}
|
|
21917
21949
|
}
|
|
21918
|
-
namespace $
|
|
21950
|
+
namespace $503 {
|
|
21919
21951
|
namespace Content {
|
|
21920
21952
|
interface ApplicationJson {
|
|
21921
21953
|
[k: string]: unknown;
|
|
@@ -21932,25 +21964,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21932
21964
|
}
|
|
21933
21965
|
}
|
|
21934
21966
|
}
|
|
21935
|
-
namespace
|
|
21936
|
-
namespace
|
|
21967
|
+
namespace V2DeliveryboxesDeliveryBoxId { }
|
|
21968
|
+
namespace V2DeliveryBoxesDeliveryBoxId {
|
|
21937
21969
|
namespace Get {
|
|
21938
21970
|
namespace Parameters {
|
|
21939
21971
|
type Path = {
|
|
21940
|
-
|
|
21972
|
+
deliveryBoxId: string;
|
|
21941
21973
|
};
|
|
21942
21974
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21943
|
-
type Query = {
|
|
21944
|
-
search?: string;
|
|
21945
|
-
limit?: number;
|
|
21946
|
-
skip?: number;
|
|
21947
|
-
page?: number;
|
|
21948
|
-
};
|
|
21975
|
+
type Query = {};
|
|
21949
21976
|
}
|
|
21950
21977
|
namespace Responses {
|
|
21951
21978
|
namespace $200 {
|
|
21952
21979
|
namespace Content {
|
|
21953
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox
|
|
21980
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
|
|
21954
21981
|
}
|
|
21955
21982
|
}
|
|
21956
21983
|
namespace $400 {
|
|
@@ -22004,24 +22031,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22004
22031
|
}
|
|
22005
22032
|
}
|
|
22006
22033
|
}
|
|
22007
|
-
namespace
|
|
22034
|
+
namespace Delete {
|
|
22008
22035
|
namespace Parameters {
|
|
22009
22036
|
type Path = {
|
|
22010
|
-
|
|
22037
|
+
deliveryBoxId: string;
|
|
22011
22038
|
};
|
|
22012
|
-
interface RequestBody {
|
|
22013
|
-
description: string;
|
|
22014
|
-
password: string;
|
|
22015
|
-
}
|
|
22016
22039
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22017
22040
|
type Query = {};
|
|
22018
22041
|
}
|
|
22019
22042
|
namespace Responses {
|
|
22020
|
-
namespace $
|
|
22043
|
+
namespace $204 {
|
|
22021
22044
|
namespace Content {
|
|
22022
|
-
|
|
22023
|
-
id: string;
|
|
22024
|
-
}
|
|
22045
|
+
type Empty = unknown;
|
|
22025
22046
|
}
|
|
22026
22047
|
}
|
|
22027
22048
|
namespace $400 {
|
|
@@ -22076,31 +22097,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22076
22097
|
}
|
|
22077
22098
|
}
|
|
22078
22099
|
}
|
|
22079
|
-
namespace
|
|
22080
|
-
namespace
|
|
22100
|
+
namespace V2MailaddressesMailAddressId { }
|
|
22101
|
+
namespace V2MailAddressesMailAddressId {
|
|
22081
22102
|
namespace Get {
|
|
22082
22103
|
namespace Parameters {
|
|
22083
22104
|
type Path = {
|
|
22084
|
-
|
|
22105
|
+
mailAddressId: string;
|
|
22085
22106
|
};
|
|
22086
22107
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22087
|
-
type Query = {
|
|
22088
|
-
search?: string;
|
|
22089
|
-
forwardAddress?: boolean;
|
|
22090
|
-
catchAll?: boolean;
|
|
22091
|
-
autoResponder?: boolean;
|
|
22092
|
-
mailArchive?: boolean;
|
|
22093
|
-
limit?: number;
|
|
22094
|
-
skip?: number;
|
|
22095
|
-
page?: number;
|
|
22096
|
-
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
|
|
22097
|
-
order?: ("asc" | "desc")[];
|
|
22098
|
-
};
|
|
22108
|
+
type Query = {};
|
|
22099
22109
|
}
|
|
22100
22110
|
namespace Responses {
|
|
22101
22111
|
namespace $200 {
|
|
22102
22112
|
namespace Content {
|
|
22103
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress
|
|
22113
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
|
|
22104
22114
|
}
|
|
22105
22115
|
}
|
|
22106
22116
|
namespace $400 {
|
|
@@ -22154,21 +22164,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22154
22164
|
}
|
|
22155
22165
|
}
|
|
22156
22166
|
}
|
|
22157
|
-
namespace
|
|
22167
|
+
namespace Delete {
|
|
22158
22168
|
namespace Parameters {
|
|
22159
22169
|
type Path = {
|
|
22160
|
-
|
|
22170
|
+
mailAddressId: string;
|
|
22161
22171
|
};
|
|
22162
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
|
|
22163
22172
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22164
22173
|
type Query = {};
|
|
22165
22174
|
}
|
|
22166
22175
|
namespace Responses {
|
|
22167
|
-
namespace $
|
|
22176
|
+
namespace $204 {
|
|
22168
22177
|
namespace Content {
|
|
22169
|
-
|
|
22170
|
-
id: string;
|
|
22171
|
-
}
|
|
22178
|
+
type Empty = unknown;
|
|
22172
22179
|
}
|
|
22173
22180
|
}
|
|
22174
22181
|
namespace $400 {
|
|
@@ -22223,20 +22230,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22223
22230
|
}
|
|
22224
22231
|
}
|
|
22225
22232
|
}
|
|
22226
|
-
namespace
|
|
22227
|
-
|
|
22228
|
-
namespace Get {
|
|
22233
|
+
namespace V2MailAddressesMailAddressIdMailArchive {
|
|
22234
|
+
namespace Delete {
|
|
22229
22235
|
namespace Parameters {
|
|
22230
22236
|
type Path = {
|
|
22231
|
-
|
|
22237
|
+
mailAddressId: string;
|
|
22232
22238
|
};
|
|
22233
22239
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22234
22240
|
type Query = {};
|
|
22235
22241
|
}
|
|
22236
22242
|
namespace Responses {
|
|
22237
|
-
namespace $
|
|
22243
|
+
namespace $204 {
|
|
22238
22244
|
namespace Content {
|
|
22239
|
-
type
|
|
22245
|
+
type Empty = unknown;
|
|
22240
22246
|
}
|
|
22241
22247
|
}
|
|
22242
22248
|
namespace $400 {
|
|
@@ -22290,18 +22296,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22290
22296
|
}
|
|
22291
22297
|
}
|
|
22292
22298
|
}
|
|
22293
|
-
|
|
22299
|
+
}
|
|
22300
|
+
namespace V2MailAddressesMailAddressIdBackups {
|
|
22301
|
+
namespace Get {
|
|
22294
22302
|
namespace Parameters {
|
|
22295
22303
|
type Path = {
|
|
22296
|
-
|
|
22304
|
+
mailAddressId: string;
|
|
22297
22305
|
};
|
|
22298
22306
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22299
22307
|
type Query = {};
|
|
22300
22308
|
}
|
|
22301
22309
|
namespace Responses {
|
|
22302
|
-
namespace $
|
|
22310
|
+
namespace $200 {
|
|
22303
22311
|
namespace Content {
|
|
22304
|
-
type
|
|
22312
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[];
|
|
22305
22313
|
}
|
|
22306
22314
|
}
|
|
22307
22315
|
namespace $400 {
|
|
@@ -22339,13 +22347,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22339
22347
|
}
|
|
22340
22348
|
}
|
|
22341
22349
|
}
|
|
22342
|
-
namespace $503 {
|
|
22343
|
-
namespace Content {
|
|
22344
|
-
interface ApplicationJson {
|
|
22345
|
-
[k: string]: unknown;
|
|
22346
|
-
}
|
|
22347
|
-
}
|
|
22348
|
-
}
|
|
22349
22350
|
namespace Default {
|
|
22350
22351
|
namespace Content {
|
|
22351
22352
|
interface ApplicationJson {
|
|
@@ -22356,20 +22357,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22356
22357
|
}
|
|
22357
22358
|
}
|
|
22358
22359
|
}
|
|
22359
|
-
namespace
|
|
22360
|
-
namespace V2MailAddressesMailAddressId {
|
|
22360
|
+
namespace V2MailAddresses {
|
|
22361
22361
|
namespace Get {
|
|
22362
22362
|
namespace Parameters {
|
|
22363
|
-
type Path = {
|
|
22364
|
-
mailAddressId: string;
|
|
22365
|
-
};
|
|
22363
|
+
type Path = {};
|
|
22366
22364
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22367
|
-
type Query = {
|
|
22365
|
+
type Query = {
|
|
22366
|
+
projectId?: string;
|
|
22367
|
+
search?: string;
|
|
22368
|
+
forwardAddress?: boolean;
|
|
22369
|
+
catchAll?: boolean;
|
|
22370
|
+
autoResponder?: boolean;
|
|
22371
|
+
mailArchive?: boolean;
|
|
22372
|
+
limit?: number;
|
|
22373
|
+
skip?: number;
|
|
22374
|
+
page?: number;
|
|
22375
|
+
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
|
|
22376
|
+
order?: ("asc" | "desc")[];
|
|
22377
|
+
};
|
|
22368
22378
|
}
|
|
22369
22379
|
namespace Responses {
|
|
22370
22380
|
namespace $200 {
|
|
22371
22381
|
namespace Content {
|
|
22372
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
|
|
22382
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
|
|
22373
22383
|
}
|
|
22374
22384
|
}
|
|
22375
22385
|
namespace $400 {
|
|
@@ -22423,18 +22433,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22423
22433
|
}
|
|
22424
22434
|
}
|
|
22425
22435
|
}
|
|
22426
|
-
|
|
22436
|
+
}
|
|
22437
|
+
namespace V2ProjectsProjectIdMailsettings { }
|
|
22438
|
+
namespace V2ProjectsProjectIdMailSettings {
|
|
22439
|
+
namespace Get {
|
|
22427
22440
|
namespace Parameters {
|
|
22428
22441
|
type Path = {
|
|
22429
|
-
|
|
22442
|
+
projectId: string;
|
|
22430
22443
|
};
|
|
22431
22444
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22432
22445
|
type Query = {};
|
|
22433
22446
|
}
|
|
22434
22447
|
namespace Responses {
|
|
22435
|
-
namespace $
|
|
22448
|
+
namespace $200 {
|
|
22436
22449
|
namespace Content {
|
|
22437
|
-
|
|
22450
|
+
interface ApplicationJson {
|
|
22451
|
+
blacklist: string[];
|
|
22452
|
+
projectId: string;
|
|
22453
|
+
whitelist: string[];
|
|
22454
|
+
}
|
|
22438
22455
|
}
|
|
22439
22456
|
}
|
|
22440
22457
|
namespace $400 {
|
|
@@ -22489,11 +22506,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22489
22506
|
}
|
|
22490
22507
|
}
|
|
22491
22508
|
}
|
|
22492
|
-
namespace
|
|
22493
|
-
namespace
|
|
22509
|
+
namespace V2MailAddressesMailAddressIdBackupsBackupIdRecovery {
|
|
22510
|
+
namespace Post {
|
|
22494
22511
|
namespace Parameters {
|
|
22495
22512
|
type Path = {
|
|
22496
22513
|
mailAddressId: string;
|
|
22514
|
+
backupId: string;
|
|
22497
22515
|
};
|
|
22498
22516
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22499
22517
|
type Query = {};
|
|
@@ -22511,13 +22529,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22511
22529
|
}
|
|
22512
22530
|
}
|
|
22513
22531
|
}
|
|
22514
|
-
namespace $403 {
|
|
22515
|
-
namespace Content {
|
|
22516
|
-
interface ApplicationJson {
|
|
22517
|
-
[k: string]: unknown;
|
|
22518
|
-
}
|
|
22519
|
-
}
|
|
22520
|
-
}
|
|
22521
22532
|
namespace $404 {
|
|
22522
22533
|
namespace Content {
|
|
22523
22534
|
interface ApplicationJson {
|
|
@@ -22532,20 +22543,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22532
22543
|
}
|
|
22533
22544
|
}
|
|
22534
22545
|
}
|
|
22535
|
-
namespace $500 {
|
|
22536
|
-
namespace Content {
|
|
22537
|
-
interface ApplicationJson {
|
|
22538
|
-
[k: string]: unknown;
|
|
22539
|
-
}
|
|
22540
|
-
}
|
|
22541
|
-
}
|
|
22542
|
-
namespace $503 {
|
|
22543
|
-
namespace Content {
|
|
22544
|
-
interface ApplicationJson {
|
|
22545
|
-
[k: string]: unknown;
|
|
22546
|
-
}
|
|
22547
|
-
}
|
|
22548
|
-
}
|
|
22549
22546
|
namespace Default {
|
|
22550
22547
|
namespace Content {
|
|
22551
22548
|
interface ApplicationJson {
|
|
@@ -22556,19 +22553,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22556
22553
|
}
|
|
22557
22554
|
}
|
|
22558
22555
|
}
|
|
22559
|
-
namespace
|
|
22560
|
-
namespace
|
|
22556
|
+
namespace V2DeliveryBoxesDeliveryBoxIdDescription {
|
|
22557
|
+
namespace Patch {
|
|
22561
22558
|
namespace Parameters {
|
|
22562
22559
|
type Path = {
|
|
22563
|
-
|
|
22560
|
+
deliveryBoxId: string;
|
|
22564
22561
|
};
|
|
22562
|
+
interface RequestBody {
|
|
22563
|
+
description: string;
|
|
22564
|
+
}
|
|
22565
22565
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22566
22566
|
type Query = {};
|
|
22567
22567
|
}
|
|
22568
22568
|
namespace Responses {
|
|
22569
|
-
namespace $
|
|
22569
|
+
namespace $204 {
|
|
22570
22570
|
namespace Content {
|
|
22571
|
-
type
|
|
22571
|
+
type Empty = unknown;
|
|
22572
22572
|
}
|
|
22573
22573
|
}
|
|
22574
22574
|
namespace $400 {
|
|
@@ -22606,6 +22606,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22606
22606
|
}
|
|
22607
22607
|
}
|
|
22608
22608
|
}
|
|
22609
|
+
namespace $503 {
|
|
22610
|
+
namespace Content {
|
|
22611
|
+
interface ApplicationJson {
|
|
22612
|
+
[k: string]: unknown;
|
|
22613
|
+
}
|
|
22614
|
+
}
|
|
22615
|
+
}
|
|
22609
22616
|
namespace Default {
|
|
22610
22617
|
namespace Content {
|
|
22611
22618
|
interface ApplicationJson {
|
|
@@ -22616,29 +22623,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22616
22623
|
}
|
|
22617
22624
|
}
|
|
22618
22625
|
}
|
|
22619
|
-
namespace
|
|
22620
|
-
namespace
|
|
22626
|
+
namespace V2DeliveryBoxesDeliveryBoxIdPassword {
|
|
22627
|
+
namespace Patch {
|
|
22621
22628
|
namespace Parameters {
|
|
22622
|
-
type Path = {
|
|
22623
|
-
|
|
22624
|
-
type Query = {
|
|
22625
|
-
projectId?: string;
|
|
22626
|
-
search?: string;
|
|
22627
|
-
forwardAddress?: boolean;
|
|
22628
|
-
catchAll?: boolean;
|
|
22629
|
-
autoResponder?: boolean;
|
|
22630
|
-
mailArchive?: boolean;
|
|
22631
|
-
limit?: number;
|
|
22632
|
-
skip?: number;
|
|
22633
|
-
page?: number;
|
|
22634
|
-
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
|
|
22635
|
-
order?: ("asc" | "desc")[];
|
|
22629
|
+
type Path = {
|
|
22630
|
+
deliveryBoxId: string;
|
|
22636
22631
|
};
|
|
22632
|
+
interface RequestBody {
|
|
22633
|
+
password: string;
|
|
22634
|
+
}
|
|
22635
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22636
|
+
type Query = {};
|
|
22637
22637
|
}
|
|
22638
22638
|
namespace Responses {
|
|
22639
|
-
namespace $
|
|
22639
|
+
namespace $204 {
|
|
22640
22640
|
namespace Content {
|
|
22641
|
-
type
|
|
22641
|
+
type Empty = unknown;
|
|
22642
22642
|
}
|
|
22643
22643
|
}
|
|
22644
22644
|
namespace $400 {
|
|
@@ -22693,24 +22693,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22693
22693
|
}
|
|
22694
22694
|
}
|
|
22695
22695
|
}
|
|
22696
|
-
namespace
|
|
22697
|
-
|
|
22698
|
-
namespace Get {
|
|
22696
|
+
namespace V2MailAddressesMailAddressIdAddress {
|
|
22697
|
+
namespace Patch {
|
|
22699
22698
|
namespace Parameters {
|
|
22700
22699
|
type Path = {
|
|
22701
|
-
|
|
22700
|
+
mailAddressId: string;
|
|
22702
22701
|
};
|
|
22702
|
+
interface RequestBody {
|
|
22703
|
+
address: string;
|
|
22704
|
+
}
|
|
22703
22705
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22704
22706
|
type Query = {};
|
|
22705
22707
|
}
|
|
22706
22708
|
namespace Responses {
|
|
22707
|
-
namespace $
|
|
22709
|
+
namespace $204 {
|
|
22708
22710
|
namespace Content {
|
|
22709
|
-
|
|
22710
|
-
blacklist: string[];
|
|
22711
|
-
projectId: string;
|
|
22712
|
-
whitelist: string[];
|
|
22713
|
-
}
|
|
22711
|
+
type Empty = unknown;
|
|
22714
22712
|
}
|
|
22715
22713
|
}
|
|
22716
22714
|
namespace $400 {
|
|
@@ -22765,13 +22763,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22765
22763
|
}
|
|
22766
22764
|
}
|
|
22767
22765
|
}
|
|
22768
|
-
namespace
|
|
22769
|
-
namespace
|
|
22766
|
+
namespace V2MailAddressesMailAddressIdCatchAll {
|
|
22767
|
+
namespace Patch {
|
|
22770
22768
|
namespace Parameters {
|
|
22771
22769
|
type Path = {
|
|
22772
22770
|
mailAddressId: string;
|
|
22773
|
-
backupId: string;
|
|
22774
22771
|
};
|
|
22772
|
+
interface RequestBody {
|
|
22773
|
+
active: boolean;
|
|
22774
|
+
}
|
|
22775
22775
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22776
22776
|
type Query = {};
|
|
22777
22777
|
}
|
|
@@ -22788,6 +22788,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22788
22788
|
}
|
|
22789
22789
|
}
|
|
22790
22790
|
}
|
|
22791
|
+
namespace $403 {
|
|
22792
|
+
namespace Content {
|
|
22793
|
+
interface ApplicationJson {
|
|
22794
|
+
[k: string]: unknown;
|
|
22795
|
+
}
|
|
22796
|
+
}
|
|
22797
|
+
}
|
|
22791
22798
|
namespace $404 {
|
|
22792
22799
|
namespace Content {
|
|
22793
22800
|
interface ApplicationJson {
|
|
@@ -22802,6 +22809,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22802
22809
|
}
|
|
22803
22810
|
}
|
|
22804
22811
|
}
|
|
22812
|
+
namespace $500 {
|
|
22813
|
+
namespace Content {
|
|
22814
|
+
interface ApplicationJson {
|
|
22815
|
+
[k: string]: unknown;
|
|
22816
|
+
}
|
|
22817
|
+
}
|
|
22818
|
+
}
|
|
22819
|
+
namespace $503 {
|
|
22820
|
+
namespace Content {
|
|
22821
|
+
interface ApplicationJson {
|
|
22822
|
+
[k: string]: unknown;
|
|
22823
|
+
}
|
|
22824
|
+
}
|
|
22825
|
+
}
|
|
22805
22826
|
namespace Default {
|
|
22806
22827
|
namespace Content {
|
|
22807
22828
|
interface ApplicationJson {
|
|
@@ -22812,32 +22833,27 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22812
22833
|
}
|
|
22813
22834
|
}
|
|
22814
22835
|
}
|
|
22815
|
-
namespace
|
|
22816
|
-
namespace
|
|
22836
|
+
namespace V2CustomersCustomerIdPaymentMethod {
|
|
22837
|
+
namespace Get {
|
|
22817
22838
|
namespace Parameters {
|
|
22818
22839
|
type Path = {
|
|
22819
|
-
|
|
22840
|
+
customerId: string;
|
|
22820
22841
|
};
|
|
22821
|
-
interface RequestBody {
|
|
22822
|
-
description: string;
|
|
22823
|
-
}
|
|
22824
22842
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22825
22843
|
type Query = {};
|
|
22826
22844
|
}
|
|
22827
22845
|
namespace Responses {
|
|
22828
|
-
namespace $
|
|
22829
|
-
namespace Content {
|
|
22830
|
-
type Empty = unknown;
|
|
22831
|
-
}
|
|
22832
|
-
}
|
|
22833
|
-
namespace $400 {
|
|
22846
|
+
namespace $200 {
|
|
22834
22847
|
namespace Content {
|
|
22835
22848
|
interface ApplicationJson {
|
|
22836
|
-
|
|
22849
|
+
cardDetails?: {
|
|
22850
|
+
brand: string;
|
|
22851
|
+
last4: string;
|
|
22852
|
+
};
|
|
22837
22853
|
}
|
|
22838
22854
|
}
|
|
22839
22855
|
}
|
|
22840
|
-
namespace $
|
|
22856
|
+
namespace $400 {
|
|
22841
22857
|
namespace Content {
|
|
22842
22858
|
interface ApplicationJson {
|
|
22843
22859
|
[k: string]: unknown;
|
|
@@ -22858,20 +22874,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22858
22874
|
}
|
|
22859
22875
|
}
|
|
22860
22876
|
}
|
|
22861
|
-
namespace $500 {
|
|
22862
|
-
namespace Content {
|
|
22863
|
-
interface ApplicationJson {
|
|
22864
|
-
[k: string]: unknown;
|
|
22865
|
-
}
|
|
22866
|
-
}
|
|
22867
|
-
}
|
|
22868
|
-
namespace $503 {
|
|
22869
|
-
namespace Content {
|
|
22870
|
-
interface ApplicationJson {
|
|
22871
|
-
[k: string]: unknown;
|
|
22872
|
-
}
|
|
22873
|
-
}
|
|
22874
|
-
}
|
|
22875
22877
|
namespace Default {
|
|
22876
22878
|
namespace Content {
|
|
22877
22879
|
interface ApplicationJson {
|
|
@@ -22881,33 +22883,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22881
22883
|
}
|
|
22882
22884
|
}
|
|
22883
22885
|
}
|
|
22884
|
-
|
|
22885
|
-
namespace V2DeliveryBoxesDeliveryBoxIdPassword {
|
|
22886
|
-
namespace Patch {
|
|
22886
|
+
namespace Put {
|
|
22887
22887
|
namespace Parameters {
|
|
22888
22888
|
type Path = {
|
|
22889
|
-
|
|
22889
|
+
customerId: string;
|
|
22890
22890
|
};
|
|
22891
22891
|
interface RequestBody {
|
|
22892
|
-
|
|
22892
|
+
customReturnUrl?: string;
|
|
22893
22893
|
}
|
|
22894
22894
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22895
22895
|
type Query = {};
|
|
22896
22896
|
}
|
|
22897
22897
|
namespace Responses {
|
|
22898
|
-
namespace $
|
|
22899
|
-
namespace Content {
|
|
22900
|
-
type Empty = unknown;
|
|
22901
|
-
}
|
|
22902
|
-
}
|
|
22903
|
-
namespace $400 {
|
|
22898
|
+
namespace $200 {
|
|
22904
22899
|
namespace Content {
|
|
22905
22900
|
interface ApplicationJson {
|
|
22906
|
-
|
|
22901
|
+
url?: string;
|
|
22907
22902
|
}
|
|
22908
22903
|
}
|
|
22909
22904
|
}
|
|
22910
|
-
namespace $
|
|
22905
|
+
namespace $400 {
|
|
22911
22906
|
namespace Content {
|
|
22912
22907
|
interface ApplicationJson {
|
|
22913
22908
|
[k: string]: unknown;
|
|
@@ -22928,20 +22923,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22928
22923
|
}
|
|
22929
22924
|
}
|
|
22930
22925
|
}
|
|
22931
|
-
namespace $500 {
|
|
22932
|
-
namespace Content {
|
|
22933
|
-
interface ApplicationJson {
|
|
22934
|
-
[k: string]: unknown;
|
|
22935
|
-
}
|
|
22936
|
-
}
|
|
22937
|
-
}
|
|
22938
|
-
namespace $503 {
|
|
22939
|
-
namespace Content {
|
|
22940
|
-
interface ApplicationJson {
|
|
22941
|
-
[k: string]: unknown;
|
|
22942
|
-
}
|
|
22943
|
-
}
|
|
22944
|
-
}
|
|
22945
22926
|
namespace Default {
|
|
22946
22927
|
namespace Content {
|
|
22947
22928
|
interface ApplicationJson {
|
|
@@ -22952,42 +22933,50 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22952
22933
|
}
|
|
22953
22934
|
}
|
|
22954
22935
|
}
|
|
22955
|
-
namespace
|
|
22956
|
-
namespace
|
|
22936
|
+
namespace V2TimeZones {
|
|
22937
|
+
namespace Get {
|
|
22957
22938
|
namespace Parameters {
|
|
22958
|
-
type Path = {
|
|
22959
|
-
mailAddressId: string;
|
|
22960
|
-
};
|
|
22961
|
-
interface RequestBody {
|
|
22962
|
-
address: string;
|
|
22963
|
-
}
|
|
22939
|
+
type Path = {};
|
|
22964
22940
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22965
22941
|
type Query = {};
|
|
22966
22942
|
}
|
|
22967
22943
|
namespace Responses {
|
|
22968
|
-
namespace $
|
|
22944
|
+
namespace $200 {
|
|
22969
22945
|
namespace Content {
|
|
22970
|
-
type
|
|
22946
|
+
type ApplicationJson = string[];
|
|
22971
22947
|
}
|
|
22972
22948
|
}
|
|
22973
|
-
namespace $
|
|
22949
|
+
namespace $429 {
|
|
22974
22950
|
namespace Content {
|
|
22975
22951
|
interface ApplicationJson {
|
|
22976
22952
|
[k: string]: unknown;
|
|
22977
22953
|
}
|
|
22978
22954
|
}
|
|
22979
22955
|
}
|
|
22980
|
-
namespace
|
|
22956
|
+
namespace Default {
|
|
22981
22957
|
namespace Content {
|
|
22982
22958
|
interface ApplicationJson {
|
|
22983
22959
|
[k: string]: unknown;
|
|
22984
22960
|
}
|
|
22985
22961
|
}
|
|
22986
22962
|
}
|
|
22987
|
-
|
|
22963
|
+
}
|
|
22964
|
+
}
|
|
22965
|
+
}
|
|
22966
|
+
namespace V2NewsletterSubscriptionsSelf {
|
|
22967
|
+
namespace Get {
|
|
22968
|
+
namespace Parameters {
|
|
22969
|
+
type Path = {};
|
|
22970
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22971
|
+
type Query = {};
|
|
22972
|
+
}
|
|
22973
|
+
namespace Responses {
|
|
22974
|
+
namespace $200 {
|
|
22988
22975
|
namespace Content {
|
|
22989
22976
|
interface ApplicationJson {
|
|
22990
|
-
|
|
22977
|
+
active: boolean;
|
|
22978
|
+
email: string;
|
|
22979
|
+
registered: boolean;
|
|
22991
22980
|
}
|
|
22992
22981
|
}
|
|
22993
22982
|
}
|
|
@@ -22998,20 +22987,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22998
22987
|
}
|
|
22999
22988
|
}
|
|
23000
22989
|
}
|
|
23001
|
-
namespace $500 {
|
|
23002
|
-
namespace Content {
|
|
23003
|
-
interface ApplicationJson {
|
|
23004
|
-
[k: string]: unknown;
|
|
23005
|
-
}
|
|
23006
|
-
}
|
|
23007
|
-
}
|
|
23008
|
-
namespace $503 {
|
|
23009
|
-
namespace Content {
|
|
23010
|
-
interface ApplicationJson {
|
|
23011
|
-
[k: string]: unknown;
|
|
23012
|
-
}
|
|
23013
|
-
}
|
|
23014
|
-
}
|
|
23015
22990
|
namespace Default {
|
|
23016
22991
|
namespace Content {
|
|
23017
22992
|
interface ApplicationJson {
|
|
@@ -23021,16 +22996,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23021
22996
|
}
|
|
23022
22997
|
}
|
|
23023
22998
|
}
|
|
23024
|
-
|
|
23025
|
-
namespace V2MailAddressesMailAddressIdCatchAll {
|
|
23026
|
-
namespace Patch {
|
|
22999
|
+
namespace Delete {
|
|
23027
23000
|
namespace Parameters {
|
|
23028
|
-
type Path = {
|
|
23029
|
-
mailAddressId: string;
|
|
23030
|
-
};
|
|
23031
|
-
interface RequestBody {
|
|
23032
|
-
active: boolean;
|
|
23033
|
-
}
|
|
23001
|
+
type Path = {};
|
|
23034
23002
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23035
23003
|
type Query = {};
|
|
23036
23004
|
}
|
|
@@ -23040,24 +23008,40 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23040
23008
|
type Empty = unknown;
|
|
23041
23009
|
}
|
|
23042
23010
|
}
|
|
23043
|
-
namespace $
|
|
23011
|
+
namespace $429 {
|
|
23044
23012
|
namespace Content {
|
|
23045
23013
|
interface ApplicationJson {
|
|
23046
23014
|
[k: string]: unknown;
|
|
23047
23015
|
}
|
|
23048
23016
|
}
|
|
23049
23017
|
}
|
|
23050
|
-
namespace
|
|
23018
|
+
namespace Default {
|
|
23051
23019
|
namespace Content {
|
|
23052
23020
|
interface ApplicationJson {
|
|
23053
23021
|
[k: string]: unknown;
|
|
23054
23022
|
}
|
|
23055
23023
|
}
|
|
23056
23024
|
}
|
|
23057
|
-
|
|
23025
|
+
}
|
|
23026
|
+
}
|
|
23027
|
+
}
|
|
23028
|
+
namespace V2NotificationsUnreadCounts { }
|
|
23029
|
+
namespace V2NotificationUnreadCounts {
|
|
23030
|
+
namespace Get {
|
|
23031
|
+
namespace Parameters {
|
|
23032
|
+
type Path = {};
|
|
23033
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23034
|
+
type Query = {};
|
|
23035
|
+
}
|
|
23036
|
+
namespace Responses {
|
|
23037
|
+
namespace $200 {
|
|
23058
23038
|
namespace Content {
|
|
23059
23039
|
interface ApplicationJson {
|
|
23060
|
-
|
|
23040
|
+
error: number;
|
|
23041
|
+
info: number;
|
|
23042
|
+
success: number;
|
|
23043
|
+
total: number;
|
|
23044
|
+
warning: number;
|
|
23061
23045
|
}
|
|
23062
23046
|
}
|
|
23063
23047
|
}
|
|
@@ -23068,14 +23052,38 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23068
23052
|
}
|
|
23069
23053
|
}
|
|
23070
23054
|
}
|
|
23071
|
-
namespace
|
|
23055
|
+
namespace Default {
|
|
23072
23056
|
namespace Content {
|
|
23073
23057
|
interface ApplicationJson {
|
|
23074
23058
|
[k: string]: unknown;
|
|
23075
23059
|
}
|
|
23076
23060
|
}
|
|
23077
23061
|
}
|
|
23078
|
-
|
|
23062
|
+
}
|
|
23063
|
+
}
|
|
23064
|
+
}
|
|
23065
|
+
namespace V2Notifications {
|
|
23066
|
+
namespace Get {
|
|
23067
|
+
namespace Parameters {
|
|
23068
|
+
type Path = {};
|
|
23069
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23070
|
+
type Query = {
|
|
23071
|
+
status?: "unread" | "read";
|
|
23072
|
+
severity?: ("success" | "info" | "warning" | "error")[];
|
|
23073
|
+
type?: string[];
|
|
23074
|
+
"type-not"?: string[];
|
|
23075
|
+
limit?: number;
|
|
23076
|
+
skip?: number;
|
|
23077
|
+
page?: number;
|
|
23078
|
+
};
|
|
23079
|
+
}
|
|
23080
|
+
namespace Responses {
|
|
23081
|
+
namespace $200 {
|
|
23082
|
+
namespace Content {
|
|
23083
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MessagingNotification[];
|
|
23084
|
+
}
|
|
23085
|
+
}
|
|
23086
|
+
namespace $429 {
|
|
23079
23087
|
namespace Content {
|
|
23080
23088
|
interface ApplicationJson {
|
|
23081
23089
|
[k: string]: unknown;
|
|
@@ -23092,34 +23100,34 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23092
23100
|
}
|
|
23093
23101
|
}
|
|
23094
23102
|
}
|
|
23095
|
-
namespace
|
|
23096
|
-
|
|
23103
|
+
namespace V2NotificationsStatus { }
|
|
23104
|
+
namespace V2NotificationsActionsReadAll {
|
|
23105
|
+
namespace Post {
|
|
23097
23106
|
namespace Parameters {
|
|
23098
|
-
type Path = {
|
|
23099
|
-
|
|
23100
|
-
}
|
|
23107
|
+
type Path = {};
|
|
23108
|
+
interface RequestBody {
|
|
23109
|
+
}
|
|
23101
23110
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23102
|
-
type Query = {
|
|
23111
|
+
type Query = {
|
|
23112
|
+
severities?: ("success" | "info" | "warning" | "error")[];
|
|
23113
|
+
referenceId?: string;
|
|
23114
|
+
referenceAggregate?: string;
|
|
23115
|
+
referenceDomain?: string;
|
|
23116
|
+
};
|
|
23103
23117
|
}
|
|
23104
23118
|
namespace Responses {
|
|
23105
23119
|
namespace $200 {
|
|
23106
23120
|
namespace Content {
|
|
23107
23121
|
interface ApplicationJson {
|
|
23108
|
-
|
|
23109
|
-
|
|
23110
|
-
|
|
23111
|
-
|
|
23112
|
-
|
|
23113
|
-
}
|
|
23114
|
-
}
|
|
23115
|
-
namespace $400 {
|
|
23116
|
-
namespace Content {
|
|
23117
|
-
interface ApplicationJson {
|
|
23118
|
-
[k: string]: unknown;
|
|
23122
|
+
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23123
|
+
/**
|
|
23124
|
+
* The number of notifications that have been updated.
|
|
23125
|
+
*/
|
|
23126
|
+
updatedCount: number;
|
|
23119
23127
|
}
|
|
23120
23128
|
}
|
|
23121
23129
|
}
|
|
23122
|
-
namespace $
|
|
23130
|
+
namespace $403 {
|
|
23123
23131
|
namespace Content {
|
|
23124
23132
|
interface ApplicationJson {
|
|
23125
23133
|
[k: string]: unknown;
|
|
@@ -23142,13 +23150,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23142
23150
|
}
|
|
23143
23151
|
}
|
|
23144
23152
|
}
|
|
23153
|
+
}
|
|
23154
|
+
namespace V2NotificationsNotificationIdStatus {
|
|
23145
23155
|
namespace Put {
|
|
23146
23156
|
namespace Parameters {
|
|
23147
23157
|
type Path = {
|
|
23148
|
-
|
|
23158
|
+
notificationId: string;
|
|
23149
23159
|
};
|
|
23150
23160
|
interface RequestBody {
|
|
23151
|
-
|
|
23161
|
+
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23152
23162
|
}
|
|
23153
23163
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23154
23164
|
type Query = {};
|
|
@@ -23157,14 +23167,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23157
23167
|
namespace $200 {
|
|
23158
23168
|
namespace Content {
|
|
23159
23169
|
interface ApplicationJson {
|
|
23160
|
-
|
|
23161
|
-
}
|
|
23162
|
-
}
|
|
23163
|
-
}
|
|
23164
|
-
namespace $400 {
|
|
23165
|
-
namespace Content {
|
|
23166
|
-
interface ApplicationJson {
|
|
23167
|
-
[k: string]: unknown;
|
|
23170
|
+
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23168
23171
|
}
|
|
23169
23172
|
}
|
|
23170
23173
|
}
|
|
@@ -23192,17 +23195,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23192
23195
|
}
|
|
23193
23196
|
}
|
|
23194
23197
|
}
|
|
23195
|
-
namespace
|
|
23198
|
+
namespace V2Orders {
|
|
23196
23199
|
namespace Get {
|
|
23197
23200
|
namespace Parameters {
|
|
23198
23201
|
type Path = {};
|
|
23199
23202
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23200
|
-
type Query = {
|
|
23203
|
+
type Query = {
|
|
23204
|
+
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23205
|
+
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23206
|
+
templateNames?: string[];
|
|
23207
|
+
types?: MittwaldAPIV2.Components.Schemas.OrderOrderType[];
|
|
23208
|
+
limit?: number;
|
|
23209
|
+
skip?: number;
|
|
23210
|
+
page?: number;
|
|
23211
|
+
};
|
|
23201
23212
|
}
|
|
23202
23213
|
namespace Responses {
|
|
23203
23214
|
namespace $200 {
|
|
23204
23215
|
namespace Content {
|
|
23205
|
-
type ApplicationJson =
|
|
23216
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23206
23217
|
}
|
|
23207
23218
|
}
|
|
23208
23219
|
namespace $429 {
|
|
@@ -23221,21 +23232,35 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23221
23232
|
}
|
|
23222
23233
|
}
|
|
23223
23234
|
}
|
|
23224
|
-
|
|
23225
|
-
namespace V2NewsletterSubscriptionsSelf {
|
|
23226
|
-
namespace Get {
|
|
23235
|
+
namespace Post {
|
|
23227
23236
|
namespace Parameters {
|
|
23228
23237
|
type Path = {};
|
|
23238
|
+
interface RequestBody {
|
|
23239
|
+
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrder | MittwaldAPIV2.Components.Schemas.OrderServerOrder | MittwaldAPIV2.Components.Schemas.OrderDomainOrder | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrder | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrder | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrder | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrder | MittwaldAPIV2.Components.Schemas.OrderLicenseOrder;
|
|
23240
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
|
|
23241
|
+
}
|
|
23229
23242
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23230
23243
|
type Query = {};
|
|
23231
23244
|
}
|
|
23232
23245
|
namespace Responses {
|
|
23233
|
-
namespace $
|
|
23246
|
+
namespace $201 {
|
|
23234
23247
|
namespace Content {
|
|
23235
23248
|
interface ApplicationJson {
|
|
23236
|
-
|
|
23237
|
-
|
|
23238
|
-
|
|
23249
|
+
orderId: string;
|
|
23250
|
+
}
|
|
23251
|
+
}
|
|
23252
|
+
}
|
|
23253
|
+
namespace $400 {
|
|
23254
|
+
namespace Content {
|
|
23255
|
+
interface ApplicationJson {
|
|
23256
|
+
[k: string]: unknown;
|
|
23257
|
+
}
|
|
23258
|
+
}
|
|
23259
|
+
}
|
|
23260
|
+
namespace $422 {
|
|
23261
|
+
namespace Content {
|
|
23262
|
+
interface ApplicationJson {
|
|
23263
|
+
error?: {};
|
|
23239
23264
|
}
|
|
23240
23265
|
}
|
|
23241
23266
|
}
|
|
@@ -23255,16 +23280,31 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23255
23280
|
}
|
|
23256
23281
|
}
|
|
23257
23282
|
}
|
|
23258
|
-
|
|
23283
|
+
}
|
|
23284
|
+
namespace V2TariffChanges {
|
|
23285
|
+
namespace Post {
|
|
23259
23286
|
namespace Parameters {
|
|
23260
23287
|
type Path = {};
|
|
23288
|
+
interface RequestBody {
|
|
23289
|
+
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange;
|
|
23290
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting";
|
|
23291
|
+
}
|
|
23261
23292
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23262
23293
|
type Query = {};
|
|
23263
23294
|
}
|
|
23264
23295
|
namespace Responses {
|
|
23265
|
-
namespace $
|
|
23296
|
+
namespace $201 {
|
|
23266
23297
|
namespace Content {
|
|
23267
|
-
|
|
23298
|
+
interface ApplicationJson {
|
|
23299
|
+
orderId: string;
|
|
23300
|
+
}
|
|
23301
|
+
}
|
|
23302
|
+
}
|
|
23303
|
+
namespace $400 {
|
|
23304
|
+
namespace Content {
|
|
23305
|
+
interface ApplicationJson {
|
|
23306
|
+
[k: string]: unknown;
|
|
23307
|
+
}
|
|
23268
23308
|
}
|
|
23269
23309
|
}
|
|
23270
23310
|
namespace $429 {
|
|
@@ -23284,24 +23324,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23284
23324
|
}
|
|
23285
23325
|
}
|
|
23286
23326
|
}
|
|
23287
|
-
namespace
|
|
23288
|
-
namespace V2NotificationUnreadCounts {
|
|
23327
|
+
namespace V2OrdersOrderId {
|
|
23289
23328
|
namespace Get {
|
|
23290
23329
|
namespace Parameters {
|
|
23291
|
-
type Path = {
|
|
23330
|
+
type Path = {
|
|
23331
|
+
orderId: string;
|
|
23332
|
+
};
|
|
23292
23333
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23293
23334
|
type Query = {};
|
|
23294
23335
|
}
|
|
23295
23336
|
namespace Responses {
|
|
23296
23337
|
namespace $200 {
|
|
23297
23338
|
namespace Content {
|
|
23298
|
-
|
|
23299
|
-
error: number;
|
|
23300
|
-
info: number;
|
|
23301
|
-
success: number;
|
|
23302
|
-
total: number;
|
|
23303
|
-
warning: number;
|
|
23304
|
-
}
|
|
23339
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder;
|
|
23305
23340
|
}
|
|
23306
23341
|
}
|
|
23307
23342
|
namespace $429 {
|
|
@@ -23321,25 +23356,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23321
23356
|
}
|
|
23322
23357
|
}
|
|
23323
23358
|
}
|
|
23324
|
-
namespace
|
|
23359
|
+
namespace V2CustomersCustomerIdOrders {
|
|
23325
23360
|
namespace Get {
|
|
23326
23361
|
namespace Parameters {
|
|
23327
|
-
type Path = {
|
|
23362
|
+
type Path = {
|
|
23363
|
+
customerId: string;
|
|
23364
|
+
};
|
|
23328
23365
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23329
23366
|
type Query = {
|
|
23330
|
-
status?: "unread" | "read";
|
|
23331
|
-
severity?: ("success" | "info" | "warning" | "error")[];
|
|
23332
|
-
type?: string[];
|
|
23333
|
-
"type-not"?: string[];
|
|
23334
23367
|
limit?: number;
|
|
23335
23368
|
skip?: number;
|
|
23336
23369
|
page?: number;
|
|
23370
|
+
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23371
|
+
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23372
|
+
templateNames?: string[];
|
|
23337
23373
|
};
|
|
23338
23374
|
}
|
|
23339
23375
|
namespace Responses {
|
|
23340
23376
|
namespace $200 {
|
|
23341
23377
|
namespace Content {
|
|
23342
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
23378
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23343
23379
|
}
|
|
23344
23380
|
}
|
|
23345
23381
|
namespace $429 {
|
|
@@ -23359,38 +23395,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23359
23395
|
}
|
|
23360
23396
|
}
|
|
23361
23397
|
}
|
|
23362
|
-
namespace
|
|
23363
|
-
|
|
23364
|
-
namespace Post {
|
|
23398
|
+
namespace V2ProjectsProjectIdOrders {
|
|
23399
|
+
namespace Get {
|
|
23365
23400
|
namespace Parameters {
|
|
23366
|
-
type Path = {
|
|
23367
|
-
|
|
23368
|
-
}
|
|
23401
|
+
type Path = {
|
|
23402
|
+
projectId: string;
|
|
23403
|
+
};
|
|
23369
23404
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23370
23405
|
type Query = {
|
|
23371
|
-
|
|
23372
|
-
|
|
23373
|
-
|
|
23374
|
-
|
|
23406
|
+
limit?: number;
|
|
23407
|
+
skip?: number;
|
|
23408
|
+
page?: number;
|
|
23409
|
+
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23410
|
+
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23411
|
+
templateNames?: string[];
|
|
23375
23412
|
};
|
|
23376
23413
|
}
|
|
23377
23414
|
namespace Responses {
|
|
23378
23415
|
namespace $200 {
|
|
23379
23416
|
namespace Content {
|
|
23380
|
-
|
|
23381
|
-
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23382
|
-
/**
|
|
23383
|
-
* The number of notifications that have been updated.
|
|
23384
|
-
*/
|
|
23385
|
-
updatedCount: number;
|
|
23386
|
-
}
|
|
23387
|
-
}
|
|
23388
|
-
}
|
|
23389
|
-
namespace $403 {
|
|
23390
|
-
namespace Content {
|
|
23391
|
-
interface ApplicationJson {
|
|
23392
|
-
[k: string]: unknown;
|
|
23393
|
-
}
|
|
23417
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23394
23418
|
}
|
|
23395
23419
|
}
|
|
23396
23420
|
namespace $429 {
|
|
@@ -23410,71 +23434,37 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23410
23434
|
}
|
|
23411
23435
|
}
|
|
23412
23436
|
}
|
|
23413
|
-
namespace
|
|
23414
|
-
namespace
|
|
23437
|
+
namespace V2OrderPreviews {
|
|
23438
|
+
namespace Post {
|
|
23415
23439
|
namespace Parameters {
|
|
23416
|
-
type Path = {
|
|
23417
|
-
notificationId: string;
|
|
23418
|
-
};
|
|
23440
|
+
type Path = {};
|
|
23419
23441
|
interface RequestBody {
|
|
23420
|
-
|
|
23442
|
+
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreview;
|
|
23443
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
|
|
23421
23444
|
}
|
|
23422
|
-
type Header = {}
|
|
23445
|
+
type Header = {};
|
|
23423
23446
|
type Query = {};
|
|
23424
23447
|
}
|
|
23425
23448
|
namespace Responses {
|
|
23426
23449
|
namespace $200 {
|
|
23427
23450
|
namespace Content {
|
|
23428
|
-
|
|
23429
|
-
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23430
|
-
}
|
|
23431
|
-
}
|
|
23432
|
-
}
|
|
23433
|
-
namespace $404 {
|
|
23434
|
-
namespace Content {
|
|
23435
|
-
interface ApplicationJson {
|
|
23436
|
-
[k: string]: unknown;
|
|
23437
|
-
}
|
|
23451
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreviewResponse;
|
|
23438
23452
|
}
|
|
23439
23453
|
}
|
|
23440
|
-
namespace $
|
|
23454
|
+
namespace $400 {
|
|
23441
23455
|
namespace Content {
|
|
23442
23456
|
interface ApplicationJson {
|
|
23443
23457
|
[k: string]: unknown;
|
|
23444
23458
|
}
|
|
23445
23459
|
}
|
|
23446
23460
|
}
|
|
23447
|
-
namespace
|
|
23461
|
+
namespace $422 {
|
|
23448
23462
|
namespace Content {
|
|
23449
23463
|
interface ApplicationJson {
|
|
23450
|
-
|
|
23464
|
+
error?: {};
|
|
23451
23465
|
}
|
|
23452
23466
|
}
|
|
23453
23467
|
}
|
|
23454
|
-
}
|
|
23455
|
-
}
|
|
23456
|
-
}
|
|
23457
|
-
namespace V2Orders {
|
|
23458
|
-
namespace Get {
|
|
23459
|
-
namespace Parameters {
|
|
23460
|
-
type Path = {};
|
|
23461
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23462
|
-
type Query = {
|
|
23463
|
-
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23464
|
-
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23465
|
-
templateNames?: string[];
|
|
23466
|
-
types?: MittwaldAPIV2.Components.Schemas.OrderOrderType[];
|
|
23467
|
-
limit?: number;
|
|
23468
|
-
skip?: number;
|
|
23469
|
-
page?: number;
|
|
23470
|
-
};
|
|
23471
|
-
}
|
|
23472
|
-
namespace Responses {
|
|
23473
|
-
namespace $200 {
|
|
23474
|
-
namespace Content {
|
|
23475
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23476
|
-
}
|
|
23477
|
-
}
|
|
23478
23468
|
namespace $429 {
|
|
23479
23469
|
namespace Content {
|
|
23480
23470
|
interface ApplicationJson {
|
|
@@ -23491,21 +23481,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23491
23481
|
}
|
|
23492
23482
|
}
|
|
23493
23483
|
}
|
|
23484
|
+
}
|
|
23485
|
+
namespace V2TariffChangePreviews {
|
|
23494
23486
|
namespace Post {
|
|
23495
23487
|
namespace Parameters {
|
|
23496
23488
|
type Path = {};
|
|
23497
23489
|
interface RequestBody {
|
|
23498
|
-
|
|
23499
|
-
|
|
23490
|
+
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange;
|
|
23491
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting";
|
|
23500
23492
|
}
|
|
23501
23493
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23502
23494
|
type Query = {};
|
|
23503
23495
|
}
|
|
23504
23496
|
namespace Responses {
|
|
23505
|
-
namespace $
|
|
23497
|
+
namespace $200 {
|
|
23506
23498
|
namespace Content {
|
|
23507
23499
|
interface ApplicationJson {
|
|
23508
|
-
|
|
23500
|
+
machineTypePrice: number;
|
|
23501
|
+
storagePrice: number;
|
|
23502
|
+
totalPrice: number;
|
|
23509
23503
|
}
|
|
23510
23504
|
}
|
|
23511
23505
|
}
|
|
@@ -23540,22 +23534,37 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23540
23534
|
}
|
|
23541
23535
|
}
|
|
23542
23536
|
}
|
|
23543
|
-
namespace
|
|
23544
|
-
|
|
23537
|
+
namespace V2Pageinsights { }
|
|
23538
|
+
namespace V2PageInsights {
|
|
23539
|
+
namespace Get {
|
|
23545
23540
|
namespace Parameters {
|
|
23546
23541
|
type Path = {};
|
|
23547
|
-
interface RequestBody {
|
|
23548
|
-
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange;
|
|
23549
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting";
|
|
23550
|
-
}
|
|
23551
23542
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23552
|
-
type Query = {
|
|
23543
|
+
type Query = {
|
|
23544
|
+
domain: string;
|
|
23545
|
+
path: string;
|
|
23546
|
+
date?: string;
|
|
23547
|
+
};
|
|
23553
23548
|
}
|
|
23554
23549
|
namespace Responses {
|
|
23555
|
-
namespace $
|
|
23550
|
+
namespace $200 {
|
|
23556
23551
|
namespace Content {
|
|
23557
23552
|
interface ApplicationJson {
|
|
23558
|
-
|
|
23553
|
+
createdAt?: string;
|
|
23554
|
+
domain: string;
|
|
23555
|
+
metrics?: {
|
|
23556
|
+
createdAt: string;
|
|
23557
|
+
name: string;
|
|
23558
|
+
score?: number;
|
|
23559
|
+
value: number;
|
|
23560
|
+
}[];
|
|
23561
|
+
moreDataAvailable?: string[];
|
|
23562
|
+
path: string;
|
|
23563
|
+
performanceScore: number;
|
|
23564
|
+
screenshot?: {
|
|
23565
|
+
createdAt: string;
|
|
23566
|
+
fileRef: string;
|
|
23567
|
+
};
|
|
23559
23568
|
}
|
|
23560
23569
|
}
|
|
23561
23570
|
}
|
|
@@ -23566,6 +23575,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23566
23575
|
}
|
|
23567
23576
|
}
|
|
23568
23577
|
}
|
|
23578
|
+
namespace $403 {
|
|
23579
|
+
namespace Content {
|
|
23580
|
+
interface ApplicationJson {
|
|
23581
|
+
[k: string]: unknown;
|
|
23582
|
+
}
|
|
23583
|
+
}
|
|
23584
|
+
}
|
|
23569
23585
|
namespace $429 {
|
|
23570
23586
|
namespace Content {
|
|
23571
23587
|
interface ApplicationJson {
|
|
@@ -23583,11 +23599,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23583
23599
|
}
|
|
23584
23600
|
}
|
|
23585
23601
|
}
|
|
23586
|
-
namespace
|
|
23602
|
+
namespace V2ProjectsProjectIdStracesStraceId {
|
|
23587
23603
|
namespace Get {
|
|
23588
23604
|
namespace Parameters {
|
|
23589
23605
|
type Path = {
|
|
23590
|
-
|
|
23606
|
+
straceId: string;
|
|
23607
|
+
projectId: string;
|
|
23591
23608
|
};
|
|
23592
23609
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23593
23610
|
type Query = {};
|
|
@@ -23595,48 +23612,27 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23595
23612
|
namespace Responses {
|
|
23596
23613
|
namespace $200 {
|
|
23597
23614
|
namespace Content {
|
|
23598
|
-
|
|
23615
|
+
interface ApplicationJson {
|
|
23616
|
+
executedAt: string;
|
|
23617
|
+
id: string;
|
|
23618
|
+
result: MittwaldAPIV2.Components.Schemas.StraceError | MittwaldAPIV2.Components.Schemas.StraceData;
|
|
23619
|
+
}
|
|
23599
23620
|
}
|
|
23600
23621
|
}
|
|
23601
|
-
namespace $
|
|
23622
|
+
namespace $400 {
|
|
23602
23623
|
namespace Content {
|
|
23603
23624
|
interface ApplicationJson {
|
|
23604
23625
|
[k: string]: unknown;
|
|
23605
23626
|
}
|
|
23606
23627
|
}
|
|
23607
23628
|
}
|
|
23608
|
-
namespace
|
|
23629
|
+
namespace $403 {
|
|
23609
23630
|
namespace Content {
|
|
23610
23631
|
interface ApplicationJson {
|
|
23611
23632
|
[k: string]: unknown;
|
|
23612
23633
|
}
|
|
23613
23634
|
}
|
|
23614
23635
|
}
|
|
23615
|
-
}
|
|
23616
|
-
}
|
|
23617
|
-
}
|
|
23618
|
-
namespace V2CustomersCustomerIdOrders {
|
|
23619
|
-
namespace Get {
|
|
23620
|
-
namespace Parameters {
|
|
23621
|
-
type Path = {
|
|
23622
|
-
customerId: string;
|
|
23623
|
-
};
|
|
23624
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23625
|
-
type Query = {
|
|
23626
|
-
limit?: number;
|
|
23627
|
-
skip?: number;
|
|
23628
|
-
page?: number;
|
|
23629
|
-
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23630
|
-
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23631
|
-
templateNames?: string[];
|
|
23632
|
-
};
|
|
23633
|
-
}
|
|
23634
|
-
namespace Responses {
|
|
23635
|
-
namespace $200 {
|
|
23636
|
-
namespace Content {
|
|
23637
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23638
|
-
}
|
|
23639
|
-
}
|
|
23640
23636
|
namespace $429 {
|
|
23641
23637
|
namespace Content {
|
|
23642
23638
|
interface ApplicationJson {
|
|
@@ -23654,263 +23650,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23654
23650
|
}
|
|
23655
23651
|
}
|
|
23656
23652
|
}
|
|
23657
|
-
namespace
|
|
23658
|
-
|
|
23659
|
-
namespace Parameters {
|
|
23660
|
-
type Path = {
|
|
23661
|
-
projectId: string;
|
|
23662
|
-
};
|
|
23663
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23664
|
-
type Query = {
|
|
23665
|
-
limit?: number;
|
|
23666
|
-
skip?: number;
|
|
23667
|
-
page?: number;
|
|
23668
|
-
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23669
|
-
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23670
|
-
templateNames?: string[];
|
|
23671
|
-
};
|
|
23672
|
-
}
|
|
23673
|
-
namespace Responses {
|
|
23674
|
-
namespace $200 {
|
|
23675
|
-
namespace Content {
|
|
23676
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23677
|
-
}
|
|
23678
|
-
}
|
|
23679
|
-
namespace $429 {
|
|
23680
|
-
namespace Content {
|
|
23681
|
-
interface ApplicationJson {
|
|
23682
|
-
[k: string]: unknown;
|
|
23683
|
-
}
|
|
23684
|
-
}
|
|
23685
|
-
}
|
|
23686
|
-
namespace Default {
|
|
23687
|
-
namespace Content {
|
|
23688
|
-
interface ApplicationJson {
|
|
23689
|
-
[k: string]: unknown;
|
|
23690
|
-
}
|
|
23691
|
-
}
|
|
23692
|
-
}
|
|
23693
|
-
}
|
|
23694
|
-
}
|
|
23695
|
-
}
|
|
23696
|
-
namespace V2OrderPreviews {
|
|
23697
|
-
namespace Post {
|
|
23698
|
-
namespace Parameters {
|
|
23699
|
-
type Path = {};
|
|
23700
|
-
interface RequestBody {
|
|
23701
|
-
orderData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderServerOrderPreview | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreview | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreview | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreview | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreview | MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreview;
|
|
23702
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
|
|
23703
|
-
}
|
|
23704
|
-
type Header = {};
|
|
23705
|
-
type Query = {};
|
|
23706
|
-
}
|
|
23707
|
-
namespace Responses {
|
|
23708
|
-
namespace $200 {
|
|
23709
|
-
namespace Content {
|
|
23710
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderDomainOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderExternalCertificateOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderMailArchiveOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderAIHostingOrderPreviewResponse | MittwaldAPIV2.Components.Schemas.OrderLicenseOrderPreviewResponse;
|
|
23711
|
-
}
|
|
23712
|
-
}
|
|
23713
|
-
namespace $400 {
|
|
23714
|
-
namespace Content {
|
|
23715
|
-
interface ApplicationJson {
|
|
23716
|
-
[k: string]: unknown;
|
|
23717
|
-
}
|
|
23718
|
-
}
|
|
23719
|
-
}
|
|
23720
|
-
namespace $422 {
|
|
23721
|
-
namespace Content {
|
|
23722
|
-
interface ApplicationJson {
|
|
23723
|
-
error?: {};
|
|
23724
|
-
}
|
|
23725
|
-
}
|
|
23726
|
-
}
|
|
23727
|
-
namespace $429 {
|
|
23728
|
-
namespace Content {
|
|
23729
|
-
interface ApplicationJson {
|
|
23730
|
-
[k: string]: unknown;
|
|
23731
|
-
}
|
|
23732
|
-
}
|
|
23733
|
-
}
|
|
23734
|
-
namespace Default {
|
|
23735
|
-
namespace Content {
|
|
23736
|
-
interface ApplicationJson {
|
|
23737
|
-
[k: string]: unknown;
|
|
23738
|
-
}
|
|
23739
|
-
}
|
|
23740
|
-
}
|
|
23741
|
-
}
|
|
23742
|
-
}
|
|
23743
|
-
}
|
|
23744
|
-
namespace V2TariffChangePreviews {
|
|
23745
|
-
namespace Post {
|
|
23746
|
-
namespace Parameters {
|
|
23747
|
-
type Path = {};
|
|
23748
|
-
interface RequestBody {
|
|
23749
|
-
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange;
|
|
23750
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting";
|
|
23751
|
-
}
|
|
23752
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23753
|
-
type Query = {};
|
|
23754
|
-
}
|
|
23755
|
-
namespace Responses {
|
|
23756
|
-
namespace $200 {
|
|
23757
|
-
namespace Content {
|
|
23758
|
-
interface ApplicationJson {
|
|
23759
|
-
machineTypePrice: number;
|
|
23760
|
-
storagePrice: number;
|
|
23761
|
-
totalPrice: number;
|
|
23762
|
-
}
|
|
23763
|
-
}
|
|
23764
|
-
}
|
|
23765
|
-
namespace $400 {
|
|
23766
|
-
namespace Content {
|
|
23767
|
-
interface ApplicationJson {
|
|
23768
|
-
[k: string]: unknown;
|
|
23769
|
-
}
|
|
23770
|
-
}
|
|
23771
|
-
}
|
|
23772
|
-
namespace $422 {
|
|
23773
|
-
namespace Content {
|
|
23774
|
-
interface ApplicationJson {
|
|
23775
|
-
error?: {};
|
|
23776
|
-
}
|
|
23777
|
-
}
|
|
23778
|
-
}
|
|
23779
|
-
namespace $429 {
|
|
23780
|
-
namespace Content {
|
|
23781
|
-
interface ApplicationJson {
|
|
23782
|
-
[k: string]: unknown;
|
|
23783
|
-
}
|
|
23784
|
-
}
|
|
23785
|
-
}
|
|
23786
|
-
namespace Default {
|
|
23787
|
-
namespace Content {
|
|
23788
|
-
interface ApplicationJson {
|
|
23789
|
-
[k: string]: unknown;
|
|
23790
|
-
}
|
|
23791
|
-
}
|
|
23792
|
-
}
|
|
23793
|
-
}
|
|
23794
|
-
}
|
|
23795
|
-
}
|
|
23796
|
-
namespace V2Pageinsights { }
|
|
23797
|
-
namespace V2PageInsights {
|
|
23798
|
-
namespace Get {
|
|
23799
|
-
namespace Parameters {
|
|
23800
|
-
type Path = {};
|
|
23801
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23802
|
-
type Query = {
|
|
23803
|
-
domain: string;
|
|
23804
|
-
path: string;
|
|
23805
|
-
date?: string;
|
|
23806
|
-
};
|
|
23807
|
-
}
|
|
23808
|
-
namespace Responses {
|
|
23809
|
-
namespace $200 {
|
|
23810
|
-
namespace Content {
|
|
23811
|
-
interface ApplicationJson {
|
|
23812
|
-
createdAt?: string;
|
|
23813
|
-
domain: string;
|
|
23814
|
-
metrics?: {
|
|
23815
|
-
createdAt: string;
|
|
23816
|
-
name: string;
|
|
23817
|
-
score?: number;
|
|
23818
|
-
value: number;
|
|
23819
|
-
}[];
|
|
23820
|
-
moreDataAvailable?: string[];
|
|
23821
|
-
path: string;
|
|
23822
|
-
performanceScore: number;
|
|
23823
|
-
screenshot?: {
|
|
23824
|
-
createdAt: string;
|
|
23825
|
-
fileRef: string;
|
|
23826
|
-
};
|
|
23827
|
-
}
|
|
23828
|
-
}
|
|
23829
|
-
}
|
|
23830
|
-
namespace $400 {
|
|
23831
|
-
namespace Content {
|
|
23832
|
-
interface ApplicationJson {
|
|
23833
|
-
[k: string]: unknown;
|
|
23834
|
-
}
|
|
23835
|
-
}
|
|
23836
|
-
}
|
|
23837
|
-
namespace $403 {
|
|
23838
|
-
namespace Content {
|
|
23839
|
-
interface ApplicationJson {
|
|
23840
|
-
[k: string]: unknown;
|
|
23841
|
-
}
|
|
23842
|
-
}
|
|
23843
|
-
}
|
|
23844
|
-
namespace $429 {
|
|
23845
|
-
namespace Content {
|
|
23846
|
-
interface ApplicationJson {
|
|
23847
|
-
[k: string]: unknown;
|
|
23848
|
-
}
|
|
23849
|
-
}
|
|
23850
|
-
}
|
|
23851
|
-
namespace Default {
|
|
23852
|
-
namespace Content {
|
|
23853
|
-
interface ApplicationJson {
|
|
23854
|
-
[k: string]: unknown;
|
|
23855
|
-
}
|
|
23856
|
-
}
|
|
23857
|
-
}
|
|
23858
|
-
}
|
|
23859
|
-
}
|
|
23860
|
-
}
|
|
23861
|
-
namespace V2ProjectsProjectIdStracesStraceId {
|
|
23862
|
-
namespace Get {
|
|
23863
|
-
namespace Parameters {
|
|
23864
|
-
type Path = {
|
|
23865
|
-
straceId: string;
|
|
23866
|
-
projectId: string;
|
|
23867
|
-
};
|
|
23868
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23869
|
-
type Query = {};
|
|
23870
|
-
}
|
|
23871
|
-
namespace Responses {
|
|
23872
|
-
namespace $200 {
|
|
23873
|
-
namespace Content {
|
|
23874
|
-
interface ApplicationJson {
|
|
23875
|
-
executedAt: string;
|
|
23876
|
-
id: string;
|
|
23877
|
-
result: MittwaldAPIV2.Components.Schemas.StraceError | MittwaldAPIV2.Components.Schemas.StraceData;
|
|
23878
|
-
}
|
|
23879
|
-
}
|
|
23880
|
-
}
|
|
23881
|
-
namespace $400 {
|
|
23882
|
-
namespace Content {
|
|
23883
|
-
interface ApplicationJson {
|
|
23884
|
-
[k: string]: unknown;
|
|
23885
|
-
}
|
|
23886
|
-
}
|
|
23887
|
-
}
|
|
23888
|
-
namespace $403 {
|
|
23889
|
-
namespace Content {
|
|
23890
|
-
interface ApplicationJson {
|
|
23891
|
-
[k: string]: unknown;
|
|
23892
|
-
}
|
|
23893
|
-
}
|
|
23894
|
-
}
|
|
23895
|
-
namespace $429 {
|
|
23896
|
-
namespace Content {
|
|
23897
|
-
interface ApplicationJson {
|
|
23898
|
-
[k: string]: unknown;
|
|
23899
|
-
}
|
|
23900
|
-
}
|
|
23901
|
-
}
|
|
23902
|
-
namespace Default {
|
|
23903
|
-
namespace Content {
|
|
23904
|
-
interface ApplicationJson {
|
|
23905
|
-
[k: string]: unknown;
|
|
23906
|
-
}
|
|
23907
|
-
}
|
|
23908
|
-
}
|
|
23909
|
-
}
|
|
23910
|
-
}
|
|
23911
|
-
}
|
|
23912
|
-
namespace V2ProjectsProjectIdPageinsights { }
|
|
23913
|
-
namespace V2ProjectsProjectIdPageInsights {
|
|
23653
|
+
namespace V2ProjectsProjectIdPageinsights { }
|
|
23654
|
+
namespace V2ProjectsProjectIdPageInsights {
|
|
23914
23655
|
namespace Get {
|
|
23915
23656
|
namespace Parameters {
|
|
23916
23657
|
type Path = {
|
|
@@ -29042,18 +28783,309 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29042
28783
|
}
|
|
29043
28784
|
}
|
|
29044
28785
|
}
|
|
29045
|
-
namespace Delete {
|
|
28786
|
+
namespace Delete {
|
|
28787
|
+
namespace Parameters {
|
|
28788
|
+
type Path = {
|
|
28789
|
+
userId: string;
|
|
28790
|
+
};
|
|
28791
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28792
|
+
type Query = {};
|
|
28793
|
+
}
|
|
28794
|
+
namespace Responses {
|
|
28795
|
+
namespace $204 {
|
|
28796
|
+
namespace Content {
|
|
28797
|
+
type Empty = unknown;
|
|
28798
|
+
}
|
|
28799
|
+
}
|
|
28800
|
+
namespace $400 {
|
|
28801
|
+
namespace Content {
|
|
28802
|
+
interface ApplicationJson {
|
|
28803
|
+
[k: string]: unknown;
|
|
28804
|
+
}
|
|
28805
|
+
}
|
|
28806
|
+
}
|
|
28807
|
+
namespace $429 {
|
|
28808
|
+
namespace Content {
|
|
28809
|
+
interface ApplicationJson {
|
|
28810
|
+
[k: string]: unknown;
|
|
28811
|
+
}
|
|
28812
|
+
}
|
|
28813
|
+
}
|
|
28814
|
+
namespace Default {
|
|
28815
|
+
namespace Content {
|
|
28816
|
+
interface ApplicationJson {
|
|
28817
|
+
[k: string]: unknown;
|
|
28818
|
+
}
|
|
28819
|
+
}
|
|
28820
|
+
}
|
|
28821
|
+
}
|
|
28822
|
+
}
|
|
28823
|
+
}
|
|
28824
|
+
namespace V2UsersSelfCredentialsEmailActionsResendEmail {
|
|
28825
|
+
namespace Post {
|
|
28826
|
+
namespace Parameters {
|
|
28827
|
+
type Path = {};
|
|
28828
|
+
interface RequestBody {
|
|
28829
|
+
email: string;
|
|
28830
|
+
userId: string;
|
|
28831
|
+
}
|
|
28832
|
+
type Header = {};
|
|
28833
|
+
type Query = {};
|
|
28834
|
+
}
|
|
28835
|
+
namespace Responses {
|
|
28836
|
+
namespace $204 {
|
|
28837
|
+
namespace Content {
|
|
28838
|
+
type Empty = unknown;
|
|
28839
|
+
}
|
|
28840
|
+
}
|
|
28841
|
+
namespace $400 {
|
|
28842
|
+
namespace Content {
|
|
28843
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
28844
|
+
}
|
|
28845
|
+
}
|
|
28846
|
+
namespace $429 {
|
|
28847
|
+
namespace Content {
|
|
28848
|
+
interface ApplicationJson {
|
|
28849
|
+
[k: string]: unknown;
|
|
28850
|
+
}
|
|
28851
|
+
}
|
|
28852
|
+
}
|
|
28853
|
+
namespace Default {
|
|
28854
|
+
namespace Content {
|
|
28855
|
+
interface ApplicationJson {
|
|
28856
|
+
[k: string]: unknown;
|
|
28857
|
+
}
|
|
28858
|
+
}
|
|
28859
|
+
}
|
|
28860
|
+
}
|
|
28861
|
+
}
|
|
28862
|
+
}
|
|
28863
|
+
namespace V2SignupMfaResetRecoverycodes { }
|
|
28864
|
+
namespace V2SignupSupportcode { }
|
|
28865
|
+
namespace V2SignupSupportcodes { }
|
|
28866
|
+
namespace V2UsersSelfCredentialsSupportCode {
|
|
28867
|
+
namespace Get {
|
|
28868
|
+
namespace Parameters {
|
|
28869
|
+
type Path = {};
|
|
28870
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28871
|
+
type Query = {
|
|
28872
|
+
forceRecreate?: boolean;
|
|
28873
|
+
};
|
|
28874
|
+
}
|
|
28875
|
+
namespace Responses {
|
|
28876
|
+
namespace $200 {
|
|
28877
|
+
namespace Content {
|
|
28878
|
+
interface ApplicationJson {
|
|
28879
|
+
/**
|
|
28880
|
+
* Expiration of the support code
|
|
28881
|
+
*/
|
|
28882
|
+
expiresAt: string;
|
|
28883
|
+
/**
|
|
28884
|
+
* support code to authenticate yourself against the mittwald support via telephone
|
|
28885
|
+
*/
|
|
28886
|
+
supportCode: string;
|
|
28887
|
+
}
|
|
28888
|
+
}
|
|
28889
|
+
}
|
|
28890
|
+
namespace $429 {
|
|
28891
|
+
namespace Content {
|
|
28892
|
+
interface ApplicationJson {
|
|
28893
|
+
[k: string]: unknown;
|
|
28894
|
+
}
|
|
28895
|
+
}
|
|
28896
|
+
}
|
|
28897
|
+
namespace Default {
|
|
28898
|
+
namespace Content {
|
|
28899
|
+
interface ApplicationJson {
|
|
28900
|
+
[k: string]: unknown;
|
|
28901
|
+
}
|
|
28902
|
+
}
|
|
28903
|
+
}
|
|
28904
|
+
}
|
|
28905
|
+
}
|
|
28906
|
+
}
|
|
28907
|
+
namespace V2UsersSelfCredentialsEmailActionsVerifyEmail {
|
|
28908
|
+
namespace Post {
|
|
28909
|
+
namespace Parameters {
|
|
28910
|
+
type Path = {};
|
|
28911
|
+
interface RequestBody {
|
|
28912
|
+
/**
|
|
28913
|
+
* The Email-Address to verify.
|
|
28914
|
+
*/
|
|
28915
|
+
email: string;
|
|
28916
|
+
/**
|
|
28917
|
+
* The token found in the verification email.
|
|
28918
|
+
*/
|
|
28919
|
+
token?: string;
|
|
28920
|
+
}
|
|
28921
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28922
|
+
type Query = {};
|
|
28923
|
+
}
|
|
28924
|
+
namespace Responses {
|
|
28925
|
+
namespace $204 {
|
|
28926
|
+
namespace Content {
|
|
28927
|
+
type Empty = unknown;
|
|
28928
|
+
}
|
|
28929
|
+
}
|
|
28930
|
+
namespace $400 {
|
|
28931
|
+
namespace Content {
|
|
28932
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
28933
|
+
}
|
|
28934
|
+
}
|
|
28935
|
+
namespace $404 {
|
|
28936
|
+
namespace Content {
|
|
28937
|
+
interface ApplicationJson {
|
|
28938
|
+
[k: string]: unknown;
|
|
28939
|
+
}
|
|
28940
|
+
}
|
|
28941
|
+
}
|
|
28942
|
+
namespace $429 {
|
|
28943
|
+
namespace Content {
|
|
28944
|
+
interface ApplicationJson {
|
|
28945
|
+
[k: string]: unknown;
|
|
28946
|
+
}
|
|
28947
|
+
}
|
|
28948
|
+
}
|
|
28949
|
+
namespace Default {
|
|
28950
|
+
namespace Content {
|
|
28951
|
+
interface ApplicationJson {
|
|
28952
|
+
[k: string]: unknown;
|
|
28953
|
+
}
|
|
28954
|
+
}
|
|
28955
|
+
}
|
|
28956
|
+
}
|
|
28957
|
+
}
|
|
28958
|
+
}
|
|
28959
|
+
namespace V2UsersUserIdPhoneVerify { }
|
|
28960
|
+
namespace V2UsersUserIdActionsVerifyPhone {
|
|
28961
|
+
namespace Post {
|
|
28962
|
+
namespace Parameters {
|
|
28963
|
+
type Path = {
|
|
28964
|
+
userId: string;
|
|
28965
|
+
};
|
|
28966
|
+
interface RequestBody {
|
|
28967
|
+
code: string;
|
|
28968
|
+
phoneNumber: string;
|
|
28969
|
+
}
|
|
28970
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28971
|
+
type Query = {};
|
|
28972
|
+
}
|
|
28973
|
+
namespace Responses {
|
|
28974
|
+
namespace $204 {
|
|
28975
|
+
namespace Content {
|
|
28976
|
+
type Empty = unknown;
|
|
28977
|
+
}
|
|
28978
|
+
}
|
|
28979
|
+
namespace $400 {
|
|
28980
|
+
namespace Content {
|
|
28981
|
+
interface ApplicationJson {
|
|
28982
|
+
[k: string]: unknown;
|
|
28983
|
+
}
|
|
28984
|
+
}
|
|
28985
|
+
}
|
|
28986
|
+
namespace $404 {
|
|
28987
|
+
namespace Content {
|
|
28988
|
+
interface ApplicationJson {
|
|
28989
|
+
[k: string]: unknown;
|
|
28990
|
+
}
|
|
28991
|
+
}
|
|
28992
|
+
}
|
|
28993
|
+
namespace $409 {
|
|
28994
|
+
namespace Content {
|
|
28995
|
+
interface ApplicationJson {
|
|
28996
|
+
[k: string]: unknown;
|
|
28997
|
+
}
|
|
28998
|
+
}
|
|
28999
|
+
}
|
|
29000
|
+
namespace $429 {
|
|
29001
|
+
namespace Content {
|
|
29002
|
+
interface ApplicationJson {
|
|
29003
|
+
[k: string]: unknown;
|
|
29004
|
+
}
|
|
29005
|
+
}
|
|
29006
|
+
}
|
|
29007
|
+
namespace Default {
|
|
29008
|
+
namespace Content {
|
|
29009
|
+
interface ApplicationJson {
|
|
29010
|
+
[k: string]: unknown;
|
|
29011
|
+
}
|
|
29012
|
+
}
|
|
29013
|
+
}
|
|
29014
|
+
}
|
|
29015
|
+
}
|
|
29016
|
+
}
|
|
29017
|
+
namespace V2SignupRegistrationVerification { }
|
|
29018
|
+
namespace V2VerifyRegistration {
|
|
29019
|
+
namespace Post {
|
|
29020
|
+
namespace Parameters {
|
|
29021
|
+
type Path = {};
|
|
29022
|
+
interface RequestBody {
|
|
29023
|
+
/**
|
|
29024
|
+
* The users email address.
|
|
29025
|
+
*/
|
|
29026
|
+
email: string;
|
|
29027
|
+
/**
|
|
29028
|
+
* The token that was send to your email address
|
|
29029
|
+
*/
|
|
29030
|
+
token: string;
|
|
29031
|
+
/**
|
|
29032
|
+
* UUID of the registered user.
|
|
29033
|
+
*/
|
|
29034
|
+
userId: string;
|
|
29035
|
+
}
|
|
29036
|
+
type Header = {};
|
|
29037
|
+
type Query = {};
|
|
29038
|
+
}
|
|
29039
|
+
namespace Responses {
|
|
29040
|
+
namespace $200 {
|
|
29041
|
+
namespace Content {
|
|
29042
|
+
interface ApplicationJson {
|
|
29043
|
+
}
|
|
29044
|
+
}
|
|
29045
|
+
}
|
|
29046
|
+
namespace $400 {
|
|
29047
|
+
namespace Content {
|
|
29048
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
29049
|
+
}
|
|
29050
|
+
}
|
|
29051
|
+
namespace $404 {
|
|
29052
|
+
namespace Content {
|
|
29053
|
+
interface ApplicationJson {
|
|
29054
|
+
[k: string]: unknown;
|
|
29055
|
+
}
|
|
29056
|
+
}
|
|
29057
|
+
}
|
|
29058
|
+
namespace $429 {
|
|
29059
|
+
namespace Content {
|
|
29060
|
+
interface ApplicationJson {
|
|
29061
|
+
[k: string]: unknown;
|
|
29062
|
+
}
|
|
29063
|
+
}
|
|
29064
|
+
}
|
|
29065
|
+
namespace Default {
|
|
29066
|
+
namespace Content {
|
|
29067
|
+
interface ApplicationJson {
|
|
29068
|
+
[k: string]: unknown;
|
|
29069
|
+
}
|
|
29070
|
+
}
|
|
29071
|
+
}
|
|
29072
|
+
}
|
|
29073
|
+
}
|
|
29074
|
+
}
|
|
29075
|
+
namespace V2ActionsDetectPhishingEmail {
|
|
29076
|
+
namespace Post {
|
|
29046
29077
|
namespace Parameters {
|
|
29047
|
-
type Path = {
|
|
29048
|
-
|
|
29049
|
-
|
|
29050
|
-
|
|
29078
|
+
type Path = {};
|
|
29079
|
+
interface RequestBody {
|
|
29080
|
+
[k: string]: unknown;
|
|
29081
|
+
}
|
|
29082
|
+
type Header = {};
|
|
29051
29083
|
type Query = {};
|
|
29052
29084
|
}
|
|
29053
29085
|
namespace Responses {
|
|
29054
|
-
namespace $
|
|
29086
|
+
namespace $200 {
|
|
29055
29087
|
namespace Content {
|
|
29056
|
-
type
|
|
29088
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.VerificationEmailDetectPhishingMailResponse;
|
|
29057
29089
|
}
|
|
29058
29090
|
}
|
|
29059
29091
|
namespace $400 {
|
|
@@ -29080,26 +29112,38 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29080
29112
|
}
|
|
29081
29113
|
}
|
|
29082
29114
|
}
|
|
29083
|
-
namespace
|
|
29115
|
+
namespace V2ActionsVerifyAddress {
|
|
29084
29116
|
namespace Post {
|
|
29085
29117
|
namespace Parameters {
|
|
29086
29118
|
type Path = {};
|
|
29087
29119
|
interface RequestBody {
|
|
29088
|
-
|
|
29089
|
-
|
|
29120
|
+
city: string;
|
|
29121
|
+
/**
|
|
29122
|
+
* The country format should be ISO 3166-2 Alpha 2 Country Code.
|
|
29123
|
+
*/
|
|
29124
|
+
country: string;
|
|
29125
|
+
/**
|
|
29126
|
+
* Includes the house number.
|
|
29127
|
+
*/
|
|
29128
|
+
street: string;
|
|
29129
|
+
zip: string;
|
|
29090
29130
|
}
|
|
29091
29131
|
type Header = {};
|
|
29092
29132
|
type Query = {};
|
|
29093
29133
|
}
|
|
29094
29134
|
namespace Responses {
|
|
29095
|
-
namespace $
|
|
29135
|
+
namespace $200 {
|
|
29096
29136
|
namespace Content {
|
|
29097
|
-
|
|
29137
|
+
interface ApplicationJson {
|
|
29138
|
+
exists: boolean;
|
|
29139
|
+
}
|
|
29098
29140
|
}
|
|
29099
29141
|
}
|
|
29100
29142
|
namespace $400 {
|
|
29101
29143
|
namespace Content {
|
|
29102
|
-
|
|
29144
|
+
interface ApplicationJson {
|
|
29145
|
+
[k: string]: unknown;
|
|
29146
|
+
}
|
|
29103
29147
|
}
|
|
29104
29148
|
}
|
|
29105
29149
|
namespace $429 {
|
|
@@ -29119,33 +29163,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29119
29163
|
}
|
|
29120
29164
|
}
|
|
29121
29165
|
}
|
|
29122
|
-
namespace
|
|
29123
|
-
|
|
29124
|
-
namespace V2SignupSupportcodes { }
|
|
29125
|
-
namespace V2UsersSelfCredentialsSupportCode {
|
|
29126
|
-
namespace Get {
|
|
29166
|
+
namespace V2ActionsVerifyCompany {
|
|
29167
|
+
namespace Post {
|
|
29127
29168
|
namespace Parameters {
|
|
29128
29169
|
type Path = {};
|
|
29170
|
+
interface RequestBody {
|
|
29171
|
+
name: string;
|
|
29172
|
+
}
|
|
29129
29173
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29130
|
-
type Query = {
|
|
29131
|
-
forceRecreate?: boolean;
|
|
29132
|
-
};
|
|
29174
|
+
type Query = {};
|
|
29133
29175
|
}
|
|
29134
29176
|
namespace Responses {
|
|
29135
29177
|
namespace $200 {
|
|
29136
29178
|
namespace Content {
|
|
29137
29179
|
interface ApplicationJson {
|
|
29138
|
-
|
|
29139
|
-
* Expiration of the support code
|
|
29140
|
-
*/
|
|
29141
|
-
expiresAt: string;
|
|
29142
|
-
/**
|
|
29143
|
-
* support code to authenticate yourself against the mittwald support via telephone
|
|
29144
|
-
*/
|
|
29145
|
-
supportCode: string;
|
|
29180
|
+
exists: boolean;
|
|
29146
29181
|
}
|
|
29147
29182
|
}
|
|
29148
29183
|
}
|
|
29184
|
+
namespace $412 {
|
|
29185
|
+
namespace Content {
|
|
29186
|
+
type Empty = unknown;
|
|
29187
|
+
}
|
|
29188
|
+
}
|
|
29149
29189
|
namespace $429 {
|
|
29150
29190
|
namespace Content {
|
|
29151
29191
|
interface ApplicationJson {
|
|
@@ -29163,35 +29203,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29163
29203
|
}
|
|
29164
29204
|
}
|
|
29165
29205
|
}
|
|
29166
|
-
namespace
|
|
29167
|
-
namespace
|
|
29206
|
+
namespace V2LicensesLicenseId {
|
|
29207
|
+
namespace Get {
|
|
29168
29208
|
namespace Parameters {
|
|
29169
|
-
type Path = {
|
|
29170
|
-
|
|
29171
|
-
|
|
29172
|
-
* The Email-Address to verify.
|
|
29173
|
-
*/
|
|
29174
|
-
email: string;
|
|
29175
|
-
/**
|
|
29176
|
-
* The token found in the verification email.
|
|
29177
|
-
*/
|
|
29178
|
-
token?: string;
|
|
29179
|
-
}
|
|
29209
|
+
type Path = {
|
|
29210
|
+
licenseId: string;
|
|
29211
|
+
};
|
|
29180
29212
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29181
29213
|
type Query = {};
|
|
29182
29214
|
}
|
|
29183
29215
|
namespace Responses {
|
|
29184
|
-
namespace $
|
|
29216
|
+
namespace $200 {
|
|
29185
29217
|
namespace Content {
|
|
29186
|
-
type
|
|
29218
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseLicense;
|
|
29187
29219
|
}
|
|
29188
29220
|
}
|
|
29189
29221
|
namespace $400 {
|
|
29190
29222
|
namespace Content {
|
|
29191
|
-
|
|
29223
|
+
interface ApplicationJson {
|
|
29224
|
+
[k: string]: unknown;
|
|
29225
|
+
}
|
|
29192
29226
|
}
|
|
29193
29227
|
}
|
|
29194
|
-
namespace $
|
|
29228
|
+
namespace $403 {
|
|
29195
29229
|
namespace Content {
|
|
29196
29230
|
interface ApplicationJson {
|
|
29197
29231
|
[k: string]: unknown;
|
|
@@ -29205,6 +29239,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29205
29239
|
}
|
|
29206
29240
|
}
|
|
29207
29241
|
}
|
|
29242
|
+
namespace $500 {
|
|
29243
|
+
namespace Content {
|
|
29244
|
+
interface ApplicationJson {
|
|
29245
|
+
[k: string]: unknown;
|
|
29246
|
+
}
|
|
29247
|
+
}
|
|
29248
|
+
}
|
|
29208
29249
|
namespace Default {
|
|
29209
29250
|
namespace Content {
|
|
29210
29251
|
interface ApplicationJson {
|
|
@@ -29215,24 +29256,23 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29215
29256
|
}
|
|
29216
29257
|
}
|
|
29217
29258
|
}
|
|
29218
|
-
namespace
|
|
29219
|
-
|
|
29220
|
-
namespace Post {
|
|
29259
|
+
namespace V2ProjectsProjectIdLicenses {
|
|
29260
|
+
namespace Get {
|
|
29221
29261
|
namespace Parameters {
|
|
29222
29262
|
type Path = {
|
|
29223
|
-
|
|
29263
|
+
projectId: string;
|
|
29224
29264
|
};
|
|
29225
|
-
interface RequestBody {
|
|
29226
|
-
code: string;
|
|
29227
|
-
phoneNumber: string;
|
|
29228
|
-
}
|
|
29229
29265
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29230
|
-
type Query = {
|
|
29266
|
+
type Query = {
|
|
29267
|
+
limit?: number;
|
|
29268
|
+
skip?: number;
|
|
29269
|
+
page?: number;
|
|
29270
|
+
};
|
|
29231
29271
|
}
|
|
29232
29272
|
namespace Responses {
|
|
29233
|
-
namespace $
|
|
29273
|
+
namespace $200 {
|
|
29234
29274
|
namespace Content {
|
|
29235
|
-
type
|
|
29275
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseLicense[];
|
|
29236
29276
|
}
|
|
29237
29277
|
}
|
|
29238
29278
|
namespace $400 {
|
|
@@ -29242,21 +29282,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29242
29282
|
}
|
|
29243
29283
|
}
|
|
29244
29284
|
}
|
|
29245
|
-
namespace $
|
|
29285
|
+
namespace $403 {
|
|
29246
29286
|
namespace Content {
|
|
29247
29287
|
interface ApplicationJson {
|
|
29248
29288
|
[k: string]: unknown;
|
|
29249
29289
|
}
|
|
29250
29290
|
}
|
|
29251
29291
|
}
|
|
29252
|
-
namespace $
|
|
29292
|
+
namespace $429 {
|
|
29253
29293
|
namespace Content {
|
|
29254
29294
|
interface ApplicationJson {
|
|
29255
29295
|
[k: string]: unknown;
|
|
29256
29296
|
}
|
|
29257
29297
|
}
|
|
29258
29298
|
}
|
|
29259
|
-
namespace $
|
|
29299
|
+
namespace $500 {
|
|
29260
29300
|
namespace Content {
|
|
29261
29301
|
interface ApplicationJson {
|
|
29262
29302
|
[k: string]: unknown;
|
|
@@ -29273,88 +29313,63 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29273
29313
|
}
|
|
29274
29314
|
}
|
|
29275
29315
|
}
|
|
29276
|
-
namespace
|
|
29277
|
-
namespace V2VerifyRegistration {
|
|
29316
|
+
namespace V2LicensesLicenseIdActionsRotateKey {
|
|
29278
29317
|
namespace Post {
|
|
29279
29318
|
namespace Parameters {
|
|
29280
|
-
type Path = {
|
|
29319
|
+
type Path = {
|
|
29320
|
+
licenseId: string;
|
|
29321
|
+
};
|
|
29322
|
+
/**
|
|
29323
|
+
* Optional reference to a file containing the new key if it was not procured via mittwald.
|
|
29324
|
+
*/
|
|
29281
29325
|
interface RequestBody {
|
|
29282
|
-
|
|
29283
|
-
* The users email address.
|
|
29284
|
-
*/
|
|
29285
|
-
email: string;
|
|
29286
|
-
/**
|
|
29287
|
-
* The token that was send to your email address
|
|
29288
|
-
*/
|
|
29289
|
-
token: string;
|
|
29290
|
-
/**
|
|
29291
|
-
* UUID of the registered user.
|
|
29292
|
-
*/
|
|
29293
|
-
userId: string;
|
|
29326
|
+
externalKey?: string;
|
|
29294
29327
|
}
|
|
29295
|
-
type Header = {};
|
|
29328
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29296
29329
|
type Query = {};
|
|
29297
29330
|
}
|
|
29298
29331
|
namespace Responses {
|
|
29299
29332
|
namespace $200 {
|
|
29300
29333
|
namespace Content {
|
|
29301
|
-
|
|
29302
|
-
}
|
|
29334
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseKeyResponse;
|
|
29303
29335
|
}
|
|
29304
29336
|
}
|
|
29305
29337
|
namespace $400 {
|
|
29306
|
-
namespace Content {
|
|
29307
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
29308
|
-
}
|
|
29309
|
-
}
|
|
29310
|
-
namespace $404 {
|
|
29311
29338
|
namespace Content {
|
|
29312
29339
|
interface ApplicationJson {
|
|
29313
29340
|
[k: string]: unknown;
|
|
29314
29341
|
}
|
|
29315
29342
|
}
|
|
29316
29343
|
}
|
|
29317
|
-
namespace $
|
|
29344
|
+
namespace $403 {
|
|
29318
29345
|
namespace Content {
|
|
29319
29346
|
interface ApplicationJson {
|
|
29320
29347
|
[k: string]: unknown;
|
|
29321
29348
|
}
|
|
29322
29349
|
}
|
|
29323
29350
|
}
|
|
29324
|
-
namespace
|
|
29351
|
+
namespace $404 {
|
|
29325
29352
|
namespace Content {
|
|
29326
29353
|
interface ApplicationJson {
|
|
29327
29354
|
[k: string]: unknown;
|
|
29328
29355
|
}
|
|
29329
29356
|
}
|
|
29330
29357
|
}
|
|
29331
|
-
|
|
29332
|
-
}
|
|
29333
|
-
}
|
|
29334
|
-
namespace V2ActionsDetectPhishingEmail {
|
|
29335
|
-
namespace Post {
|
|
29336
|
-
namespace Parameters {
|
|
29337
|
-
type Path = {};
|
|
29338
|
-
interface RequestBody {
|
|
29339
|
-
[k: string]: unknown;
|
|
29340
|
-
}
|
|
29341
|
-
type Header = {};
|
|
29342
|
-
type Query = {};
|
|
29343
|
-
}
|
|
29344
|
-
namespace Responses {
|
|
29345
|
-
namespace $200 {
|
|
29358
|
+
namespace $412 {
|
|
29346
29359
|
namespace Content {
|
|
29347
|
-
|
|
29360
|
+
interface ApplicationJson {
|
|
29361
|
+
[k: string]: unknown;
|
|
29362
|
+
}
|
|
29348
29363
|
}
|
|
29349
29364
|
}
|
|
29350
|
-
namespace $
|
|
29365
|
+
namespace $429 {
|
|
29351
29366
|
namespace Content {
|
|
29352
29367
|
interface ApplicationJson {
|
|
29353
29368
|
[k: string]: unknown;
|
|
29354
29369
|
}
|
|
29355
29370
|
}
|
|
29356
29371
|
}
|
|
29357
|
-
namespace $
|
|
29372
|
+
namespace $500 {
|
|
29358
29373
|
namespace Content {
|
|
29359
29374
|
interface ApplicationJson {
|
|
29360
29375
|
[k: string]: unknown;
|
|
@@ -29371,30 +29386,27 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29371
29386
|
}
|
|
29372
29387
|
}
|
|
29373
29388
|
}
|
|
29374
|
-
namespace
|
|
29389
|
+
namespace V2ProjectsProjectIdActionsValidateLicenseKey {
|
|
29375
29390
|
namespace Post {
|
|
29376
29391
|
namespace Parameters {
|
|
29377
|
-
type Path = {
|
|
29392
|
+
type Path = {
|
|
29393
|
+
projectId: string;
|
|
29394
|
+
};
|
|
29395
|
+
/**
|
|
29396
|
+
* The License key to validate.
|
|
29397
|
+
*/
|
|
29378
29398
|
interface RequestBody {
|
|
29379
|
-
|
|
29380
|
-
|
|
29381
|
-
* The country format should be ISO 3166-2 Alpha 2 Country Code.
|
|
29382
|
-
*/
|
|
29383
|
-
country: string;
|
|
29384
|
-
/**
|
|
29385
|
-
* Includes the house number.
|
|
29386
|
-
*/
|
|
29387
|
-
street: string;
|
|
29388
|
-
zip: string;
|
|
29399
|
+
key: string;
|
|
29400
|
+
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
29389
29401
|
}
|
|
29390
|
-
type Header = {};
|
|
29402
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29391
29403
|
type Query = {};
|
|
29392
29404
|
}
|
|
29393
29405
|
namespace Responses {
|
|
29394
29406
|
namespace $200 {
|
|
29395
29407
|
namespace Content {
|
|
29396
29408
|
interface ApplicationJson {
|
|
29397
|
-
|
|
29409
|
+
valid: boolean;
|
|
29398
29410
|
}
|
|
29399
29411
|
}
|
|
29400
29412
|
}
|
|
@@ -29405,47 +29417,35 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29405
29417
|
}
|
|
29406
29418
|
}
|
|
29407
29419
|
}
|
|
29408
|
-
namespace $
|
|
29420
|
+
namespace $403 {
|
|
29409
29421
|
namespace Content {
|
|
29410
29422
|
interface ApplicationJson {
|
|
29411
29423
|
[k: string]: unknown;
|
|
29412
29424
|
}
|
|
29413
29425
|
}
|
|
29414
29426
|
}
|
|
29415
|
-
namespace
|
|
29427
|
+
namespace $404 {
|
|
29416
29428
|
namespace Content {
|
|
29417
29429
|
interface ApplicationJson {
|
|
29418
29430
|
[k: string]: unknown;
|
|
29419
29431
|
}
|
|
29420
29432
|
}
|
|
29421
29433
|
}
|
|
29422
|
-
|
|
29423
|
-
}
|
|
29424
|
-
}
|
|
29425
|
-
namespace V2ActionsVerifyCompany {
|
|
29426
|
-
namespace Post {
|
|
29427
|
-
namespace Parameters {
|
|
29428
|
-
type Path = {};
|
|
29429
|
-
interface RequestBody {
|
|
29430
|
-
name: string;
|
|
29431
|
-
}
|
|
29432
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29433
|
-
type Query = {};
|
|
29434
|
-
}
|
|
29435
|
-
namespace Responses {
|
|
29436
|
-
namespace $200 {
|
|
29434
|
+
namespace $412 {
|
|
29437
29435
|
namespace Content {
|
|
29438
29436
|
interface ApplicationJson {
|
|
29439
|
-
|
|
29437
|
+
[k: string]: unknown;
|
|
29440
29438
|
}
|
|
29441
29439
|
}
|
|
29442
29440
|
}
|
|
29443
|
-
namespace $
|
|
29441
|
+
namespace $429 {
|
|
29444
29442
|
namespace Content {
|
|
29445
|
-
|
|
29443
|
+
interface ApplicationJson {
|
|
29444
|
+
[k: string]: unknown;
|
|
29445
|
+
}
|
|
29446
29446
|
}
|
|
29447
29447
|
}
|
|
29448
|
-
namespace $
|
|
29448
|
+
namespace $500 {
|
|
29449
29449
|
namespace Content {
|
|
29450
29450
|
interface ApplicationJson {
|
|
29451
29451
|
[k: string]: unknown;
|