@mittwald/api-client 4.316.0 → 4.318.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 +484 -482
- package/dist/types/generated/v2/descriptors.d.ts +8 -8
- package/dist/types/generated/v2/types.d.ts +912 -908
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1194,22 +1194,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1194
1194
|
type RequestData = InferredRequestData<typeof descriptors.leadfyndrRemoveUnlockedLeadReservation>;
|
|
1195
1195
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrRemoveUnlockedLeadReservation, TStatus>;
|
|
1196
1196
|
}
|
|
1197
|
-
namespace LicenseGetLicense {
|
|
1198
|
-
type RequestData = InferredRequestData<typeof descriptors.licenseGetLicense>;
|
|
1199
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseGetLicense, TStatus>;
|
|
1200
|
-
}
|
|
1201
|
-
namespace LicenseListLicensesForProject {
|
|
1202
|
-
type RequestData = InferredRequestData<typeof descriptors.licenseListLicensesForProject>;
|
|
1203
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseListLicensesForProject, TStatus>;
|
|
1204
|
-
}
|
|
1205
|
-
namespace LicenseRotateLicenseKey {
|
|
1206
|
-
type RequestData = InferredRequestData<typeof descriptors.licenseRotateLicenseKey>;
|
|
1207
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseRotateLicenseKey, TStatus>;
|
|
1208
|
-
}
|
|
1209
|
-
namespace LicenseValidateLicenseKeyForProject {
|
|
1210
|
-
type RequestData = InferredRequestData<typeof descriptors.licenseValidateLicenseKeyForProject>;
|
|
1211
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseValidateLicenseKeyForProject, TStatus>;
|
|
1212
|
-
}
|
|
1213
1197
|
namespace MailListDeliveryBoxes {
|
|
1214
1198
|
type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
|
|
1215
1199
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListDeliveryBoxes, TStatus>;
|
|
@@ -1818,6 +1802,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1818
1802
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1819
1803
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1820
1804
|
}
|
|
1805
|
+
namespace LicenseGetLicense {
|
|
1806
|
+
type RequestData = InferredRequestData<typeof descriptors.licenseGetLicense>;
|
|
1807
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseGetLicense, TStatus>;
|
|
1808
|
+
}
|
|
1809
|
+
namespace LicenseListLicensesForProject {
|
|
1810
|
+
type RequestData = InferredRequestData<typeof descriptors.licenseListLicensesForProject>;
|
|
1811
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseListLicensesForProject, TStatus>;
|
|
1812
|
+
}
|
|
1813
|
+
namespace LicenseRotateLicenseKey {
|
|
1814
|
+
type RequestData = InferredRequestData<typeof descriptors.licenseRotateLicenseKey>;
|
|
1815
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseRotateLicenseKey, TStatus>;
|
|
1816
|
+
}
|
|
1817
|
+
namespace LicenseValidateLicenseKeyForProject {
|
|
1818
|
+
type RequestData = InferredRequestData<typeof descriptors.licenseValidateLicenseKeyForProject>;
|
|
1819
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.licenseValidateLicenseKeyForProject, TStatus>;
|
|
1820
|
+
}
|
|
1821
1821
|
namespace ContainerSetStackUpdateSchedule {
|
|
1822
1822
|
type RequestData = InferredRequestData<typeof descriptors.containerSetStackUpdateSchedule>;
|
|
1823
1823
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerSetStackUpdateSchedule, TStatus>;
|
|
@@ -4583,37 +4583,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4583
4583
|
interface LeadfyndrUser {
|
|
4584
4584
|
userId: string;
|
|
4585
4585
|
}
|
|
4586
|
-
interface LicenseAppVersionMeta {
|
|
4587
|
-
description: string;
|
|
4588
|
-
}
|
|
4589
|
-
interface LicenseExternalKey {
|
|
4590
|
-
externalKey: string;
|
|
4591
|
-
}
|
|
4592
|
-
interface LicenseKey {
|
|
4593
|
-
key: string;
|
|
4594
|
-
}
|
|
4595
|
-
interface LicenseKeyResponse {
|
|
4596
|
-
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
4597
|
-
}
|
|
4598
|
-
type LicenseKind = "typo3-elts";
|
|
4599
|
-
interface LicenseLicense {
|
|
4600
|
-
description: string;
|
|
4601
|
-
expiryDate?: string;
|
|
4602
|
-
id: string;
|
|
4603
|
-
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
4604
|
-
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
4605
|
-
meta: MittwaldAPIV2.Components.Schemas.LicenseMeta;
|
|
4606
|
-
reference: MittwaldAPIV2.Components.Schemas.LicenseReference;
|
|
4607
|
-
volume?: number;
|
|
4608
|
-
}
|
|
4609
|
-
interface LicenseMeta {
|
|
4610
|
-
appVersion?: MittwaldAPIV2.Components.Schemas.LicenseAppVersionMeta;
|
|
4611
|
-
}
|
|
4612
|
-
interface LicenseReference {
|
|
4613
|
-
aggregate: "project";
|
|
4614
|
-
domain: "project";
|
|
4615
|
-
id: string;
|
|
4616
|
-
}
|
|
4617
4586
|
interface MailCreateMailAddress {
|
|
4618
4587
|
address: string;
|
|
4619
4588
|
forwardAddresses?: string[];
|
|
@@ -5155,29 +5124,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5155
5124
|
reservationLimit: number;
|
|
5156
5125
|
unlockLimit: number;
|
|
5157
5126
|
}
|
|
5158
|
-
type OrderLicenseOrderPreview = {
|
|
5159
|
-
/**
|
|
5160
|
-
* Describe for which typo3 instance the license will be used.
|
|
5161
|
-
*/
|
|
5162
|
-
description?: string;
|
|
5163
|
-
licenseType: "typo3";
|
|
5164
|
-
/**
|
|
5165
|
-
* The major version for which a license should be purchased.
|
|
5166
|
-
*/
|
|
5167
|
-
majorVersion: number;
|
|
5168
|
-
};
|
|
5169
|
-
type OrderLicenseOrder = {
|
|
5170
|
-
/**
|
|
5171
|
-
* Describe for which typo3 instance the license will be used.
|
|
5172
|
-
*/
|
|
5173
|
-
description: string;
|
|
5174
|
-
licenseType: "typo3";
|
|
5175
|
-
/**
|
|
5176
|
-
* The major version for which a license should be purchased.
|
|
5177
|
-
*/
|
|
5178
|
-
majorVersion: number;
|
|
5179
|
-
projectId: string;
|
|
5180
|
-
};
|
|
5181
5127
|
interface OrderMachineTypeSpec {
|
|
5182
5128
|
machineType?: string;
|
|
5183
5129
|
}
|
|
@@ -5227,9 +5173,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5227
5173
|
interface OrderLeadFyndrOrderPreviewResponse {
|
|
5228
5174
|
totalPrice: number;
|
|
5229
5175
|
}
|
|
5230
|
-
interface OrderLicenseOrderPreviewResponse {
|
|
5231
|
-
totalPrice: number;
|
|
5232
|
-
}
|
|
5233
5176
|
interface OrderDomainOrderPreviewResponse {
|
|
5234
5177
|
/**
|
|
5235
5178
|
* Contract duration in months.
|
|
@@ -5998,6 +5941,63 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5998
5941
|
exists: boolean;
|
|
5999
5942
|
}
|
|
6000
5943
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
5944
|
+
interface LicenseAppVersionMeta {
|
|
5945
|
+
description: string;
|
|
5946
|
+
}
|
|
5947
|
+
type LicenseKind = "typo3-elts";
|
|
5948
|
+
interface LicenseMeta {
|
|
5949
|
+
appVersion?: MittwaldAPIV2.Components.Schemas.LicenseAppVersionMeta;
|
|
5950
|
+
}
|
|
5951
|
+
interface LicenseReference {
|
|
5952
|
+
aggregate: "project";
|
|
5953
|
+
domain: "project";
|
|
5954
|
+
id: string;
|
|
5955
|
+
}
|
|
5956
|
+
interface LicenseLicense {
|
|
5957
|
+
description: string;
|
|
5958
|
+
expiryDate?: string;
|
|
5959
|
+
id: string;
|
|
5960
|
+
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
5961
|
+
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
5962
|
+
meta: MittwaldAPIV2.Components.Schemas.LicenseMeta;
|
|
5963
|
+
reference: MittwaldAPIV2.Components.Schemas.LicenseReference;
|
|
5964
|
+
volume?: number;
|
|
5965
|
+
}
|
|
5966
|
+
interface LicenseExternalKey {
|
|
5967
|
+
externalKey: string;
|
|
5968
|
+
}
|
|
5969
|
+
interface LicenseKey {
|
|
5970
|
+
key: string;
|
|
5971
|
+
}
|
|
5972
|
+
interface LicenseKeyResponse {
|
|
5973
|
+
keyReference?: MittwaldAPIV2.Components.Schemas.LicenseKey | MittwaldAPIV2.Components.Schemas.LicenseExternalKey;
|
|
5974
|
+
}
|
|
5975
|
+
type OrderLicenseOrder = {
|
|
5976
|
+
/**
|
|
5977
|
+
* Describe for which typo3 instance the license will be used.
|
|
5978
|
+
*/
|
|
5979
|
+
description: string;
|
|
5980
|
+
licenseType: "typo3";
|
|
5981
|
+
/**
|
|
5982
|
+
* The major version for which a license should be purchased.
|
|
5983
|
+
*/
|
|
5984
|
+
majorVersion: number;
|
|
5985
|
+
projectId: string;
|
|
5986
|
+
};
|
|
5987
|
+
type OrderLicenseOrderPreview = {
|
|
5988
|
+
/**
|
|
5989
|
+
* Describe for which typo3 instance the license will be used.
|
|
5990
|
+
*/
|
|
5991
|
+
description?: string;
|
|
5992
|
+
licenseType: "typo3";
|
|
5993
|
+
/**
|
|
5994
|
+
* The major version for which a license should be purchased.
|
|
5995
|
+
*/
|
|
5996
|
+
majorVersion: number;
|
|
5997
|
+
};
|
|
5998
|
+
interface OrderLicenseOrderPreviewResponse {
|
|
5999
|
+
totalPrice: number;
|
|
6000
|
+
}
|
|
6001
6001
|
interface CommonsAddress {
|
|
6002
6002
|
street: string;
|
|
6003
6003
|
houseNumber: string;
|
|
@@ -21661,19 +21661,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21661
21661
|
}
|
|
21662
21662
|
}
|
|
21663
21663
|
}
|
|
21664
|
-
namespace
|
|
21664
|
+
namespace V2ProjectsProjectIdDeliveryboxes { }
|
|
21665
|
+
namespace V2ProjectsProjectIdDeliveryBoxes {
|
|
21665
21666
|
namespace Get {
|
|
21666
21667
|
namespace Parameters {
|
|
21667
21668
|
type Path = {
|
|
21668
|
-
|
|
21669
|
+
projectId: string;
|
|
21669
21670
|
};
|
|
21670
21671
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21671
|
-
type Query = {
|
|
21672
|
+
type Query = {
|
|
21673
|
+
search?: string;
|
|
21674
|
+
limit?: number;
|
|
21675
|
+
skip?: number;
|
|
21676
|
+
page?: number;
|
|
21677
|
+
};
|
|
21672
21678
|
}
|
|
21673
21679
|
namespace Responses {
|
|
21674
21680
|
namespace $200 {
|
|
21675
21681
|
namespace Content {
|
|
21676
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
21682
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox[];
|
|
21677
21683
|
}
|
|
21678
21684
|
}
|
|
21679
21685
|
namespace $400 {
|
|
@@ -21690,6 +21696,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21690
21696
|
}
|
|
21691
21697
|
}
|
|
21692
21698
|
}
|
|
21699
|
+
namespace $404 {
|
|
21700
|
+
namespace Content {
|
|
21701
|
+
interface ApplicationJson {
|
|
21702
|
+
[k: string]: unknown;
|
|
21703
|
+
}
|
|
21704
|
+
}
|
|
21705
|
+
}
|
|
21693
21706
|
namespace $429 {
|
|
21694
21707
|
namespace Content {
|
|
21695
21708
|
interface ApplicationJson {
|
|
@@ -21704,6 +21717,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21704
21717
|
}
|
|
21705
21718
|
}
|
|
21706
21719
|
}
|
|
21720
|
+
namespace $503 {
|
|
21721
|
+
namespace Content {
|
|
21722
|
+
interface ApplicationJson {
|
|
21723
|
+
[k: string]: unknown;
|
|
21724
|
+
}
|
|
21725
|
+
}
|
|
21726
|
+
}
|
|
21707
21727
|
namespace Default {
|
|
21708
21728
|
namespace Content {
|
|
21709
21729
|
interface ApplicationJson {
|
|
@@ -21713,24 +21733,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21713
21733
|
}
|
|
21714
21734
|
}
|
|
21715
21735
|
}
|
|
21716
|
-
|
|
21717
|
-
namespace V2ProjectsProjectIdLicenses {
|
|
21718
|
-
namespace Get {
|
|
21736
|
+
namespace Post {
|
|
21719
21737
|
namespace Parameters {
|
|
21720
21738
|
type Path = {
|
|
21721
21739
|
projectId: string;
|
|
21722
21740
|
};
|
|
21741
|
+
interface RequestBody {
|
|
21742
|
+
description: string;
|
|
21743
|
+
password: string;
|
|
21744
|
+
}
|
|
21723
21745
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21724
|
-
type Query = {
|
|
21725
|
-
limit?: number;
|
|
21726
|
-
skip?: number;
|
|
21727
|
-
page?: number;
|
|
21728
|
-
};
|
|
21746
|
+
type Query = {};
|
|
21729
21747
|
}
|
|
21730
21748
|
namespace Responses {
|
|
21731
|
-
namespace $
|
|
21749
|
+
namespace $201 {
|
|
21732
21750
|
namespace Content {
|
|
21733
|
-
|
|
21751
|
+
interface ApplicationJson {
|
|
21752
|
+
id: string;
|
|
21753
|
+
}
|
|
21734
21754
|
}
|
|
21735
21755
|
}
|
|
21736
21756
|
namespace $400 {
|
|
@@ -21747,6 +21767,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21747
21767
|
}
|
|
21748
21768
|
}
|
|
21749
21769
|
}
|
|
21770
|
+
namespace $404 {
|
|
21771
|
+
namespace Content {
|
|
21772
|
+
interface ApplicationJson {
|
|
21773
|
+
[k: string]: unknown;
|
|
21774
|
+
}
|
|
21775
|
+
}
|
|
21776
|
+
}
|
|
21750
21777
|
namespace $429 {
|
|
21751
21778
|
namespace Content {
|
|
21752
21779
|
interface ApplicationJson {
|
|
@@ -21761,6 +21788,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21761
21788
|
}
|
|
21762
21789
|
}
|
|
21763
21790
|
}
|
|
21791
|
+
namespace $503 {
|
|
21792
|
+
namespace Content {
|
|
21793
|
+
interface ApplicationJson {
|
|
21794
|
+
[k: string]: unknown;
|
|
21795
|
+
}
|
|
21796
|
+
}
|
|
21797
|
+
}
|
|
21764
21798
|
namespace Default {
|
|
21765
21799
|
namespace Content {
|
|
21766
21800
|
interface ApplicationJson {
|
|
@@ -21771,25 +21805,31 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21771
21805
|
}
|
|
21772
21806
|
}
|
|
21773
21807
|
}
|
|
21774
|
-
namespace
|
|
21775
|
-
|
|
21808
|
+
namespace V2ProjectsProjectIdMailaddresses { }
|
|
21809
|
+
namespace V2ProjectsProjectIdMailAddresses {
|
|
21810
|
+
namespace Get {
|
|
21776
21811
|
namespace Parameters {
|
|
21777
21812
|
type Path = {
|
|
21778
|
-
|
|
21813
|
+
projectId: string;
|
|
21779
21814
|
};
|
|
21780
|
-
/**
|
|
21781
|
-
* Optional reference to a file containing the new key if it was not procured via mittwald.
|
|
21782
|
-
*/
|
|
21783
|
-
interface RequestBody {
|
|
21784
|
-
externalKey?: string;
|
|
21785
|
-
}
|
|
21786
21815
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21787
|
-
type Query = {
|
|
21816
|
+
type Query = {
|
|
21817
|
+
search?: string;
|
|
21818
|
+
forwardAddress?: boolean;
|
|
21819
|
+
catchAll?: boolean;
|
|
21820
|
+
autoResponder?: boolean;
|
|
21821
|
+
mailArchive?: boolean;
|
|
21822
|
+
limit?: number;
|
|
21823
|
+
skip?: number;
|
|
21824
|
+
page?: number;
|
|
21825
|
+
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
|
|
21826
|
+
order?: ("asc" | "desc")[];
|
|
21827
|
+
};
|
|
21788
21828
|
}
|
|
21789
21829
|
namespace Responses {
|
|
21790
21830
|
namespace $200 {
|
|
21791
21831
|
namespace Content {
|
|
21792
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
21832
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
|
|
21793
21833
|
}
|
|
21794
21834
|
}
|
|
21795
21835
|
namespace $400 {
|
|
@@ -21813,21 +21853,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21813
21853
|
}
|
|
21814
21854
|
}
|
|
21815
21855
|
}
|
|
21816
|
-
namespace $
|
|
21856
|
+
namespace $429 {
|
|
21817
21857
|
namespace Content {
|
|
21818
21858
|
interface ApplicationJson {
|
|
21819
21859
|
[k: string]: unknown;
|
|
21820
21860
|
}
|
|
21821
21861
|
}
|
|
21822
21862
|
}
|
|
21823
|
-
namespace $
|
|
21863
|
+
namespace $500 {
|
|
21824
21864
|
namespace Content {
|
|
21825
21865
|
interface ApplicationJson {
|
|
21826
21866
|
[k: string]: unknown;
|
|
21827
21867
|
}
|
|
21828
21868
|
}
|
|
21829
21869
|
}
|
|
21830
|
-
namespace $
|
|
21870
|
+
namespace $503 {
|
|
21831
21871
|
namespace Content {
|
|
21832
21872
|
interface ApplicationJson {
|
|
21833
21873
|
[k: string]: unknown;
|
|
@@ -21843,28 +21883,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21843
21883
|
}
|
|
21844
21884
|
}
|
|
21845
21885
|
}
|
|
21846
|
-
}
|
|
21847
|
-
namespace V2ProjectsProjectIdActionsValidateLicenseKey {
|
|
21848
21886
|
namespace Post {
|
|
21849
21887
|
namespace Parameters {
|
|
21850
21888
|
type Path = {
|
|
21851
21889
|
projectId: string;
|
|
21852
21890
|
};
|
|
21853
|
-
|
|
21854
|
-
* The License key to validate.
|
|
21855
|
-
*/
|
|
21856
|
-
interface RequestBody {
|
|
21857
|
-
key: string;
|
|
21858
|
-
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
21859
|
-
}
|
|
21891
|
+
type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
|
|
21860
21892
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21861
21893
|
type Query = {};
|
|
21862
21894
|
}
|
|
21863
21895
|
namespace Responses {
|
|
21864
|
-
namespace $
|
|
21896
|
+
namespace $201 {
|
|
21865
21897
|
namespace Content {
|
|
21866
21898
|
interface ApplicationJson {
|
|
21867
|
-
|
|
21899
|
+
id: string;
|
|
21868
21900
|
}
|
|
21869
21901
|
}
|
|
21870
21902
|
}
|
|
@@ -21889,21 +21921,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21889
21921
|
}
|
|
21890
21922
|
}
|
|
21891
21923
|
}
|
|
21892
|
-
namespace $
|
|
21924
|
+
namespace $429 {
|
|
21893
21925
|
namespace Content {
|
|
21894
21926
|
interface ApplicationJson {
|
|
21895
21927
|
[k: string]: unknown;
|
|
21896
21928
|
}
|
|
21897
21929
|
}
|
|
21898
21930
|
}
|
|
21899
|
-
namespace $
|
|
21931
|
+
namespace $500 {
|
|
21900
21932
|
namespace Content {
|
|
21901
21933
|
interface ApplicationJson {
|
|
21902
21934
|
[k: string]: unknown;
|
|
21903
21935
|
}
|
|
21904
21936
|
}
|
|
21905
21937
|
}
|
|
21906
|
-
namespace $
|
|
21938
|
+
namespace $503 {
|
|
21907
21939
|
namespace Content {
|
|
21908
21940
|
interface ApplicationJson {
|
|
21909
21941
|
[k: string]: unknown;
|
|
@@ -21920,25 +21952,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21920
21952
|
}
|
|
21921
21953
|
}
|
|
21922
21954
|
}
|
|
21923
|
-
namespace
|
|
21924
|
-
namespace
|
|
21955
|
+
namespace V2DeliveryboxesDeliveryBoxId { }
|
|
21956
|
+
namespace V2DeliveryBoxesDeliveryBoxId {
|
|
21925
21957
|
namespace Get {
|
|
21926
21958
|
namespace Parameters {
|
|
21927
21959
|
type Path = {
|
|
21928
|
-
|
|
21960
|
+
deliveryBoxId: string;
|
|
21929
21961
|
};
|
|
21930
21962
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
21931
|
-
type Query = {
|
|
21932
|
-
search?: string;
|
|
21933
|
-
limit?: number;
|
|
21934
|
-
skip?: number;
|
|
21935
|
-
page?: number;
|
|
21936
|
-
};
|
|
21963
|
+
type Query = {};
|
|
21937
21964
|
}
|
|
21938
21965
|
namespace Responses {
|
|
21939
21966
|
namespace $200 {
|
|
21940
21967
|
namespace Content {
|
|
21941
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox
|
|
21968
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailDeliverybox;
|
|
21942
21969
|
}
|
|
21943
21970
|
}
|
|
21944
21971
|
namespace $400 {
|
|
@@ -21992,24 +22019,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21992
22019
|
}
|
|
21993
22020
|
}
|
|
21994
22021
|
}
|
|
21995
|
-
namespace
|
|
22022
|
+
namespace Delete {
|
|
21996
22023
|
namespace Parameters {
|
|
21997
22024
|
type Path = {
|
|
21998
|
-
|
|
22025
|
+
deliveryBoxId: string;
|
|
21999
22026
|
};
|
|
22000
|
-
interface RequestBody {
|
|
22001
|
-
description: string;
|
|
22002
|
-
password: string;
|
|
22003
|
-
}
|
|
22004
22027
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22005
22028
|
type Query = {};
|
|
22006
22029
|
}
|
|
22007
22030
|
namespace Responses {
|
|
22008
|
-
namespace $
|
|
22031
|
+
namespace $204 {
|
|
22009
22032
|
namespace Content {
|
|
22010
|
-
|
|
22011
|
-
id: string;
|
|
22012
|
-
}
|
|
22033
|
+
type Empty = unknown;
|
|
22013
22034
|
}
|
|
22014
22035
|
}
|
|
22015
22036
|
namespace $400 {
|
|
@@ -22064,31 +22085,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22064
22085
|
}
|
|
22065
22086
|
}
|
|
22066
22087
|
}
|
|
22067
|
-
namespace
|
|
22068
|
-
namespace
|
|
22088
|
+
namespace V2MailaddressesMailAddressId { }
|
|
22089
|
+
namespace V2MailAddressesMailAddressId {
|
|
22069
22090
|
namespace Get {
|
|
22070
22091
|
namespace Parameters {
|
|
22071
22092
|
type Path = {
|
|
22072
|
-
|
|
22093
|
+
mailAddressId: string;
|
|
22073
22094
|
};
|
|
22074
22095
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22075
|
-
type Query = {
|
|
22076
|
-
search?: string;
|
|
22077
|
-
forwardAddress?: boolean;
|
|
22078
|
-
catchAll?: boolean;
|
|
22079
|
-
autoResponder?: boolean;
|
|
22080
|
-
mailArchive?: boolean;
|
|
22081
|
-
limit?: number;
|
|
22082
|
-
skip?: number;
|
|
22083
|
-
page?: number;
|
|
22084
|
-
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
|
|
22085
|
-
order?: ("asc" | "desc")[];
|
|
22086
|
-
};
|
|
22096
|
+
type Query = {};
|
|
22087
22097
|
}
|
|
22088
22098
|
namespace Responses {
|
|
22089
22099
|
namespace $200 {
|
|
22090
22100
|
namespace Content {
|
|
22091
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress
|
|
22101
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
|
|
22092
22102
|
}
|
|
22093
22103
|
}
|
|
22094
22104
|
namespace $400 {
|
|
@@ -22142,21 +22152,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22142
22152
|
}
|
|
22143
22153
|
}
|
|
22144
22154
|
}
|
|
22145
|
-
namespace
|
|
22155
|
+
namespace Delete {
|
|
22146
22156
|
namespace Parameters {
|
|
22147
22157
|
type Path = {
|
|
22148
|
-
|
|
22158
|
+
mailAddressId: string;
|
|
22149
22159
|
};
|
|
22150
|
-
type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
|
|
22151
22160
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22152
22161
|
type Query = {};
|
|
22153
22162
|
}
|
|
22154
22163
|
namespace Responses {
|
|
22155
|
-
namespace $
|
|
22164
|
+
namespace $204 {
|
|
22156
22165
|
namespace Content {
|
|
22157
|
-
|
|
22158
|
-
id: string;
|
|
22159
|
-
}
|
|
22166
|
+
type Empty = unknown;
|
|
22160
22167
|
}
|
|
22161
22168
|
}
|
|
22162
22169
|
namespace $400 {
|
|
@@ -22211,20 +22218,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22211
22218
|
}
|
|
22212
22219
|
}
|
|
22213
22220
|
}
|
|
22214
|
-
namespace
|
|
22215
|
-
|
|
22216
|
-
namespace Get {
|
|
22221
|
+
namespace V2MailAddressesMailAddressIdMailArchive {
|
|
22222
|
+
namespace Delete {
|
|
22217
22223
|
namespace Parameters {
|
|
22218
22224
|
type Path = {
|
|
22219
|
-
|
|
22225
|
+
mailAddressId: string;
|
|
22220
22226
|
};
|
|
22221
22227
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22222
22228
|
type Query = {};
|
|
22223
22229
|
}
|
|
22224
22230
|
namespace Responses {
|
|
22225
|
-
namespace $
|
|
22231
|
+
namespace $204 {
|
|
22226
22232
|
namespace Content {
|
|
22227
|
-
type
|
|
22233
|
+
type Empty = unknown;
|
|
22228
22234
|
}
|
|
22229
22235
|
}
|
|
22230
22236
|
namespace $400 {
|
|
@@ -22278,18 +22284,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22278
22284
|
}
|
|
22279
22285
|
}
|
|
22280
22286
|
}
|
|
22281
|
-
|
|
22287
|
+
}
|
|
22288
|
+
namespace V2MailAddressesMailAddressIdBackups {
|
|
22289
|
+
namespace Get {
|
|
22282
22290
|
namespace Parameters {
|
|
22283
22291
|
type Path = {
|
|
22284
|
-
|
|
22292
|
+
mailAddressId: string;
|
|
22285
22293
|
};
|
|
22286
22294
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22287
22295
|
type Query = {};
|
|
22288
22296
|
}
|
|
22289
22297
|
namespace Responses {
|
|
22290
|
-
namespace $
|
|
22298
|
+
namespace $200 {
|
|
22291
22299
|
namespace Content {
|
|
22292
|
-
type
|
|
22300
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[];
|
|
22293
22301
|
}
|
|
22294
22302
|
}
|
|
22295
22303
|
namespace $400 {
|
|
@@ -22327,13 +22335,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22327
22335
|
}
|
|
22328
22336
|
}
|
|
22329
22337
|
}
|
|
22330
|
-
namespace $503 {
|
|
22331
|
-
namespace Content {
|
|
22332
|
-
interface ApplicationJson {
|
|
22333
|
-
[k: string]: unknown;
|
|
22334
|
-
}
|
|
22335
|
-
}
|
|
22336
|
-
}
|
|
22337
22338
|
namespace Default {
|
|
22338
22339
|
namespace Content {
|
|
22339
22340
|
interface ApplicationJson {
|
|
@@ -22344,20 +22345,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22344
22345
|
}
|
|
22345
22346
|
}
|
|
22346
22347
|
}
|
|
22347
|
-
namespace
|
|
22348
|
-
namespace V2MailAddressesMailAddressId {
|
|
22348
|
+
namespace V2MailAddresses {
|
|
22349
22349
|
namespace Get {
|
|
22350
22350
|
namespace Parameters {
|
|
22351
|
-
type Path = {
|
|
22352
|
-
mailAddressId: string;
|
|
22353
|
-
};
|
|
22351
|
+
type Path = {};
|
|
22354
22352
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22355
|
-
type Query = {
|
|
22353
|
+
type Query = {
|
|
22354
|
+
projectId?: string;
|
|
22355
|
+
search?: string;
|
|
22356
|
+
forwardAddress?: boolean;
|
|
22357
|
+
catchAll?: boolean;
|
|
22358
|
+
autoResponder?: boolean;
|
|
22359
|
+
mailArchive?: boolean;
|
|
22360
|
+
limit?: number;
|
|
22361
|
+
skip?: number;
|
|
22362
|
+
page?: number;
|
|
22363
|
+
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
|
|
22364
|
+
order?: ("asc" | "desc")[];
|
|
22365
|
+
};
|
|
22356
22366
|
}
|
|
22357
22367
|
namespace Responses {
|
|
22358
22368
|
namespace $200 {
|
|
22359
22369
|
namespace Content {
|
|
22360
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress;
|
|
22370
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
|
|
22361
22371
|
}
|
|
22362
22372
|
}
|
|
22363
22373
|
namespace $400 {
|
|
@@ -22411,18 +22421,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22411
22421
|
}
|
|
22412
22422
|
}
|
|
22413
22423
|
}
|
|
22414
|
-
|
|
22424
|
+
}
|
|
22425
|
+
namespace V2ProjectsProjectIdMailsettings { }
|
|
22426
|
+
namespace V2ProjectsProjectIdMailSettings {
|
|
22427
|
+
namespace Get {
|
|
22415
22428
|
namespace Parameters {
|
|
22416
22429
|
type Path = {
|
|
22417
|
-
|
|
22430
|
+
projectId: string;
|
|
22418
22431
|
};
|
|
22419
22432
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22420
22433
|
type Query = {};
|
|
22421
22434
|
}
|
|
22422
22435
|
namespace Responses {
|
|
22423
|
-
namespace $
|
|
22436
|
+
namespace $200 {
|
|
22424
22437
|
namespace Content {
|
|
22425
|
-
|
|
22438
|
+
interface ApplicationJson {
|
|
22439
|
+
blacklist: string[];
|
|
22440
|
+
projectId: string;
|
|
22441
|
+
whitelist: string[];
|
|
22442
|
+
}
|
|
22426
22443
|
}
|
|
22427
22444
|
}
|
|
22428
22445
|
namespace $400 {
|
|
@@ -22477,11 +22494,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22477
22494
|
}
|
|
22478
22495
|
}
|
|
22479
22496
|
}
|
|
22480
|
-
namespace
|
|
22481
|
-
namespace
|
|
22497
|
+
namespace V2MailAddressesMailAddressIdBackupsBackupIdRecovery {
|
|
22498
|
+
namespace Post {
|
|
22482
22499
|
namespace Parameters {
|
|
22483
22500
|
type Path = {
|
|
22484
22501
|
mailAddressId: string;
|
|
22502
|
+
backupId: string;
|
|
22485
22503
|
};
|
|
22486
22504
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22487
22505
|
type Query = {};
|
|
@@ -22499,13 +22517,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22499
22517
|
}
|
|
22500
22518
|
}
|
|
22501
22519
|
}
|
|
22502
|
-
namespace $403 {
|
|
22503
|
-
namespace Content {
|
|
22504
|
-
interface ApplicationJson {
|
|
22505
|
-
[k: string]: unknown;
|
|
22506
|
-
}
|
|
22507
|
-
}
|
|
22508
|
-
}
|
|
22509
22520
|
namespace $404 {
|
|
22510
22521
|
namespace Content {
|
|
22511
22522
|
interface ApplicationJson {
|
|
@@ -22520,20 +22531,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22520
22531
|
}
|
|
22521
22532
|
}
|
|
22522
22533
|
}
|
|
22523
|
-
namespace $500 {
|
|
22524
|
-
namespace Content {
|
|
22525
|
-
interface ApplicationJson {
|
|
22526
|
-
[k: string]: unknown;
|
|
22527
|
-
}
|
|
22528
|
-
}
|
|
22529
|
-
}
|
|
22530
|
-
namespace $503 {
|
|
22531
|
-
namespace Content {
|
|
22532
|
-
interface ApplicationJson {
|
|
22533
|
-
[k: string]: unknown;
|
|
22534
|
-
}
|
|
22535
|
-
}
|
|
22536
|
-
}
|
|
22537
22534
|
namespace Default {
|
|
22538
22535
|
namespace Content {
|
|
22539
22536
|
interface ApplicationJson {
|
|
@@ -22544,19 +22541,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22544
22541
|
}
|
|
22545
22542
|
}
|
|
22546
22543
|
}
|
|
22547
|
-
namespace
|
|
22548
|
-
namespace
|
|
22544
|
+
namespace V2DeliveryBoxesDeliveryBoxIdDescription {
|
|
22545
|
+
namespace Patch {
|
|
22549
22546
|
namespace Parameters {
|
|
22550
22547
|
type Path = {
|
|
22551
|
-
|
|
22548
|
+
deliveryBoxId: string;
|
|
22552
22549
|
};
|
|
22550
|
+
interface RequestBody {
|
|
22551
|
+
description: string;
|
|
22552
|
+
}
|
|
22553
22553
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22554
22554
|
type Query = {};
|
|
22555
22555
|
}
|
|
22556
22556
|
namespace Responses {
|
|
22557
|
-
namespace $
|
|
22557
|
+
namespace $204 {
|
|
22558
22558
|
namespace Content {
|
|
22559
|
-
type
|
|
22559
|
+
type Empty = unknown;
|
|
22560
22560
|
}
|
|
22561
22561
|
}
|
|
22562
22562
|
namespace $400 {
|
|
@@ -22594,6 +22594,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22594
22594
|
}
|
|
22595
22595
|
}
|
|
22596
22596
|
}
|
|
22597
|
+
namespace $503 {
|
|
22598
|
+
namespace Content {
|
|
22599
|
+
interface ApplicationJson {
|
|
22600
|
+
[k: string]: unknown;
|
|
22601
|
+
}
|
|
22602
|
+
}
|
|
22603
|
+
}
|
|
22597
22604
|
namespace Default {
|
|
22598
22605
|
namespace Content {
|
|
22599
22606
|
interface ApplicationJson {
|
|
@@ -22604,29 +22611,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22604
22611
|
}
|
|
22605
22612
|
}
|
|
22606
22613
|
}
|
|
22607
|
-
namespace
|
|
22608
|
-
namespace
|
|
22614
|
+
namespace V2DeliveryBoxesDeliveryBoxIdPassword {
|
|
22615
|
+
namespace Patch {
|
|
22609
22616
|
namespace Parameters {
|
|
22610
|
-
type Path = {
|
|
22611
|
-
|
|
22612
|
-
type Query = {
|
|
22613
|
-
projectId?: string;
|
|
22614
|
-
search?: string;
|
|
22615
|
-
forwardAddress?: boolean;
|
|
22616
|
-
catchAll?: boolean;
|
|
22617
|
-
autoResponder?: boolean;
|
|
22618
|
-
mailArchive?: boolean;
|
|
22619
|
-
limit?: number;
|
|
22620
|
-
skip?: number;
|
|
22621
|
-
page?: number;
|
|
22622
|
-
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
|
|
22623
|
-
order?: ("asc" | "desc")[];
|
|
22617
|
+
type Path = {
|
|
22618
|
+
deliveryBoxId: string;
|
|
22624
22619
|
};
|
|
22620
|
+
interface RequestBody {
|
|
22621
|
+
password: string;
|
|
22622
|
+
}
|
|
22623
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22624
|
+
type Query = {};
|
|
22625
22625
|
}
|
|
22626
22626
|
namespace Responses {
|
|
22627
|
-
namespace $
|
|
22627
|
+
namespace $204 {
|
|
22628
22628
|
namespace Content {
|
|
22629
|
-
type
|
|
22629
|
+
type Empty = unknown;
|
|
22630
22630
|
}
|
|
22631
22631
|
}
|
|
22632
22632
|
namespace $400 {
|
|
@@ -22681,24 +22681,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22681
22681
|
}
|
|
22682
22682
|
}
|
|
22683
22683
|
}
|
|
22684
|
-
namespace
|
|
22685
|
-
|
|
22686
|
-
namespace Get {
|
|
22684
|
+
namespace V2MailAddressesMailAddressIdAddress {
|
|
22685
|
+
namespace Patch {
|
|
22687
22686
|
namespace Parameters {
|
|
22688
22687
|
type Path = {
|
|
22689
|
-
|
|
22688
|
+
mailAddressId: string;
|
|
22690
22689
|
};
|
|
22690
|
+
interface RequestBody {
|
|
22691
|
+
address: string;
|
|
22692
|
+
}
|
|
22691
22693
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22692
22694
|
type Query = {};
|
|
22693
22695
|
}
|
|
22694
22696
|
namespace Responses {
|
|
22695
|
-
namespace $
|
|
22697
|
+
namespace $204 {
|
|
22696
22698
|
namespace Content {
|
|
22697
|
-
|
|
22698
|
-
blacklist: string[];
|
|
22699
|
-
projectId: string;
|
|
22700
|
-
whitelist: string[];
|
|
22701
|
-
}
|
|
22699
|
+
type Empty = unknown;
|
|
22702
22700
|
}
|
|
22703
22701
|
}
|
|
22704
22702
|
namespace $400 {
|
|
@@ -22753,13 +22751,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22753
22751
|
}
|
|
22754
22752
|
}
|
|
22755
22753
|
}
|
|
22756
|
-
namespace
|
|
22757
|
-
namespace
|
|
22754
|
+
namespace V2MailAddressesMailAddressIdCatchAll {
|
|
22755
|
+
namespace Patch {
|
|
22758
22756
|
namespace Parameters {
|
|
22759
22757
|
type Path = {
|
|
22760
22758
|
mailAddressId: string;
|
|
22761
|
-
backupId: string;
|
|
22762
22759
|
};
|
|
22760
|
+
interface RequestBody {
|
|
22761
|
+
active: boolean;
|
|
22762
|
+
}
|
|
22763
22763
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22764
22764
|
type Query = {};
|
|
22765
22765
|
}
|
|
@@ -22776,6 +22776,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22776
22776
|
}
|
|
22777
22777
|
}
|
|
22778
22778
|
}
|
|
22779
|
+
namespace $403 {
|
|
22780
|
+
namespace Content {
|
|
22781
|
+
interface ApplicationJson {
|
|
22782
|
+
[k: string]: unknown;
|
|
22783
|
+
}
|
|
22784
|
+
}
|
|
22785
|
+
}
|
|
22779
22786
|
namespace $404 {
|
|
22780
22787
|
namespace Content {
|
|
22781
22788
|
interface ApplicationJson {
|
|
@@ -22790,6 +22797,20 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22790
22797
|
}
|
|
22791
22798
|
}
|
|
22792
22799
|
}
|
|
22800
|
+
namespace $500 {
|
|
22801
|
+
namespace Content {
|
|
22802
|
+
interface ApplicationJson {
|
|
22803
|
+
[k: string]: unknown;
|
|
22804
|
+
}
|
|
22805
|
+
}
|
|
22806
|
+
}
|
|
22807
|
+
namespace $503 {
|
|
22808
|
+
namespace Content {
|
|
22809
|
+
interface ApplicationJson {
|
|
22810
|
+
[k: string]: unknown;
|
|
22811
|
+
}
|
|
22812
|
+
}
|
|
22813
|
+
}
|
|
22793
22814
|
namespace Default {
|
|
22794
22815
|
namespace Content {
|
|
22795
22816
|
interface ApplicationJson {
|
|
@@ -22800,32 +22821,27 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22800
22821
|
}
|
|
22801
22822
|
}
|
|
22802
22823
|
}
|
|
22803
|
-
namespace
|
|
22804
|
-
namespace
|
|
22824
|
+
namespace V2CustomersCustomerIdPaymentMethod {
|
|
22825
|
+
namespace Get {
|
|
22805
22826
|
namespace Parameters {
|
|
22806
22827
|
type Path = {
|
|
22807
|
-
|
|
22828
|
+
customerId: string;
|
|
22808
22829
|
};
|
|
22809
|
-
interface RequestBody {
|
|
22810
|
-
description: string;
|
|
22811
|
-
}
|
|
22812
22830
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22813
22831
|
type Query = {};
|
|
22814
22832
|
}
|
|
22815
22833
|
namespace Responses {
|
|
22816
|
-
namespace $
|
|
22817
|
-
namespace Content {
|
|
22818
|
-
type Empty = unknown;
|
|
22819
|
-
}
|
|
22820
|
-
}
|
|
22821
|
-
namespace $400 {
|
|
22834
|
+
namespace $200 {
|
|
22822
22835
|
namespace Content {
|
|
22823
22836
|
interface ApplicationJson {
|
|
22824
|
-
|
|
22837
|
+
cardDetails?: {
|
|
22838
|
+
brand: string;
|
|
22839
|
+
last4: string;
|
|
22840
|
+
};
|
|
22825
22841
|
}
|
|
22826
22842
|
}
|
|
22827
22843
|
}
|
|
22828
|
-
namespace $
|
|
22844
|
+
namespace $400 {
|
|
22829
22845
|
namespace Content {
|
|
22830
22846
|
interface ApplicationJson {
|
|
22831
22847
|
[k: string]: unknown;
|
|
@@ -22846,20 +22862,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22846
22862
|
}
|
|
22847
22863
|
}
|
|
22848
22864
|
}
|
|
22849
|
-
namespace $500 {
|
|
22850
|
-
namespace Content {
|
|
22851
|
-
interface ApplicationJson {
|
|
22852
|
-
[k: string]: unknown;
|
|
22853
|
-
}
|
|
22854
|
-
}
|
|
22855
|
-
}
|
|
22856
|
-
namespace $503 {
|
|
22857
|
-
namespace Content {
|
|
22858
|
-
interface ApplicationJson {
|
|
22859
|
-
[k: string]: unknown;
|
|
22860
|
-
}
|
|
22861
|
-
}
|
|
22862
|
-
}
|
|
22863
22865
|
namespace Default {
|
|
22864
22866
|
namespace Content {
|
|
22865
22867
|
interface ApplicationJson {
|
|
@@ -22869,33 +22871,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22869
22871
|
}
|
|
22870
22872
|
}
|
|
22871
22873
|
}
|
|
22872
|
-
|
|
22873
|
-
namespace V2DeliveryBoxesDeliveryBoxIdPassword {
|
|
22874
|
-
namespace Patch {
|
|
22874
|
+
namespace Put {
|
|
22875
22875
|
namespace Parameters {
|
|
22876
22876
|
type Path = {
|
|
22877
|
-
|
|
22877
|
+
customerId: string;
|
|
22878
22878
|
};
|
|
22879
22879
|
interface RequestBody {
|
|
22880
|
-
|
|
22880
|
+
customReturnUrl?: string;
|
|
22881
22881
|
}
|
|
22882
22882
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22883
22883
|
type Query = {};
|
|
22884
22884
|
}
|
|
22885
22885
|
namespace Responses {
|
|
22886
|
-
namespace $
|
|
22887
|
-
namespace Content {
|
|
22888
|
-
type Empty = unknown;
|
|
22889
|
-
}
|
|
22890
|
-
}
|
|
22891
|
-
namespace $400 {
|
|
22886
|
+
namespace $200 {
|
|
22892
22887
|
namespace Content {
|
|
22893
22888
|
interface ApplicationJson {
|
|
22894
|
-
|
|
22889
|
+
url?: string;
|
|
22895
22890
|
}
|
|
22896
22891
|
}
|
|
22897
22892
|
}
|
|
22898
|
-
namespace $
|
|
22893
|
+
namespace $400 {
|
|
22899
22894
|
namespace Content {
|
|
22900
22895
|
interface ApplicationJson {
|
|
22901
22896
|
[k: string]: unknown;
|
|
@@ -22916,20 +22911,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22916
22911
|
}
|
|
22917
22912
|
}
|
|
22918
22913
|
}
|
|
22919
|
-
namespace $500 {
|
|
22920
|
-
namespace Content {
|
|
22921
|
-
interface ApplicationJson {
|
|
22922
|
-
[k: string]: unknown;
|
|
22923
|
-
}
|
|
22924
|
-
}
|
|
22925
|
-
}
|
|
22926
|
-
namespace $503 {
|
|
22927
|
-
namespace Content {
|
|
22928
|
-
interface ApplicationJson {
|
|
22929
|
-
[k: string]: unknown;
|
|
22930
|
-
}
|
|
22931
|
-
}
|
|
22932
|
-
}
|
|
22933
22914
|
namespace Default {
|
|
22934
22915
|
namespace Content {
|
|
22935
22916
|
interface ApplicationJson {
|
|
@@ -22940,42 +22921,50 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22940
22921
|
}
|
|
22941
22922
|
}
|
|
22942
22923
|
}
|
|
22943
|
-
namespace
|
|
22944
|
-
namespace
|
|
22924
|
+
namespace V2TimeZones {
|
|
22925
|
+
namespace Get {
|
|
22945
22926
|
namespace Parameters {
|
|
22946
|
-
type Path = {
|
|
22947
|
-
mailAddressId: string;
|
|
22948
|
-
};
|
|
22949
|
-
interface RequestBody {
|
|
22950
|
-
address: string;
|
|
22951
|
-
}
|
|
22927
|
+
type Path = {};
|
|
22952
22928
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22953
22929
|
type Query = {};
|
|
22954
22930
|
}
|
|
22955
22931
|
namespace Responses {
|
|
22956
|
-
namespace $
|
|
22932
|
+
namespace $200 {
|
|
22957
22933
|
namespace Content {
|
|
22958
|
-
type
|
|
22934
|
+
type ApplicationJson = string[];
|
|
22959
22935
|
}
|
|
22960
22936
|
}
|
|
22961
|
-
namespace $
|
|
22937
|
+
namespace $429 {
|
|
22962
22938
|
namespace Content {
|
|
22963
22939
|
interface ApplicationJson {
|
|
22964
22940
|
[k: string]: unknown;
|
|
22965
22941
|
}
|
|
22966
22942
|
}
|
|
22967
22943
|
}
|
|
22968
|
-
namespace
|
|
22944
|
+
namespace Default {
|
|
22969
22945
|
namespace Content {
|
|
22970
22946
|
interface ApplicationJson {
|
|
22971
22947
|
[k: string]: unknown;
|
|
22972
22948
|
}
|
|
22973
22949
|
}
|
|
22974
22950
|
}
|
|
22975
|
-
|
|
22951
|
+
}
|
|
22952
|
+
}
|
|
22953
|
+
}
|
|
22954
|
+
namespace V2NewsletterSubscriptionsSelf {
|
|
22955
|
+
namespace Get {
|
|
22956
|
+
namespace Parameters {
|
|
22957
|
+
type Path = {};
|
|
22958
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
22959
|
+
type Query = {};
|
|
22960
|
+
}
|
|
22961
|
+
namespace Responses {
|
|
22962
|
+
namespace $200 {
|
|
22976
22963
|
namespace Content {
|
|
22977
22964
|
interface ApplicationJson {
|
|
22978
|
-
|
|
22965
|
+
active: boolean;
|
|
22966
|
+
email: string;
|
|
22967
|
+
registered: boolean;
|
|
22979
22968
|
}
|
|
22980
22969
|
}
|
|
22981
22970
|
}
|
|
@@ -22986,20 +22975,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
22986
22975
|
}
|
|
22987
22976
|
}
|
|
22988
22977
|
}
|
|
22989
|
-
namespace $500 {
|
|
22990
|
-
namespace Content {
|
|
22991
|
-
interface ApplicationJson {
|
|
22992
|
-
[k: string]: unknown;
|
|
22993
|
-
}
|
|
22994
|
-
}
|
|
22995
|
-
}
|
|
22996
|
-
namespace $503 {
|
|
22997
|
-
namespace Content {
|
|
22998
|
-
interface ApplicationJson {
|
|
22999
|
-
[k: string]: unknown;
|
|
23000
|
-
}
|
|
23001
|
-
}
|
|
23002
|
-
}
|
|
23003
22978
|
namespace Default {
|
|
23004
22979
|
namespace Content {
|
|
23005
22980
|
interface ApplicationJson {
|
|
@@ -23009,16 +22984,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23009
22984
|
}
|
|
23010
22985
|
}
|
|
23011
22986
|
}
|
|
23012
|
-
|
|
23013
|
-
namespace V2MailAddressesMailAddressIdCatchAll {
|
|
23014
|
-
namespace Patch {
|
|
22987
|
+
namespace Delete {
|
|
23015
22988
|
namespace Parameters {
|
|
23016
|
-
type Path = {
|
|
23017
|
-
mailAddressId: string;
|
|
23018
|
-
};
|
|
23019
|
-
interface RequestBody {
|
|
23020
|
-
active: boolean;
|
|
23021
|
-
}
|
|
22989
|
+
type Path = {};
|
|
23022
22990
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23023
22991
|
type Query = {};
|
|
23024
22992
|
}
|
|
@@ -23028,24 +22996,40 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23028
22996
|
type Empty = unknown;
|
|
23029
22997
|
}
|
|
23030
22998
|
}
|
|
23031
|
-
namespace $
|
|
22999
|
+
namespace $429 {
|
|
23032
23000
|
namespace Content {
|
|
23033
23001
|
interface ApplicationJson {
|
|
23034
23002
|
[k: string]: unknown;
|
|
23035
23003
|
}
|
|
23036
23004
|
}
|
|
23037
23005
|
}
|
|
23038
|
-
namespace
|
|
23006
|
+
namespace Default {
|
|
23039
23007
|
namespace Content {
|
|
23040
23008
|
interface ApplicationJson {
|
|
23041
23009
|
[k: string]: unknown;
|
|
23042
23010
|
}
|
|
23043
23011
|
}
|
|
23044
23012
|
}
|
|
23045
|
-
|
|
23013
|
+
}
|
|
23014
|
+
}
|
|
23015
|
+
}
|
|
23016
|
+
namespace V2NotificationsUnreadCounts { }
|
|
23017
|
+
namespace V2NotificationUnreadCounts {
|
|
23018
|
+
namespace Get {
|
|
23019
|
+
namespace Parameters {
|
|
23020
|
+
type Path = {};
|
|
23021
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23022
|
+
type Query = {};
|
|
23023
|
+
}
|
|
23024
|
+
namespace Responses {
|
|
23025
|
+
namespace $200 {
|
|
23046
23026
|
namespace Content {
|
|
23047
23027
|
interface ApplicationJson {
|
|
23048
|
-
|
|
23028
|
+
error: number;
|
|
23029
|
+
info: number;
|
|
23030
|
+
success: number;
|
|
23031
|
+
total: number;
|
|
23032
|
+
warning: number;
|
|
23049
23033
|
}
|
|
23050
23034
|
}
|
|
23051
23035
|
}
|
|
@@ -23056,14 +23040,38 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23056
23040
|
}
|
|
23057
23041
|
}
|
|
23058
23042
|
}
|
|
23059
|
-
namespace
|
|
23043
|
+
namespace Default {
|
|
23060
23044
|
namespace Content {
|
|
23061
23045
|
interface ApplicationJson {
|
|
23062
23046
|
[k: string]: unknown;
|
|
23063
23047
|
}
|
|
23064
23048
|
}
|
|
23065
23049
|
}
|
|
23066
|
-
|
|
23050
|
+
}
|
|
23051
|
+
}
|
|
23052
|
+
}
|
|
23053
|
+
namespace V2Notifications {
|
|
23054
|
+
namespace Get {
|
|
23055
|
+
namespace Parameters {
|
|
23056
|
+
type Path = {};
|
|
23057
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23058
|
+
type Query = {
|
|
23059
|
+
status?: "unread" | "read";
|
|
23060
|
+
severity?: ("success" | "info" | "warning" | "error")[];
|
|
23061
|
+
type?: string[];
|
|
23062
|
+
"type-not"?: string[];
|
|
23063
|
+
limit?: number;
|
|
23064
|
+
skip?: number;
|
|
23065
|
+
page?: number;
|
|
23066
|
+
};
|
|
23067
|
+
}
|
|
23068
|
+
namespace Responses {
|
|
23069
|
+
namespace $200 {
|
|
23070
|
+
namespace Content {
|
|
23071
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MessagingNotification[];
|
|
23072
|
+
}
|
|
23073
|
+
}
|
|
23074
|
+
namespace $429 {
|
|
23067
23075
|
namespace Content {
|
|
23068
23076
|
interface ApplicationJson {
|
|
23069
23077
|
[k: string]: unknown;
|
|
@@ -23080,34 +23088,34 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23080
23088
|
}
|
|
23081
23089
|
}
|
|
23082
23090
|
}
|
|
23083
|
-
namespace
|
|
23084
|
-
|
|
23091
|
+
namespace V2NotificationsStatus { }
|
|
23092
|
+
namespace V2NotificationsActionsReadAll {
|
|
23093
|
+
namespace Post {
|
|
23085
23094
|
namespace Parameters {
|
|
23086
|
-
type Path = {
|
|
23087
|
-
|
|
23088
|
-
}
|
|
23095
|
+
type Path = {};
|
|
23096
|
+
interface RequestBody {
|
|
23097
|
+
}
|
|
23089
23098
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23090
|
-
type Query = {
|
|
23099
|
+
type Query = {
|
|
23100
|
+
severities?: ("success" | "info" | "warning" | "error")[];
|
|
23101
|
+
referenceId?: string;
|
|
23102
|
+
referenceAggregate?: string;
|
|
23103
|
+
referenceDomain?: string;
|
|
23104
|
+
};
|
|
23091
23105
|
}
|
|
23092
23106
|
namespace Responses {
|
|
23093
23107
|
namespace $200 {
|
|
23094
23108
|
namespace Content {
|
|
23095
23109
|
interface ApplicationJson {
|
|
23096
|
-
|
|
23097
|
-
|
|
23098
|
-
|
|
23099
|
-
|
|
23100
|
-
|
|
23101
|
-
}
|
|
23102
|
-
}
|
|
23103
|
-
namespace $400 {
|
|
23104
|
-
namespace Content {
|
|
23105
|
-
interface ApplicationJson {
|
|
23106
|
-
[k: string]: unknown;
|
|
23110
|
+
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23111
|
+
/**
|
|
23112
|
+
* The number of notifications that have been updated.
|
|
23113
|
+
*/
|
|
23114
|
+
updatedCount: number;
|
|
23107
23115
|
}
|
|
23108
23116
|
}
|
|
23109
23117
|
}
|
|
23110
|
-
namespace $
|
|
23118
|
+
namespace $403 {
|
|
23111
23119
|
namespace Content {
|
|
23112
23120
|
interface ApplicationJson {
|
|
23113
23121
|
[k: string]: unknown;
|
|
@@ -23130,13 +23138,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23130
23138
|
}
|
|
23131
23139
|
}
|
|
23132
23140
|
}
|
|
23141
|
+
}
|
|
23142
|
+
namespace V2NotificationsNotificationIdStatus {
|
|
23133
23143
|
namespace Put {
|
|
23134
23144
|
namespace Parameters {
|
|
23135
23145
|
type Path = {
|
|
23136
|
-
|
|
23146
|
+
notificationId: string;
|
|
23137
23147
|
};
|
|
23138
23148
|
interface RequestBody {
|
|
23139
|
-
|
|
23149
|
+
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23140
23150
|
}
|
|
23141
23151
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23142
23152
|
type Query = {};
|
|
@@ -23145,14 +23155,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23145
23155
|
namespace $200 {
|
|
23146
23156
|
namespace Content {
|
|
23147
23157
|
interface ApplicationJson {
|
|
23148
|
-
|
|
23149
|
-
}
|
|
23150
|
-
}
|
|
23151
|
-
}
|
|
23152
|
-
namespace $400 {
|
|
23153
|
-
namespace Content {
|
|
23154
|
-
interface ApplicationJson {
|
|
23155
|
-
[k: string]: unknown;
|
|
23158
|
+
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23156
23159
|
}
|
|
23157
23160
|
}
|
|
23158
23161
|
}
|
|
@@ -23180,17 +23183,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23180
23183
|
}
|
|
23181
23184
|
}
|
|
23182
23185
|
}
|
|
23183
|
-
namespace
|
|
23186
|
+
namespace V2Orders {
|
|
23184
23187
|
namespace Get {
|
|
23185
23188
|
namespace Parameters {
|
|
23186
23189
|
type Path = {};
|
|
23187
23190
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23188
|
-
type Query = {
|
|
23191
|
+
type Query = {
|
|
23192
|
+
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23193
|
+
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23194
|
+
templateNames?: string[];
|
|
23195
|
+
types?: MittwaldAPIV2.Components.Schemas.OrderOrderType[];
|
|
23196
|
+
limit?: number;
|
|
23197
|
+
skip?: number;
|
|
23198
|
+
page?: number;
|
|
23199
|
+
};
|
|
23189
23200
|
}
|
|
23190
23201
|
namespace Responses {
|
|
23191
23202
|
namespace $200 {
|
|
23192
23203
|
namespace Content {
|
|
23193
|
-
type ApplicationJson =
|
|
23204
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23194
23205
|
}
|
|
23195
23206
|
}
|
|
23196
23207
|
namespace $429 {
|
|
@@ -23209,21 +23220,35 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23209
23220
|
}
|
|
23210
23221
|
}
|
|
23211
23222
|
}
|
|
23212
|
-
|
|
23213
|
-
namespace V2NewsletterSubscriptionsSelf {
|
|
23214
|
-
namespace Get {
|
|
23223
|
+
namespace Post {
|
|
23215
23224
|
namespace Parameters {
|
|
23216
23225
|
type Path = {};
|
|
23226
|
+
interface RequestBody {
|
|
23227
|
+
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;
|
|
23228
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
|
|
23229
|
+
}
|
|
23217
23230
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23218
23231
|
type Query = {};
|
|
23219
23232
|
}
|
|
23220
23233
|
namespace Responses {
|
|
23221
|
-
namespace $
|
|
23234
|
+
namespace $201 {
|
|
23222
23235
|
namespace Content {
|
|
23223
23236
|
interface ApplicationJson {
|
|
23224
|
-
|
|
23225
|
-
|
|
23226
|
-
|
|
23237
|
+
orderId: string;
|
|
23238
|
+
}
|
|
23239
|
+
}
|
|
23240
|
+
}
|
|
23241
|
+
namespace $400 {
|
|
23242
|
+
namespace Content {
|
|
23243
|
+
interface ApplicationJson {
|
|
23244
|
+
[k: string]: unknown;
|
|
23245
|
+
}
|
|
23246
|
+
}
|
|
23247
|
+
}
|
|
23248
|
+
namespace $422 {
|
|
23249
|
+
namespace Content {
|
|
23250
|
+
interface ApplicationJson {
|
|
23251
|
+
error?: {};
|
|
23227
23252
|
}
|
|
23228
23253
|
}
|
|
23229
23254
|
}
|
|
@@ -23243,16 +23268,31 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23243
23268
|
}
|
|
23244
23269
|
}
|
|
23245
23270
|
}
|
|
23246
|
-
|
|
23271
|
+
}
|
|
23272
|
+
namespace V2TariffChanges {
|
|
23273
|
+
namespace Post {
|
|
23247
23274
|
namespace Parameters {
|
|
23248
23275
|
type Path = {};
|
|
23276
|
+
interface RequestBody {
|
|
23277
|
+
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange;
|
|
23278
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting";
|
|
23279
|
+
}
|
|
23249
23280
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23250
23281
|
type Query = {};
|
|
23251
23282
|
}
|
|
23252
23283
|
namespace Responses {
|
|
23253
|
-
namespace $
|
|
23284
|
+
namespace $201 {
|
|
23254
23285
|
namespace Content {
|
|
23255
|
-
|
|
23286
|
+
interface ApplicationJson {
|
|
23287
|
+
orderId: string;
|
|
23288
|
+
}
|
|
23289
|
+
}
|
|
23290
|
+
}
|
|
23291
|
+
namespace $400 {
|
|
23292
|
+
namespace Content {
|
|
23293
|
+
interface ApplicationJson {
|
|
23294
|
+
[k: string]: unknown;
|
|
23295
|
+
}
|
|
23256
23296
|
}
|
|
23257
23297
|
}
|
|
23258
23298
|
namespace $429 {
|
|
@@ -23272,24 +23312,19 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23272
23312
|
}
|
|
23273
23313
|
}
|
|
23274
23314
|
}
|
|
23275
|
-
namespace
|
|
23276
|
-
namespace V2NotificationUnreadCounts {
|
|
23315
|
+
namespace V2OrdersOrderId {
|
|
23277
23316
|
namespace Get {
|
|
23278
23317
|
namespace Parameters {
|
|
23279
|
-
type Path = {
|
|
23318
|
+
type Path = {
|
|
23319
|
+
orderId: string;
|
|
23320
|
+
};
|
|
23280
23321
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23281
23322
|
type Query = {};
|
|
23282
23323
|
}
|
|
23283
23324
|
namespace Responses {
|
|
23284
23325
|
namespace $200 {
|
|
23285
23326
|
namespace Content {
|
|
23286
|
-
|
|
23287
|
-
error: number;
|
|
23288
|
-
info: number;
|
|
23289
|
-
success: number;
|
|
23290
|
-
total: number;
|
|
23291
|
-
warning: number;
|
|
23292
|
-
}
|
|
23327
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder;
|
|
23293
23328
|
}
|
|
23294
23329
|
}
|
|
23295
23330
|
namespace $429 {
|
|
@@ -23309,25 +23344,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23309
23344
|
}
|
|
23310
23345
|
}
|
|
23311
23346
|
}
|
|
23312
|
-
namespace
|
|
23347
|
+
namespace V2CustomersCustomerIdOrders {
|
|
23313
23348
|
namespace Get {
|
|
23314
23349
|
namespace Parameters {
|
|
23315
|
-
type Path = {
|
|
23350
|
+
type Path = {
|
|
23351
|
+
customerId: string;
|
|
23352
|
+
};
|
|
23316
23353
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23317
23354
|
type Query = {
|
|
23318
|
-
status?: "unread" | "read";
|
|
23319
|
-
severity?: ("success" | "info" | "warning" | "error")[];
|
|
23320
|
-
type?: string[];
|
|
23321
|
-
"type-not"?: string[];
|
|
23322
23355
|
limit?: number;
|
|
23323
23356
|
skip?: number;
|
|
23324
23357
|
page?: number;
|
|
23358
|
+
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23359
|
+
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23360
|
+
templateNames?: string[];
|
|
23325
23361
|
};
|
|
23326
23362
|
}
|
|
23327
23363
|
namespace Responses {
|
|
23328
23364
|
namespace $200 {
|
|
23329
23365
|
namespace Content {
|
|
23330
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.
|
|
23366
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23331
23367
|
}
|
|
23332
23368
|
}
|
|
23333
23369
|
namespace $429 {
|
|
@@ -23347,38 +23383,26 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23347
23383
|
}
|
|
23348
23384
|
}
|
|
23349
23385
|
}
|
|
23350
|
-
namespace
|
|
23351
|
-
|
|
23352
|
-
namespace Post {
|
|
23386
|
+
namespace V2ProjectsProjectIdOrders {
|
|
23387
|
+
namespace Get {
|
|
23353
23388
|
namespace Parameters {
|
|
23354
|
-
type Path = {
|
|
23355
|
-
|
|
23356
|
-
}
|
|
23389
|
+
type Path = {
|
|
23390
|
+
projectId: string;
|
|
23391
|
+
};
|
|
23357
23392
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23358
23393
|
type Query = {
|
|
23359
|
-
|
|
23360
|
-
|
|
23361
|
-
|
|
23362
|
-
|
|
23394
|
+
limit?: number;
|
|
23395
|
+
skip?: number;
|
|
23396
|
+
page?: number;
|
|
23397
|
+
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23398
|
+
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23399
|
+
templateNames?: string[];
|
|
23363
23400
|
};
|
|
23364
23401
|
}
|
|
23365
23402
|
namespace Responses {
|
|
23366
23403
|
namespace $200 {
|
|
23367
23404
|
namespace Content {
|
|
23368
|
-
|
|
23369
|
-
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23370
|
-
/**
|
|
23371
|
-
* The number of notifications that have been updated.
|
|
23372
|
-
*/
|
|
23373
|
-
updatedCount: number;
|
|
23374
|
-
}
|
|
23375
|
-
}
|
|
23376
|
-
}
|
|
23377
|
-
namespace $403 {
|
|
23378
|
-
namespace Content {
|
|
23379
|
-
interface ApplicationJson {
|
|
23380
|
-
[k: string]: unknown;
|
|
23381
|
-
}
|
|
23405
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23382
23406
|
}
|
|
23383
23407
|
}
|
|
23384
23408
|
namespace $429 {
|
|
@@ -23398,71 +23422,37 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23398
23422
|
}
|
|
23399
23423
|
}
|
|
23400
23424
|
}
|
|
23401
|
-
namespace
|
|
23402
|
-
namespace
|
|
23425
|
+
namespace V2OrderPreviews {
|
|
23426
|
+
namespace Post {
|
|
23403
23427
|
namespace Parameters {
|
|
23404
|
-
type Path = {
|
|
23405
|
-
notificationId: string;
|
|
23406
|
-
};
|
|
23428
|
+
type Path = {};
|
|
23407
23429
|
interface RequestBody {
|
|
23408
|
-
|
|
23430
|
+
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;
|
|
23431
|
+
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
|
|
23409
23432
|
}
|
|
23410
|
-
type Header = {}
|
|
23433
|
+
type Header = {};
|
|
23411
23434
|
type Query = {};
|
|
23412
23435
|
}
|
|
23413
23436
|
namespace Responses {
|
|
23414
23437
|
namespace $200 {
|
|
23415
23438
|
namespace Content {
|
|
23416
|
-
|
|
23417
|
-
status: MittwaldAPIV2.Components.Schemas.MessagingNotificationStatus;
|
|
23418
|
-
}
|
|
23419
|
-
}
|
|
23420
|
-
}
|
|
23421
|
-
namespace $404 {
|
|
23422
|
-
namespace Content {
|
|
23423
|
-
interface ApplicationJson {
|
|
23424
|
-
[k: string]: unknown;
|
|
23425
|
-
}
|
|
23439
|
+
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;
|
|
23426
23440
|
}
|
|
23427
23441
|
}
|
|
23428
|
-
namespace $
|
|
23442
|
+
namespace $400 {
|
|
23429
23443
|
namespace Content {
|
|
23430
23444
|
interface ApplicationJson {
|
|
23431
23445
|
[k: string]: unknown;
|
|
23432
23446
|
}
|
|
23433
23447
|
}
|
|
23434
23448
|
}
|
|
23435
|
-
namespace
|
|
23449
|
+
namespace $422 {
|
|
23436
23450
|
namespace Content {
|
|
23437
23451
|
interface ApplicationJson {
|
|
23438
|
-
|
|
23452
|
+
error?: {};
|
|
23439
23453
|
}
|
|
23440
23454
|
}
|
|
23441
23455
|
}
|
|
23442
|
-
}
|
|
23443
|
-
}
|
|
23444
|
-
}
|
|
23445
|
-
namespace V2Orders {
|
|
23446
|
-
namespace Get {
|
|
23447
|
-
namespace Parameters {
|
|
23448
|
-
type Path = {};
|
|
23449
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23450
|
-
type Query = {
|
|
23451
|
-
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23452
|
-
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23453
|
-
templateNames?: string[];
|
|
23454
|
-
types?: MittwaldAPIV2.Components.Schemas.OrderOrderType[];
|
|
23455
|
-
limit?: number;
|
|
23456
|
-
skip?: number;
|
|
23457
|
-
page?: number;
|
|
23458
|
-
};
|
|
23459
|
-
}
|
|
23460
|
-
namespace Responses {
|
|
23461
|
-
namespace $200 {
|
|
23462
|
-
namespace Content {
|
|
23463
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23464
|
-
}
|
|
23465
|
-
}
|
|
23466
23456
|
namespace $429 {
|
|
23467
23457
|
namespace Content {
|
|
23468
23458
|
interface ApplicationJson {
|
|
@@ -23479,21 +23469,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23479
23469
|
}
|
|
23480
23470
|
}
|
|
23481
23471
|
}
|
|
23472
|
+
}
|
|
23473
|
+
namespace V2TariffChangePreviews {
|
|
23482
23474
|
namespace Post {
|
|
23483
23475
|
namespace Parameters {
|
|
23484
23476
|
type Path = {};
|
|
23485
23477
|
interface RequestBody {
|
|
23486
|
-
|
|
23487
|
-
|
|
23478
|
+
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange;
|
|
23479
|
+
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting";
|
|
23488
23480
|
}
|
|
23489
23481
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23490
23482
|
type Query = {};
|
|
23491
23483
|
}
|
|
23492
23484
|
namespace Responses {
|
|
23493
|
-
namespace $
|
|
23485
|
+
namespace $200 {
|
|
23494
23486
|
namespace Content {
|
|
23495
23487
|
interface ApplicationJson {
|
|
23496
|
-
|
|
23488
|
+
machineTypePrice: number;
|
|
23489
|
+
storagePrice: number;
|
|
23490
|
+
totalPrice: number;
|
|
23497
23491
|
}
|
|
23498
23492
|
}
|
|
23499
23493
|
}
|
|
@@ -23528,22 +23522,37 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23528
23522
|
}
|
|
23529
23523
|
}
|
|
23530
23524
|
}
|
|
23531
|
-
namespace
|
|
23532
|
-
|
|
23525
|
+
namespace V2Pageinsights { }
|
|
23526
|
+
namespace V2PageInsights {
|
|
23527
|
+
namespace Get {
|
|
23533
23528
|
namespace Parameters {
|
|
23534
23529
|
type Path = {};
|
|
23535
|
-
interface RequestBody {
|
|
23536
|
-
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange;
|
|
23537
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting";
|
|
23538
|
-
}
|
|
23539
23530
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23540
|
-
type Query = {
|
|
23531
|
+
type Query = {
|
|
23532
|
+
domain: string;
|
|
23533
|
+
path: string;
|
|
23534
|
+
date?: string;
|
|
23535
|
+
};
|
|
23541
23536
|
}
|
|
23542
23537
|
namespace Responses {
|
|
23543
|
-
namespace $
|
|
23538
|
+
namespace $200 {
|
|
23544
23539
|
namespace Content {
|
|
23545
23540
|
interface ApplicationJson {
|
|
23546
|
-
|
|
23541
|
+
createdAt?: string;
|
|
23542
|
+
domain: string;
|
|
23543
|
+
metrics?: {
|
|
23544
|
+
createdAt: string;
|
|
23545
|
+
name: string;
|
|
23546
|
+
score?: number;
|
|
23547
|
+
value: number;
|
|
23548
|
+
}[];
|
|
23549
|
+
moreDataAvailable?: string[];
|
|
23550
|
+
path: string;
|
|
23551
|
+
performanceScore: number;
|
|
23552
|
+
screenshot?: {
|
|
23553
|
+
createdAt: string;
|
|
23554
|
+
fileRef: string;
|
|
23555
|
+
};
|
|
23547
23556
|
}
|
|
23548
23557
|
}
|
|
23549
23558
|
}
|
|
@@ -23554,6 +23563,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23554
23563
|
}
|
|
23555
23564
|
}
|
|
23556
23565
|
}
|
|
23566
|
+
namespace $403 {
|
|
23567
|
+
namespace Content {
|
|
23568
|
+
interface ApplicationJson {
|
|
23569
|
+
[k: string]: unknown;
|
|
23570
|
+
}
|
|
23571
|
+
}
|
|
23572
|
+
}
|
|
23557
23573
|
namespace $429 {
|
|
23558
23574
|
namespace Content {
|
|
23559
23575
|
interface ApplicationJson {
|
|
@@ -23571,11 +23587,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23571
23587
|
}
|
|
23572
23588
|
}
|
|
23573
23589
|
}
|
|
23574
|
-
namespace
|
|
23590
|
+
namespace V2ProjectsProjectIdStracesStraceId {
|
|
23575
23591
|
namespace Get {
|
|
23576
23592
|
namespace Parameters {
|
|
23577
23593
|
type Path = {
|
|
23578
|
-
|
|
23594
|
+
straceId: string;
|
|
23595
|
+
projectId: string;
|
|
23579
23596
|
};
|
|
23580
23597
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23581
23598
|
type Query = {};
|
|
@@ -23583,48 +23600,27 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23583
23600
|
namespace Responses {
|
|
23584
23601
|
namespace $200 {
|
|
23585
23602
|
namespace Content {
|
|
23586
|
-
|
|
23603
|
+
interface ApplicationJson {
|
|
23604
|
+
executedAt: string;
|
|
23605
|
+
id: string;
|
|
23606
|
+
result: MittwaldAPIV2.Components.Schemas.StraceError | MittwaldAPIV2.Components.Schemas.StraceData;
|
|
23607
|
+
}
|
|
23587
23608
|
}
|
|
23588
23609
|
}
|
|
23589
|
-
namespace $
|
|
23610
|
+
namespace $400 {
|
|
23590
23611
|
namespace Content {
|
|
23591
23612
|
interface ApplicationJson {
|
|
23592
23613
|
[k: string]: unknown;
|
|
23593
23614
|
}
|
|
23594
23615
|
}
|
|
23595
23616
|
}
|
|
23596
|
-
namespace
|
|
23617
|
+
namespace $403 {
|
|
23597
23618
|
namespace Content {
|
|
23598
23619
|
interface ApplicationJson {
|
|
23599
23620
|
[k: string]: unknown;
|
|
23600
23621
|
}
|
|
23601
23622
|
}
|
|
23602
23623
|
}
|
|
23603
|
-
}
|
|
23604
|
-
}
|
|
23605
|
-
}
|
|
23606
|
-
namespace V2CustomersCustomerIdOrders {
|
|
23607
|
-
namespace Get {
|
|
23608
|
-
namespace Parameters {
|
|
23609
|
-
type Path = {
|
|
23610
|
-
customerId: string;
|
|
23611
|
-
};
|
|
23612
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23613
|
-
type Query = {
|
|
23614
|
-
limit?: number;
|
|
23615
|
-
skip?: number;
|
|
23616
|
-
page?: number;
|
|
23617
|
-
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23618
|
-
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23619
|
-
templateNames?: string[];
|
|
23620
|
-
};
|
|
23621
|
-
}
|
|
23622
|
-
namespace Responses {
|
|
23623
|
-
namespace $200 {
|
|
23624
|
-
namespace Content {
|
|
23625
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23626
|
-
}
|
|
23627
|
-
}
|
|
23628
23624
|
namespace $429 {
|
|
23629
23625
|
namespace Content {
|
|
23630
23626
|
interface ApplicationJson {
|
|
@@ -23642,263 +23638,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
23642
23638
|
}
|
|
23643
23639
|
}
|
|
23644
23640
|
}
|
|
23645
|
-
namespace
|
|
23646
|
-
|
|
23647
|
-
namespace Parameters {
|
|
23648
|
-
type Path = {
|
|
23649
|
-
projectId: string;
|
|
23650
|
-
};
|
|
23651
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23652
|
-
type Query = {
|
|
23653
|
-
limit?: number;
|
|
23654
|
-
skip?: number;
|
|
23655
|
-
page?: number;
|
|
23656
|
-
includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23657
|
-
excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
|
|
23658
|
-
templateNames?: string[];
|
|
23659
|
-
};
|
|
23660
|
-
}
|
|
23661
|
-
namespace Responses {
|
|
23662
|
-
namespace $200 {
|
|
23663
|
-
namespace Content {
|
|
23664
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[];
|
|
23665
|
-
}
|
|
23666
|
-
}
|
|
23667
|
-
namespace $429 {
|
|
23668
|
-
namespace Content {
|
|
23669
|
-
interface ApplicationJson {
|
|
23670
|
-
[k: string]: unknown;
|
|
23671
|
-
}
|
|
23672
|
-
}
|
|
23673
|
-
}
|
|
23674
|
-
namespace Default {
|
|
23675
|
-
namespace Content {
|
|
23676
|
-
interface ApplicationJson {
|
|
23677
|
-
[k: string]: unknown;
|
|
23678
|
-
}
|
|
23679
|
-
}
|
|
23680
|
-
}
|
|
23681
|
-
}
|
|
23682
|
-
}
|
|
23683
|
-
}
|
|
23684
|
-
namespace V2OrderPreviews {
|
|
23685
|
-
namespace Post {
|
|
23686
|
-
namespace Parameters {
|
|
23687
|
-
type Path = {};
|
|
23688
|
-
interface RequestBody {
|
|
23689
|
-
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;
|
|
23690
|
-
orderType?: "domain" | "projectHosting" | "server" | "externalCertificate" | "leadFyndr" | "mailArchive" | "aiHosting" | "license";
|
|
23691
|
-
}
|
|
23692
|
-
type Header = {};
|
|
23693
|
-
type Query = {};
|
|
23694
|
-
}
|
|
23695
|
-
namespace Responses {
|
|
23696
|
-
namespace $200 {
|
|
23697
|
-
namespace Content {
|
|
23698
|
-
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;
|
|
23699
|
-
}
|
|
23700
|
-
}
|
|
23701
|
-
namespace $400 {
|
|
23702
|
-
namespace Content {
|
|
23703
|
-
interface ApplicationJson {
|
|
23704
|
-
[k: string]: unknown;
|
|
23705
|
-
}
|
|
23706
|
-
}
|
|
23707
|
-
}
|
|
23708
|
-
namespace $422 {
|
|
23709
|
-
namespace Content {
|
|
23710
|
-
interface ApplicationJson {
|
|
23711
|
-
error?: {};
|
|
23712
|
-
}
|
|
23713
|
-
}
|
|
23714
|
-
}
|
|
23715
|
-
namespace $429 {
|
|
23716
|
-
namespace Content {
|
|
23717
|
-
interface ApplicationJson {
|
|
23718
|
-
[k: string]: unknown;
|
|
23719
|
-
}
|
|
23720
|
-
}
|
|
23721
|
-
}
|
|
23722
|
-
namespace Default {
|
|
23723
|
-
namespace Content {
|
|
23724
|
-
interface ApplicationJson {
|
|
23725
|
-
[k: string]: unknown;
|
|
23726
|
-
}
|
|
23727
|
-
}
|
|
23728
|
-
}
|
|
23729
|
-
}
|
|
23730
|
-
}
|
|
23731
|
-
}
|
|
23732
|
-
namespace V2TariffChangePreviews {
|
|
23733
|
-
namespace Post {
|
|
23734
|
-
namespace Parameters {
|
|
23735
|
-
type Path = {};
|
|
23736
|
-
interface RequestBody {
|
|
23737
|
-
tariffChangeData?: MittwaldAPIV2.Components.Schemas.OrderProjectHostingTariffChange | MittwaldAPIV2.Components.Schemas.OrderServerTariffChange | MittwaldAPIV2.Components.Schemas.OrderLeadFyndrTariffChange | MittwaldAPIV2.Components.Schemas.OrderAIHostingTariffChange;
|
|
23738
|
-
tariffChangeType?: "projectHosting" | "server" | "leadFyndr" | "aiHosting";
|
|
23739
|
-
}
|
|
23740
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23741
|
-
type Query = {};
|
|
23742
|
-
}
|
|
23743
|
-
namespace Responses {
|
|
23744
|
-
namespace $200 {
|
|
23745
|
-
namespace Content {
|
|
23746
|
-
interface ApplicationJson {
|
|
23747
|
-
machineTypePrice: number;
|
|
23748
|
-
storagePrice: number;
|
|
23749
|
-
totalPrice: number;
|
|
23750
|
-
}
|
|
23751
|
-
}
|
|
23752
|
-
}
|
|
23753
|
-
namespace $400 {
|
|
23754
|
-
namespace Content {
|
|
23755
|
-
interface ApplicationJson {
|
|
23756
|
-
[k: string]: unknown;
|
|
23757
|
-
}
|
|
23758
|
-
}
|
|
23759
|
-
}
|
|
23760
|
-
namespace $422 {
|
|
23761
|
-
namespace Content {
|
|
23762
|
-
interface ApplicationJson {
|
|
23763
|
-
error?: {};
|
|
23764
|
-
}
|
|
23765
|
-
}
|
|
23766
|
-
}
|
|
23767
|
-
namespace $429 {
|
|
23768
|
-
namespace Content {
|
|
23769
|
-
interface ApplicationJson {
|
|
23770
|
-
[k: string]: unknown;
|
|
23771
|
-
}
|
|
23772
|
-
}
|
|
23773
|
-
}
|
|
23774
|
-
namespace Default {
|
|
23775
|
-
namespace Content {
|
|
23776
|
-
interface ApplicationJson {
|
|
23777
|
-
[k: string]: unknown;
|
|
23778
|
-
}
|
|
23779
|
-
}
|
|
23780
|
-
}
|
|
23781
|
-
}
|
|
23782
|
-
}
|
|
23783
|
-
}
|
|
23784
|
-
namespace V2Pageinsights { }
|
|
23785
|
-
namespace V2PageInsights {
|
|
23786
|
-
namespace Get {
|
|
23787
|
-
namespace Parameters {
|
|
23788
|
-
type Path = {};
|
|
23789
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23790
|
-
type Query = {
|
|
23791
|
-
domain: string;
|
|
23792
|
-
path: string;
|
|
23793
|
-
date?: string;
|
|
23794
|
-
};
|
|
23795
|
-
}
|
|
23796
|
-
namespace Responses {
|
|
23797
|
-
namespace $200 {
|
|
23798
|
-
namespace Content {
|
|
23799
|
-
interface ApplicationJson {
|
|
23800
|
-
createdAt?: string;
|
|
23801
|
-
domain: string;
|
|
23802
|
-
metrics?: {
|
|
23803
|
-
createdAt: string;
|
|
23804
|
-
name: string;
|
|
23805
|
-
score?: number;
|
|
23806
|
-
value: number;
|
|
23807
|
-
}[];
|
|
23808
|
-
moreDataAvailable?: string[];
|
|
23809
|
-
path: string;
|
|
23810
|
-
performanceScore: number;
|
|
23811
|
-
screenshot?: {
|
|
23812
|
-
createdAt: string;
|
|
23813
|
-
fileRef: string;
|
|
23814
|
-
};
|
|
23815
|
-
}
|
|
23816
|
-
}
|
|
23817
|
-
}
|
|
23818
|
-
namespace $400 {
|
|
23819
|
-
namespace Content {
|
|
23820
|
-
interface ApplicationJson {
|
|
23821
|
-
[k: string]: unknown;
|
|
23822
|
-
}
|
|
23823
|
-
}
|
|
23824
|
-
}
|
|
23825
|
-
namespace $403 {
|
|
23826
|
-
namespace Content {
|
|
23827
|
-
interface ApplicationJson {
|
|
23828
|
-
[k: string]: unknown;
|
|
23829
|
-
}
|
|
23830
|
-
}
|
|
23831
|
-
}
|
|
23832
|
-
namespace $429 {
|
|
23833
|
-
namespace Content {
|
|
23834
|
-
interface ApplicationJson {
|
|
23835
|
-
[k: string]: unknown;
|
|
23836
|
-
}
|
|
23837
|
-
}
|
|
23838
|
-
}
|
|
23839
|
-
namespace Default {
|
|
23840
|
-
namespace Content {
|
|
23841
|
-
interface ApplicationJson {
|
|
23842
|
-
[k: string]: unknown;
|
|
23843
|
-
}
|
|
23844
|
-
}
|
|
23845
|
-
}
|
|
23846
|
-
}
|
|
23847
|
-
}
|
|
23848
|
-
}
|
|
23849
|
-
namespace V2ProjectsProjectIdStracesStraceId {
|
|
23850
|
-
namespace Get {
|
|
23851
|
-
namespace Parameters {
|
|
23852
|
-
type Path = {
|
|
23853
|
-
straceId: string;
|
|
23854
|
-
projectId: string;
|
|
23855
|
-
};
|
|
23856
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
23857
|
-
type Query = {};
|
|
23858
|
-
}
|
|
23859
|
-
namespace Responses {
|
|
23860
|
-
namespace $200 {
|
|
23861
|
-
namespace Content {
|
|
23862
|
-
interface ApplicationJson {
|
|
23863
|
-
executedAt: string;
|
|
23864
|
-
id: string;
|
|
23865
|
-
result: MittwaldAPIV2.Components.Schemas.StraceError | MittwaldAPIV2.Components.Schemas.StraceData;
|
|
23866
|
-
}
|
|
23867
|
-
}
|
|
23868
|
-
}
|
|
23869
|
-
namespace $400 {
|
|
23870
|
-
namespace Content {
|
|
23871
|
-
interface ApplicationJson {
|
|
23872
|
-
[k: string]: unknown;
|
|
23873
|
-
}
|
|
23874
|
-
}
|
|
23875
|
-
}
|
|
23876
|
-
namespace $403 {
|
|
23877
|
-
namespace Content {
|
|
23878
|
-
interface ApplicationJson {
|
|
23879
|
-
[k: string]: unknown;
|
|
23880
|
-
}
|
|
23881
|
-
}
|
|
23882
|
-
}
|
|
23883
|
-
namespace $429 {
|
|
23884
|
-
namespace Content {
|
|
23885
|
-
interface ApplicationJson {
|
|
23886
|
-
[k: string]: unknown;
|
|
23887
|
-
}
|
|
23888
|
-
}
|
|
23889
|
-
}
|
|
23890
|
-
namespace Default {
|
|
23891
|
-
namespace Content {
|
|
23892
|
-
interface ApplicationJson {
|
|
23893
|
-
[k: string]: unknown;
|
|
23894
|
-
}
|
|
23895
|
-
}
|
|
23896
|
-
}
|
|
23897
|
-
}
|
|
23898
|
-
}
|
|
23899
|
-
}
|
|
23900
|
-
namespace V2ProjectsProjectIdPageinsights { }
|
|
23901
|
-
namespace V2ProjectsProjectIdPageInsights {
|
|
23641
|
+
namespace V2ProjectsProjectIdPageinsights { }
|
|
23642
|
+
namespace V2ProjectsProjectIdPageInsights {
|
|
23902
23643
|
namespace Get {
|
|
23903
23644
|
namespace Parameters {
|
|
23904
23645
|
type Path = {
|
|
@@ -27299,7 +27040,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
27299
27040
|
*/
|
|
27300
27041
|
expires: string;
|
|
27301
27042
|
/**
|
|
27302
|
-
*
|
|
27043
|
+
* Refresh token to refresh your access token even after it has expired.
|
|
27044
|
+
*/
|
|
27045
|
+
refreshToken: string;
|
|
27046
|
+
/**
|
|
27047
|
+
* Public token to identify yourself against the api gateway.
|
|
27303
27048
|
*/
|
|
27304
27049
|
token: string;
|
|
27305
27050
|
}
|
|
@@ -29026,18 +28771,309 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29026
28771
|
}
|
|
29027
28772
|
}
|
|
29028
28773
|
}
|
|
29029
|
-
namespace Delete {
|
|
28774
|
+
namespace Delete {
|
|
28775
|
+
namespace Parameters {
|
|
28776
|
+
type Path = {
|
|
28777
|
+
userId: string;
|
|
28778
|
+
};
|
|
28779
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28780
|
+
type Query = {};
|
|
28781
|
+
}
|
|
28782
|
+
namespace Responses {
|
|
28783
|
+
namespace $204 {
|
|
28784
|
+
namespace Content {
|
|
28785
|
+
type Empty = unknown;
|
|
28786
|
+
}
|
|
28787
|
+
}
|
|
28788
|
+
namespace $400 {
|
|
28789
|
+
namespace Content {
|
|
28790
|
+
interface ApplicationJson {
|
|
28791
|
+
[k: string]: unknown;
|
|
28792
|
+
}
|
|
28793
|
+
}
|
|
28794
|
+
}
|
|
28795
|
+
namespace $429 {
|
|
28796
|
+
namespace Content {
|
|
28797
|
+
interface ApplicationJson {
|
|
28798
|
+
[k: string]: unknown;
|
|
28799
|
+
}
|
|
28800
|
+
}
|
|
28801
|
+
}
|
|
28802
|
+
namespace Default {
|
|
28803
|
+
namespace Content {
|
|
28804
|
+
interface ApplicationJson {
|
|
28805
|
+
[k: string]: unknown;
|
|
28806
|
+
}
|
|
28807
|
+
}
|
|
28808
|
+
}
|
|
28809
|
+
}
|
|
28810
|
+
}
|
|
28811
|
+
}
|
|
28812
|
+
namespace V2UsersSelfCredentialsEmailActionsResendEmail {
|
|
28813
|
+
namespace Post {
|
|
28814
|
+
namespace Parameters {
|
|
28815
|
+
type Path = {};
|
|
28816
|
+
interface RequestBody {
|
|
28817
|
+
email: string;
|
|
28818
|
+
userId: string;
|
|
28819
|
+
}
|
|
28820
|
+
type Header = {};
|
|
28821
|
+
type Query = {};
|
|
28822
|
+
}
|
|
28823
|
+
namespace Responses {
|
|
28824
|
+
namespace $204 {
|
|
28825
|
+
namespace Content {
|
|
28826
|
+
type Empty = unknown;
|
|
28827
|
+
}
|
|
28828
|
+
}
|
|
28829
|
+
namespace $400 {
|
|
28830
|
+
namespace Content {
|
|
28831
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
28832
|
+
}
|
|
28833
|
+
}
|
|
28834
|
+
namespace $429 {
|
|
28835
|
+
namespace Content {
|
|
28836
|
+
interface ApplicationJson {
|
|
28837
|
+
[k: string]: unknown;
|
|
28838
|
+
}
|
|
28839
|
+
}
|
|
28840
|
+
}
|
|
28841
|
+
namespace Default {
|
|
28842
|
+
namespace Content {
|
|
28843
|
+
interface ApplicationJson {
|
|
28844
|
+
[k: string]: unknown;
|
|
28845
|
+
}
|
|
28846
|
+
}
|
|
28847
|
+
}
|
|
28848
|
+
}
|
|
28849
|
+
}
|
|
28850
|
+
}
|
|
28851
|
+
namespace V2SignupMfaResetRecoverycodes { }
|
|
28852
|
+
namespace V2SignupSupportcode { }
|
|
28853
|
+
namespace V2SignupSupportcodes { }
|
|
28854
|
+
namespace V2UsersSelfCredentialsSupportCode {
|
|
28855
|
+
namespace Get {
|
|
28856
|
+
namespace Parameters {
|
|
28857
|
+
type Path = {};
|
|
28858
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28859
|
+
type Query = {
|
|
28860
|
+
forceRecreate?: boolean;
|
|
28861
|
+
};
|
|
28862
|
+
}
|
|
28863
|
+
namespace Responses {
|
|
28864
|
+
namespace $200 {
|
|
28865
|
+
namespace Content {
|
|
28866
|
+
interface ApplicationJson {
|
|
28867
|
+
/**
|
|
28868
|
+
* Expiration of the support code
|
|
28869
|
+
*/
|
|
28870
|
+
expiresAt: string;
|
|
28871
|
+
/**
|
|
28872
|
+
* support code to authenticate yourself against the mittwald support via telephone
|
|
28873
|
+
*/
|
|
28874
|
+
supportCode: string;
|
|
28875
|
+
}
|
|
28876
|
+
}
|
|
28877
|
+
}
|
|
28878
|
+
namespace $429 {
|
|
28879
|
+
namespace Content {
|
|
28880
|
+
interface ApplicationJson {
|
|
28881
|
+
[k: string]: unknown;
|
|
28882
|
+
}
|
|
28883
|
+
}
|
|
28884
|
+
}
|
|
28885
|
+
namespace Default {
|
|
28886
|
+
namespace Content {
|
|
28887
|
+
interface ApplicationJson {
|
|
28888
|
+
[k: string]: unknown;
|
|
28889
|
+
}
|
|
28890
|
+
}
|
|
28891
|
+
}
|
|
28892
|
+
}
|
|
28893
|
+
}
|
|
28894
|
+
}
|
|
28895
|
+
namespace V2UsersSelfCredentialsEmailActionsVerifyEmail {
|
|
28896
|
+
namespace Post {
|
|
28897
|
+
namespace Parameters {
|
|
28898
|
+
type Path = {};
|
|
28899
|
+
interface RequestBody {
|
|
28900
|
+
/**
|
|
28901
|
+
* The Email-Address to verify.
|
|
28902
|
+
*/
|
|
28903
|
+
email: string;
|
|
28904
|
+
/**
|
|
28905
|
+
* The token found in the verification email.
|
|
28906
|
+
*/
|
|
28907
|
+
token?: string;
|
|
28908
|
+
}
|
|
28909
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28910
|
+
type Query = {};
|
|
28911
|
+
}
|
|
28912
|
+
namespace Responses {
|
|
28913
|
+
namespace $204 {
|
|
28914
|
+
namespace Content {
|
|
28915
|
+
type Empty = unknown;
|
|
28916
|
+
}
|
|
28917
|
+
}
|
|
28918
|
+
namespace $400 {
|
|
28919
|
+
namespace Content {
|
|
28920
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
28921
|
+
}
|
|
28922
|
+
}
|
|
28923
|
+
namespace $404 {
|
|
28924
|
+
namespace Content {
|
|
28925
|
+
interface ApplicationJson {
|
|
28926
|
+
[k: string]: unknown;
|
|
28927
|
+
}
|
|
28928
|
+
}
|
|
28929
|
+
}
|
|
28930
|
+
namespace $429 {
|
|
28931
|
+
namespace Content {
|
|
28932
|
+
interface ApplicationJson {
|
|
28933
|
+
[k: string]: unknown;
|
|
28934
|
+
}
|
|
28935
|
+
}
|
|
28936
|
+
}
|
|
28937
|
+
namespace Default {
|
|
28938
|
+
namespace Content {
|
|
28939
|
+
interface ApplicationJson {
|
|
28940
|
+
[k: string]: unknown;
|
|
28941
|
+
}
|
|
28942
|
+
}
|
|
28943
|
+
}
|
|
28944
|
+
}
|
|
28945
|
+
}
|
|
28946
|
+
}
|
|
28947
|
+
namespace V2UsersUserIdPhoneVerify { }
|
|
28948
|
+
namespace V2UsersUserIdActionsVerifyPhone {
|
|
28949
|
+
namespace Post {
|
|
28950
|
+
namespace Parameters {
|
|
28951
|
+
type Path = {
|
|
28952
|
+
userId: string;
|
|
28953
|
+
};
|
|
28954
|
+
interface RequestBody {
|
|
28955
|
+
code: string;
|
|
28956
|
+
phoneNumber: string;
|
|
28957
|
+
}
|
|
28958
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
28959
|
+
type Query = {};
|
|
28960
|
+
}
|
|
28961
|
+
namespace Responses {
|
|
28962
|
+
namespace $204 {
|
|
28963
|
+
namespace Content {
|
|
28964
|
+
type Empty = unknown;
|
|
28965
|
+
}
|
|
28966
|
+
}
|
|
28967
|
+
namespace $400 {
|
|
28968
|
+
namespace Content {
|
|
28969
|
+
interface ApplicationJson {
|
|
28970
|
+
[k: string]: unknown;
|
|
28971
|
+
}
|
|
28972
|
+
}
|
|
28973
|
+
}
|
|
28974
|
+
namespace $404 {
|
|
28975
|
+
namespace Content {
|
|
28976
|
+
interface ApplicationJson {
|
|
28977
|
+
[k: string]: unknown;
|
|
28978
|
+
}
|
|
28979
|
+
}
|
|
28980
|
+
}
|
|
28981
|
+
namespace $409 {
|
|
28982
|
+
namespace Content {
|
|
28983
|
+
interface ApplicationJson {
|
|
28984
|
+
[k: string]: unknown;
|
|
28985
|
+
}
|
|
28986
|
+
}
|
|
28987
|
+
}
|
|
28988
|
+
namespace $429 {
|
|
28989
|
+
namespace Content {
|
|
28990
|
+
interface ApplicationJson {
|
|
28991
|
+
[k: string]: unknown;
|
|
28992
|
+
}
|
|
28993
|
+
}
|
|
28994
|
+
}
|
|
28995
|
+
namespace Default {
|
|
28996
|
+
namespace Content {
|
|
28997
|
+
interface ApplicationJson {
|
|
28998
|
+
[k: string]: unknown;
|
|
28999
|
+
}
|
|
29000
|
+
}
|
|
29001
|
+
}
|
|
29002
|
+
}
|
|
29003
|
+
}
|
|
29004
|
+
}
|
|
29005
|
+
namespace V2SignupRegistrationVerification { }
|
|
29006
|
+
namespace V2VerifyRegistration {
|
|
29007
|
+
namespace Post {
|
|
29008
|
+
namespace Parameters {
|
|
29009
|
+
type Path = {};
|
|
29010
|
+
interface RequestBody {
|
|
29011
|
+
/**
|
|
29012
|
+
* The users email address.
|
|
29013
|
+
*/
|
|
29014
|
+
email: string;
|
|
29015
|
+
/**
|
|
29016
|
+
* The token that was send to your email address
|
|
29017
|
+
*/
|
|
29018
|
+
token: string;
|
|
29019
|
+
/**
|
|
29020
|
+
* UUID of the registered user.
|
|
29021
|
+
*/
|
|
29022
|
+
userId: string;
|
|
29023
|
+
}
|
|
29024
|
+
type Header = {};
|
|
29025
|
+
type Query = {};
|
|
29026
|
+
}
|
|
29027
|
+
namespace Responses {
|
|
29028
|
+
namespace $200 {
|
|
29029
|
+
namespace Content {
|
|
29030
|
+
interface ApplicationJson {
|
|
29031
|
+
}
|
|
29032
|
+
}
|
|
29033
|
+
}
|
|
29034
|
+
namespace $400 {
|
|
29035
|
+
namespace Content {
|
|
29036
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
29037
|
+
}
|
|
29038
|
+
}
|
|
29039
|
+
namespace $404 {
|
|
29040
|
+
namespace Content {
|
|
29041
|
+
interface ApplicationJson {
|
|
29042
|
+
[k: string]: unknown;
|
|
29043
|
+
}
|
|
29044
|
+
}
|
|
29045
|
+
}
|
|
29046
|
+
namespace $429 {
|
|
29047
|
+
namespace Content {
|
|
29048
|
+
interface ApplicationJson {
|
|
29049
|
+
[k: string]: unknown;
|
|
29050
|
+
}
|
|
29051
|
+
}
|
|
29052
|
+
}
|
|
29053
|
+
namespace Default {
|
|
29054
|
+
namespace Content {
|
|
29055
|
+
interface ApplicationJson {
|
|
29056
|
+
[k: string]: unknown;
|
|
29057
|
+
}
|
|
29058
|
+
}
|
|
29059
|
+
}
|
|
29060
|
+
}
|
|
29061
|
+
}
|
|
29062
|
+
}
|
|
29063
|
+
namespace V2ActionsDetectPhishingEmail {
|
|
29064
|
+
namespace Post {
|
|
29030
29065
|
namespace Parameters {
|
|
29031
|
-
type Path = {
|
|
29032
|
-
|
|
29033
|
-
|
|
29034
|
-
|
|
29066
|
+
type Path = {};
|
|
29067
|
+
interface RequestBody {
|
|
29068
|
+
[k: string]: unknown;
|
|
29069
|
+
}
|
|
29070
|
+
type Header = {};
|
|
29035
29071
|
type Query = {};
|
|
29036
29072
|
}
|
|
29037
29073
|
namespace Responses {
|
|
29038
|
-
namespace $
|
|
29074
|
+
namespace $200 {
|
|
29039
29075
|
namespace Content {
|
|
29040
|
-
type
|
|
29076
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.VerificationEmailDetectPhishingMailResponse;
|
|
29041
29077
|
}
|
|
29042
29078
|
}
|
|
29043
29079
|
namespace $400 {
|
|
@@ -29064,26 +29100,36 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29064
29100
|
}
|
|
29065
29101
|
}
|
|
29066
29102
|
}
|
|
29067
|
-
namespace
|
|
29103
|
+
namespace V2ActionsVerifyAddress {
|
|
29068
29104
|
namespace Post {
|
|
29069
29105
|
namespace Parameters {
|
|
29070
29106
|
type Path = {};
|
|
29071
29107
|
interface RequestBody {
|
|
29072
|
-
|
|
29073
|
-
|
|
29108
|
+
city: string;
|
|
29109
|
+
/**
|
|
29110
|
+
* Accepts the whole english or german name as well as the ISO 3166-2 country codes.
|
|
29111
|
+
*/
|
|
29112
|
+
country: string;
|
|
29113
|
+
/**
|
|
29114
|
+
* Includes the house number.
|
|
29115
|
+
*/
|
|
29116
|
+
street: string;
|
|
29117
|
+
zip: string;
|
|
29074
29118
|
}
|
|
29075
29119
|
type Header = {};
|
|
29076
29120
|
type Query = {};
|
|
29077
29121
|
}
|
|
29078
29122
|
namespace Responses {
|
|
29079
|
-
namespace $
|
|
29123
|
+
namespace $200 {
|
|
29080
29124
|
namespace Content {
|
|
29081
|
-
type
|
|
29125
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.VerificationVerifyAddressResponse;
|
|
29082
29126
|
}
|
|
29083
29127
|
}
|
|
29084
29128
|
namespace $400 {
|
|
29085
29129
|
namespace Content {
|
|
29086
|
-
|
|
29130
|
+
interface ApplicationJson {
|
|
29131
|
+
[k: string]: unknown;
|
|
29132
|
+
}
|
|
29087
29133
|
}
|
|
29088
29134
|
}
|
|
29089
29135
|
namespace $429 {
|
|
@@ -29103,33 +29149,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29103
29149
|
}
|
|
29104
29150
|
}
|
|
29105
29151
|
}
|
|
29106
|
-
namespace
|
|
29107
|
-
|
|
29108
|
-
namespace V2SignupSupportcodes { }
|
|
29109
|
-
namespace V2UsersSelfCredentialsSupportCode {
|
|
29110
|
-
namespace Get {
|
|
29152
|
+
namespace V2ActionsVerifyCompany {
|
|
29153
|
+
namespace Post {
|
|
29111
29154
|
namespace Parameters {
|
|
29112
29155
|
type Path = {};
|
|
29156
|
+
interface RequestBody {
|
|
29157
|
+
name: string;
|
|
29158
|
+
}
|
|
29113
29159
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29114
|
-
type Query = {
|
|
29115
|
-
forceRecreate?: boolean;
|
|
29116
|
-
};
|
|
29160
|
+
type Query = {};
|
|
29117
29161
|
}
|
|
29118
29162
|
namespace Responses {
|
|
29119
29163
|
namespace $200 {
|
|
29120
29164
|
namespace Content {
|
|
29121
29165
|
interface ApplicationJson {
|
|
29122
|
-
|
|
29123
|
-
* Expiration of the support code
|
|
29124
|
-
*/
|
|
29125
|
-
expiresAt: string;
|
|
29126
|
-
/**
|
|
29127
|
-
* support code to authenticate yourself against the mittwald support via telephone
|
|
29128
|
-
*/
|
|
29129
|
-
supportCode: string;
|
|
29166
|
+
exists: boolean;
|
|
29130
29167
|
}
|
|
29131
29168
|
}
|
|
29132
29169
|
}
|
|
29170
|
+
namespace $412 {
|
|
29171
|
+
namespace Content {
|
|
29172
|
+
type Empty = unknown;
|
|
29173
|
+
}
|
|
29174
|
+
}
|
|
29133
29175
|
namespace $429 {
|
|
29134
29176
|
namespace Content {
|
|
29135
29177
|
interface ApplicationJson {
|
|
@@ -29147,35 +29189,29 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29147
29189
|
}
|
|
29148
29190
|
}
|
|
29149
29191
|
}
|
|
29150
|
-
namespace
|
|
29151
|
-
namespace
|
|
29192
|
+
namespace V2LicensesLicenseId {
|
|
29193
|
+
namespace Get {
|
|
29152
29194
|
namespace Parameters {
|
|
29153
|
-
type Path = {
|
|
29154
|
-
|
|
29155
|
-
|
|
29156
|
-
* The Email-Address to verify.
|
|
29157
|
-
*/
|
|
29158
|
-
email: string;
|
|
29159
|
-
/**
|
|
29160
|
-
* The token found in the verification email.
|
|
29161
|
-
*/
|
|
29162
|
-
token?: string;
|
|
29163
|
-
}
|
|
29195
|
+
type Path = {
|
|
29196
|
+
licenseId: string;
|
|
29197
|
+
};
|
|
29164
29198
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29165
29199
|
type Query = {};
|
|
29166
29200
|
}
|
|
29167
29201
|
namespace Responses {
|
|
29168
|
-
namespace $
|
|
29202
|
+
namespace $200 {
|
|
29169
29203
|
namespace Content {
|
|
29170
|
-
type
|
|
29204
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseLicense;
|
|
29171
29205
|
}
|
|
29172
29206
|
}
|
|
29173
29207
|
namespace $400 {
|
|
29174
29208
|
namespace Content {
|
|
29175
|
-
|
|
29209
|
+
interface ApplicationJson {
|
|
29210
|
+
[k: string]: unknown;
|
|
29211
|
+
}
|
|
29176
29212
|
}
|
|
29177
29213
|
}
|
|
29178
|
-
namespace $
|
|
29214
|
+
namespace $403 {
|
|
29179
29215
|
namespace Content {
|
|
29180
29216
|
interface ApplicationJson {
|
|
29181
29217
|
[k: string]: unknown;
|
|
@@ -29189,6 +29225,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29189
29225
|
}
|
|
29190
29226
|
}
|
|
29191
29227
|
}
|
|
29228
|
+
namespace $500 {
|
|
29229
|
+
namespace Content {
|
|
29230
|
+
interface ApplicationJson {
|
|
29231
|
+
[k: string]: unknown;
|
|
29232
|
+
}
|
|
29233
|
+
}
|
|
29234
|
+
}
|
|
29192
29235
|
namespace Default {
|
|
29193
29236
|
namespace Content {
|
|
29194
29237
|
interface ApplicationJson {
|
|
@@ -29199,24 +29242,23 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29199
29242
|
}
|
|
29200
29243
|
}
|
|
29201
29244
|
}
|
|
29202
|
-
namespace
|
|
29203
|
-
|
|
29204
|
-
namespace Post {
|
|
29245
|
+
namespace V2ProjectsProjectIdLicenses {
|
|
29246
|
+
namespace Get {
|
|
29205
29247
|
namespace Parameters {
|
|
29206
29248
|
type Path = {
|
|
29207
|
-
|
|
29249
|
+
projectId: string;
|
|
29208
29250
|
};
|
|
29209
|
-
interface RequestBody {
|
|
29210
|
-
code: string;
|
|
29211
|
-
phoneNumber: string;
|
|
29212
|
-
}
|
|
29213
29251
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29214
|
-
type Query = {
|
|
29252
|
+
type Query = {
|
|
29253
|
+
limit?: number;
|
|
29254
|
+
skip?: number;
|
|
29255
|
+
page?: number;
|
|
29256
|
+
};
|
|
29215
29257
|
}
|
|
29216
29258
|
namespace Responses {
|
|
29217
|
-
namespace $
|
|
29259
|
+
namespace $200 {
|
|
29218
29260
|
namespace Content {
|
|
29219
|
-
type
|
|
29261
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseLicense[];
|
|
29220
29262
|
}
|
|
29221
29263
|
}
|
|
29222
29264
|
namespace $400 {
|
|
@@ -29226,21 +29268,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29226
29268
|
}
|
|
29227
29269
|
}
|
|
29228
29270
|
}
|
|
29229
|
-
namespace $
|
|
29271
|
+
namespace $403 {
|
|
29230
29272
|
namespace Content {
|
|
29231
29273
|
interface ApplicationJson {
|
|
29232
29274
|
[k: string]: unknown;
|
|
29233
29275
|
}
|
|
29234
29276
|
}
|
|
29235
29277
|
}
|
|
29236
|
-
namespace $
|
|
29278
|
+
namespace $429 {
|
|
29237
29279
|
namespace Content {
|
|
29238
29280
|
interface ApplicationJson {
|
|
29239
29281
|
[k: string]: unknown;
|
|
29240
29282
|
}
|
|
29241
29283
|
}
|
|
29242
29284
|
}
|
|
29243
|
-
namespace $
|
|
29285
|
+
namespace $500 {
|
|
29244
29286
|
namespace Content {
|
|
29245
29287
|
interface ApplicationJson {
|
|
29246
29288
|
[k: string]: unknown;
|
|
@@ -29257,88 +29299,63 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29257
29299
|
}
|
|
29258
29300
|
}
|
|
29259
29301
|
}
|
|
29260
|
-
namespace
|
|
29261
|
-
namespace V2VerifyRegistration {
|
|
29302
|
+
namespace V2LicensesLicenseIdActionsRotateKey {
|
|
29262
29303
|
namespace Post {
|
|
29263
29304
|
namespace Parameters {
|
|
29264
|
-
type Path = {
|
|
29305
|
+
type Path = {
|
|
29306
|
+
licenseId: string;
|
|
29307
|
+
};
|
|
29308
|
+
/**
|
|
29309
|
+
* Optional reference to a file containing the new key if it was not procured via mittwald.
|
|
29310
|
+
*/
|
|
29265
29311
|
interface RequestBody {
|
|
29266
|
-
|
|
29267
|
-
* The users email address.
|
|
29268
|
-
*/
|
|
29269
|
-
email: string;
|
|
29270
|
-
/**
|
|
29271
|
-
* The token that was send to your email address
|
|
29272
|
-
*/
|
|
29273
|
-
token: string;
|
|
29274
|
-
/**
|
|
29275
|
-
* UUID of the registered user.
|
|
29276
|
-
*/
|
|
29277
|
-
userId: string;
|
|
29312
|
+
externalKey?: string;
|
|
29278
29313
|
}
|
|
29279
|
-
type Header = {};
|
|
29314
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29280
29315
|
type Query = {};
|
|
29281
29316
|
}
|
|
29282
29317
|
namespace Responses {
|
|
29283
29318
|
namespace $200 {
|
|
29284
29319
|
namespace Content {
|
|
29285
|
-
|
|
29286
|
-
}
|
|
29320
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.LicenseKeyResponse;
|
|
29287
29321
|
}
|
|
29288
29322
|
}
|
|
29289
29323
|
namespace $400 {
|
|
29290
|
-
namespace Content {
|
|
29291
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
|
|
29292
|
-
}
|
|
29293
|
-
}
|
|
29294
|
-
namespace $404 {
|
|
29295
29324
|
namespace Content {
|
|
29296
29325
|
interface ApplicationJson {
|
|
29297
29326
|
[k: string]: unknown;
|
|
29298
29327
|
}
|
|
29299
29328
|
}
|
|
29300
29329
|
}
|
|
29301
|
-
namespace $
|
|
29330
|
+
namespace $403 {
|
|
29302
29331
|
namespace Content {
|
|
29303
29332
|
interface ApplicationJson {
|
|
29304
29333
|
[k: string]: unknown;
|
|
29305
29334
|
}
|
|
29306
29335
|
}
|
|
29307
29336
|
}
|
|
29308
|
-
namespace
|
|
29337
|
+
namespace $404 {
|
|
29309
29338
|
namespace Content {
|
|
29310
29339
|
interface ApplicationJson {
|
|
29311
29340
|
[k: string]: unknown;
|
|
29312
29341
|
}
|
|
29313
29342
|
}
|
|
29314
29343
|
}
|
|
29315
|
-
|
|
29316
|
-
}
|
|
29317
|
-
}
|
|
29318
|
-
namespace V2ActionsDetectPhishingEmail {
|
|
29319
|
-
namespace Post {
|
|
29320
|
-
namespace Parameters {
|
|
29321
|
-
type Path = {};
|
|
29322
|
-
interface RequestBody {
|
|
29323
|
-
[k: string]: unknown;
|
|
29324
|
-
}
|
|
29325
|
-
type Header = {};
|
|
29326
|
-
type Query = {};
|
|
29327
|
-
}
|
|
29328
|
-
namespace Responses {
|
|
29329
|
-
namespace $200 {
|
|
29344
|
+
namespace $412 {
|
|
29330
29345
|
namespace Content {
|
|
29331
|
-
|
|
29346
|
+
interface ApplicationJson {
|
|
29347
|
+
[k: string]: unknown;
|
|
29348
|
+
}
|
|
29332
29349
|
}
|
|
29333
29350
|
}
|
|
29334
|
-
namespace $
|
|
29351
|
+
namespace $429 {
|
|
29335
29352
|
namespace Content {
|
|
29336
29353
|
interface ApplicationJson {
|
|
29337
29354
|
[k: string]: unknown;
|
|
29338
29355
|
}
|
|
29339
29356
|
}
|
|
29340
29357
|
}
|
|
29341
|
-
namespace $
|
|
29358
|
+
namespace $500 {
|
|
29342
29359
|
namespace Content {
|
|
29343
29360
|
interface ApplicationJson {
|
|
29344
29361
|
[k: string]: unknown;
|
|
@@ -29355,29 +29372,28 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29355
29372
|
}
|
|
29356
29373
|
}
|
|
29357
29374
|
}
|
|
29358
|
-
namespace
|
|
29375
|
+
namespace V2ProjectsProjectIdActionsValidateLicenseKey {
|
|
29359
29376
|
namespace Post {
|
|
29360
29377
|
namespace Parameters {
|
|
29361
|
-
type Path = {
|
|
29378
|
+
type Path = {
|
|
29379
|
+
projectId: string;
|
|
29380
|
+
};
|
|
29381
|
+
/**
|
|
29382
|
+
* The License key to validate.
|
|
29383
|
+
*/
|
|
29362
29384
|
interface RequestBody {
|
|
29363
|
-
|
|
29364
|
-
|
|
29365
|
-
* Accepts the whole english or german name as well as the ISO 3166-2 country codes.
|
|
29366
|
-
*/
|
|
29367
|
-
country: string;
|
|
29368
|
-
/**
|
|
29369
|
-
* Includes the house number.
|
|
29370
|
-
*/
|
|
29371
|
-
street: string;
|
|
29372
|
-
zip: string;
|
|
29385
|
+
key: string;
|
|
29386
|
+
kind: MittwaldAPIV2.Components.Schemas.LicenseKind;
|
|
29373
29387
|
}
|
|
29374
|
-
type Header = {};
|
|
29388
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29375
29389
|
type Query = {};
|
|
29376
29390
|
}
|
|
29377
29391
|
namespace Responses {
|
|
29378
29392
|
namespace $200 {
|
|
29379
29393
|
namespace Content {
|
|
29380
|
-
|
|
29394
|
+
interface ApplicationJson {
|
|
29395
|
+
valid: boolean;
|
|
29396
|
+
}
|
|
29381
29397
|
}
|
|
29382
29398
|
}
|
|
29383
29399
|
namespace $400 {
|
|
@@ -29387,47 +29403,35 @@ export declare namespace MittwaldAPIV2 {
|
|
|
29387
29403
|
}
|
|
29388
29404
|
}
|
|
29389
29405
|
}
|
|
29390
|
-
namespace $
|
|
29406
|
+
namespace $403 {
|
|
29391
29407
|
namespace Content {
|
|
29392
29408
|
interface ApplicationJson {
|
|
29393
29409
|
[k: string]: unknown;
|
|
29394
29410
|
}
|
|
29395
29411
|
}
|
|
29396
29412
|
}
|
|
29397
|
-
namespace
|
|
29413
|
+
namespace $404 {
|
|
29398
29414
|
namespace Content {
|
|
29399
29415
|
interface ApplicationJson {
|
|
29400
29416
|
[k: string]: unknown;
|
|
29401
29417
|
}
|
|
29402
29418
|
}
|
|
29403
29419
|
}
|
|
29404
|
-
|
|
29405
|
-
}
|
|
29406
|
-
}
|
|
29407
|
-
namespace V2ActionsVerifyCompany {
|
|
29408
|
-
namespace Post {
|
|
29409
|
-
namespace Parameters {
|
|
29410
|
-
type Path = {};
|
|
29411
|
-
interface RequestBody {
|
|
29412
|
-
name: string;
|
|
29413
|
-
}
|
|
29414
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
29415
|
-
type Query = {};
|
|
29416
|
-
}
|
|
29417
|
-
namespace Responses {
|
|
29418
|
-
namespace $200 {
|
|
29420
|
+
namespace $412 {
|
|
29419
29421
|
namespace Content {
|
|
29420
29422
|
interface ApplicationJson {
|
|
29421
|
-
|
|
29423
|
+
[k: string]: unknown;
|
|
29422
29424
|
}
|
|
29423
29425
|
}
|
|
29424
29426
|
}
|
|
29425
|
-
namespace $
|
|
29427
|
+
namespace $429 {
|
|
29426
29428
|
namespace Content {
|
|
29427
|
-
|
|
29429
|
+
interface ApplicationJson {
|
|
29430
|
+
[k: string]: unknown;
|
|
29431
|
+
}
|
|
29428
29432
|
}
|
|
29429
29433
|
}
|
|
29430
|
-
namespace $
|
|
29434
|
+
namespace $500 {
|
|
29431
29435
|
namespace Content {
|
|
29432
29436
|
interface ApplicationJson {
|
|
29433
29437
|
[k: string]: unknown;
|