@mittwald/api-client 4.323.0 → 4.325.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 +377 -377
- package/dist/types/generated/v2/descriptors.d.ts +8 -8
- package/dist/types/generated/v2/types.d.ts +1035 -1035
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1194,6 +1194,22 @@ 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
|
+
}
|
|
1197
1213
|
namespace MailListDeliveryBoxes {
|
|
1198
1214
|
type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
|
|
1199
1215
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListDeliveryBoxes, TStatus>;
|
|
@@ -1802,22 +1818,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1802
1818
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1803
1819
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1804
1820
|
}
|
|
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,6 +4592,37 @@ 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
|
+
}
|
|
4595
4626
|
interface MailCreateMailAddress {
|
|
4596
4627
|
address: string;
|
|
4597
4628
|
forwardAddresses?: string[];
|
|
@@ -5133,6 +5164,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5133
5164
|
reservationLimit: number;
|
|
5134
5165
|
unlockLimit: number;
|
|
5135
5166
|
}
|
|
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
|
+
};
|
|
5136
5190
|
interface OrderMachineTypeSpec {
|
|
5137
5191
|
machineType?: string;
|
|
5138
5192
|
}
|
|
@@ -5182,6 +5236,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5182
5236
|
interface OrderLeadFyndrOrderPreviewResponse {
|
|
5183
5237
|
totalPrice: number;
|
|
5184
5238
|
}
|
|
5239
|
+
interface OrderLicenseOrderPreviewResponse {
|
|
5240
|
+
totalPrice: number;
|
|
5241
|
+
}
|
|
5185
5242
|
interface OrderDomainOrderPreviewResponse {
|
|
5186
5243
|
/**
|
|
5187
5244
|
* Contract duration in months.
|
|
@@ -5946,63 +6003,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5946
6003
|
}
|
|
5947
6004
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
5948
6005
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5949
|
-
interface LicenseAppVersionMeta {
|
|
5950
|
-
description: string;
|
|
5951
|
-
}
|
|
5952
|
-
type LicenseKind = "typo3-elts";
|
|
5953
|
-
interface LicenseKey {
|
|
5954
|
-
key: string;
|
|
5955
|
-
}
|
|
5956
|
-
interface LicenseMeta {
|
|
5957
|
-
appVersion?: MittwaldAPIV2.Components.Schemas.LicenseAppVersionMeta;
|
|
5958
|
-
}
|
|
5959
|
-
interface LicenseReference {
|
|
5960
|
-
aggregate: "project";
|
|
5961
|
-
domain: "project";
|
|
5962
|
-
id: string;
|
|
5963
|
-
}
|
|
5964
|
-
interface LicenseLicense {
|
|
5965
|
-
description: string;
|
|
5966
|
-
expiryDate?: string;
|
|
5967
|
-
id: string;
|
|
5968
|
-
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
5969
|
-
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
5970
|
-
meta: MittwaldAPIV2.Components.Schemas.LicenseMeta;
|
|
5971
|
-
reference: MittwaldAPIV2.Components.Schemas.LicenseReference;
|
|
5972
|
-
volume?: number;
|
|
5973
|
-
}
|
|
5974
|
-
interface LicenseKeyResponse {
|
|
5975
|
-
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
5976
|
-
}
|
|
5977
|
-
interface LicenseExternalKey {
|
|
5978
|
-
externalKey: string;
|
|
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,25 +21673,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21673
21673
|
}
|
|
21674
21674
|
}
|
|
21675
21675
|
}
|
|
21676
|
-
namespace
|
|
21677
|
-
namespace V2ProjectsProjectIdDeliveryBoxes {
|
|
21676
|
+
namespace V2LicensesLicenseId {
|
|
21678
21677
|
namespace Get {
|
|
21679
21678
|
namespace Parameters {
|
|
21680
21679
|
type Path = {
|
|
21681
|
-
|
|
21680
|
+
licenseId: string;
|
|
21682
21681
|
};
|
|
21683
21682
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21684
|
-
type Query = {
|
|
21685
|
-
search?: string;
|
|
21686
|
-
limit?: number;
|
|
21687
|
-
skip?: number;
|
|
21688
|
-
page?: number;
|
|
21689
|
-
};
|
|
21683
|
+
type Query = {};
|
|
21690
21684
|
}
|
|
21691
21685
|
namespace Responses {
|
|
21692
21686
|
namespace $200 {
|
|
21693
21687
|
namespace Content {
|
|
21694
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
21688
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseLicense;
|
|
21695
21689
|
}
|
|
21696
21690
|
}
|
|
21697
21691
|
namespace $400 {
|
|
@@ -21708,13 +21702,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21708
21702
|
}
|
|
21709
21703
|
}
|
|
21710
21704
|
}
|
|
21711
|
-
namespace $404 {
|
|
21712
|
-
namespace Content {
|
|
21713
|
-
interface ApplicationJson {
|
|
21714
|
-
[k: string]: unknown;
|
|
21715
|
-
}
|
|
21716
|
-
}
|
|
21717
|
-
}
|
|
21718
21705
|
namespace $429 {
|
|
21719
21706
|
namespace Content {
|
|
21720
21707
|
interface ApplicationJson {
|
|
@@ -21729,13 +21716,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21729
21716
|
}
|
|
21730
21717
|
}
|
|
21731
21718
|
}
|
|
21732
|
-
namespace $503 {
|
|
21733
|
-
namespace Content {
|
|
21734
|
-
interface ApplicationJson {
|
|
21735
|
-
[k: string]: unknown;
|
|
21736
|
-
}
|
|
21737
|
-
}
|
|
21738
|
-
}
|
|
21739
21719
|
namespace Default {
|
|
21740
21720
|
namespace Content {
|
|
21741
21721
|
interface ApplicationJson {
|
|
@@ -21745,24 +21725,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21745
21725
|
}
|
|
21746
21726
|
}
|
|
21747
21727
|
}
|
|
21748
|
-
|
|
21728
|
+
}
|
|
21729
|
+
namespace V2ProjectsProjectIdLicenses {
|
|
21730
|
+
namespace Get {
|
|
21749
21731
|
namespace Parameters {
|
|
21750
21732
|
type Path = {
|
|
21751
21733
|
projectId: string;
|
|
21752
21734
|
};
|
|
21753
|
-
interface RequestBody {
|
|
21754
|
-
description: string;
|
|
21755
|
-
password: string;
|
|
21756
|
-
}
|
|
21757
21735
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21758
|
-
type Query = {
|
|
21736
|
+
type Query = {
|
|
21737
|
+
limit?: number;
|
|
21738
|
+
skip?: number;
|
|
21739
|
+
page?: number;
|
|
21740
|
+
};
|
|
21759
21741
|
}
|
|
21760
21742
|
namespace Responses {
|
|
21761
|
-
namespace $
|
|
21743
|
+
namespace $200 {
|
|
21762
21744
|
namespace Content {
|
|
21763
|
-
|
|
21764
|
-
id: string;
|
|
21765
|
-
}
|
|
21745
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseLicense[];
|
|
21766
21746
|
}
|
|
21767
21747
|
}
|
|
21768
21748
|
namespace $400 {
|
|
@@ -21779,13 +21759,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21779
21759
|
}
|
|
21780
21760
|
}
|
|
21781
21761
|
}
|
|
21782
|
-
namespace $404 {
|
|
21783
|
-
namespace Content {
|
|
21784
|
-
interface ApplicationJson {
|
|
21785
|
-
[k: string]: unknown;
|
|
21786
|
-
}
|
|
21787
|
-
}
|
|
21788
|
-
}
|
|
21789
21762
|
namespace $429 {
|
|
21790
21763
|
namespace Content {
|
|
21791
21764
|
interface ApplicationJson {
|
|
@@ -21800,13 +21773,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21800
21773
|
}
|
|
21801
21774
|
}
|
|
21802
21775
|
}
|
|
21803
|
-
namespace $503 {
|
|
21804
|
-
namespace Content {
|
|
21805
|
-
interface ApplicationJson {
|
|
21806
|
-
[k: string]: unknown;
|
|
21807
|
-
}
|
|
21808
|
-
}
|
|
21809
|
-
}
|
|
21810
21776
|
namespace Default {
|
|
21811
21777
|
namespace Content {
|
|
21812
21778
|
interface ApplicationJson {
|
|
@@ -21817,31 +21783,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21817
21783
|
}
|
|
21818
21784
|
}
|
|
21819
21785
|
}
|
|
21820
|
-
namespace
|
|
21821
|
-
|
|
21822
|
-
namespace Get {
|
|
21786
|
+
namespace V2LicensesLicenseIdActionsRotateKey {
|
|
21787
|
+
namespace Post {
|
|
21823
21788
|
namespace Parameters {
|
|
21824
21789
|
type Path = {
|
|
21825
|
-
|
|
21790
|
+
licenseId: string;
|
|
21826
21791
|
};
|
|
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
|
+
}
|
|
21827
21798
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
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
|
-
};
|
|
21799
|
+
type Query = {};
|
|
21840
21800
|
}
|
|
21841
21801
|
namespace Responses {
|
|
21842
21802
|
namespace $200 {
|
|
21843
21803
|
namespace Content {
|
|
21844
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
21804
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseKeyResponse;
|
|
21845
21805
|
}
|
|
21846
21806
|
}
|
|
21847
21807
|
namespace $400 {
|
|
@@ -21865,21 +21825,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21865
21825
|
}
|
|
21866
21826
|
}
|
|
21867
21827
|
}
|
|
21868
|
-
namespace $
|
|
21828
|
+
namespace $412 {
|
|
21869
21829
|
namespace Content {
|
|
21870
21830
|
interface ApplicationJson {
|
|
21871
21831
|
[k: string]: unknown;
|
|
21872
21832
|
}
|
|
21873
21833
|
}
|
|
21874
21834
|
}
|
|
21875
|
-
namespace $
|
|
21835
|
+
namespace $429 {
|
|
21876
21836
|
namespace Content {
|
|
21877
21837
|
interface ApplicationJson {
|
|
21878
21838
|
[k: string]: unknown;
|
|
21879
21839
|
}
|
|
21880
21840
|
}
|
|
21881
21841
|
}
|
|
21882
|
-
namespace $
|
|
21842
|
+
namespace $500 {
|
|
21883
21843
|
namespace Content {
|
|
21884
21844
|
interface ApplicationJson {
|
|
21885
21845
|
[k: string]: unknown;
|
|
@@ -21895,20 +21855,28 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21895
21855
|
}
|
|
21896
21856
|
}
|
|
21897
21857
|
}
|
|
21858
|
+
}
|
|
21859
|
+
namespace V2ProjectsProjectIdActionsValidateLicenseKey {
|
|
21898
21860
|
namespace Post {
|
|
21899
21861
|
namespace Parameters {
|
|
21900
21862
|
type Path = {
|
|
21901
21863
|
projectId: string;
|
|
21902
21864
|
};
|
|
21903
|
-
|
|
21865
|
+
/**
|
|
21866
|
+
* The License key to validate.
|
|
21867
|
+
*/
|
|
21868
|
+
interface RequestBody {
|
|
21869
|
+
key: string;
|
|
21870
|
+
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
21871
|
+
}
|
|
21904
21872
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21905
21873
|
type Query = {};
|
|
21906
21874
|
}
|
|
21907
21875
|
namespace Responses {
|
|
21908
|
-
namespace $
|
|
21876
|
+
namespace $200 {
|
|
21909
21877
|
namespace Content {
|
|
21910
21878
|
interface ApplicationJson {
|
|
21911
|
-
|
|
21879
|
+
valid: boolean;
|
|
21912
21880
|
}
|
|
21913
21881
|
}
|
|
21914
21882
|
}
|
|
@@ -21933,21 +21901,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21933
21901
|
}
|
|
21934
21902
|
}
|
|
21935
21903
|
}
|
|
21936
|
-
namespace $
|
|
21904
|
+
namespace $412 {
|
|
21937
21905
|
namespace Content {
|
|
21938
21906
|
interface ApplicationJson {
|
|
21939
21907
|
[k: string]: unknown;
|
|
21940
21908
|
}
|
|
21941
21909
|
}
|
|
21942
21910
|
}
|
|
21943
|
-
namespace $
|
|
21911
|
+
namespace $429 {
|
|
21944
21912
|
namespace Content {
|
|
21945
21913
|
interface ApplicationJson {
|
|
21946
21914
|
[k: string]: unknown;
|
|
21947
21915
|
}
|
|
21948
21916
|
}
|
|
21949
21917
|
}
|
|
21950
|
-
namespace $
|
|
21918
|
+
namespace $500 {
|
|
21951
21919
|
namespace Content {
|
|
21952
21920
|
interface ApplicationJson {
|
|
21953
21921
|
[k: string]: unknown;
|
|
@@ -21964,20 +21932,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21964
21932
|
}
|
|
21965
21933
|
}
|
|
21966
21934
|
}
|
|
21967
|
-
namespace
|
|
21968
|
-
namespace
|
|
21935
|
+
namespace V2ProjectsProjectIdDeliveryboxes { }
|
|
21936
|
+
namespace V2ProjectsProjectIdDeliveryBoxes {
|
|
21969
21937
|
namespace Get {
|
|
21970
21938
|
namespace Parameters {
|
|
21971
21939
|
type Path = {
|
|
21972
|
-
|
|
21940
|
+
projectId: string;
|
|
21973
21941
|
};
|
|
21974
21942
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21975
|
-
type Query = {
|
|
21943
|
+
type Query = {
|
|
21944
|
+
search?: string;
|
|
21945
|
+
limit?: number;
|
|
21946
|
+
skip?: number;
|
|
21947
|
+
page?: number;
|
|
21948
|
+
};
|
|
21976
21949
|
}
|
|
21977
21950
|
namespace Responses {
|
|
21978
21951
|
namespace $200 {
|
|
21979
21952
|
namespace Content {
|
|
21980
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
|
|
21953
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox[];
|
|
21981
21954
|
}
|
|
21982
21955
|
}
|
|
21983
21956
|
namespace $400 {
|
|
@@ -22031,18 +22004,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22031
22004
|
}
|
|
22032
22005
|
}
|
|
22033
22006
|
}
|
|
22034
|
-
namespace
|
|
22007
|
+
namespace Post {
|
|
22035
22008
|
namespace Parameters {
|
|
22036
22009
|
type Path = {
|
|
22037
|
-
|
|
22010
|
+
projectId: string;
|
|
22038
22011
|
};
|
|
22012
|
+
interface RequestBody {
|
|
22013
|
+
description: string;
|
|
22014
|
+
password: string;
|
|
22015
|
+
}
|
|
22039
22016
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22040
22017
|
type Query = {};
|
|
22041
22018
|
}
|
|
22042
22019
|
namespace Responses {
|
|
22043
|
-
namespace $
|
|
22020
|
+
namespace $201 {
|
|
22044
22021
|
namespace Content {
|
|
22045
|
-
|
|
22022
|
+
interface ApplicationJson {
|
|
22023
|
+
id: string;
|
|
22024
|
+
}
|
|
22046
22025
|
}
|
|
22047
22026
|
}
|
|
22048
22027
|
namespace $400 {
|
|
@@ -22097,20 +22076,31 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22097
22076
|
}
|
|
22098
22077
|
}
|
|
22099
22078
|
}
|
|
22100
|
-
namespace
|
|
22101
|
-
namespace
|
|
22079
|
+
namespace V2ProjectsProjectIdMailaddresses { }
|
|
22080
|
+
namespace V2ProjectsProjectIdMailAddresses {
|
|
22102
22081
|
namespace Get {
|
|
22103
22082
|
namespace Parameters {
|
|
22104
22083
|
type Path = {
|
|
22105
|
-
|
|
22084
|
+
projectId: string;
|
|
22106
22085
|
};
|
|
22107
22086
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22108
|
-
type Query = {
|
|
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
|
+
};
|
|
22109
22099
|
}
|
|
22110
22100
|
namespace Responses {
|
|
22111
22101
|
namespace $200 {
|
|
22112
22102
|
namespace Content {
|
|
22113
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
|
|
22103
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
|
|
22114
22104
|
}
|
|
22115
22105
|
}
|
|
22116
22106
|
namespace $400 {
|
|
@@ -22164,18 +22154,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22164
22154
|
}
|
|
22165
22155
|
}
|
|
22166
22156
|
}
|
|
22167
|
-
namespace
|
|
22157
|
+
namespace Post {
|
|
22168
22158
|
namespace Parameters {
|
|
22169
22159
|
type Path = {
|
|
22170
|
-
|
|
22160
|
+
projectId: string;
|
|
22171
22161
|
};
|
|
22162
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
|
|
22172
22163
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22173
22164
|
type Query = {};
|
|
22174
22165
|
}
|
|
22175
22166
|
namespace Responses {
|
|
22176
|
-
namespace $
|
|
22167
|
+
namespace $201 {
|
|
22177
22168
|
namespace Content {
|
|
22178
|
-
|
|
22169
|
+
interface ApplicationJson {
|
|
22170
|
+
id: string;
|
|
22171
|
+
}
|
|
22179
22172
|
}
|
|
22180
22173
|
}
|
|
22181
22174
|
namespace $400 {
|
|
@@ -22230,19 +22223,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22230
22223
|
}
|
|
22231
22224
|
}
|
|
22232
22225
|
}
|
|
22233
|
-
namespace
|
|
22234
|
-
|
|
22226
|
+
namespace V2DeliveryboxesDeliveryBoxId { }
|
|
22227
|
+
namespace V2DeliveryBoxesDeliveryBoxId {
|
|
22228
|
+
namespace Get {
|
|
22235
22229
|
namespace Parameters {
|
|
22236
22230
|
type Path = {
|
|
22237
|
-
|
|
22231
|
+
deliveryBoxId: string;
|
|
22238
22232
|
};
|
|
22239
22233
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22240
22234
|
type Query = {};
|
|
22241
22235
|
}
|
|
22242
22236
|
namespace Responses {
|
|
22243
|
-
namespace $
|
|
22237
|
+
namespace $200 {
|
|
22244
22238
|
namespace Content {
|
|
22245
|
-
type
|
|
22239
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
|
|
22246
22240
|
}
|
|
22247
22241
|
}
|
|
22248
22242
|
namespace $400 {
|
|
@@ -22296,20 +22290,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22296
22290
|
}
|
|
22297
22291
|
}
|
|
22298
22292
|
}
|
|
22299
|
-
|
|
22300
|
-
namespace V2MailAddressesMailAddressIdBackups {
|
|
22301
|
-
namespace Get {
|
|
22293
|
+
namespace Delete {
|
|
22302
22294
|
namespace Parameters {
|
|
22303
22295
|
type Path = {
|
|
22304
|
-
|
|
22296
|
+
deliveryBoxId: string;
|
|
22305
22297
|
};
|
|
22306
22298
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22307
22299
|
type Query = {};
|
|
22308
22300
|
}
|
|
22309
22301
|
namespace Responses {
|
|
22310
|
-
namespace $
|
|
22302
|
+
namespace $204 {
|
|
22311
22303
|
namespace Content {
|
|
22312
|
-
type
|
|
22304
|
+
type Empty = unknown;
|
|
22313
22305
|
}
|
|
22314
22306
|
}
|
|
22315
22307
|
namespace $400 {
|
|
@@ -22347,6 +22339,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22347
22339
|
}
|
|
22348
22340
|
}
|
|
22349
22341
|
}
|
|
22342
|
+
namespace $503 {
|
|
22343
|
+
namespace Content {
|
|
22344
|
+
interface ApplicationJson {
|
|
22345
|
+
[k: string]: unknown;
|
|
22346
|
+
}
|
|
22347
|
+
}
|
|
22348
|
+
}
|
|
22350
22349
|
namespace Default {
|
|
22351
22350
|
namespace Content {
|
|
22352
22351
|
interface ApplicationJson {
|
|
@@ -22357,29 +22356,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22357
22356
|
}
|
|
22358
22357
|
}
|
|
22359
22358
|
}
|
|
22360
|
-
namespace
|
|
22359
|
+
namespace V2MailaddressesMailAddressId { }
|
|
22360
|
+
namespace V2MailAddressesMailAddressId {
|
|
22361
22361
|
namespace Get {
|
|
22362
22362
|
namespace Parameters {
|
|
22363
|
-
type Path = {
|
|
22364
|
-
|
|
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")[];
|
|
22363
|
+
type Path = {
|
|
22364
|
+
mailAddressId: string;
|
|
22377
22365
|
};
|
|
22366
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22367
|
+
type Query = {};
|
|
22378
22368
|
}
|
|
22379
22369
|
namespace Responses {
|
|
22380
22370
|
namespace $200 {
|
|
22381
22371
|
namespace Content {
|
|
22382
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress
|
|
22372
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
|
|
22383
22373
|
}
|
|
22384
22374
|
}
|
|
22385
22375
|
namespace $400 {
|
|
@@ -22433,25 +22423,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22433
22423
|
}
|
|
22434
22424
|
}
|
|
22435
22425
|
}
|
|
22436
|
-
|
|
22437
|
-
namespace V2ProjectsProjectIdMailsettings { }
|
|
22438
|
-
namespace V2ProjectsProjectIdMailSettings {
|
|
22439
|
-
namespace Get {
|
|
22426
|
+
namespace Delete {
|
|
22440
22427
|
namespace Parameters {
|
|
22441
22428
|
type Path = {
|
|
22442
|
-
|
|
22429
|
+
mailAddressId: string;
|
|
22443
22430
|
};
|
|
22444
22431
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22445
22432
|
type Query = {};
|
|
22446
22433
|
}
|
|
22447
22434
|
namespace Responses {
|
|
22448
|
-
namespace $
|
|
22435
|
+
namespace $204 {
|
|
22449
22436
|
namespace Content {
|
|
22450
|
-
|
|
22451
|
-
blacklist: string[];
|
|
22452
|
-
projectId: string;
|
|
22453
|
-
whitelist: string[];
|
|
22454
|
-
}
|
|
22437
|
+
type Empty = unknown;
|
|
22455
22438
|
}
|
|
22456
22439
|
}
|
|
22457
22440
|
namespace $400 {
|
|
@@ -22506,12 +22489,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22506
22489
|
}
|
|
22507
22490
|
}
|
|
22508
22491
|
}
|
|
22509
|
-
namespace
|
|
22510
|
-
namespace
|
|
22492
|
+
namespace V2MailAddressesMailAddressIdMailArchive {
|
|
22493
|
+
namespace Delete {
|
|
22511
22494
|
namespace Parameters {
|
|
22512
22495
|
type Path = {
|
|
22513
22496
|
mailAddressId: string;
|
|
22514
|
-
backupId: string;
|
|
22515
22497
|
};
|
|
22516
22498
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22517
22499
|
type Query = {};
|
|
@@ -22529,6 +22511,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22529
22511
|
}
|
|
22530
22512
|
}
|
|
22531
22513
|
}
|
|
22514
|
+
namespace $403 {
|
|
22515
|
+
namespace Content {
|
|
22516
|
+
interface ApplicationJson {
|
|
22517
|
+
[k: string]: unknown;
|
|
22518
|
+
}
|
|
22519
|
+
}
|
|
22520
|
+
}
|
|
22532
22521
|
namespace $404 {
|
|
22533
22522
|
namespace Content {
|
|
22534
22523
|
interface ApplicationJson {
|
|
@@ -22543,6 +22532,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22543
22532
|
}
|
|
22544
22533
|
}
|
|
22545
22534
|
}
|
|
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
|
+
}
|
|
22546
22549
|
namespace Default {
|
|
22547
22550
|
namespace Content {
|
|
22548
22551
|
interface ApplicationJson {
|
|
@@ -22553,22 +22556,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22553
22556
|
}
|
|
22554
22557
|
}
|
|
22555
22558
|
}
|
|
22556
|
-
namespace
|
|
22557
|
-
namespace
|
|
22559
|
+
namespace V2MailAddressesMailAddressIdBackups {
|
|
22560
|
+
namespace Get {
|
|
22558
22561
|
namespace Parameters {
|
|
22559
22562
|
type Path = {
|
|
22560
|
-
|
|
22563
|
+
mailAddressId: string;
|
|
22561
22564
|
};
|
|
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 $200 {
|
|
22570
22570
|
namespace Content {
|
|
22571
|
-
type
|
|
22571
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[];
|
|
22572
22572
|
}
|
|
22573
22573
|
}
|
|
22574
22574
|
namespace $400 {
|
|
@@ -22606,13 +22606,6 @@ 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
|
-
}
|
|
22616
22609
|
namespace Default {
|
|
22617
22610
|
namespace Content {
|
|
22618
22611
|
interface ApplicationJson {
|
|
@@ -22623,22 +22616,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22623
22616
|
}
|
|
22624
22617
|
}
|
|
22625
22618
|
}
|
|
22626
|
-
namespace
|
|
22627
|
-
namespace
|
|
22619
|
+
namespace V2MailAddresses {
|
|
22620
|
+
namespace Get {
|
|
22628
22621
|
namespace Parameters {
|
|
22629
|
-
type Path = {
|
|
22630
|
-
deliveryBoxId: string;
|
|
22631
|
-
};
|
|
22632
|
-
interface RequestBody {
|
|
22633
|
-
password: string;
|
|
22634
|
-
}
|
|
22622
|
+
type Path = {};
|
|
22635
22623
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22636
|
-
type Query = {
|
|
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")[];
|
|
22636
|
+
};
|
|
22637
22637
|
}
|
|
22638
22638
|
namespace Responses {
|
|
22639
|
-
namespace $
|
|
22639
|
+
namespace $200 {
|
|
22640
22640
|
namespace Content {
|
|
22641
|
-
type
|
|
22641
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
|
|
22642
22642
|
}
|
|
22643
22643
|
}
|
|
22644
22644
|
namespace $400 {
|
|
@@ -22693,22 +22693,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22693
22693
|
}
|
|
22694
22694
|
}
|
|
22695
22695
|
}
|
|
22696
|
-
namespace
|
|
22697
|
-
|
|
22696
|
+
namespace V2ProjectsProjectIdMailsettings { }
|
|
22697
|
+
namespace V2ProjectsProjectIdMailSettings {
|
|
22698
|
+
namespace Get {
|
|
22698
22699
|
namespace Parameters {
|
|
22699
22700
|
type Path = {
|
|
22700
|
-
|
|
22701
|
+
projectId: string;
|
|
22701
22702
|
};
|
|
22702
|
-
interface RequestBody {
|
|
22703
|
-
address: string;
|
|
22704
|
-
}
|
|
22705
22703
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22706
22704
|
type Query = {};
|
|
22707
22705
|
}
|
|
22708
22706
|
namespace Responses {
|
|
22709
|
-
namespace $
|
|
22707
|
+
namespace $200 {
|
|
22710
22708
|
namespace Content {
|
|
22711
|
-
|
|
22709
|
+
interface ApplicationJson {
|
|
22710
|
+
blacklist: string[];
|
|
22711
|
+
projectId: string;
|
|
22712
|
+
whitelist: string[];
|
|
22713
|
+
}
|
|
22712
22714
|
}
|
|
22713
22715
|
}
|
|
22714
22716
|
namespace $400 {
|
|
@@ -22763,15 +22765,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22763
22765
|
}
|
|
22764
22766
|
}
|
|
22765
22767
|
}
|
|
22766
|
-
namespace
|
|
22767
|
-
namespace
|
|
22768
|
+
namespace V2MailAddressesMailAddressIdBackupsBackupIdRecovery {
|
|
22769
|
+
namespace Post {
|
|
22768
22770
|
namespace Parameters {
|
|
22769
22771
|
type Path = {
|
|
22770
22772
|
mailAddressId: string;
|
|
22773
|
+
backupId: string;
|
|
22771
22774
|
};
|
|
22772
|
-
interface RequestBody {
|
|
22773
|
-
active: boolean;
|
|
22774
|
-
}
|
|
22775
22775
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22776
22776
|
type Query = {};
|
|
22777
22777
|
}
|
|
@@ -22788,13 +22788,6 @@ 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
|
-
}
|
|
22798
22791
|
namespace $404 {
|
|
22799
22792
|
namespace Content {
|
|
22800
22793
|
interface ApplicationJson {
|
|
@@ -22809,20 +22802,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22809
22802
|
}
|
|
22810
22803
|
}
|
|
22811
22804
|
}
|
|
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
|
-
}
|
|
22826
22805
|
namespace Default {
|
|
22827
22806
|
namespace Content {
|
|
22828
22807
|
interface ApplicationJson {
|
|
@@ -22833,27 +22812,32 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22833
22812
|
}
|
|
22834
22813
|
}
|
|
22835
22814
|
}
|
|
22836
|
-
namespace
|
|
22837
|
-
namespace
|
|
22815
|
+
namespace V2DeliveryBoxesDeliveryBoxIdDescription {
|
|
22816
|
+
namespace Patch {
|
|
22838
22817
|
namespace Parameters {
|
|
22839
22818
|
type Path = {
|
|
22840
|
-
|
|
22819
|
+
deliveryBoxId: string;
|
|
22841
22820
|
};
|
|
22821
|
+
interface RequestBody {
|
|
22822
|
+
description: string;
|
|
22823
|
+
}
|
|
22842
22824
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22843
22825
|
type Query = {};
|
|
22844
22826
|
}
|
|
22845
22827
|
namespace Responses {
|
|
22846
|
-
namespace $
|
|
22828
|
+
namespace $204 {
|
|
22829
|
+
namespace Content {
|
|
22830
|
+
type Empty = unknown;
|
|
22831
|
+
}
|
|
22832
|
+
}
|
|
22833
|
+
namespace $400 {
|
|
22847
22834
|
namespace Content {
|
|
22848
22835
|
interface ApplicationJson {
|
|
22849
|
-
|
|
22850
|
-
brand: string;
|
|
22851
|
-
last4: string;
|
|
22852
|
-
};
|
|
22836
|
+
[k: string]: unknown;
|
|
22853
22837
|
}
|
|
22854
22838
|
}
|
|
22855
22839
|
}
|
|
22856
|
-
namespace $
|
|
22840
|
+
namespace $403 {
|
|
22857
22841
|
namespace Content {
|
|
22858
22842
|
interface ApplicationJson {
|
|
22859
22843
|
[k: string]: unknown;
|
|
@@ -22874,6 +22858,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22874
22858
|
}
|
|
22875
22859
|
}
|
|
22876
22860
|
}
|
|
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
|
+
}
|
|
22877
22875
|
namespace Default {
|
|
22878
22876
|
namespace Content {
|
|
22879
22877
|
interface ApplicationJson {
|
|
@@ -22883,26 +22881,33 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22883
22881
|
}
|
|
22884
22882
|
}
|
|
22885
22883
|
}
|
|
22886
|
-
|
|
22884
|
+
}
|
|
22885
|
+
namespace V2DeliveryBoxesDeliveryBoxIdPassword {
|
|
22886
|
+
namespace Patch {
|
|
22887
22887
|
namespace Parameters {
|
|
22888
22888
|
type Path = {
|
|
22889
|
-
|
|
22889
|
+
deliveryBoxId: string;
|
|
22890
22890
|
};
|
|
22891
22891
|
interface RequestBody {
|
|
22892
|
-
|
|
22892
|
+
password: string;
|
|
22893
22893
|
}
|
|
22894
22894
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22895
22895
|
type Query = {};
|
|
22896
22896
|
}
|
|
22897
22897
|
namespace Responses {
|
|
22898
|
-
namespace $
|
|
22898
|
+
namespace $204 {
|
|
22899
|
+
namespace Content {
|
|
22900
|
+
type Empty = unknown;
|
|
22901
|
+
}
|
|
22902
|
+
}
|
|
22903
|
+
namespace $400 {
|
|
22899
22904
|
namespace Content {
|
|
22900
22905
|
interface ApplicationJson {
|
|
22901
|
-
|
|
22906
|
+
[k: string]: unknown;
|
|
22902
22907
|
}
|
|
22903
22908
|
}
|
|
22904
22909
|
}
|
|
22905
|
-
namespace $
|
|
22910
|
+
namespace $403 {
|
|
22906
22911
|
namespace Content {
|
|
22907
22912
|
interface ApplicationJson {
|
|
22908
22913
|
[k: string]: unknown;
|
|
@@ -22923,6 +22928,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22923
22928
|
}
|
|
22924
22929
|
}
|
|
22925
22930
|
}
|
|
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
|
+
}
|
|
22926
22945
|
namespace Default {
|
|
22927
22946
|
namespace Content {
|
|
22928
22947
|
interface ApplicationJson {
|
|
@@ -22933,50 +22952,42 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22933
22952
|
}
|
|
22934
22953
|
}
|
|
22935
22954
|
}
|
|
22936
|
-
namespace
|
|
22937
|
-
namespace
|
|
22955
|
+
namespace V2MailAddressesMailAddressIdAddress {
|
|
22956
|
+
namespace Patch {
|
|
22938
22957
|
namespace Parameters {
|
|
22939
|
-
type Path = {
|
|
22958
|
+
type Path = {
|
|
22959
|
+
mailAddressId: string;
|
|
22960
|
+
};
|
|
22961
|
+
interface RequestBody {
|
|
22962
|
+
address: string;
|
|
22963
|
+
}
|
|
22940
22964
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22941
22965
|
type Query = {};
|
|
22942
22966
|
}
|
|
22943
22967
|
namespace Responses {
|
|
22944
|
-
namespace $
|
|
22968
|
+
namespace $204 {
|
|
22945
22969
|
namespace Content {
|
|
22946
|
-
type
|
|
22970
|
+
type Empty = unknown;
|
|
22947
22971
|
}
|
|
22948
22972
|
}
|
|
22949
|
-
namespace $
|
|
22973
|
+
namespace $400 {
|
|
22950
22974
|
namespace Content {
|
|
22951
22975
|
interface ApplicationJson {
|
|
22952
22976
|
[k: string]: unknown;
|
|
22953
22977
|
}
|
|
22954
22978
|
}
|
|
22955
22979
|
}
|
|
22956
|
-
namespace
|
|
22980
|
+
namespace $403 {
|
|
22957
22981
|
namespace Content {
|
|
22958
22982
|
interface ApplicationJson {
|
|
22959
22983
|
[k: string]: unknown;
|
|
22960
22984
|
}
|
|
22961
22985
|
}
|
|
22962
22986
|
}
|
|
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 {
|
|
22987
|
+
namespace $404 {
|
|
22975
22988
|
namespace Content {
|
|
22976
22989
|
interface ApplicationJson {
|
|
22977
|
-
|
|
22978
|
-
email: string;
|
|
22979
|
-
registered: boolean;
|
|
22990
|
+
[k: string]: unknown;
|
|
22980
22991
|
}
|
|
22981
22992
|
}
|
|
22982
22993
|
}
|
|
@@ -22987,6 +22998,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22987
22998
|
}
|
|
22988
22999
|
}
|
|
22989
23000
|
}
|
|
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
|
+
}
|
|
22990
23015
|
namespace Default {
|
|
22991
23016
|
namespace Content {
|
|
22992
23017
|
interface ApplicationJson {
|
|
@@ -22996,9 +23021,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22996
23021
|
}
|
|
22997
23022
|
}
|
|
22998
23023
|
}
|
|
22999
|
-
|
|
23024
|
+
}
|
|
23025
|
+
namespace V2MailAddressesMailAddressIdCatchAll {
|
|
23026
|
+
namespace Patch {
|
|
23000
23027
|
namespace Parameters {
|
|
23001
|
-
type Path = {
|
|
23028
|
+
type Path = {
|
|
23029
|
+
mailAddressId: string;
|
|
23030
|
+
};
|
|
23031
|
+
interface RequestBody {
|
|
23032
|
+
active: boolean;
|
|
23033
|
+
}
|
|
23002
23034
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23003
23035
|
type Query = {};
|
|
23004
23036
|
}
|
|
@@ -23008,40 +23040,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23008
23040
|
type Empty = unknown;
|
|
23009
23041
|
}
|
|
23010
23042
|
}
|
|
23011
|
-
namespace $
|
|
23043
|
+
namespace $400 {
|
|
23012
23044
|
namespace Content {
|
|
23013
23045
|
interface ApplicationJson {
|
|
23014
23046
|
[k: string]: unknown;
|
|
23015
23047
|
}
|
|
23016
23048
|
}
|
|
23017
23049
|
}
|
|
23018
|
-
namespace
|
|
23050
|
+
namespace $403 {
|
|
23019
23051
|
namespace Content {
|
|
23020
23052
|
interface ApplicationJson {
|
|
23021
23053
|
[k: string]: unknown;
|
|
23022
23054
|
}
|
|
23023
23055
|
}
|
|
23024
23056
|
}
|
|
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 {
|
|
23057
|
+
namespace $404 {
|
|
23038
23058
|
namespace Content {
|
|
23039
23059
|
interface ApplicationJson {
|
|
23040
|
-
|
|
23041
|
-
info: number;
|
|
23042
|
-
success: number;
|
|
23043
|
-
total: number;
|
|
23044
|
-
warning: number;
|
|
23060
|
+
[k: string]: unknown;
|
|
23045
23061
|
}
|
|
23046
23062
|
}
|
|
23047
23063
|
}
|
|
@@ -23052,38 +23068,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23052
23068
|
}
|
|
23053
23069
|
}
|
|
23054
23070
|
}
|
|
23055
|
-
namespace
|
|
23071
|
+
namespace $500 {
|
|
23056
23072
|
namespace Content {
|
|
23057
23073
|
interface ApplicationJson {
|
|
23058
23074
|
[k: string]: unknown;
|
|
23059
23075
|
}
|
|
23060
23076
|
}
|
|
23061
23077
|
}
|
|
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 {
|
|
23078
|
+
namespace $503 {
|
|
23087
23079
|
namespace Content {
|
|
23088
23080
|
interface ApplicationJson {
|
|
23089
23081
|
[k: string]: unknown;
|
|
@@ -23100,34 +23092,34 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23100
23092
|
}
|
|
23101
23093
|
}
|
|
23102
23094
|
}
|
|
23103
|
-
namespace
|
|
23104
|
-
|
|
23105
|
-
namespace Post {
|
|
23095
|
+
namespace V2CustomersCustomerIdPaymentMethod {
|
|
23096
|
+
namespace Get {
|
|
23106
23097
|
namespace Parameters {
|
|
23107
|
-
type Path = {
|
|
23108
|
-
|
|
23109
|
-
}
|
|
23110
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23111
|
-
type Query = {
|
|
23112
|
-
severities?: ("success" | "info" | "warning" | "error")[];
|
|
23113
|
-
referenceId?: string;
|
|
23114
|
-
referenceAggregate?: string;
|
|
23115
|
-
referenceDomain?: string;
|
|
23098
|
+
type Path = {
|
|
23099
|
+
customerId: string;
|
|
23116
23100
|
};
|
|
23101
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23102
|
+
type Query = {};
|
|
23117
23103
|
}
|
|
23118
23104
|
namespace Responses {
|
|
23119
23105
|
namespace $200 {
|
|
23120
23106
|
namespace Content {
|
|
23121
23107
|
interface ApplicationJson {
|
|
23122
|
-
|
|
23123
|
-
|
|
23124
|
-
|
|
23125
|
-
|
|
23126
|
-
updatedCount: number;
|
|
23108
|
+
cardDetails?: {
|
|
23109
|
+
brand: string;
|
|
23110
|
+
last4: string;
|
|
23111
|
+
};
|
|
23127
23112
|
}
|
|
23128
23113
|
}
|
|
23129
23114
|
}
|
|
23130
|
-
namespace $
|
|
23115
|
+
namespace $400 {
|
|
23116
|
+
namespace Content {
|
|
23117
|
+
interface ApplicationJson {
|
|
23118
|
+
[k: string]: unknown;
|
|
23119
|
+
}
|
|
23120
|
+
}
|
|
23121
|
+
}
|
|
23122
|
+
namespace $404 {
|
|
23131
23123
|
namespace Content {
|
|
23132
23124
|
interface ApplicationJson {
|
|
23133
23125
|
[k: string]: unknown;
|
|
@@ -23150,15 +23142,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23150
23142
|
}
|
|
23151
23143
|
}
|
|
23152
23144
|
}
|
|
23153
|
-
}
|
|
23154
|
-
namespace V2NotificationsNotificationIdStatus {
|
|
23155
23145
|
namespace Put {
|
|
23156
23146
|
namespace Parameters {
|
|
23157
23147
|
type Path = {
|
|
23158
|
-
|
|
23148
|
+
customerId: string;
|
|
23159
23149
|
};
|
|
23160
23150
|
interface RequestBody {
|
|
23161
|
-
|
|
23151
|
+
customReturnUrl?: string;
|
|
23162
23152
|
}
|
|
23163
23153
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23164
23154
|
type Query = {};
|
|
@@ -23167,7 +23157,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23167
23157
|
namespace $200 {
|
|
23168
23158
|
namespace Content {
|
|
23169
23159
|
interface ApplicationJson {
|
|
23170
|
-
|
|
23160
|
+
url?: string;
|
|
23161
|
+
}
|
|
23162
|
+
}
|
|
23163
|
+
}
|
|
23164
|
+
namespace $400 {
|
|
23165
|
+
namespace Content {
|
|
23166
|
+
interface ApplicationJson {
|
|
23167
|
+
[k: string]: unknown;
|
|
23171
23168
|
}
|
|
23172
23169
|
}
|
|
23173
23170
|
}
|
|
@@ -23195,25 +23192,17 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23195
23192
|
}
|
|
23196
23193
|
}
|
|
23197
23194
|
}
|
|
23198
|
-
namespace
|
|
23195
|
+
namespace V2TimeZones {
|
|
23199
23196
|
namespace Get {
|
|
23200
23197
|
namespace Parameters {
|
|
23201
23198
|
type Path = {};
|
|
23202
23199
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
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
|
-
};
|
|
23200
|
+
type Query = {};
|
|
23212
23201
|
}
|
|
23213
23202
|
namespace Responses {
|
|
23214
23203
|
namespace $200 {
|
|
23215
23204
|
namespace Content {
|
|
23216
|
-
type ApplicationJson =
|
|
23205
|
+
type ApplicationJson = string[];
|
|
23217
23206
|
}
|
|
23218
23207
|
}
|
|
23219
23208
|
namespace $429 {
|
|
@@ -23232,35 +23221,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23232
23221
|
}
|
|
23233
23222
|
}
|
|
23234
23223
|
}
|
|
23235
|
-
|
|
23224
|
+
}
|
|
23225
|
+
namespace V2NewsletterSubscriptionsSelf {
|
|
23226
|
+
namespace Get {
|
|
23236
23227
|
namespace Parameters {
|
|
23237
23228
|
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
|
-
}
|
|
23242
23229
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23243
23230
|
type Query = {};
|
|
23244
23231
|
}
|
|
23245
23232
|
namespace Responses {
|
|
23246
|
-
namespace $
|
|
23247
|
-
namespace Content {
|
|
23248
|
-
interface ApplicationJson {
|
|
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 {
|
|
23233
|
+
namespace $200 {
|
|
23261
23234
|
namespace Content {
|
|
23262
23235
|
interface ApplicationJson {
|
|
23263
|
-
|
|
23236
|
+
active: boolean;
|
|
23237
|
+
email: string;
|
|
23238
|
+
registered: boolean;
|
|
23264
23239
|
}
|
|
23265
23240
|
}
|
|
23266
23241
|
}
|
|
@@ -23280,31 +23255,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23280
23255
|
}
|
|
23281
23256
|
}
|
|
23282
23257
|
}
|
|
23283
|
-
|
|
23284
|
-
namespace V2TariffChanges {
|
|
23285
|
-
namespace Post {
|
|
23258
|
+
namespace Delete {
|
|
23286
23259
|
namespace Parameters {
|
|
23287
23260
|
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
|
-
}
|
|
23292
23261
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23293
23262
|
type Query = {};
|
|
23294
23263
|
}
|
|
23295
23264
|
namespace Responses {
|
|
23296
|
-
namespace $
|
|
23297
|
-
namespace Content {
|
|
23298
|
-
interface ApplicationJson {
|
|
23299
|
-
orderId: string;
|
|
23300
|
-
}
|
|
23301
|
-
}
|
|
23302
|
-
}
|
|
23303
|
-
namespace $400 {
|
|
23265
|
+
namespace $204 {
|
|
23304
23266
|
namespace Content {
|
|
23305
|
-
|
|
23306
|
-
[k: string]: unknown;
|
|
23307
|
-
}
|
|
23267
|
+
type Empty = unknown;
|
|
23308
23268
|
}
|
|
23309
23269
|
}
|
|
23310
23270
|
namespace $429 {
|
|
@@ -23324,19 +23284,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23324
23284
|
}
|
|
23325
23285
|
}
|
|
23326
23286
|
}
|
|
23327
|
-
namespace
|
|
23287
|
+
namespace V2NotificationsUnreadCounts { }
|
|
23288
|
+
namespace V2NotificationUnreadCounts {
|
|
23328
23289
|
namespace Get {
|
|
23329
23290
|
namespace Parameters {
|
|
23330
|
-
type Path = {
|
|
23331
|
-
orderId: string;
|
|
23332
|
-
};
|
|
23291
|
+
type Path = {};
|
|
23333
23292
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23334
23293
|
type Query = {};
|
|
23335
23294
|
}
|
|
23336
23295
|
namespace Responses {
|
|
23337
23296
|
namespace $200 {
|
|
23338
23297
|
namespace Content {
|
|
23339
|
-
|
|
23298
|
+
interface ApplicationJson {
|
|
23299
|
+
error: number;
|
|
23300
|
+
info: number;
|
|
23301
|
+
success: number;
|
|
23302
|
+
total: number;
|
|
23303
|
+
warning: number;
|
|
23304
|
+
}
|
|
23340
23305
|
}
|
|
23341
23306
|
}
|
|
23342
23307
|
namespace $429 {
|
|
@@ -23356,26 +23321,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23356
23321
|
}
|
|
23357
23322
|
}
|
|
23358
23323
|
}
|
|
23359
|
-
namespace
|
|
23324
|
+
namespace V2Notifications {
|
|
23360
23325
|
namespace Get {
|
|
23361
23326
|
namespace Parameters {
|
|
23362
|
-
type Path = {
|
|
23363
|
-
customerId: string;
|
|
23364
|
-
};
|
|
23327
|
+
type Path = {};
|
|
23365
23328
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23366
23329
|
type Query = {
|
|
23330
|
+
status?: "unread" | "read";
|
|
23331
|
+
severity?: ("success" | "info" | "warning" | "error")[];
|
|
23332
|
+
type?: string[];
|
|
23333
|
+
"type-not"?: string[];
|
|
23367
23334
|
limit?: number;
|
|
23368
23335
|
skip?: number;
|
|
23369
23336
|
page?: number;
|
|
23370
|
-
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23371
|
-
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23372
|
-
templateNames?: string[];
|
|
23373
23337
|
};
|
|
23374
23338
|
}
|
|
23375
23339
|
namespace Responses {
|
|
23376
23340
|
namespace $200 {
|
|
23377
23341
|
namespace Content {
|
|
23378
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
23342
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MessagingNotification[];
|
|
23379
23343
|
}
|
|
23380
23344
|
}
|
|
23381
23345
|
namespace $429 {
|
|
@@ -23395,26 +23359,38 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23395
23359
|
}
|
|
23396
23360
|
}
|
|
23397
23361
|
}
|
|
23398
|
-
namespace
|
|
23399
|
-
|
|
23362
|
+
namespace V2NotificationsStatus { }
|
|
23363
|
+
namespace V2NotificationsActionsReadAll {
|
|
23364
|
+
namespace Post {
|
|
23400
23365
|
namespace Parameters {
|
|
23401
|
-
type Path = {
|
|
23402
|
-
|
|
23403
|
-
}
|
|
23366
|
+
type Path = {};
|
|
23367
|
+
interface RequestBody {
|
|
23368
|
+
}
|
|
23404
23369
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23405
23370
|
type Query = {
|
|
23406
|
-
|
|
23407
|
-
|
|
23408
|
-
|
|
23409
|
-
|
|
23410
|
-
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23411
|
-
templateNames?: string[];
|
|
23371
|
+
severities?: ("success" | "info" | "warning" | "error")[];
|
|
23372
|
+
referenceId?: string;
|
|
23373
|
+
referenceAggregate?: string;
|
|
23374
|
+
referenceDomain?: string;
|
|
23412
23375
|
};
|
|
23413
23376
|
}
|
|
23414
23377
|
namespace Responses {
|
|
23415
23378
|
namespace $200 {
|
|
23416
23379
|
namespace Content {
|
|
23417
|
-
|
|
23380
|
+
interface ApplicationJson {
|
|
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
|
+
}
|
|
23418
23394
|
}
|
|
23419
23395
|
}
|
|
23420
23396
|
namespace $429 {
|
|
@@ -23434,37 +23410,71 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23434
23410
|
}
|
|
23435
23411
|
}
|
|
23436
23412
|
}
|
|
23437
|
-
namespace
|
|
23438
|
-
namespace
|
|
23413
|
+
namespace V2NotificationsNotificationIdStatus {
|
|
23414
|
+
namespace Put {
|
|
23439
23415
|
namespace Parameters {
|
|
23440
|
-
type Path = {
|
|
23416
|
+
type Path = {
|
|
23417
|
+
notificationId: string;
|
|
23418
|
+
};
|
|
23441
23419
|
interface RequestBody {
|
|
23442
|
-
|
|
23443
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
|
|
23420
|
+
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23444
23421
|
}
|
|
23445
|
-
type Header = {};
|
|
23422
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23446
23423
|
type Query = {};
|
|
23447
23424
|
}
|
|
23448
23425
|
namespace Responses {
|
|
23449
23426
|
namespace $200 {
|
|
23450
23427
|
namespace Content {
|
|
23451
|
-
|
|
23428
|
+
interface ApplicationJson {
|
|
23429
|
+
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23430
|
+
}
|
|
23452
23431
|
}
|
|
23453
23432
|
}
|
|
23454
|
-
namespace $
|
|
23433
|
+
namespace $404 {
|
|
23455
23434
|
namespace Content {
|
|
23456
23435
|
interface ApplicationJson {
|
|
23457
23436
|
[k: string]: unknown;
|
|
23458
23437
|
}
|
|
23459
23438
|
}
|
|
23460
23439
|
}
|
|
23461
|
-
namespace $
|
|
23440
|
+
namespace $429 {
|
|
23462
23441
|
namespace Content {
|
|
23463
23442
|
interface ApplicationJson {
|
|
23464
|
-
|
|
23443
|
+
[k: string]: unknown;
|
|
23444
|
+
}
|
|
23445
|
+
}
|
|
23446
|
+
}
|
|
23447
|
+
namespace Default {
|
|
23448
|
+
namespace Content {
|
|
23449
|
+
interface ApplicationJson {
|
|
23450
|
+
[k: string]: unknown;
|
|
23465
23451
|
}
|
|
23466
23452
|
}
|
|
23467
23453
|
}
|
|
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
|
+
}
|
|
23468
23478
|
namespace $429 {
|
|
23469
23479
|
namespace Content {
|
|
23470
23480
|
interface ApplicationJson {
|
|
@@ -23481,25 +23491,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23481
23491
|
}
|
|
23482
23492
|
}
|
|
23483
23493
|
}
|
|
23484
|
-
}
|
|
23485
|
-
namespace V2TariffChangePreviews {
|
|
23486
23494
|
namespace Post {
|
|
23487
23495
|
namespace Parameters {
|
|
23488
23496
|
type Path = {};
|
|
23489
23497
|
interface RequestBody {
|
|
23490
|
-
|
|
23491
|
-
|
|
23498
|
+
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;
|
|
23499
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
|
|
23492
23500
|
}
|
|
23493
23501
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23494
23502
|
type Query = {};
|
|
23495
23503
|
}
|
|
23496
23504
|
namespace Responses {
|
|
23497
|
-
namespace $
|
|
23505
|
+
namespace $201 {
|
|
23498
23506
|
namespace Content {
|
|
23499
23507
|
interface ApplicationJson {
|
|
23500
|
-
|
|
23501
|
-
storagePrice: number;
|
|
23502
|
-
totalPrice: number;
|
|
23508
|
+
orderId: string;
|
|
23503
23509
|
}
|
|
23504
23510
|
}
|
|
23505
23511
|
}
|
|
@@ -23534,37 +23540,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23534
23540
|
}
|
|
23535
23541
|
}
|
|
23536
23542
|
}
|
|
23537
|
-
namespace
|
|
23538
|
-
|
|
23539
|
-
namespace Get {
|
|
23543
|
+
namespace V2TariffChanges {
|
|
23544
|
+
namespace Post {
|
|
23540
23545
|
namespace Parameters {
|
|
23541
23546
|
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
|
+
}
|
|
23542
23551
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23543
|
-
type Query = {
|
|
23544
|
-
domain: string;
|
|
23545
|
-
path: string;
|
|
23546
|
-
date?: string;
|
|
23547
|
-
};
|
|
23552
|
+
type Query = {};
|
|
23548
23553
|
}
|
|
23549
23554
|
namespace Responses {
|
|
23550
|
-
namespace $
|
|
23555
|
+
namespace $201 {
|
|
23551
23556
|
namespace Content {
|
|
23552
23557
|
interface ApplicationJson {
|
|
23553
|
-
|
|
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
|
-
};
|
|
23558
|
+
orderId: string;
|
|
23568
23559
|
}
|
|
23569
23560
|
}
|
|
23570
23561
|
}
|
|
@@ -23575,13 +23566,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23575
23566
|
}
|
|
23576
23567
|
}
|
|
23577
23568
|
}
|
|
23578
|
-
namespace $403 {
|
|
23579
|
-
namespace Content {
|
|
23580
|
-
interface ApplicationJson {
|
|
23581
|
-
[k: string]: unknown;
|
|
23582
|
-
}
|
|
23583
|
-
}
|
|
23584
|
-
}
|
|
23585
23569
|
namespace $429 {
|
|
23586
23570
|
namespace Content {
|
|
23587
23571
|
interface ApplicationJson {
|
|
@@ -23599,12 +23583,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23599
23583
|
}
|
|
23600
23584
|
}
|
|
23601
23585
|
}
|
|
23602
|
-
namespace
|
|
23586
|
+
namespace V2OrdersOrderId {
|
|
23603
23587
|
namespace Get {
|
|
23604
23588
|
namespace Parameters {
|
|
23605
23589
|
type Path = {
|
|
23606
|
-
|
|
23607
|
-
projectId: string;
|
|
23590
|
+
orderId: string;
|
|
23608
23591
|
};
|
|
23609
23592
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23610
23593
|
type Query = {};
|
|
@@ -23612,27 +23595,48 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23612
23595
|
namespace Responses {
|
|
23613
23596
|
namespace $200 {
|
|
23614
23597
|
namespace Content {
|
|
23615
|
-
|
|
23616
|
-
executedAt: string;
|
|
23617
|
-
id: string;
|
|
23618
|
-
result: MittwaldAPIV2.Components.Schemas.StraceError | MittwaldAPIV2.Components.Schemas.StraceData;
|
|
23619
|
-
}
|
|
23598
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder;
|
|
23620
23599
|
}
|
|
23621
23600
|
}
|
|
23622
|
-
namespace $
|
|
23601
|
+
namespace $429 {
|
|
23623
23602
|
namespace Content {
|
|
23624
23603
|
interface ApplicationJson {
|
|
23625
23604
|
[k: string]: unknown;
|
|
23626
23605
|
}
|
|
23627
23606
|
}
|
|
23628
23607
|
}
|
|
23629
|
-
namespace
|
|
23608
|
+
namespace Default {
|
|
23630
23609
|
namespace Content {
|
|
23631
23610
|
interface ApplicationJson {
|
|
23632
23611
|
[k: string]: unknown;
|
|
23633
23612
|
}
|
|
23634
23613
|
}
|
|
23635
23614
|
}
|
|
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
|
+
}
|
|
23636
23640
|
namespace $429 {
|
|
23637
23641
|
namespace Content {
|
|
23638
23642
|
interface ApplicationJson {
|
|
@@ -23650,8 +23654,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23650
23654
|
}
|
|
23651
23655
|
}
|
|
23652
23656
|
}
|
|
23653
|
-
namespace
|
|
23654
|
-
namespace V2ProjectsProjectIdPageInsights {
|
|
23657
|
+
namespace V2ProjectsProjectIdOrders {
|
|
23655
23658
|
namespace Get {
|
|
23656
23659
|
namespace Parameters {
|
|
23657
23660
|
type Path = {
|
|
@@ -23659,35 +23662,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23659
23662
|
};
|
|
23660
23663
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23661
23664
|
type Query = {
|
|
23662
|
-
|
|
23665
|
+
limit?: number;
|
|
23666
|
+
skip?: number;
|
|
23667
|
+
page?: number;
|
|
23668
|
+
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23669
|
+
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23670
|
+
templateNames?: string[];
|
|
23663
23671
|
};
|
|
23664
23672
|
}
|
|
23665
23673
|
namespace Responses {
|
|
23666
23674
|
namespace $200 {
|
|
23667
23675
|
namespace Content {
|
|
23668
|
-
type ApplicationJson =
|
|
23669
|
-
domain: string;
|
|
23670
|
-
paths: {
|
|
23671
|
-
createdAt: string;
|
|
23672
|
-
path: string;
|
|
23673
|
-
performanceScore: number;
|
|
23674
|
-
screenshotFileRef?: string;
|
|
23675
|
-
}[];
|
|
23676
|
-
}[];
|
|
23677
|
-
}
|
|
23678
|
-
}
|
|
23679
|
-
namespace $400 {
|
|
23680
|
-
namespace Content {
|
|
23681
|
-
interface ApplicationJson {
|
|
23682
|
-
[k: string]: unknown;
|
|
23683
|
-
}
|
|
23684
|
-
}
|
|
23685
|
-
}
|
|
23686
|
-
namespace $403 {
|
|
23687
|
-
namespace Content {
|
|
23688
|
-
interface ApplicationJson {
|
|
23689
|
-
[k: string]: unknown;
|
|
23690
|
-
}
|
|
23676
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23691
23677
|
}
|
|
23692
23678
|
}
|
|
23693
23679
|
namespace $429 {
|
|
@@ -23707,27 +23693,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23707
23693
|
}
|
|
23708
23694
|
}
|
|
23709
23695
|
}
|
|
23710
|
-
namespace
|
|
23696
|
+
namespace V2OrderPreviews {
|
|
23711
23697
|
namespace Post {
|
|
23712
23698
|
namespace Parameters {
|
|
23713
|
-
type Path = {
|
|
23714
|
-
projectId: string;
|
|
23715
|
-
};
|
|
23699
|
+
type Path = {};
|
|
23716
23700
|
interface RequestBody {
|
|
23717
|
-
|
|
23718
|
-
|
|
23719
|
-
*/
|
|
23720
|
-
url: string;
|
|
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";
|
|
23721
23703
|
}
|
|
23722
|
-
type Header = {}
|
|
23704
|
+
type Header = {};
|
|
23723
23705
|
type Query = {};
|
|
23724
23706
|
}
|
|
23725
23707
|
namespace Responses {
|
|
23726
|
-
namespace $
|
|
23708
|
+
namespace $200 {
|
|
23727
23709
|
namespace Content {
|
|
23728
|
-
|
|
23729
|
-
id: string;
|
|
23730
|
-
}
|
|
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;
|
|
23731
23711
|
}
|
|
23732
23712
|
}
|
|
23733
23713
|
namespace $400 {
|
|
@@ -23737,17 +23717,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23737
23717
|
}
|
|
23738
23718
|
}
|
|
23739
23719
|
}
|
|
23740
|
-
namespace $
|
|
23741
|
-
namespace Content {
|
|
23742
|
-
interface ApplicationJson {
|
|
23743
|
-
[k: string]: unknown;
|
|
23744
|
-
}
|
|
23745
|
-
}
|
|
23746
|
-
}
|
|
23747
|
-
namespace $412 {
|
|
23720
|
+
namespace $422 {
|
|
23748
23721
|
namespace Content {
|
|
23749
23722
|
interface ApplicationJson {
|
|
23750
|
-
|
|
23723
|
+
error?: {};
|
|
23751
23724
|
}
|
|
23752
23725
|
}
|
|
23753
23726
|
}
|
|
@@ -23768,19 +23741,39 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23768
23741
|
}
|
|
23769
23742
|
}
|
|
23770
23743
|
}
|
|
23771
|
-
namespace
|
|
23772
|
-
namespace
|
|
23744
|
+
namespace V2TariffChangePreviews {
|
|
23745
|
+
namespace Post {
|
|
23773
23746
|
namespace Parameters {
|
|
23774
|
-
type Path = {
|
|
23775
|
-
|
|
23776
|
-
|
|
23777
|
-
|
|
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;
|
|
23778
23753
|
type Query = {};
|
|
23779
23754
|
}
|
|
23780
23755
|
namespace Responses {
|
|
23781
23756
|
namespace $200 {
|
|
23782
23757
|
namespace Content {
|
|
23783
|
-
|
|
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
|
+
}
|
|
23784
23777
|
}
|
|
23785
23778
|
}
|
|
23786
23779
|
namespace $429 {
|
|
@@ -23800,43 +23793,48 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23800
23793
|
}
|
|
23801
23794
|
}
|
|
23802
23795
|
}
|
|
23803
|
-
namespace
|
|
23804
|
-
namespace
|
|
23805
|
-
namespace
|
|
23796
|
+
namespace V2Pageinsights { }
|
|
23797
|
+
namespace V2PageInsights {
|
|
23798
|
+
namespace Get {
|
|
23806
23799
|
namespace Parameters {
|
|
23807
|
-
type Path = {
|
|
23808
|
-
projectInviteId: string;
|
|
23809
|
-
};
|
|
23810
|
-
interface RequestBody {
|
|
23811
|
-
/**
|
|
23812
|
-
* Token contained in the invite for authentication.
|
|
23813
|
-
*/
|
|
23814
|
-
invitationToken?: string;
|
|
23815
|
-
}
|
|
23800
|
+
type Path = {};
|
|
23816
23801
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23817
|
-
type Query = {
|
|
23802
|
+
type Query = {
|
|
23803
|
+
domain: string;
|
|
23804
|
+
path: string;
|
|
23805
|
+
date?: string;
|
|
23806
|
+
};
|
|
23818
23807
|
}
|
|
23819
23808
|
namespace Responses {
|
|
23820
|
-
namespace $
|
|
23821
|
-
namespace Content {
|
|
23822
|
-
type Empty = unknown;
|
|
23823
|
-
}
|
|
23824
|
-
}
|
|
23825
|
-
namespace $400 {
|
|
23809
|
+
namespace $200 {
|
|
23826
23810
|
namespace Content {
|
|
23827
23811
|
interface ApplicationJson {
|
|
23828
|
-
|
|
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
|
+
};
|
|
23829
23827
|
}
|
|
23830
23828
|
}
|
|
23831
23829
|
}
|
|
23832
|
-
namespace $
|
|
23830
|
+
namespace $400 {
|
|
23833
23831
|
namespace Content {
|
|
23834
23832
|
interface ApplicationJson {
|
|
23835
23833
|
[k: string]: unknown;
|
|
23836
23834
|
}
|
|
23837
23835
|
}
|
|
23838
23836
|
}
|
|
23839
|
-
namespace $
|
|
23837
|
+
namespace $403 {
|
|
23840
23838
|
namespace Content {
|
|
23841
23839
|
interface ApplicationJson {
|
|
23842
23840
|
[k: string]: unknown;
|
|
@@ -23860,26 +23858,34 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23860
23858
|
}
|
|
23861
23859
|
}
|
|
23862
23860
|
}
|
|
23863
|
-
namespace
|
|
23864
|
-
namespace V2ProjectsProjectIdInvites {
|
|
23861
|
+
namespace V2ProjectsProjectIdStracesStraceId {
|
|
23865
23862
|
namespace Get {
|
|
23866
23863
|
namespace Parameters {
|
|
23867
23864
|
type Path = {
|
|
23865
|
+
straceId: string;
|
|
23868
23866
|
projectId: string;
|
|
23869
23867
|
};
|
|
23870
23868
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23871
|
-
type Query = {
|
|
23872
|
-
limit?: number;
|
|
23873
|
-
skip?: number;
|
|
23874
|
-
};
|
|
23869
|
+
type Query = {};
|
|
23875
23870
|
}
|
|
23876
23871
|
namespace Responses {
|
|
23877
23872
|
namespace $200 {
|
|
23878
23873
|
namespace Content {
|
|
23879
|
-
|
|
23874
|
+
interface ApplicationJson {
|
|
23875
|
+
executedAt: string;
|
|
23876
|
+
id: string;
|
|
23877
|
+
result: MittwaldAPIV2.Components.Schemas.StraceError | MittwaldAPIV2.Components.Schemas.StraceData;
|
|
23878
|
+
}
|
|
23880
23879
|
}
|
|
23881
23880
|
}
|
|
23882
|
-
namespace $
|
|
23881
|
+
namespace $400 {
|
|
23882
|
+
namespace Content {
|
|
23883
|
+
interface ApplicationJson {
|
|
23884
|
+
[k: string]: unknown;
|
|
23885
|
+
}
|
|
23886
|
+
}
|
|
23887
|
+
}
|
|
23888
|
+
namespace $403 {
|
|
23883
23889
|
namespace Content {
|
|
23884
23890
|
interface ApplicationJson {
|
|
23885
23891
|
[k: string]: unknown;
|
|
@@ -23902,33 +23908,31 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23902
23908
|
}
|
|
23903
23909
|
}
|
|
23904
23910
|
}
|
|
23905
|
-
|
|
23911
|
+
}
|
|
23912
|
+
namespace V2ProjectsProjectIdPageinsights { }
|
|
23913
|
+
namespace V2ProjectsProjectIdPageInsights {
|
|
23914
|
+
namespace Get {
|
|
23906
23915
|
namespace Parameters {
|
|
23907
23916
|
type Path = {
|
|
23908
23917
|
projectId: string;
|
|
23909
23918
|
};
|
|
23910
|
-
interface RequestBody {
|
|
23911
|
-
/**
|
|
23912
|
-
* Mail-address of the person to be invited.
|
|
23913
|
-
*/
|
|
23914
|
-
mailAddress: string;
|
|
23915
|
-
/**
|
|
23916
|
-
* Time the resulting ProjectMembership should expire at.
|
|
23917
|
-
*/
|
|
23918
|
-
membershipExpiresAt?: string;
|
|
23919
|
-
/**
|
|
23920
|
-
* Message contained in the ProjectInvite.
|
|
23921
|
-
*/
|
|
23922
|
-
message?: string;
|
|
23923
|
-
role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
23924
|
-
}
|
|
23925
23919
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23926
|
-
type Query = {
|
|
23920
|
+
type Query = {
|
|
23921
|
+
domain?: string;
|
|
23922
|
+
};
|
|
23927
23923
|
}
|
|
23928
23924
|
namespace Responses {
|
|
23929
|
-
namespace $
|
|
23925
|
+
namespace $200 {
|
|
23930
23926
|
namespace Content {
|
|
23931
|
-
type ApplicationJson =
|
|
23927
|
+
type ApplicationJson = {
|
|
23928
|
+
domain: string;
|
|
23929
|
+
paths: {
|
|
23930
|
+
createdAt: string;
|
|
23931
|
+
path: string;
|
|
23932
|
+
performanceScore: number;
|
|
23933
|
+
screenshotFileRef?: string;
|
|
23934
|
+
}[];
|
|
23935
|
+
}[];
|
|
23932
23936
|
}
|
|
23933
23937
|
}
|
|
23934
23938
|
namespace $400 {
|
|
@@ -23938,7 +23942,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23938
23942
|
}
|
|
23939
23943
|
}
|
|
23940
23944
|
}
|
|
23941
|
-
namespace $
|
|
23945
|
+
namespace $403 {
|
|
23942
23946
|
namespace Content {
|
|
23943
23947
|
interface ApplicationJson {
|
|
23944
23948
|
[k: string]: unknown;
|
|
@@ -23962,23 +23966,23 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23962
23966
|
}
|
|
23963
23967
|
}
|
|
23964
23968
|
}
|
|
23965
|
-
namespace
|
|
23969
|
+
namespace V2ProjectsProjectIdStraces {
|
|
23966
23970
|
namespace Post {
|
|
23967
23971
|
namespace Parameters {
|
|
23968
23972
|
type Path = {
|
|
23969
|
-
|
|
23973
|
+
projectId: string;
|
|
23970
23974
|
};
|
|
23971
23975
|
interface RequestBody {
|
|
23972
23976
|
/**
|
|
23973
|
-
*
|
|
23977
|
+
* A call to this URL is measured via strace.
|
|
23974
23978
|
*/
|
|
23975
|
-
|
|
23979
|
+
url: string;
|
|
23976
23980
|
}
|
|
23977
23981
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23978
23982
|
type Query = {};
|
|
23979
23983
|
}
|
|
23980
23984
|
namespace Responses {
|
|
23981
|
-
namespace $
|
|
23985
|
+
namespace $202 {
|
|
23982
23986
|
namespace Content {
|
|
23983
23987
|
interface ApplicationJson {
|
|
23984
23988
|
id: string;
|
|
@@ -24023,19 +24027,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
24023
24027
|
}
|
|
24024
24028
|
}
|
|
24025
24029
|
}
|
|
24026
|
-
namespace
|
|
24027
|
-
namespace
|
|
24030
|
+
namespace V2PasswordPoliciesPasswordPolicy {
|
|
24031
|
+
namespace Get {
|
|
24028
24032
|
namespace Parameters {
|
|
24029
24033
|
type Path = {
|
|
24030
|
-
|
|
24034
|
+
passwordPolicy: string;
|
|
24031
24035
|
};
|
|
24032
|
-
type Header = {}
|
|
24036
|
+
type Header = {};
|
|
24033
24037
|
type Query = {};
|
|
24034
24038
|
}
|
|
24035
24039
|
namespace Responses {
|
|
24036
|
-
namespace $
|
|
24040
|
+
namespace $200 {
|
|
24037
24041
|
namespace Content {
|
|
24038
|
-
type
|
|
24042
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.PolicyPolicy;
|
|
24039
24043
|
}
|
|
24040
24044
|
}
|
|
24041
24045
|
namespace $429 {
|
|
@@ -24055,22 +24059,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
24055
24059
|
}
|
|
24056
24060
|
}
|
|
24057
24061
|
}
|
|
24058
|
-
namespace
|
|
24062
|
+
namespace V2PasswordPoliciesPath { }
|
|
24063
|
+
namespace V2ProjectInvitesProjectInviteIdActionsAccept {
|
|
24059
24064
|
namespace Post {
|
|
24060
24065
|
namespace Parameters {
|
|
24061
24066
|
type Path = {
|
|
24062
|
-
|
|
24067
|
+
projectInviteId: string;
|
|
24063
24068
|
};
|
|
24069
|
+
interface RequestBody {
|
|
24070
|
+
/**
|
|
24071
|
+
* Token contained in the invite for authentication.
|
|
24072
|
+
*/
|
|
24073
|
+
invitationToken?: string;
|
|
24074
|
+
}
|
|
24064
24075
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
24065
24076
|
type Query = {};
|
|
24066
24077
|
}
|
|
24067
24078
|
namespace Responses {
|
|
24068
|
-
namespace $
|
|
24079
|
+
namespace $204 {
|
|
24069
24080
|
namespace Content {
|
|
24070
|
-
|
|
24071
|
-
refId: string;
|
|
24072
|
-
rules: MittwaldAPIV2.Components.Schemas.ProjectAvatarRules;
|
|
24073
|
-
}
|
|
24081
|
+
type Empty = unknown;
|
|
24074
24082
|
}
|
|
24075
24083
|
}
|
|
24076
24084
|
namespace $400 {
|
|
@@ -24087,6 +24095,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
24087
24095
|
}
|
|
24088
24096
|
}
|
|
24089
24097
|
}
|
|
24098
|
+
namespace $412 {
|
|
24099
|
+
namespace Content {
|
|
24100
|
+
interface ApplicationJson {
|
|
24101
|
+
[k: string]: unknown;
|
|
24102
|
+
}
|
|
24103
|
+
}
|
|
24104
|
+
}
|
|
24090
24105
|
namespace $429 {
|
|
24091
24106
|
namespace Content {
|
|
24092
24107
|
interface ApplicationJson {
|
|
@@ -24103,9 +24118,253 @@ export declare namespace MittwaldAPIV2 {
|
|
|
24103
24118
|
}
|
|
24104
24119
|
}
|
|
24105
24120
|
}
|
|
24106
|
-
|
|
24107
|
-
|
|
24108
|
-
|
|
24121
|
+
}
|
|
24122
|
+
namespace V2ProjectProjectIdInvites { }
|
|
24123
|
+
namespace V2ProjectsProjectIdInvites {
|
|
24124
|
+
namespace Get {
|
|
24125
|
+
namespace Parameters {
|
|
24126
|
+
type Path = {
|
|
24127
|
+
projectId: string;
|
|
24128
|
+
};
|
|
24129
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
24130
|
+
type Query = {
|
|
24131
|
+
limit?: number;
|
|
24132
|
+
skip?: number;
|
|
24133
|
+
};
|
|
24134
|
+
}
|
|
24135
|
+
namespace Responses {
|
|
24136
|
+
namespace $200 {
|
|
24137
|
+
namespace Content {
|
|
24138
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MembershipProjectInvite[];
|
|
24139
|
+
}
|
|
24140
|
+
}
|
|
24141
|
+
namespace $404 {
|
|
24142
|
+
namespace Content {
|
|
24143
|
+
interface ApplicationJson {
|
|
24144
|
+
[k: string]: unknown;
|
|
24145
|
+
}
|
|
24146
|
+
}
|
|
24147
|
+
}
|
|
24148
|
+
namespace $429 {
|
|
24149
|
+
namespace Content {
|
|
24150
|
+
interface ApplicationJson {
|
|
24151
|
+
[k: string]: unknown;
|
|
24152
|
+
}
|
|
24153
|
+
}
|
|
24154
|
+
}
|
|
24155
|
+
namespace Default {
|
|
24156
|
+
namespace Content {
|
|
24157
|
+
interface ApplicationJson {
|
|
24158
|
+
[k: string]: unknown;
|
|
24159
|
+
}
|
|
24160
|
+
}
|
|
24161
|
+
}
|
|
24162
|
+
}
|
|
24163
|
+
}
|
|
24164
|
+
namespace Post {
|
|
24165
|
+
namespace Parameters {
|
|
24166
|
+
type Path = {
|
|
24167
|
+
projectId: string;
|
|
24168
|
+
};
|
|
24169
|
+
interface RequestBody {
|
|
24170
|
+
/**
|
|
24171
|
+
* Mail-address of the person to be invited.
|
|
24172
|
+
*/
|
|
24173
|
+
mailAddress: string;
|
|
24174
|
+
/**
|
|
24175
|
+
* Time the resulting ProjectMembership should expire at.
|
|
24176
|
+
*/
|
|
24177
|
+
membershipExpiresAt?: string;
|
|
24178
|
+
/**
|
|
24179
|
+
* Message contained in the ProjectInvite.
|
|
24180
|
+
*/
|
|
24181
|
+
message?: string;
|
|
24182
|
+
role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
24183
|
+
}
|
|
24184
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
24185
|
+
type Query = {};
|
|
24186
|
+
}
|
|
24187
|
+
namespace Responses {
|
|
24188
|
+
namespace $201 {
|
|
24189
|
+
namespace Content {
|
|
24190
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MembershipProjectInvite;
|
|
24191
|
+
}
|
|
24192
|
+
}
|
|
24193
|
+
namespace $400 {
|
|
24194
|
+
namespace Content {
|
|
24195
|
+
interface ApplicationJson {
|
|
24196
|
+
[k: string]: unknown;
|
|
24197
|
+
}
|
|
24198
|
+
}
|
|
24199
|
+
}
|
|
24200
|
+
namespace $409 {
|
|
24201
|
+
namespace Content {
|
|
24202
|
+
interface ApplicationJson {
|
|
24203
|
+
[k: string]: unknown;
|
|
24204
|
+
}
|
|
24205
|
+
}
|
|
24206
|
+
}
|
|
24207
|
+
namespace $429 {
|
|
24208
|
+
namespace Content {
|
|
24209
|
+
interface ApplicationJson {
|
|
24210
|
+
[k: string]: unknown;
|
|
24211
|
+
}
|
|
24212
|
+
}
|
|
24213
|
+
}
|
|
24214
|
+
namespace Default {
|
|
24215
|
+
namespace Content {
|
|
24216
|
+
interface ApplicationJson {
|
|
24217
|
+
[k: string]: unknown;
|
|
24218
|
+
}
|
|
24219
|
+
}
|
|
24220
|
+
}
|
|
24221
|
+
}
|
|
24222
|
+
}
|
|
24223
|
+
}
|
|
24224
|
+
namespace V2ServersServerIdProjects {
|
|
24225
|
+
namespace Post {
|
|
24226
|
+
namespace Parameters {
|
|
24227
|
+
type Path = {
|
|
24228
|
+
serverId: string;
|
|
24229
|
+
};
|
|
24230
|
+
interface RequestBody {
|
|
24231
|
+
/**
|
|
24232
|
+
* Name of the Project as it is displayed in the mStudio.
|
|
24233
|
+
*/
|
|
24234
|
+
description: string;
|
|
24235
|
+
}
|
|
24236
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
24237
|
+
type Query = {};
|
|
24238
|
+
}
|
|
24239
|
+
namespace Responses {
|
|
24240
|
+
namespace $201 {
|
|
24241
|
+
namespace Content {
|
|
24242
|
+
interface ApplicationJson {
|
|
24243
|
+
id: string;
|
|
24244
|
+
}
|
|
24245
|
+
}
|
|
24246
|
+
}
|
|
24247
|
+
namespace $400 {
|
|
24248
|
+
namespace Content {
|
|
24249
|
+
interface ApplicationJson {
|
|
24250
|
+
[k: string]: unknown;
|
|
24251
|
+
}
|
|
24252
|
+
}
|
|
24253
|
+
}
|
|
24254
|
+
namespace $403 {
|
|
24255
|
+
namespace Content {
|
|
24256
|
+
interface ApplicationJson {
|
|
24257
|
+
[k: string]: unknown;
|
|
24258
|
+
}
|
|
24259
|
+
}
|
|
24260
|
+
}
|
|
24261
|
+
namespace $412 {
|
|
24262
|
+
namespace Content {
|
|
24263
|
+
interface ApplicationJson {
|
|
24264
|
+
[k: string]: unknown;
|
|
24265
|
+
}
|
|
24266
|
+
}
|
|
24267
|
+
}
|
|
24268
|
+
namespace $429 {
|
|
24269
|
+
namespace Content {
|
|
24270
|
+
interface ApplicationJson {
|
|
24271
|
+
[k: string]: unknown;
|
|
24272
|
+
}
|
|
24273
|
+
}
|
|
24274
|
+
}
|
|
24275
|
+
namespace Default {
|
|
24276
|
+
namespace Content {
|
|
24277
|
+
interface ApplicationJson {
|
|
24278
|
+
[k: string]: unknown;
|
|
24279
|
+
}
|
|
24280
|
+
}
|
|
24281
|
+
}
|
|
24282
|
+
}
|
|
24283
|
+
}
|
|
24284
|
+
}
|
|
24285
|
+
namespace V2ProjectInvitesProjectInviteIdActionsDecline {
|
|
24286
|
+
namespace Post {
|
|
24287
|
+
namespace Parameters {
|
|
24288
|
+
type Path = {
|
|
24289
|
+
projectInviteId: string;
|
|
24290
|
+
};
|
|
24291
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
24292
|
+
type Query = {};
|
|
24293
|
+
}
|
|
24294
|
+
namespace Responses {
|
|
24295
|
+
namespace $204 {
|
|
24296
|
+
namespace Content {
|
|
24297
|
+
type Empty = unknown;
|
|
24298
|
+
}
|
|
24299
|
+
}
|
|
24300
|
+
namespace $429 {
|
|
24301
|
+
namespace Content {
|
|
24302
|
+
interface ApplicationJson {
|
|
24303
|
+
[k: string]: unknown;
|
|
24304
|
+
}
|
|
24305
|
+
}
|
|
24306
|
+
}
|
|
24307
|
+
namespace Default {
|
|
24308
|
+
namespace Content {
|
|
24309
|
+
interface ApplicationJson {
|
|
24310
|
+
[k: string]: unknown;
|
|
24311
|
+
}
|
|
24312
|
+
}
|
|
24313
|
+
}
|
|
24314
|
+
}
|
|
24315
|
+
}
|
|
24316
|
+
}
|
|
24317
|
+
namespace V2ProjectsProjectIdAvatar {
|
|
24318
|
+
namespace Post {
|
|
24319
|
+
namespace Parameters {
|
|
24320
|
+
type Path = {
|
|
24321
|
+
projectId: string;
|
|
24322
|
+
};
|
|
24323
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
24324
|
+
type Query = {};
|
|
24325
|
+
}
|
|
24326
|
+
namespace Responses {
|
|
24327
|
+
namespace $200 {
|
|
24328
|
+
namespace Content {
|
|
24329
|
+
interface ApplicationJson {
|
|
24330
|
+
refId: string;
|
|
24331
|
+
rules: MittwaldAPIV2.Components.Schemas.ProjectAvatarRules;
|
|
24332
|
+
}
|
|
24333
|
+
}
|
|
24334
|
+
}
|
|
24335
|
+
namespace $400 {
|
|
24336
|
+
namespace Content {
|
|
24337
|
+
interface ApplicationJson {
|
|
24338
|
+
[k: string]: unknown;
|
|
24339
|
+
}
|
|
24340
|
+
}
|
|
24341
|
+
}
|
|
24342
|
+
namespace $403 {
|
|
24343
|
+
namespace Content {
|
|
24344
|
+
interface ApplicationJson {
|
|
24345
|
+
[k: string]: unknown;
|
|
24346
|
+
}
|
|
24347
|
+
}
|
|
24348
|
+
}
|
|
24349
|
+
namespace $429 {
|
|
24350
|
+
namespace Content {
|
|
24351
|
+
interface ApplicationJson {
|
|
24352
|
+
[k: string]: unknown;
|
|
24353
|
+
}
|
|
24354
|
+
}
|
|
24355
|
+
}
|
|
24356
|
+
namespace Default {
|
|
24357
|
+
namespace Content {
|
|
24358
|
+
interface ApplicationJson {
|
|
24359
|
+
[k: string]: unknown;
|
|
24360
|
+
}
|
|
24361
|
+
}
|
|
24362
|
+
}
|
|
24363
|
+
}
|
|
24364
|
+
}
|
|
24365
|
+
namespace Delete {
|
|
24366
|
+
namespace Parameters {
|
|
24367
|
+
type Path = {
|
|
24109
24368
|
projectId: string;
|
|
24110
24369
|
};
|
|
24111
24370
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
@@ -28753,302 +29012,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
28753
29012
|
min?: {
|
|
28754
29013
|
height?: number;
|
|
28755
29014
|
width?: number;
|
|
28756
|
-
};
|
|
28757
|
-
};
|
|
28758
|
-
};
|
|
28759
|
-
};
|
|
28760
|
-
}
|
|
28761
|
-
}
|
|
28762
|
-
}
|
|
28763
|
-
namespace $400 {
|
|
28764
|
-
namespace Content {
|
|
28765
|
-
interface ApplicationJson {
|
|
28766
|
-
[k: string]: unknown;
|
|
28767
|
-
}
|
|
28768
|
-
}
|
|
28769
|
-
}
|
|
28770
|
-
namespace $429 {
|
|
28771
|
-
namespace Content {
|
|
28772
|
-
interface ApplicationJson {
|
|
28773
|
-
[k: string]: unknown;
|
|
28774
|
-
}
|
|
28775
|
-
}
|
|
28776
|
-
}
|
|
28777
|
-
namespace Default {
|
|
28778
|
-
namespace Content {
|
|
28779
|
-
interface ApplicationJson {
|
|
28780
|
-
[k: string]: unknown;
|
|
28781
|
-
}
|
|
28782
|
-
}
|
|
28783
|
-
}
|
|
28784
|
-
}
|
|
28785
|
-
}
|
|
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 {
|
|
29015
|
+
};
|
|
29016
|
+
};
|
|
29017
|
+
};
|
|
29018
|
+
};
|
|
29043
29019
|
}
|
|
29044
29020
|
}
|
|
29045
29021
|
}
|
|
29046
29022
|
namespace $400 {
|
|
29047
|
-
namespace Content {
|
|
29048
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
29049
|
-
}
|
|
29050
|
-
}
|
|
29051
|
-
namespace $404 {
|
|
29052
29023
|
namespace Content {
|
|
29053
29024
|
interface ApplicationJson {
|
|
29054
29025
|
[k: string]: unknown;
|
|
@@ -29071,21 +29042,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29071
29042
|
}
|
|
29072
29043
|
}
|
|
29073
29044
|
}
|
|
29074
|
-
|
|
29075
|
-
namespace V2ActionsDetectPhishingEmail {
|
|
29076
|
-
namespace Post {
|
|
29045
|
+
namespace Delete {
|
|
29077
29046
|
namespace Parameters {
|
|
29078
|
-
type Path = {
|
|
29079
|
-
|
|
29080
|
-
|
|
29081
|
-
}
|
|
29082
|
-
type Header = {};
|
|
29047
|
+
type Path = {
|
|
29048
|
+
userId: string;
|
|
29049
|
+
};
|
|
29050
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29083
29051
|
type Query = {};
|
|
29084
29052
|
}
|
|
29085
29053
|
namespace Responses {
|
|
29086
|
-
namespace $
|
|
29054
|
+
namespace $204 {
|
|
29087
29055
|
namespace Content {
|
|
29088
|
-
type
|
|
29056
|
+
type Empty = unknown;
|
|
29089
29057
|
}
|
|
29090
29058
|
}
|
|
29091
29059
|
namespace $400 {
|
|
@@ -29112,38 +29080,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29112
29080
|
}
|
|
29113
29081
|
}
|
|
29114
29082
|
}
|
|
29115
|
-
namespace
|
|
29083
|
+
namespace V2UsersSelfCredentialsEmailActionsResendEmail {
|
|
29116
29084
|
namespace Post {
|
|
29117
29085
|
namespace Parameters {
|
|
29118
29086
|
type Path = {};
|
|
29119
29087
|
interface RequestBody {
|
|
29120
|
-
|
|
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;
|
|
29088
|
+
email: string;
|
|
29089
|
+
userId: string;
|
|
29130
29090
|
}
|
|
29131
29091
|
type Header = {};
|
|
29132
29092
|
type Query = {};
|
|
29133
29093
|
}
|
|
29134
29094
|
namespace Responses {
|
|
29135
|
-
namespace $
|
|
29095
|
+
namespace $204 {
|
|
29136
29096
|
namespace Content {
|
|
29137
|
-
|
|
29138
|
-
exists: boolean;
|
|
29139
|
-
}
|
|
29097
|
+
type Empty = unknown;
|
|
29140
29098
|
}
|
|
29141
29099
|
}
|
|
29142
29100
|
namespace $400 {
|
|
29143
29101
|
namespace Content {
|
|
29144
|
-
|
|
29145
|
-
[k: string]: unknown;
|
|
29146
|
-
}
|
|
29102
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
29147
29103
|
}
|
|
29148
29104
|
}
|
|
29149
29105
|
namespace $429 {
|
|
@@ -29163,29 +29119,33 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29163
29119
|
}
|
|
29164
29120
|
}
|
|
29165
29121
|
}
|
|
29166
|
-
namespace
|
|
29167
|
-
|
|
29122
|
+
namespace V2SignupMfaResetRecoverycodes { }
|
|
29123
|
+
namespace V2SignupSupportcode { }
|
|
29124
|
+
namespace V2SignupSupportcodes { }
|
|
29125
|
+
namespace V2UsersSelfCredentialsSupportCode {
|
|
29126
|
+
namespace Get {
|
|
29168
29127
|
namespace Parameters {
|
|
29169
29128
|
type Path = {};
|
|
29170
|
-
interface RequestBody {
|
|
29171
|
-
name: string;
|
|
29172
|
-
}
|
|
29173
29129
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29174
|
-
type Query = {
|
|
29130
|
+
type Query = {
|
|
29131
|
+
forceRecreate?: boolean;
|
|
29132
|
+
};
|
|
29175
29133
|
}
|
|
29176
29134
|
namespace Responses {
|
|
29177
29135
|
namespace $200 {
|
|
29178
29136
|
namespace Content {
|
|
29179
29137
|
interface ApplicationJson {
|
|
29180
|
-
|
|
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;
|
|
29181
29146
|
}
|
|
29182
29147
|
}
|
|
29183
29148
|
}
|
|
29184
|
-
namespace $412 {
|
|
29185
|
-
namespace Content {
|
|
29186
|
-
type Empty = unknown;
|
|
29187
|
-
}
|
|
29188
|
-
}
|
|
29189
29149
|
namespace $429 {
|
|
29190
29150
|
namespace Content {
|
|
29191
29151
|
interface ApplicationJson {
|
|
@@ -29203,29 +29163,35 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29203
29163
|
}
|
|
29204
29164
|
}
|
|
29205
29165
|
}
|
|
29206
|
-
namespace
|
|
29207
|
-
namespace
|
|
29166
|
+
namespace V2UsersSelfCredentialsEmailActionsVerifyEmail {
|
|
29167
|
+
namespace Post {
|
|
29208
29168
|
namespace Parameters {
|
|
29209
|
-
type Path = {
|
|
29210
|
-
|
|
29211
|
-
|
|
29169
|
+
type Path = {};
|
|
29170
|
+
interface RequestBody {
|
|
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
|
+
}
|
|
29212
29180
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29213
29181
|
type Query = {};
|
|
29214
29182
|
}
|
|
29215
29183
|
namespace Responses {
|
|
29216
|
-
namespace $
|
|
29184
|
+
namespace $204 {
|
|
29217
29185
|
namespace Content {
|
|
29218
|
-
type
|
|
29186
|
+
type Empty = unknown;
|
|
29219
29187
|
}
|
|
29220
29188
|
}
|
|
29221
29189
|
namespace $400 {
|
|
29222
29190
|
namespace Content {
|
|
29223
|
-
|
|
29224
|
-
[k: string]: unknown;
|
|
29225
|
-
}
|
|
29191
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
29226
29192
|
}
|
|
29227
29193
|
}
|
|
29228
|
-
namespace $
|
|
29194
|
+
namespace $404 {
|
|
29229
29195
|
namespace Content {
|
|
29230
29196
|
interface ApplicationJson {
|
|
29231
29197
|
[k: string]: unknown;
|
|
@@ -29239,13 +29205,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29239
29205
|
}
|
|
29240
29206
|
}
|
|
29241
29207
|
}
|
|
29242
|
-
namespace $500 {
|
|
29243
|
-
namespace Content {
|
|
29244
|
-
interface ApplicationJson {
|
|
29245
|
-
[k: string]: unknown;
|
|
29246
|
-
}
|
|
29247
|
-
}
|
|
29248
|
-
}
|
|
29249
29208
|
namespace Default {
|
|
29250
29209
|
namespace Content {
|
|
29251
29210
|
interface ApplicationJson {
|
|
@@ -29256,23 +29215,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29256
29215
|
}
|
|
29257
29216
|
}
|
|
29258
29217
|
}
|
|
29259
|
-
namespace
|
|
29260
|
-
|
|
29218
|
+
namespace V2UsersUserIdPhoneVerify { }
|
|
29219
|
+
namespace V2UsersUserIdActionsVerifyPhone {
|
|
29220
|
+
namespace Post {
|
|
29261
29221
|
namespace Parameters {
|
|
29262
29222
|
type Path = {
|
|
29263
|
-
|
|
29223
|
+
userId: string;
|
|
29264
29224
|
};
|
|
29225
|
+
interface RequestBody {
|
|
29226
|
+
code: string;
|
|
29227
|
+
phoneNumber: string;
|
|
29228
|
+
}
|
|
29265
29229
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29266
|
-
type Query = {
|
|
29267
|
-
limit?: number;
|
|
29268
|
-
skip?: number;
|
|
29269
|
-
page?: number;
|
|
29270
|
-
};
|
|
29230
|
+
type Query = {};
|
|
29271
29231
|
}
|
|
29272
29232
|
namespace Responses {
|
|
29273
|
-
namespace $
|
|
29233
|
+
namespace $204 {
|
|
29274
29234
|
namespace Content {
|
|
29275
|
-
type
|
|
29235
|
+
type Empty = unknown;
|
|
29276
29236
|
}
|
|
29277
29237
|
}
|
|
29278
29238
|
namespace $400 {
|
|
@@ -29282,21 +29242,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29282
29242
|
}
|
|
29283
29243
|
}
|
|
29284
29244
|
}
|
|
29285
|
-
namespace $
|
|
29245
|
+
namespace $404 {
|
|
29286
29246
|
namespace Content {
|
|
29287
29247
|
interface ApplicationJson {
|
|
29288
29248
|
[k: string]: unknown;
|
|
29289
29249
|
}
|
|
29290
29250
|
}
|
|
29291
29251
|
}
|
|
29292
|
-
namespace $
|
|
29252
|
+
namespace $409 {
|
|
29293
29253
|
namespace Content {
|
|
29294
29254
|
interface ApplicationJson {
|
|
29295
29255
|
[k: string]: unknown;
|
|
29296
29256
|
}
|
|
29297
29257
|
}
|
|
29298
29258
|
}
|
|
29299
|
-
namespace $
|
|
29259
|
+
namespace $429 {
|
|
29300
29260
|
namespace Content {
|
|
29301
29261
|
interface ApplicationJson {
|
|
29302
29262
|
[k: string]: unknown;
|
|
@@ -29313,63 +29273,88 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29313
29273
|
}
|
|
29314
29274
|
}
|
|
29315
29275
|
}
|
|
29316
|
-
namespace
|
|
29276
|
+
namespace V2SignupRegistrationVerification { }
|
|
29277
|
+
namespace V2VerifyRegistration {
|
|
29317
29278
|
namespace Post {
|
|
29318
29279
|
namespace Parameters {
|
|
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
|
-
*/
|
|
29280
|
+
type Path = {};
|
|
29325
29281
|
interface RequestBody {
|
|
29326
|
-
|
|
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;
|
|
29327
29294
|
}
|
|
29328
|
-
type Header = {}
|
|
29295
|
+
type Header = {};
|
|
29329
29296
|
type Query = {};
|
|
29330
29297
|
}
|
|
29331
29298
|
namespace Responses {
|
|
29332
29299
|
namespace $200 {
|
|
29333
29300
|
namespace Content {
|
|
29334
|
-
|
|
29301
|
+
interface ApplicationJson {
|
|
29302
|
+
}
|
|
29335
29303
|
}
|
|
29336
29304
|
}
|
|
29337
29305
|
namespace $400 {
|
|
29338
29306
|
namespace Content {
|
|
29339
|
-
|
|
29340
|
-
[k: string]: unknown;
|
|
29341
|
-
}
|
|
29307
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
29342
29308
|
}
|
|
29343
29309
|
}
|
|
29344
|
-
namespace $
|
|
29310
|
+
namespace $404 {
|
|
29345
29311
|
namespace Content {
|
|
29346
29312
|
interface ApplicationJson {
|
|
29347
29313
|
[k: string]: unknown;
|
|
29348
29314
|
}
|
|
29349
29315
|
}
|
|
29350
29316
|
}
|
|
29351
|
-
namespace $
|
|
29317
|
+
namespace $429 {
|
|
29352
29318
|
namespace Content {
|
|
29353
29319
|
interface ApplicationJson {
|
|
29354
29320
|
[k: string]: unknown;
|
|
29355
29321
|
}
|
|
29356
29322
|
}
|
|
29357
29323
|
}
|
|
29358
|
-
namespace
|
|
29324
|
+
namespace Default {
|
|
29359
29325
|
namespace Content {
|
|
29360
29326
|
interface ApplicationJson {
|
|
29361
29327
|
[k: string]: unknown;
|
|
29362
29328
|
}
|
|
29363
29329
|
}
|
|
29364
29330
|
}
|
|
29365
|
-
|
|
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 {
|
|
29346
|
+
namespace Content {
|
|
29347
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.VerificationEmailDetectPhishingMailResponse;
|
|
29348
|
+
}
|
|
29349
|
+
}
|
|
29350
|
+
namespace $400 {
|
|
29366
29351
|
namespace Content {
|
|
29367
29352
|
interface ApplicationJson {
|
|
29368
29353
|
[k: string]: unknown;
|
|
29369
29354
|
}
|
|
29370
29355
|
}
|
|
29371
29356
|
}
|
|
29372
|
-
namespace $
|
|
29357
|
+
namespace $429 {
|
|
29373
29358
|
namespace Content {
|
|
29374
29359
|
interface ApplicationJson {
|
|
29375
29360
|
[k: string]: unknown;
|
|
@@ -29386,27 +29371,30 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29386
29371
|
}
|
|
29387
29372
|
}
|
|
29388
29373
|
}
|
|
29389
|
-
namespace
|
|
29374
|
+
namespace V2ActionsVerifyAddress {
|
|
29390
29375
|
namespace Post {
|
|
29391
29376
|
namespace Parameters {
|
|
29392
|
-
type Path = {
|
|
29393
|
-
projectId: string;
|
|
29394
|
-
};
|
|
29395
|
-
/**
|
|
29396
|
-
* The License key to validate.
|
|
29397
|
-
*/
|
|
29377
|
+
type Path = {};
|
|
29398
29378
|
interface RequestBody {
|
|
29399
|
-
|
|
29400
|
-
|
|
29379
|
+
city: string;
|
|
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;
|
|
29401
29389
|
}
|
|
29402
|
-
type Header = {}
|
|
29390
|
+
type Header = {};
|
|
29403
29391
|
type Query = {};
|
|
29404
29392
|
}
|
|
29405
29393
|
namespace Responses {
|
|
29406
29394
|
namespace $200 {
|
|
29407
29395
|
namespace Content {
|
|
29408
29396
|
interface ApplicationJson {
|
|
29409
|
-
|
|
29397
|
+
exists: boolean;
|
|
29410
29398
|
}
|
|
29411
29399
|
}
|
|
29412
29400
|
}
|
|
@@ -29417,35 +29405,47 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29417
29405
|
}
|
|
29418
29406
|
}
|
|
29419
29407
|
}
|
|
29420
|
-
namespace $
|
|
29408
|
+
namespace $429 {
|
|
29421
29409
|
namespace Content {
|
|
29422
29410
|
interface ApplicationJson {
|
|
29423
29411
|
[k: string]: unknown;
|
|
29424
29412
|
}
|
|
29425
29413
|
}
|
|
29426
29414
|
}
|
|
29427
|
-
namespace
|
|
29415
|
+
namespace Default {
|
|
29428
29416
|
namespace Content {
|
|
29429
29417
|
interface ApplicationJson {
|
|
29430
29418
|
[k: string]: unknown;
|
|
29431
29419
|
}
|
|
29432
29420
|
}
|
|
29433
29421
|
}
|
|
29434
|
-
|
|
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 {
|
|
29435
29437
|
namespace Content {
|
|
29436
29438
|
interface ApplicationJson {
|
|
29437
|
-
|
|
29439
|
+
exists: boolean;
|
|
29438
29440
|
}
|
|
29439
29441
|
}
|
|
29440
29442
|
}
|
|
29441
|
-
namespace $
|
|
29443
|
+
namespace $412 {
|
|
29442
29444
|
namespace Content {
|
|
29443
|
-
|
|
29444
|
-
[k: string]: unknown;
|
|
29445
|
-
}
|
|
29445
|
+
type Empty = unknown;
|
|
29446
29446
|
}
|
|
29447
29447
|
}
|
|
29448
|
-
namespace $
|
|
29448
|
+
namespace $429 {
|
|
29449
29449
|
namespace Content {
|
|
29450
29450
|
interface ApplicationJson {
|
|
29451
29451
|
[k: string]: unknown;
|