@mittwald/api-client 4.76.0 → 4.78.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.
@@ -1114,6 +1114,22 @@ export declare namespace MittwaldAPIV2 {
1114
1114
  type RequestData = InferredRequestData<typeof descriptors.sslListCertificates>;
1115
1115
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.sslListCertificates, TStatus>;
1116
1116
  }
1117
+ namespace StoragespaceGetProjectStatistics {
1118
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceGetProjectStatistics>;
1119
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetProjectStatistics, TStatus>;
1120
+ }
1121
+ namespace StoragespaceGetServerStatistics {
1122
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceGetServerStatistics>;
1123
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetServerStatistics, TStatus>;
1124
+ }
1125
+ namespace StoragespaceReplaceProjectNotificationThreshold {
1126
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold>;
1127
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold, TStatus>;
1128
+ }
1129
+ namespace StoragespaceReplaceServerNotificationThreshold {
1130
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceServerNotificationThreshold>;
1131
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceServerNotificationThreshold, TStatus>;
1132
+ }
1117
1133
  namespace UserAddPhoneNumber {
1118
1134
  type RequestData = InferredRequestData<typeof descriptors.userAddPhoneNumber>;
1119
1135
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userAddPhoneNumber, TStatus>;
@@ -1338,22 +1354,6 @@ export declare namespace MittwaldAPIV2 {
1338
1354
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1339
1355
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1340
1356
  }
1341
- namespace StoragespaceReplaceProjectNotificationThreshold {
1342
- type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold>;
1343
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold, TStatus>;
1344
- }
1345
- namespace StoragespaceGetServerStatistics {
1346
- type RequestData = InferredRequestData<typeof descriptors.storagespaceGetServerStatistics>;
1347
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetServerStatistics, TStatus>;
1348
- }
1349
- namespace StoragespaceReplaceServerNotificationThreshold {
1350
- type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceServerNotificationThreshold>;
1351
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceServerNotificationThreshold, TStatus>;
1352
- }
1353
- namespace StoragespaceGetProjectStatistics {
1354
- type RequestData = InferredRequestData<typeof descriptors.storagespaceGetProjectStatistics>;
1355
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetProjectStatistics, TStatus>;
1356
- }
1357
1357
  }
1358
1358
  namespace Components {
1359
1359
  namespace Schemas {
@@ -3744,6 +3744,44 @@ export declare namespace MittwaldAPIV2 {
3744
3744
  organizationalUnit?: string;
3745
3745
  state?: string;
3746
3746
  }
3747
+ type StoragespaceStatisticsCategoryKind = "webspace" | "projectBackup" | "mailAddress" | "mysqlDatabase" | "redisDatabase" | "containerVolume";
3748
+ interface StoragespaceStatisticsCategory {
3749
+ kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategoryKind;
3750
+ resources?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsResource[];
3751
+ totalUsageInBytes: number;
3752
+ }
3753
+ type StoragespaceStatisticsKind = "server" | "project";
3754
+ interface StoragespaceStatisticsMeta {
3755
+ isExceeding?: boolean;
3756
+ limitInBytes?: number;
3757
+ /**
3758
+ * If true, set notification threshold is used as limit for meta calculations. E.g. for projects with a parent server.
3759
+ */
3760
+ notificationThresholdUsedAsLimit?: boolean;
3761
+ totalExceedanceInBytes?: number;
3762
+ totalExceedanceInBytesSetAt?: string;
3763
+ totalFreeInBytes?: number;
3764
+ totalFreeInPercentage?: number;
3765
+ totalUsageInBytes: number;
3766
+ totalUsageInPercentage?: number;
3767
+ }
3768
+ interface StoragespaceStatisticsResource {
3769
+ description?: string;
3770
+ id: string;
3771
+ name: string;
3772
+ usageInBytes: number;
3773
+ usageInBytesSetAt: string;
3774
+ }
3775
+ interface StoragespaceStatistics {
3776
+ childStatistics?: MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[];
3777
+ description?: string;
3778
+ id: string;
3779
+ kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
3780
+ meta: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
3781
+ name: string;
3782
+ notificationThresholdInBytes?: number;
3783
+ statisticCategories?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[];
3784
+ }
3747
3785
  interface SignupAccount {
3748
3786
  email?: string;
3749
3787
  /**
@@ -3972,44 +4010,6 @@ export declare namespace MittwaldAPIV2 {
3972
4010
  name: string;
3973
4011
  value: string;
3974
4012
  }
3975
- interface StoragespaceStatisticsMeta {
3976
- isExceeding?: boolean;
3977
- limitInBytes?: number;
3978
- /**
3979
- * If true, set notification threshold is used as limit for meta calculations. E.g. for projects with a parent server.
3980
- */
3981
- notificationThresholdUsedAsLimit?: boolean;
3982
- totalExceedanceInBytes?: number;
3983
- totalExceedanceInBytesSetAt?: string;
3984
- totalFreeInBytes?: number;
3985
- totalFreeInPercentage?: number;
3986
- totalUsageInBytes: number;
3987
- totalUsageInPercentage?: number;
3988
- }
3989
- type StoragespaceStatisticsCategoryKind = "webspace" | "projectBackup" | "mailAddress" | "mysqlDatabase" | "redisDatabase" | "containerVolume";
3990
- interface StoragespaceStatisticsCategory {
3991
- kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategoryKind;
3992
- resources?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsResource[];
3993
- totalUsageInBytes: number;
3994
- }
3995
- interface StoragespaceStatisticsResource {
3996
- description?: string;
3997
- id: string;
3998
- name: string;
3999
- usageInBytes: number;
4000
- usageInBytesSetAt: string;
4001
- }
4002
- type StoragespaceStatisticsKind = "server" | "project";
4003
- interface StoragespaceStatistics {
4004
- childStatistics?: MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[];
4005
- description?: string;
4006
- id: string;
4007
- kind: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
4008
- meta: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
4009
- name: string;
4010
- notificationThresholdInBytes?: number;
4011
- statisticCategories?: MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[];
4012
- }
4013
4013
  interface CommonsAddress {
4014
4014
  street: string;
4015
4015
  houseNumber: string;
@@ -10847,6 +10847,13 @@ export declare namespace MittwaldAPIV2 {
10847
10847
  }
10848
10848
  }
10849
10849
  }
10850
+ namespace $412 {
10851
+ namespace Content {
10852
+ interface ApplicationJson {
10853
+ [k: string]: unknown;
10854
+ }
10855
+ }
10856
+ }
10850
10857
  namespace $429 {
10851
10858
  namespace Content {
10852
10859
  interface ApplicationJson {
@@ -11006,6 +11013,13 @@ export declare namespace MittwaldAPIV2 {
11006
11013
  }
11007
11014
  }
11008
11015
  }
11016
+ namespace $412 {
11017
+ namespace Content {
11018
+ interface ApplicationJson {
11019
+ [k: string]: unknown;
11020
+ }
11021
+ }
11022
+ }
11009
11023
  namespace $429 {
11010
11024
  namespace Content {
11011
11025
  interface ApplicationJson {
@@ -17713,22 +17727,19 @@ export declare namespace MittwaldAPIV2 {
17713
17727
  }
17714
17728
  }
17715
17729
  }
17716
- namespace V2UsersUserIdPhone {
17717
- namespace Post {
17730
+ namespace V2ProjectsProjectIdStorageSpaceStatistics {
17731
+ namespace Get {
17718
17732
  namespace Parameters {
17719
17733
  type Path = {
17720
- userId: string;
17734
+ projectId: string;
17721
17735
  };
17722
- interface RequestBody {
17723
- phoneNumber: string;
17724
- }
17725
17736
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17726
17737
  type Query = {};
17727
17738
  }
17728
17739
  namespace Responses {
17729
- namespace $204 {
17740
+ namespace $200 {
17730
17741
  namespace Content {
17731
- type Empty = unknown;
17742
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
17732
17743
  }
17733
17744
  }
17734
17745
  namespace $400 {
@@ -17738,7 +17749,14 @@ export declare namespace MittwaldAPIV2 {
17738
17749
  }
17739
17750
  }
17740
17751
  }
17741
- namespace $409 {
17752
+ namespace $403 {
17753
+ namespace Content {
17754
+ interface ApplicationJson {
17755
+ [k: string]: unknown;
17756
+ }
17757
+ }
17758
+ }
17759
+ namespace $404 {
17742
17760
  namespace Content {
17743
17761
  interface ApplicationJson {
17744
17762
  [k: string]: unknown;
@@ -17752,6 +17770,13 @@ export declare namespace MittwaldAPIV2 {
17752
17770
  }
17753
17771
  }
17754
17772
  }
17773
+ namespace $500 {
17774
+ namespace Content {
17775
+ interface ApplicationJson {
17776
+ [k: string]: unknown;
17777
+ }
17778
+ }
17779
+ }
17755
17780
  namespace Default {
17756
17781
  namespace Content {
17757
17782
  interface ApplicationJson {
@@ -17761,18 +17786,20 @@ export declare namespace MittwaldAPIV2 {
17761
17786
  }
17762
17787
  }
17763
17788
  }
17764
- namespace Delete {
17789
+ }
17790
+ namespace V2ServersServerIdStorageSpaceStatistics {
17791
+ namespace Get {
17765
17792
  namespace Parameters {
17766
17793
  type Path = {
17767
- userId: string;
17794
+ serverId: string;
17768
17795
  };
17769
17796
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17770
17797
  type Query = {};
17771
17798
  }
17772
17799
  namespace Responses {
17773
- namespace $204 {
17800
+ namespace $200 {
17774
17801
  namespace Content {
17775
- type Empty = unknown;
17802
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
17776
17803
  }
17777
17804
  }
17778
17805
  namespace $400 {
@@ -17782,7 +17809,14 @@ export declare namespace MittwaldAPIV2 {
17782
17809
  }
17783
17810
  }
17784
17811
  }
17785
- namespace $412 {
17812
+ namespace $403 {
17813
+ namespace Content {
17814
+ interface ApplicationJson {
17815
+ [k: string]: unknown;
17816
+ }
17817
+ }
17818
+ }
17819
+ namespace $404 {
17786
17820
  namespace Content {
17787
17821
  interface ApplicationJson {
17788
17822
  [k: string]: unknown;
@@ -17796,6 +17830,13 @@ export declare namespace MittwaldAPIV2 {
17796
17830
  }
17797
17831
  }
17798
17832
  }
17833
+ namespace $500 {
17834
+ namespace Content {
17835
+ interface ApplicationJson {
17836
+ [k: string]: unknown;
17837
+ }
17838
+ }
17839
+ }
17799
17840
  namespace Default {
17800
17841
  namespace Content {
17801
17842
  interface ApplicationJson {
@@ -17806,60 +17847,39 @@ export declare namespace MittwaldAPIV2 {
17806
17847
  }
17807
17848
  }
17808
17849
  }
17809
- namespace V2SignupAuthenticationMfa { }
17810
- namespace V2AuthenticateMfa {
17811
- namespace Post {
17850
+ namespace V2ProjectsProjectIdStorageSpaceNotificationThreshold {
17851
+ namespace Put {
17812
17852
  namespace Parameters {
17813
- type Path = {};
17853
+ type Path = {
17854
+ projectId: string;
17855
+ };
17814
17856
  interface RequestBody {
17815
- /**
17816
- * The email of the user.
17817
- */
17818
- email: string;
17819
- /**
17820
- * The second factor - otp code or recovery code.
17821
- */
17822
- multiFactorCode: string;
17823
- /**
17824
- * The password of the user.
17825
- */
17826
- password: string;
17857
+ notificationThresholdInBytes?: number;
17827
17858
  }
17828
- type Header = {};
17859
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17829
17860
  type Query = {};
17830
17861
  }
17831
17862
  namespace Responses {
17832
- namespace $200 {
17863
+ namespace $204 {
17833
17864
  namespace Content {
17834
- interface ApplicationJson {
17835
- /**
17836
- * The expiration date of the token.
17837
- */
17838
- expires: string;
17839
- /**
17840
- * Refresh token to refresh your access token even after it has expired.
17841
- */
17842
- refreshToken: string;
17843
- /**
17844
- * Public token to identify yourself against the api gateway.
17845
- */
17846
- token: string;
17847
- }
17865
+ type Empty = unknown;
17848
17866
  }
17849
17867
  }
17850
- namespace $400 {
17868
+ namespace $403 {
17851
17869
  namespace Content {
17852
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
17870
+ interface ApplicationJson {
17871
+ [k: string]: unknown;
17872
+ }
17853
17873
  }
17854
17874
  }
17855
- namespace $408 {
17875
+ namespace $429 {
17856
17876
  namespace Content {
17857
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
17858
- name?: "FirstAuthenticationFactorExpired";
17859
- };
17877
+ interface ApplicationJson {
17878
+ [k: string]: unknown;
17879
+ }
17860
17880
  }
17861
17881
  }
17862
- namespace $429 {
17882
+ namespace $500 {
17863
17883
  namespace Content {
17864
17884
  interface ApplicationJson {
17865
17885
  [k: string]: unknown;
@@ -17876,26 +17896,238 @@ export declare namespace MittwaldAPIV2 {
17876
17896
  }
17877
17897
  }
17878
17898
  }
17879
- namespace V2SignupAuthentication { }
17880
- namespace V2Authenticate {
17881
- namespace Post {
17899
+ namespace V2ServersServerIdStorageSpaceNotificationThreshold {
17900
+ namespace Put {
17882
17901
  namespace Parameters {
17883
- type Path = {};
17902
+ type Path = {
17903
+ serverId: string;
17904
+ };
17884
17905
  interface RequestBody {
17885
- /**
17886
- * The users Email-Address.
17887
- */
17888
- email: string;
17889
- /**
17890
- * Password of the User.
17891
- */
17892
- password: string;
17906
+ notificationThresholdInBytes?: number;
17893
17907
  }
17894
- type Header = {};
17908
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17895
17909
  type Query = {};
17896
17910
  }
17897
17911
  namespace Responses {
17898
- namespace $200 {
17912
+ namespace $204 {
17913
+ namespace Content {
17914
+ type Empty = unknown;
17915
+ }
17916
+ }
17917
+ namespace $403 {
17918
+ namespace Content {
17919
+ interface ApplicationJson {
17920
+ [k: string]: unknown;
17921
+ }
17922
+ }
17923
+ }
17924
+ namespace $429 {
17925
+ namespace Content {
17926
+ interface ApplicationJson {
17927
+ [k: string]: unknown;
17928
+ }
17929
+ }
17930
+ }
17931
+ namespace $500 {
17932
+ namespace Content {
17933
+ interface ApplicationJson {
17934
+ [k: string]: unknown;
17935
+ }
17936
+ }
17937
+ }
17938
+ namespace Default {
17939
+ namespace Content {
17940
+ interface ApplicationJson {
17941
+ [k: string]: unknown;
17942
+ }
17943
+ }
17944
+ }
17945
+ }
17946
+ }
17947
+ }
17948
+ namespace V2UsersUserIdPhone {
17949
+ namespace Post {
17950
+ namespace Parameters {
17951
+ type Path = {
17952
+ userId: string;
17953
+ };
17954
+ interface RequestBody {
17955
+ phoneNumber: string;
17956
+ }
17957
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
17958
+ type Query = {};
17959
+ }
17960
+ namespace Responses {
17961
+ namespace $204 {
17962
+ namespace Content {
17963
+ type Empty = unknown;
17964
+ }
17965
+ }
17966
+ namespace $400 {
17967
+ namespace Content {
17968
+ interface ApplicationJson {
17969
+ [k: string]: unknown;
17970
+ }
17971
+ }
17972
+ }
17973
+ namespace $409 {
17974
+ namespace Content {
17975
+ interface ApplicationJson {
17976
+ [k: string]: unknown;
17977
+ }
17978
+ }
17979
+ }
17980
+ namespace $429 {
17981
+ namespace Content {
17982
+ interface ApplicationJson {
17983
+ [k: string]: unknown;
17984
+ }
17985
+ }
17986
+ }
17987
+ namespace Default {
17988
+ namespace Content {
17989
+ interface ApplicationJson {
17990
+ [k: string]: unknown;
17991
+ }
17992
+ }
17993
+ }
17994
+ }
17995
+ }
17996
+ namespace Delete {
17997
+ namespace Parameters {
17998
+ type Path = {
17999
+ userId: string;
18000
+ };
18001
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
18002
+ type Query = {};
18003
+ }
18004
+ namespace Responses {
18005
+ namespace $204 {
18006
+ namespace Content {
18007
+ type Empty = unknown;
18008
+ }
18009
+ }
18010
+ namespace $400 {
18011
+ namespace Content {
18012
+ interface ApplicationJson {
18013
+ [k: string]: unknown;
18014
+ }
18015
+ }
18016
+ }
18017
+ namespace $412 {
18018
+ namespace Content {
18019
+ interface ApplicationJson {
18020
+ [k: string]: unknown;
18021
+ }
18022
+ }
18023
+ }
18024
+ namespace $429 {
18025
+ namespace Content {
18026
+ interface ApplicationJson {
18027
+ [k: string]: unknown;
18028
+ }
18029
+ }
18030
+ }
18031
+ namespace Default {
18032
+ namespace Content {
18033
+ interface ApplicationJson {
18034
+ [k: string]: unknown;
18035
+ }
18036
+ }
18037
+ }
18038
+ }
18039
+ }
18040
+ }
18041
+ namespace V2SignupAuthenticationMfa { }
18042
+ namespace V2AuthenticateMfa {
18043
+ namespace Post {
18044
+ namespace Parameters {
18045
+ type Path = {};
18046
+ interface RequestBody {
18047
+ /**
18048
+ * The email of the user.
18049
+ */
18050
+ email: string;
18051
+ /**
18052
+ * The second factor - otp code or recovery code.
18053
+ */
18054
+ multiFactorCode: string;
18055
+ /**
18056
+ * The password of the user.
18057
+ */
18058
+ password: string;
18059
+ }
18060
+ type Header = {};
18061
+ type Query = {};
18062
+ }
18063
+ namespace Responses {
18064
+ namespace $200 {
18065
+ namespace Content {
18066
+ interface ApplicationJson {
18067
+ /**
18068
+ * The expiration date of the token.
18069
+ */
18070
+ expires: string;
18071
+ /**
18072
+ * Refresh token to refresh your access token even after it has expired.
18073
+ */
18074
+ refreshToken: string;
18075
+ /**
18076
+ * Public token to identify yourself against the api gateway.
18077
+ */
18078
+ token: string;
18079
+ }
18080
+ }
18081
+ }
18082
+ namespace $400 {
18083
+ namespace Content {
18084
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
18085
+ }
18086
+ }
18087
+ namespace $408 {
18088
+ namespace Content {
18089
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.SignupDomainError & {
18090
+ name?: "FirstAuthenticationFactorExpired";
18091
+ };
18092
+ }
18093
+ }
18094
+ namespace $429 {
18095
+ namespace Content {
18096
+ interface ApplicationJson {
18097
+ [k: string]: unknown;
18098
+ }
18099
+ }
18100
+ }
18101
+ namespace Default {
18102
+ namespace Content {
18103
+ interface ApplicationJson {
18104
+ [k: string]: unknown;
18105
+ }
18106
+ }
18107
+ }
18108
+ }
18109
+ }
18110
+ }
18111
+ namespace V2SignupAuthentication { }
18112
+ namespace V2Authenticate {
18113
+ namespace Post {
18114
+ namespace Parameters {
18115
+ type Path = {};
18116
+ interface RequestBody {
18117
+ /**
18118
+ * The users Email-Address.
18119
+ */
18120
+ email: string;
18121
+ /**
18122
+ * Password of the User.
18123
+ */
18124
+ password: string;
18125
+ }
18126
+ type Header = {};
18127
+ type Query = {};
18128
+ }
18129
+ namespace Responses {
18130
+ namespace $200 {
17899
18131
  namespace Content {
17900
18132
  interface ApplicationJson {
17901
18133
  /**
@@ -20275,223 +20507,5 @@ export declare namespace MittwaldAPIV2 {
20275
20507
  }
20276
20508
  }
20277
20509
  }
20278
- namespace V2ProjectsProjectIdStorageSpaceNotificationThreshold {
20279
- namespace Put {
20280
- namespace Parameters {
20281
- type Path = {
20282
- projectId: string;
20283
- };
20284
- interface RequestBody {
20285
- notificationThresholdInBytes?: number;
20286
- }
20287
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20288
- type Query = {};
20289
- }
20290
- namespace Responses {
20291
- namespace $204 {
20292
- namespace Content {
20293
- type Empty = unknown;
20294
- }
20295
- }
20296
- namespace $403 {
20297
- namespace Content {
20298
- interface ApplicationJson {
20299
- [k: string]: unknown;
20300
- }
20301
- }
20302
- }
20303
- namespace $429 {
20304
- namespace Content {
20305
- interface ApplicationJson {
20306
- [k: string]: unknown;
20307
- }
20308
- }
20309
- }
20310
- namespace $500 {
20311
- namespace Content {
20312
- interface ApplicationJson {
20313
- [k: string]: unknown;
20314
- }
20315
- }
20316
- }
20317
- namespace Default {
20318
- namespace Content {
20319
- interface ApplicationJson {
20320
- [k: string]: unknown;
20321
- }
20322
- }
20323
- }
20324
- }
20325
- }
20326
- }
20327
- namespace V2ServersServerIdStorageSpaceStatistics {
20328
- namespace Get {
20329
- namespace Parameters {
20330
- type Path = {
20331
- serverId: string;
20332
- };
20333
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20334
- type Query = {};
20335
- }
20336
- namespace Responses {
20337
- namespace $200 {
20338
- namespace Content {
20339
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
20340
- }
20341
- }
20342
- namespace $400 {
20343
- namespace Content {
20344
- interface ApplicationJson {
20345
- [k: string]: unknown;
20346
- }
20347
- }
20348
- }
20349
- namespace $403 {
20350
- namespace Content {
20351
- interface ApplicationJson {
20352
- [k: string]: unknown;
20353
- }
20354
- }
20355
- }
20356
- namespace $404 {
20357
- namespace Content {
20358
- interface ApplicationJson {
20359
- [k: string]: unknown;
20360
- }
20361
- }
20362
- }
20363
- namespace $429 {
20364
- namespace Content {
20365
- interface ApplicationJson {
20366
- [k: string]: unknown;
20367
- }
20368
- }
20369
- }
20370
- namespace $500 {
20371
- namespace Content {
20372
- interface ApplicationJson {
20373
- [k: string]: unknown;
20374
- }
20375
- }
20376
- }
20377
- namespace Default {
20378
- namespace Content {
20379
- interface ApplicationJson {
20380
- [k: string]: unknown;
20381
- }
20382
- }
20383
- }
20384
- }
20385
- }
20386
- }
20387
- namespace V2ServersServerIdStorageSpaceNotificationThreshold {
20388
- namespace Put {
20389
- namespace Parameters {
20390
- type Path = {
20391
- serverId: string;
20392
- };
20393
- interface RequestBody {
20394
- notificationThresholdInBytes?: number;
20395
- }
20396
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20397
- type Query = {};
20398
- }
20399
- namespace Responses {
20400
- namespace $204 {
20401
- namespace Content {
20402
- type Empty = unknown;
20403
- }
20404
- }
20405
- namespace $403 {
20406
- namespace Content {
20407
- interface ApplicationJson {
20408
- [k: string]: unknown;
20409
- }
20410
- }
20411
- }
20412
- namespace $429 {
20413
- namespace Content {
20414
- interface ApplicationJson {
20415
- [k: string]: unknown;
20416
- }
20417
- }
20418
- }
20419
- namespace $500 {
20420
- namespace Content {
20421
- interface ApplicationJson {
20422
- [k: string]: unknown;
20423
- }
20424
- }
20425
- }
20426
- namespace Default {
20427
- namespace Content {
20428
- interface ApplicationJson {
20429
- [k: string]: unknown;
20430
- }
20431
- }
20432
- }
20433
- }
20434
- }
20435
- }
20436
- namespace V2ProjectsProjectIdStorageSpaceStatistics {
20437
- namespace Get {
20438
- namespace Parameters {
20439
- type Path = {
20440
- projectId: string;
20441
- };
20442
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20443
- type Query = {};
20444
- }
20445
- namespace Responses {
20446
- namespace $200 {
20447
- namespace Content {
20448
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.StoragespaceStatistics;
20449
- }
20450
- }
20451
- namespace $400 {
20452
- namespace Content {
20453
- interface ApplicationJson {
20454
- [k: string]: unknown;
20455
- }
20456
- }
20457
- }
20458
- namespace $403 {
20459
- namespace Content {
20460
- interface ApplicationJson {
20461
- [k: string]: unknown;
20462
- }
20463
- }
20464
- }
20465
- namespace $404 {
20466
- namespace Content {
20467
- interface ApplicationJson {
20468
- [k: string]: unknown;
20469
- }
20470
- }
20471
- }
20472
- namespace $429 {
20473
- namespace Content {
20474
- interface ApplicationJson {
20475
- [k: string]: unknown;
20476
- }
20477
- }
20478
- }
20479
- namespace $500 {
20480
- namespace Content {
20481
- interface ApplicationJson {
20482
- [k: string]: unknown;
20483
- }
20484
- }
20485
- }
20486
- namespace Default {
20487
- namespace Content {
20488
- interface ApplicationJson {
20489
- [k: string]: unknown;
20490
- }
20491
- }
20492
- }
20493
- }
20494
- }
20495
- }
20496
20510
  }
20497
20511
  }