@mittwald/api-client 4.406.0 → 4.408.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 +6 -0
- package/dist/esm/generated/v2/client.js +8 -0
- package/dist/esm/generated/v2/descriptors.js +24 -0
- package/dist/esm/generated/v3-next/client-react.js +6 -0
- package/dist/esm/generated/v3-next/client.js +8 -0
- package/dist/esm/generated/v3-next/descriptors.js +24 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +37 -0
- package/dist/types/generated/v2/client.d.ts +218 -0
- package/dist/types/generated/v2/descriptors.d.ts +8 -0
- package/dist/types/generated/v2/types.d.ts +275 -12
- package/dist/types/generated/v3-next/client-react.d.ts +37 -0
- package/dist/types/generated/v3-next/client.d.ts +218 -0
- package/dist/types/generated/v3-next/descriptors.d.ts +8 -0
- package/dist/types/generated/v3-next/types.d.ts +275 -12
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1894,6 +1894,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1894
1894
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1895
1895
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1896
1896
|
}
|
|
1897
|
+
namespace ContainerListTemplateStatistics {
|
|
1898
|
+
type RequestData = InferredRequestData<typeof descriptors.containerListTemplateStatistics>;
|
|
1899
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListTemplateStatistics, TStatus>;
|
|
1900
|
+
}
|
|
1901
|
+
namespace MailGetMailRateLimit {
|
|
1902
|
+
type RequestData = InferredRequestData<typeof descriptors.mailGetMailRateLimit>;
|
|
1903
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetMailRateLimit, TStatus>;
|
|
1904
|
+
}
|
|
1905
|
+
namespace MailListMailRateLimits {
|
|
1906
|
+
type RequestData = InferredRequestData<typeof descriptors.mailListMailRateLimits>;
|
|
1907
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailRateLimits, TStatus>;
|
|
1908
|
+
}
|
|
1909
|
+
namespace MailRequestMailAddressRateLimitChange {
|
|
1910
|
+
type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
|
|
1911
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
|
|
1912
|
+
}
|
|
1897
1913
|
}
|
|
1898
1914
|
namespace Components {
|
|
1899
1915
|
namespace Schemas {
|
|
@@ -5138,6 +5154,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5138
5154
|
isBackupInProgress: boolean;
|
|
5139
5155
|
isCatchAll: boolean;
|
|
5140
5156
|
mailbox?: {
|
|
5157
|
+
mailsystemSettings: MittwaldAPIV2.Components.Schemas.MailMailsystemSettings;
|
|
5141
5158
|
name: string;
|
|
5142
5159
|
passwordUpdatedAt: string;
|
|
5143
5160
|
sendingEnabled: boolean;
|
|
@@ -5156,12 +5173,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5156
5173
|
};
|
|
5157
5174
|
};
|
|
5158
5175
|
projectId: string;
|
|
5176
|
+
rateLimitChangeRequest?: {
|
|
5177
|
+
/**
|
|
5178
|
+
* id of the rate limit requested
|
|
5179
|
+
*/
|
|
5180
|
+
rateLimitId: string;
|
|
5181
|
+
};
|
|
5159
5182
|
receivingDisabled: boolean;
|
|
5160
5183
|
updatedAt: string;
|
|
5161
5184
|
}
|
|
5162
5185
|
interface MailMailsystemSettings {
|
|
5163
|
-
imapClusterId: string;
|
|
5164
|
-
mailDirectory: string;
|
|
5165
5186
|
rateLimitId: string;
|
|
5166
5187
|
}
|
|
5167
5188
|
interface MailmigrationAutoResponder {
|
|
@@ -5974,7 +5995,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5974
5995
|
version?: string | null;
|
|
5975
5996
|
};
|
|
5976
5997
|
};
|
|
5977
|
-
name: "app.version-set";
|
|
5998
|
+
name: "app.version-set" | "app.version-updated";
|
|
5978
5999
|
parameters: {
|
|
5979
6000
|
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
5980
6001
|
};
|
|
@@ -6198,14 +6219,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6198
6219
|
};
|
|
6199
6220
|
}
|
|
6200
6221
|
interface ActivitylogDnsZoneCreated {
|
|
6201
|
-
changes: {
|
|
6202
|
-
after?: {
|
|
6203
|
-
domain: string;
|
|
6204
|
-
};
|
|
6205
|
-
before?: {
|
|
6206
|
-
domain: string | null;
|
|
6207
|
-
};
|
|
6208
|
-
};
|
|
6222
|
+
changes: {};
|
|
6209
6223
|
name: "dns.zone-created";
|
|
6210
6224
|
parameters: {
|
|
6211
6225
|
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
@@ -6300,7 +6314,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6300
6314
|
name: string;
|
|
6301
6315
|
}
|
|
6302
6316
|
interface ActivitylogLogEntry {
|
|
6303
|
-
action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
|
|
6317
|
+
action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsDomainDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsIngressDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlNameSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
|
|
6304
6318
|
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6305
6319
|
dateTime: string;
|
|
6306
6320
|
/**
|
|
@@ -6918,6 +6932,61 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6918
6932
|
}
|
|
6919
6933
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6920
6934
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6935
|
+
interface ActivitylogDnsARecordSetManaged {
|
|
6936
|
+
changes: {
|
|
6937
|
+
after?: {
|
|
6938
|
+
aRecords: {
|
|
6939
|
+
managedByIngressId: string;
|
|
6940
|
+
};
|
|
6941
|
+
};
|
|
6942
|
+
before?: {};
|
|
6943
|
+
};
|
|
6944
|
+
name: "dns.a-record-set-managed";
|
|
6945
|
+
parameters: {
|
|
6946
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6947
|
+
};
|
|
6948
|
+
}
|
|
6949
|
+
interface ActivitylogDnsDomainDeleted {
|
|
6950
|
+
changes: {};
|
|
6951
|
+
name: "dns.domain-deleted";
|
|
6952
|
+
parameters: {
|
|
6953
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6954
|
+
};
|
|
6955
|
+
}
|
|
6956
|
+
interface ActivitylogDnsIngressDeleted {
|
|
6957
|
+
changes: {};
|
|
6958
|
+
name: "dns.ingress-deleted";
|
|
6959
|
+
parameters: {
|
|
6960
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6961
|
+
};
|
|
6962
|
+
}
|
|
6963
|
+
interface ActivitylogDnsMxRecordSetManaged {
|
|
6964
|
+
changes: {
|
|
6965
|
+
after?: {
|
|
6966
|
+
mx: {
|
|
6967
|
+
managed: boolean;
|
|
6968
|
+
};
|
|
6969
|
+
};
|
|
6970
|
+
before?: {};
|
|
6971
|
+
};
|
|
6972
|
+
name: "dns.mx-record-set-managed";
|
|
6973
|
+
parameters: {
|
|
6974
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6975
|
+
};
|
|
6976
|
+
}
|
|
6977
|
+
interface ContainerTemplateStatsResponse {
|
|
6978
|
+
id: string;
|
|
6979
|
+
installations: number;
|
|
6980
|
+
installations30Days: number;
|
|
6981
|
+
}
|
|
6982
|
+
interface ContainerTemplateStatsListResponse {
|
|
6983
|
+
category?: string;
|
|
6984
|
+
templates?: MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse[];
|
|
6985
|
+
}
|
|
6986
|
+
interface MailsystemRateLimit {
|
|
6987
|
+
id: string;
|
|
6988
|
+
rateLimit: number;
|
|
6989
|
+
}
|
|
6921
6990
|
interface CommonsAddress {
|
|
6922
6991
|
street: string;
|
|
6923
6992
|
houseNumber: string;
|
|
@@ -10209,6 +10278,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10209
10278
|
};
|
|
10210
10279
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
10211
10280
|
type Query = {
|
|
10281
|
+
searchTerm?: string;
|
|
10212
10282
|
limit?: number;
|
|
10213
10283
|
skip?: number;
|
|
10214
10284
|
page?: number;
|
|
@@ -31463,5 +31533,198 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31463
31533
|
}
|
|
31464
31534
|
}
|
|
31465
31535
|
}
|
|
31536
|
+
namespace V2ContainerTemplateStatistics {
|
|
31537
|
+
namespace Get {
|
|
31538
|
+
namespace Parameters {
|
|
31539
|
+
type Path = {};
|
|
31540
|
+
type Header = {};
|
|
31541
|
+
type Query = {
|
|
31542
|
+
templateId?: string;
|
|
31543
|
+
category?: string;
|
|
31544
|
+
};
|
|
31545
|
+
}
|
|
31546
|
+
namespace Responses {
|
|
31547
|
+
namespace $200 {
|
|
31548
|
+
namespace Content {
|
|
31549
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsListResponse;
|
|
31550
|
+
}
|
|
31551
|
+
}
|
|
31552
|
+
namespace $400 {
|
|
31553
|
+
namespace Content {
|
|
31554
|
+
interface ApplicationJson {
|
|
31555
|
+
[k: string]: unknown;
|
|
31556
|
+
}
|
|
31557
|
+
}
|
|
31558
|
+
}
|
|
31559
|
+
namespace $404 {
|
|
31560
|
+
namespace Content {
|
|
31561
|
+
interface ApplicationJson {
|
|
31562
|
+
[k: string]: unknown;
|
|
31563
|
+
}
|
|
31564
|
+
}
|
|
31565
|
+
}
|
|
31566
|
+
namespace $429 {
|
|
31567
|
+
namespace Content {
|
|
31568
|
+
interface ApplicationJson {
|
|
31569
|
+
[k: string]: unknown;
|
|
31570
|
+
}
|
|
31571
|
+
}
|
|
31572
|
+
}
|
|
31573
|
+
namespace $500 {
|
|
31574
|
+
namespace Content {
|
|
31575
|
+
interface ApplicationJson {
|
|
31576
|
+
[k: string]: unknown;
|
|
31577
|
+
}
|
|
31578
|
+
}
|
|
31579
|
+
}
|
|
31580
|
+
namespace Default {
|
|
31581
|
+
namespace Content {
|
|
31582
|
+
interface ApplicationJson {
|
|
31583
|
+
[k: string]: unknown;
|
|
31584
|
+
}
|
|
31585
|
+
}
|
|
31586
|
+
}
|
|
31587
|
+
}
|
|
31588
|
+
}
|
|
31589
|
+
}
|
|
31590
|
+
namespace V2MailRateLimitsMailRateLimitId {
|
|
31591
|
+
namespace Get {
|
|
31592
|
+
namespace Parameters {
|
|
31593
|
+
type Path = {
|
|
31594
|
+
mailRateLimitId: string;
|
|
31595
|
+
};
|
|
31596
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31597
|
+
type Query = {};
|
|
31598
|
+
}
|
|
31599
|
+
namespace Responses {
|
|
31600
|
+
namespace $200 {
|
|
31601
|
+
namespace Content {
|
|
31602
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit;
|
|
31603
|
+
}
|
|
31604
|
+
}
|
|
31605
|
+
namespace $404 {
|
|
31606
|
+
namespace Content {
|
|
31607
|
+
interface ApplicationJson {
|
|
31608
|
+
[k: string]: unknown;
|
|
31609
|
+
}
|
|
31610
|
+
}
|
|
31611
|
+
}
|
|
31612
|
+
namespace $429 {
|
|
31613
|
+
namespace Content {
|
|
31614
|
+
interface ApplicationJson {
|
|
31615
|
+
[k: string]: unknown;
|
|
31616
|
+
}
|
|
31617
|
+
}
|
|
31618
|
+
}
|
|
31619
|
+
namespace Default {
|
|
31620
|
+
namespace Content {
|
|
31621
|
+
interface ApplicationJson {
|
|
31622
|
+
[k: string]: unknown;
|
|
31623
|
+
}
|
|
31624
|
+
}
|
|
31625
|
+
}
|
|
31626
|
+
}
|
|
31627
|
+
}
|
|
31628
|
+
}
|
|
31629
|
+
namespace V2MailRateLimits {
|
|
31630
|
+
namespace Get {
|
|
31631
|
+
namespace Parameters {
|
|
31632
|
+
type Path = {};
|
|
31633
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31634
|
+
type Query = {};
|
|
31635
|
+
}
|
|
31636
|
+
namespace Responses {
|
|
31637
|
+
namespace $200 {
|
|
31638
|
+
namespace Content {
|
|
31639
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[];
|
|
31640
|
+
}
|
|
31641
|
+
}
|
|
31642
|
+
namespace $429 {
|
|
31643
|
+
namespace Content {
|
|
31644
|
+
interface ApplicationJson {
|
|
31645
|
+
[k: string]: unknown;
|
|
31646
|
+
}
|
|
31647
|
+
}
|
|
31648
|
+
}
|
|
31649
|
+
namespace Default {
|
|
31650
|
+
namespace Content {
|
|
31651
|
+
interface ApplicationJson {
|
|
31652
|
+
[k: string]: unknown;
|
|
31653
|
+
}
|
|
31654
|
+
}
|
|
31655
|
+
}
|
|
31656
|
+
}
|
|
31657
|
+
}
|
|
31658
|
+
}
|
|
31659
|
+
namespace V2MailAddressesMailAddressIdActionsRequestRateLimitChange {
|
|
31660
|
+
namespace Post {
|
|
31661
|
+
namespace Parameters {
|
|
31662
|
+
type Path = {
|
|
31663
|
+
mailAddressId: string;
|
|
31664
|
+
};
|
|
31665
|
+
interface RequestBody {
|
|
31666
|
+
rateLimitId: string;
|
|
31667
|
+
}
|
|
31668
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
31669
|
+
type Query = {};
|
|
31670
|
+
}
|
|
31671
|
+
namespace Responses {
|
|
31672
|
+
namespace $204 {
|
|
31673
|
+
namespace Content {
|
|
31674
|
+
type Empty = unknown;
|
|
31675
|
+
}
|
|
31676
|
+
}
|
|
31677
|
+
namespace $400 {
|
|
31678
|
+
namespace Content {
|
|
31679
|
+
interface ApplicationJson {
|
|
31680
|
+
[k: string]: unknown;
|
|
31681
|
+
}
|
|
31682
|
+
}
|
|
31683
|
+
}
|
|
31684
|
+
namespace $403 {
|
|
31685
|
+
namespace Content {
|
|
31686
|
+
interface ApplicationJson {
|
|
31687
|
+
[k: string]: unknown;
|
|
31688
|
+
}
|
|
31689
|
+
}
|
|
31690
|
+
}
|
|
31691
|
+
namespace $404 {
|
|
31692
|
+
namespace Content {
|
|
31693
|
+
interface ApplicationJson {
|
|
31694
|
+
[k: string]: unknown;
|
|
31695
|
+
}
|
|
31696
|
+
}
|
|
31697
|
+
}
|
|
31698
|
+
namespace $429 {
|
|
31699
|
+
namespace Content {
|
|
31700
|
+
interface ApplicationJson {
|
|
31701
|
+
[k: string]: unknown;
|
|
31702
|
+
}
|
|
31703
|
+
}
|
|
31704
|
+
}
|
|
31705
|
+
namespace $500 {
|
|
31706
|
+
namespace Content {
|
|
31707
|
+
interface ApplicationJson {
|
|
31708
|
+
[k: string]: unknown;
|
|
31709
|
+
}
|
|
31710
|
+
}
|
|
31711
|
+
}
|
|
31712
|
+
namespace $503 {
|
|
31713
|
+
namespace Content {
|
|
31714
|
+
interface ApplicationJson {
|
|
31715
|
+
[k: string]: unknown;
|
|
31716
|
+
}
|
|
31717
|
+
}
|
|
31718
|
+
}
|
|
31719
|
+
namespace Default {
|
|
31720
|
+
namespace Content {
|
|
31721
|
+
interface ApplicationJson {
|
|
31722
|
+
[k: string]: unknown;
|
|
31723
|
+
}
|
|
31724
|
+
}
|
|
31725
|
+
}
|
|
31726
|
+
}
|
|
31727
|
+
}
|
|
31728
|
+
}
|
|
31466
31729
|
}
|
|
31467
31730
|
}
|
|
@@ -547,6 +547,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
547
547
|
} | undefined;
|
|
548
548
|
queryParameters?: {
|
|
549
549
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
550
|
+
searchTerm?: string | undefined;
|
|
550
551
|
limit?: number | undefined;
|
|
551
552
|
skip?: number | undefined;
|
|
552
553
|
page?: number | undefined;
|
|
@@ -807,6 +808,20 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
807
808
|
page?: number | undefined;
|
|
808
809
|
} | undefined;
|
|
809
810
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerVolumeResponse[]>;
|
|
811
|
+
/** List Container Template statistics. */
|
|
812
|
+
listTemplateStatistics: (conf?: {
|
|
813
|
+
headers?: {
|
|
814
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
815
|
+
} | undefined;
|
|
816
|
+
queryParameters?: {
|
|
817
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
818
|
+
templateId?: string | undefined;
|
|
819
|
+
category?: string | undefined;
|
|
820
|
+
} | undefined;
|
|
821
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
822
|
+
category?: string | undefined;
|
|
823
|
+
templates?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateStatsResponse[] | undefined;
|
|
824
|
+
}>;
|
|
810
825
|
};
|
|
811
826
|
declare const buildContractApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
812
827
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -2858,6 +2873,7 @@ declare const buildMailApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
2858
2873
|
isBackupInProgress: boolean;
|
|
2859
2874
|
isCatchAll: boolean;
|
|
2860
2875
|
mailbox?: {
|
|
2876
|
+
mailsystemSettings: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailMailsystemSettings;
|
|
2861
2877
|
name: string;
|
|
2862
2878
|
passwordUpdatedAt: string;
|
|
2863
2879
|
sendingEnabled: boolean;
|
|
@@ -2876,6 +2892,9 @@ declare const buildMailApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
2876
2892
|
};
|
|
2877
2893
|
} | undefined;
|
|
2878
2894
|
projectId: string;
|
|
2895
|
+
rateLimitChangeRequest?: {
|
|
2896
|
+
rateLimitId: string;
|
|
2897
|
+
} | undefined;
|
|
2879
2898
|
receivingDisabled: boolean;
|
|
2880
2899
|
updatedAt: string;
|
|
2881
2900
|
}>;
|
|
@@ -2920,6 +2939,24 @@ declare const buildMailApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
2920
2939
|
projectId: string;
|
|
2921
2940
|
whitelist: string[];
|
|
2922
2941
|
}>;
|
|
2942
|
+
/** Get a Mail RateLimit. */
|
|
2943
|
+
getMailRateLimit: (conf: {
|
|
2944
|
+
mailRateLimitId: string;
|
|
2945
|
+
headers?: {
|
|
2946
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2947
|
+
"x-access-token"?: string | undefined;
|
|
2948
|
+
} | undefined;
|
|
2949
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2950
|
+
id: string;
|
|
2951
|
+
rateLimit: number;
|
|
2952
|
+
}>;
|
|
2953
|
+
/** List Mail RateLimits. */
|
|
2954
|
+
listMailRateLimits: (conf?: {
|
|
2955
|
+
headers?: {
|
|
2956
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2957
|
+
"x-access-token"?: string | undefined;
|
|
2958
|
+
} | undefined;
|
|
2959
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailsystemRateLimit[]>;
|
|
2923
2960
|
};
|
|
2924
2961
|
declare const buildMiscApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
2925
2962
|
/** List valid time zones. */
|